diff --git a/providers/azurecompute-arm/src/main/java/org/jclouds/azurecompute/arm/AzureComputeApi.java b/providers/azurecompute-arm/src/main/java/org/jclouds/azurecompute/arm/AzureComputeApi.java index 9d2b159240..85d68cacf6 100644 --- a/providers/azurecompute-arm/src/main/java/org/jclouds/azurecompute/arm/AzureComputeApi.java +++ b/providers/azurecompute-arm/src/main/java/org/jclouds/azurecompute/arm/AzureComputeApi.java @@ -55,284 +55,247 @@ import com.google.common.base.Supplier; import com.google.inject.Provides; /** - * The Azure Resource Manager API is a REST API for managing your services and - * deployments. + * The Azure Resource Manager API is a REST API for managing your services and deployments. *

* - * @see doc + * @see doc */ public interface AzureComputeApi extends Closeable { + + /** + * The Azure Resource Manager API includes operations for managing resource groups in your subscription. + * + * @see docs + */ + @Delegate + ResourceGroupApi getResourceGroupApi(); - /** - * The Azure Resource Manager API includes operations for managing resource - * groups in your subscription. - * - * @see docs - */ - @Delegate - ResourceGroupApi getResourceGroupApi(); + /** + * Provides access to the Job tracking API. + */ + @Delegate + JobApi getJobApi(); - /** - * Provides access to the Job tracking API. - */ - @Delegate - JobApi getJobApi(); + /** + * This Azure Resource Manager API provides all of the locations that are available for resource providers + * + * @see docs + */ + @Delegate + LocationApi getLocationApi(); - /** - * This Azure Resource Manager API provides all of the locations that are - * available for resource providers - * - * @see docs - */ - @Delegate - LocationApi getLocationApi(); + /** + * The Azure Resource Manager API includes operations for managing the storage accounts in your subscription. + * + * @see docs + */ + @Delegate + StorageAccountApi getStorageAccountApi(@PathParam("resourceGroup") String resourceGroup); - /** - * The Azure Resource Manager API includes operations for managing the storage - * accounts in your subscription. - * - * @see docs - */ - @Delegate - StorageAccountApi getStorageAccountApi(@PathParam("resourceGroup") String resourceGroup); + /** + * The Subnet API includes operations for managing the subnets in your virtual network. + * + * @see docs + */ + @Delegate + SubnetApi getSubnetApi(@PathParam("resourcegroup") String resourcegroup, + @PathParam("virtualnetwork") String virtualnetwork); - /** - * The Subnet API includes operations for managing the subnets in your virtual - * network. - * - * @see docs - */ - @Delegate - SubnetApi getSubnetApi(@PathParam("resourcegroup") String resourcegroup, - @PathParam("virtualnetwork") String virtualnetwork); + /** + * The Virtual Network API includes operations for managing the virtual networks in your subscription. + * + * @see docs + */ + @Delegate + VirtualNetworkApi getVirtualNetworkApi(@Nullable @PathParam("resourcegroup") String resourcegroup); - /** - * The Virtual Network API includes operations for managing the virtual networks - * in your subscription. - * - * @see docs - */ - @Delegate - VirtualNetworkApi getVirtualNetworkApi(@Nullable @PathParam("resourcegroup") String resourcegroup); - /** - * The Network Interface Card API includes operations for managing the NICs in - * your subscription. - * - * @see docs - */ - @Delegate - NetworkInterfaceCardApi getNetworkInterfaceCardApi(@Nullable @PathParam("resourcegroup") String resourcegroup); + /** + * The Network Interface Card API includes operations for managing the NICs in your subscription. + * + * @see docs + */ + @Delegate + NetworkInterfaceCardApi getNetworkInterfaceCardApi(@Nullable @PathParam("resourcegroup") String resourcegroup); - /** - * The Public IP Address API includes operations for managing public ID - * Addresses for NICs in your subscription. - * - * @see docs - */ - @Delegate - PublicIPAddressApi getPublicIPAddressApi(@Nullable @PathParam("resourcegroup") String resourcegroup); + /** + * The Public IP Address API includes operations for managing public ID Addresses for NICs in your subscription. + * + * @see docs + */ + @Delegate + PublicIPAddressApi getPublicIPAddressApi(@Nullable @PathParam("resourcegroup") String resourcegroup); - /** - * The Virtual Machine API includes operations for managing the virtual machines - * in your subscription. - * - * @see docs - */ - @Delegate - VirtualMachineApi getVirtualMachineApi(@Nullable @PathParam("resourceGroup") String resourceGroup); - /** - * The Virtual Machine Scale Set API includes operations for managing the - * virtual machines in your subscription. - * - * @see docs - */ - @Delegate - VirtualMachineScaleSetApi getVirtualMachineScaleSetApi(@PathParam("resourceGroup") String resourceGroup); + /** + * The Virtual Machine API includes operations for managing the virtual machines in your subscription. + * + * @see docs + */ + @Delegate + VirtualMachineApi getVirtualMachineApi(@Nullable @PathParam("resourceGroup") String resourceGroup); - /** - * This Azure Resource Manager API lists all available virtual machine sizes for - * a subscription in a given region - * - * @see docs - */ - @Delegate - VMSizeApi getVMSizeApi(@PathParam("location") String location); + /** + * The Virtual Machine Scale Set API includes operations for managing the virtual machines in your subscription. + * + * @see docs + */ + @Delegate + VirtualMachineScaleSetApi getVirtualMachineScaleSetApi(@PathParam("resourceGroup") String resourceGroup); - /** - * The Azure Resource Manager API gets all the OS images in your subscription. - * - * @see docs - */ - @Delegate - OSImageApi getOSImageApi(@PathParam("location") String location); + /** + * This Azure Resource Manager API lists all available virtual machine sizes for a subscription in a given region + * + * @see docs + */ + @Delegate + VMSizeApi getVMSizeApi(@PathParam("location") String location); - /** - * The Deployment API allows for the management of Azure Resource Manager - * resources through the use of templates. - * - * @see docs - */ - @Delegate - DeploymentApi getDeploymentApi(@PathParam("resourcegroup") String resourceGroup); + /** + * The Azure Resource Manager API gets all the OS images in your subscription. + * + * @see docs + */ + @Delegate + OSImageApi getOSImageApi(@PathParam("location") String location); - /** - * The NetworkSecurityGroup API includes operations for managing network - * security groups within your subscription. - * - * @see docs - */ - @Delegate - NetworkSecurityGroupApi getNetworkSecurityGroupApi(@Nullable @PathParam("resourcegroup") String resourcegroup); + /** + * The Deployment API allows for the management of Azure Resource Manager resources through the use of templates. + * + * @see docs + */ + @Delegate + DeploymentApi getDeploymentApi(@PathParam("resourcegroup") String resourceGroup); - /** - * The NetworkSecurityRule API includes operations for managing network security - * rules within a network security group. - * - * @see docs - */ - @Delegate - NetworkSecurityRuleApi getNetworkSecurityRuleApi(@PathParam("resourcegroup") String resourcegroup, - @PathParam("networksecuritygroup") String networksecuritygroup); + /** + * The NetworkSecurityGroup API includes operations for managing network security groups within your subscription. + * + * @see docs + */ + @Delegate + NetworkSecurityGroupApi getNetworkSecurityGroupApi(@Nullable @PathParam("resourcegroup") String resourcegroup); + + /** + * The NetworkSecurityRule API includes operations for managing network security rules within a network security group. + * + * @see docs + */ + @Delegate + NetworkSecurityRuleApi getNetworkSecurityRuleApi(@PathParam("resourcegroup") String resourcegroup, + @PathParam("networksecuritygroup") String networksecuritygroup); - /** - * The LoadBalancer API includes operations for managing load balancers within - * your subscription. - * - * @see docs - */ - @Delegate - LoadBalancerApi getLoadBalancerApi(@Nullable @PathParam("resourcegroup") String resourcegroup); + /** + * The LoadBalancer API includes operations for managing load balancers + * within your subscription. + * + * @see docs + * + */ + @Delegate + LoadBalancerApi getLoadBalancerApi(@Nullable @PathParam("resourcegroup") String resourcegroup); - /** - * The AvailabilitySet API includes operations for managing availability sets - * within your subscription. - * - * @see docs - * - */ - @Delegate - AvailabilitySetApi getAvailabilitySetApi(@PathParam("resourcegroup") String resourcegroup); + /** + * The AvailabilitySet API includes operations for managing availability sets + * within your subscription. + * + * @see docs + * + */ + @Delegate + AvailabilitySetApi getAvailabilitySetApi(@PathParam("resourcegroup") String resourcegroup); - /** - * The Azure Resource Provider API provides information about a resource - * provider and its supported resource types. - * - * @see docs - */ - @Delegate - ResourceProviderApi getResourceProviderApi(); + /** + * The Azure Resource Provider API provides information about a resource provider and its supported resource types. + * + * @see docs + */ + @Delegate + ResourceProviderApi getResourceProviderApi(); - /** - * The ManagedDataDisk API includes operations for managing data disks within - * your subscription. - * - * @see docs - */ - @Delegate - DiskApi getDiskApi(@PathParam("resourcegroup") String resourcegroup); + /** + * The ManagedDataDisk API includes operations for managing data disks within your subscription. + * + * @see docs + */ + @Delegate + DiskApi getDiskApi(@PathParam("resourcegroup") String resourcegroup); - /** - * The virtual machine image API includes operations for managing data disks - * within your subscription. - * - * @see docs - */ - @Delegate - ImageApi getVirtualMachineImageApi(@PathParam("resourcegroup") String resourcegroup); + /** + * The virtual machine image API includes operations for managing data disks within your subscription. + * + * @see docs + */ + @Delegate + ImageApi getVirtualMachineImageApi(@PathParam("resourcegroup") String resourcegroup); - /** - * The metrics API includes operations to get insights into entities within your - * subscription. - * - * @see docs - */ - @Delegate - MetricsApi getMetricsApi(@PathParam("resourceid") String resourceid); + /** + * The metrics API includes operations to get insights into entities within your + * subscription. + * + * @see docs + */ + @Delegate + MetricsApi getMetricsApi(@PathParam("resourceid") String resourceid); - /** - * The metric definitions API includes operations to get insights available for - * entities within your subscription. - * - * @see docs - */ - @Delegate - MetricDefinitionsApi getMetricsDefinitionsApi(@PathParam("resourceid") String resourceid); - - /** - * The Azure Active Directory Graph API provides programmatic access to Azure AD - * through REST API endpoints. - * - * @see docs - */ - @Delegate - GraphRBACApi getGraphRBACApi(); - - /** - * Managing your key vaults as well as the keys, secrets, and certificates - * within your key vaults can be accomplished through a REST interface. - * - * @see docs - */ - @Delegate - VaultApi getVaultApi(@PathParam("resourcegroup") String resourcegroup); - - /** - * Management features for Local Network Gateways. - * - * @see docs - */ - @Delegate - LocalNetworkGatewayApi getLocalNetworkGatewayApi(@PathParam("resourcegroup") String resourcegroup); - - /** - * Management features for Virtual Network Gateways. - * - * @see docs - */ - @Delegate - VirtualNetworkGatewayApi getVirtualNetworkGatewayApi(@PathParam("resourcegroup") String resourcegroup); - - /** - * Management features for Virtual Network Gateway Connections. - * - * @see docs - */ - @Delegate - VirtualNetworkGatewayConnectionApi getVirtualNetworkGatewayConnectionApi( - @PathParam("resourcegroup") String resourcegroup); - - /** - * Returns the information about the current service principal. - */ - @Provides - Supplier getServicePrincipal(); + /** + * The metric definitions API includes operations to get insights available for entities within your + * subscription. + * + * @see docs + */ + @Delegate + MetricDefinitionsApi getMetricsDefinitionsApi(@PathParam("resourceid") String resourceid); + /** + * The Azure Active Directory Graph API provides programmatic access to Azure + * AD through REST API endpoints. + * + * @see docs + */ + @Delegate + GraphRBACApi getGraphRBACApi(); + + /** + * Managing your key vaults as well as the keys, secrets, and certificates within your key vaults can be + * accomplished through a REST interface. + * + * @see docs + */ + @Delegate + VaultApi getVaultApi(@PathParam("resourcegroup") String resourcegroup); + + /** + * Management features for Local Network Gateways. + * + * @see docs + */ + @Delegate + LocalNetworkGatewayApi getLocalNetworkGatewayApi(@PathParam("resourcegroup") String resourcegroup); + + /** + * Management features for Virtual Network Gateways. + * + * @see docs + */ + @Delegate + VirtualNetworkGatewayApi getVirtualNetworkGatewayApi(@PathParam("resourcegroup") String resourcegroup); + + /** + * Management features for Virtual Network Gateway Connections. + * + * @see docs + */ + @Delegate + VirtualNetworkGatewayConnectionApi getVirtualNetworkGatewayConnectionApi(@PathParam("resourcegroup") String resourcegroup); + + /** + * Returns the information about the current service principal. + */ + @Provides + Supplier getServicePrincipal(); + /** * The Activity Log Alert API includes operations to get insights available for * entities within your subscription