> + > +/** > + * The Azure Resource Manager API is a REST API for managing your services > and deployments. > + * <p/> > + * > + * @see <a > href="https://msdn.microsoft.com/en-us/library/azure/dn790568.aspx" >doc</a> > + */ > +public interface AzureComputeApi extends Closeable { > + > + /** > + * The Azure Resource Manager API includes operations for managing > resource groups in your subscription. > + * > + * @see <a > href="https://msdn.microsoft.com/en-us/library/azure/dn790546.aspx">docs</a> > + */ > + @Delegate > + ResourceGroupApi getResourceGroupApi(@PathParam("subscriptionid") String > subscriptionid);
in `azurecompute` we started from the same idea, but we ended up with https://github.com/jclouds/jclouds-labs/blob/master/azurecompute/src/main/java/org/jclouds/azurecompute/AzureComputeProviderMetadata.java#L71 where the SUBSCRIPTION_ID is part of the endpoint. Do you think we should follow the same approach or you recommend a pathParam with the subscriptionId, for ARM? --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/250/files/f7cc1b437f11378e105bba552e3cfee9d7491872#r57514190
