diff --git a/azure-mgmt-locks/src/main/java/com/microsoft/azure/management/locks/ManagementLockOwner.java b/azure-mgmt-locks/src/main/java/com/microsoft/azure/management/locks/ManagementLockOwner.java index ed84bf1ec5c..31cef95c886 100644 --- a/azure-mgmt-locks/src/main/java/com/microsoft/azure/management/locks/ManagementLockOwner.java +++ b/azure-mgmt-locks/src/main/java/com/microsoft/azure/management/locks/ManagementLockOwner.java @@ -21,7 +21,7 @@ public class ManagementLockOwner { private String applicationId; /** - * Get the applicationId value. + * Get the application ID of the lock owner. * * @return the applicationId value */ @@ -30,7 +30,7 @@ public String applicationId() { } /** - * Set the applicationId value. + * Set the application ID of the lock owner. * * @param applicationId the applicationId value to set * @return the ManagementLockOwner object itself. diff --git a/azure-mgmt-locks/src/main/java/com/microsoft/azure/management/locks/implementation/ManagementLockObjectInner.java b/azure-mgmt-locks/src/main/java/com/microsoft/azure/management/locks/implementation/ManagementLockObjectInner.java index 274b83c2d0e..5d93e1ec3c9 100644 --- a/azure-mgmt-locks/src/main/java/com/microsoft/azure/management/locks/implementation/ManagementLockObjectInner.java +++ b/azure-mgmt-locks/src/main/java/com/microsoft/azure/management/locks/implementation/ManagementLockObjectInner.java @@ -60,7 +60,7 @@ public class ManagementLockObjectInner { private String name; /** - * Get the level value. + * Get the level of the lock. Possible values are: NotSpecified, CanNotDelete, ReadOnly. CanNotDelete means authorized users are able to read and modify the resources, but not delete. ReadOnly means authorized users can only read from a resource, but they can't modify or delete it. Possible values include: 'NotSpecified', 'CanNotDelete', 'ReadOnly'. * * @return the level value */ @@ -69,7 +69,7 @@ public LockLevel level() { } /** - * Set the level value. + * Set the level of the lock. Possible values are: NotSpecified, CanNotDelete, ReadOnly. CanNotDelete means authorized users are able to read and modify the resources, but not delete. ReadOnly means authorized users can only read from a resource, but they can't modify or delete it. Possible values include: 'NotSpecified', 'CanNotDelete', 'ReadOnly'. * * @param level the level value to set * @return the ManagementLockObjectInner object itself. @@ -80,7 +80,7 @@ public ManagementLockObjectInner withLevel(LockLevel level) { } /** - * Get the notes value. + * Get notes about the lock. Maximum of 512 characters. * * @return the notes value */ @@ -89,7 +89,7 @@ public String notes() { } /** - * Set the notes value. + * Set notes about the lock. Maximum of 512 characters. * * @param notes the notes value to set * @return the ManagementLockObjectInner object itself. @@ -100,7 +100,7 @@ public ManagementLockObjectInner withNotes(String notes) { } /** - * Get the owners value. + * Get the owners of the lock. * * @return the owners value */ @@ -109,7 +109,7 @@ public List owners() { } /** - * Set the owners value. + * Set the owners of the lock. * * @param owners the owners value to set * @return the ManagementLockObjectInner object itself. @@ -120,7 +120,7 @@ public ManagementLockObjectInner withOwners(List owners) { } /** - * Get the id value. + * Get the resource ID of the lock. * * @return the id value */ @@ -129,7 +129,7 @@ public String id() { } /** - * Get the type value. + * Get the resource type of the lock - Microsoft.Authorization/locks. * * @return the type value */ @@ -138,7 +138,7 @@ public String type() { } /** - * Get the name value. + * Get the name of the lock. * * @return the name value */ @@ -147,7 +147,7 @@ public String name() { } /** - * Set the name value. + * Set the name of the lock. * * @param name the name value to set * @return the ManagementLockObjectInner object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/AliasPathType.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/AliasPathType.java index bbc31ea7e00..8546898c4cb 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/AliasPathType.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/AliasPathType.java @@ -28,7 +28,7 @@ public class AliasPathType { private List apiVersions; /** - * Get the path value. + * Get the path of an alias. * * @return the path value */ @@ -37,7 +37,7 @@ public String path() { } /** - * Set the path value. + * Set the path of an alias. * * @param path the path value to set * @return the AliasPathType object itself. @@ -48,7 +48,7 @@ public AliasPathType withPath(String path) { } /** - * Get the apiVersions value. + * Get the API versions. * * @return the apiVersions value */ @@ -57,7 +57,7 @@ public List apiVersions() { } /** - * Set the apiVersions value. + * Set the API versions. * * @param apiVersions the apiVersions value to set * @return the AliasPathType object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/AliasType.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/AliasType.java index 077f94794b4..4648744f571 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/AliasType.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/AliasType.java @@ -28,7 +28,7 @@ public class AliasType { private List paths; /** - * Get the name value. + * Get the alias name. * * @return the name value */ @@ -37,7 +37,7 @@ public String name() { } /** - * Set the name value. + * Set the alias name. * * @param name the name value to set * @return the AliasType object itself. @@ -48,7 +48,7 @@ public AliasType withName(String name) { } /** - * Get the paths value. + * Get the paths for an alias. * * @return the paths value */ @@ -57,7 +57,7 @@ public List paths() { } /** - * Set the paths value. + * Set the paths for an alias. * * @param paths the paths value to set * @return the AliasType object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/BasicDependency.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/BasicDependency.java index a3d14bc3fc5..66bce499bcd 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/BasicDependency.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/BasicDependency.java @@ -33,7 +33,7 @@ public class BasicDependency { private String resourceName; /** - * Get the id value. + * Get the ID of the dependency. * * @return the id value */ @@ -42,7 +42,7 @@ public String id() { } /** - * Set the id value. + * Set the ID of the dependency. * * @param id the id value to set * @return the BasicDependency object itself. @@ -53,7 +53,7 @@ public BasicDependency withId(String id) { } /** - * Get the resourceType value. + * Get the dependency resource type. * * @return the resourceType value */ @@ -62,7 +62,7 @@ public String resourceType() { } /** - * Set the resourceType value. + * Set the dependency resource type. * * @param resourceType the resourceType value to set * @return the BasicDependency object itself. @@ -73,7 +73,7 @@ public BasicDependency withResourceType(String resourceType) { } /** - * Get the resourceName value. + * Get the dependency resource name. * * @return the resourceName value */ @@ -82,7 +82,7 @@ public String resourceName() { } /** - * Set the resourceName value. + * Set the dependency resource name. * * @param resourceName the resourceName value to set * @return the BasicDependency object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DebugSetting.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DebugSetting.java index 9568ec8b13c..33d545df106 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DebugSetting.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DebugSetting.java @@ -27,7 +27,7 @@ public class DebugSetting { private String detailLevel; /** - * Get the detailLevel value. + * Get specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information you are passing in during deployment. By logging information about the request or response, you could potentially expose sensitive data that is retrieved through the deployment operations. * * @return the detailLevel value */ @@ -36,7 +36,7 @@ public String detailLevel() { } /** - * Set the detailLevel value. + * Set specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information you are passing in during deployment. By logging information about the request or response, you could potentially expose sensitive data that is retrieved through the deployment operations. * * @param detailLevel the detailLevel value to set * @return the DebugSetting object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/Dependency.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/Dependency.java index 8d81c417cb6..a3927dc9413 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/Dependency.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/Dependency.java @@ -40,7 +40,7 @@ public class Dependency { private String resourceName; /** - * Get the dependsOn value. + * Get the list of dependencies. * * @return the dependsOn value */ @@ -49,7 +49,7 @@ public List dependsOn() { } /** - * Set the dependsOn value. + * Set the list of dependencies. * * @param dependsOn the dependsOn value to set * @return the Dependency object itself. @@ -60,7 +60,7 @@ public Dependency withDependsOn(List dependsOn) { } /** - * Get the id value. + * Get the ID of the dependency. * * @return the id value */ @@ -69,7 +69,7 @@ public String id() { } /** - * Set the id value. + * Set the ID of the dependency. * * @param id the id value to set * @return the Dependency object itself. @@ -80,7 +80,7 @@ public Dependency withId(String id) { } /** - * Get the resourceType value. + * Get the dependency resource type. * * @return the resourceType value */ @@ -89,7 +89,7 @@ public String resourceType() { } /** - * Set the resourceType value. + * Set the dependency resource type. * * @param resourceType the resourceType value to set * @return the Dependency object itself. @@ -100,7 +100,7 @@ public Dependency withResourceType(String resourceType) { } /** - * Get the resourceName value. + * Get the dependency resource name. * * @return the resourceName value */ @@ -109,7 +109,7 @@ public String resourceName() { } /** - * Set the resourceName value. + * Set the dependency resource name. * * @param resourceName the resourceName value to set * @return the Dependency object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DeploymentExtendedFilter.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DeploymentExtendedFilter.java index eed3b9db5fb..691dfeb547b 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DeploymentExtendedFilter.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DeploymentExtendedFilter.java @@ -21,7 +21,7 @@ public class DeploymentExtendedFilter { private String provisioningState; /** - * Get the provisioningState value. + * Get the provisioning state. * * @return the provisioningState value */ @@ -30,7 +30,7 @@ public String provisioningState() { } /** - * Set the provisioningState value. + * Set the provisioning state. * * @param provisioningState the provisioningState value to set * @return the DeploymentExtendedFilter object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DeploymentOperationProperties.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DeploymentOperationProperties.java index 543134b5bc4..dffd56e21ad 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DeploymentOperationProperties.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DeploymentOperationProperties.java @@ -64,7 +64,7 @@ public class DeploymentOperationProperties { private HttpMessage response; /** - * Get the provisioningState value. + * Get the state of the provisioning. * * @return the provisioningState value */ @@ -73,7 +73,7 @@ public String provisioningState() { } /** - * Get the timestamp value. + * Get the date and time of the operation. * * @return the timestamp value */ @@ -82,7 +82,7 @@ public DateTime timestamp() { } /** - * Get the serviceRequestId value. + * Get deployment operation service request id. * * @return the serviceRequestId value */ @@ -91,7 +91,7 @@ public String serviceRequestId() { } /** - * Get the statusCode value. + * Get operation status code. * * @return the statusCode value */ @@ -100,7 +100,7 @@ public String statusCode() { } /** - * Get the statusMessage value. + * Get operation status message. * * @return the statusMessage value */ @@ -109,7 +109,7 @@ public Object statusMessage() { } /** - * Get the targetResource value. + * Get the target resource. * * @return the targetResource value */ @@ -118,7 +118,7 @@ public TargetResource targetResource() { } /** - * Get the request value. + * Get the HTTP request message. * * @return the request value */ @@ -127,7 +127,7 @@ public HttpMessage request() { } /** - * Get the response value. + * Get the HTTP response message. * * @return the response value */ diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DeploymentProperties.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DeploymentProperties.java index 908fa946b6d..1940edad21f 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DeploymentProperties.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DeploymentProperties.java @@ -68,7 +68,7 @@ public class DeploymentProperties { private DebugSetting debugSetting; /** - * Get the template value. + * Get the template content. You use this element when you want to pass the template syntax directly in the request rather than link to an existing template. It can be a JObject or well-formed JSON string. Use either the templateLink property or the template property, but not both. * * @return the template value */ @@ -77,7 +77,7 @@ public Object template() { } /** - * Set the template value. + * Set the template content. You use this element when you want to pass the template syntax directly in the request rather than link to an existing template. It can be a JObject or well-formed JSON string. Use either the templateLink property or the template property, but not both. * * @param template the template value to set * @return the DeploymentProperties object itself. @@ -88,7 +88,7 @@ public DeploymentProperties withTemplate(Object template) { } /** - * Get the templateLink value. + * Get the URI of the template. Use either the templateLink property or the template property, but not both. * * @return the templateLink value */ @@ -97,7 +97,7 @@ public TemplateLink templateLink() { } /** - * Set the templateLink value. + * Set the URI of the template. Use either the templateLink property or the template property, but not both. * * @param templateLink the templateLink value to set * @return the DeploymentProperties object itself. @@ -108,7 +108,7 @@ public DeploymentProperties withTemplateLink(TemplateLink templateLink) { } /** - * Get the parameters value. + * Get name and value pairs that define the deployment parameters for the template. You use this element when you want to provide the parameter values directly in the request rather than link to an existing parameter file. Use either the parametersLink property or the parameters property, but not both. It can be a JObject or a well formed JSON string. * * @return the parameters value */ @@ -117,7 +117,7 @@ public Object parameters() { } /** - * Set the parameters value. + * Set name and value pairs that define the deployment parameters for the template. You use this element when you want to provide the parameter values directly in the request rather than link to an existing parameter file. Use either the parametersLink property or the parameters property, but not both. It can be a JObject or a well formed JSON string. * * @param parameters the parameters value to set * @return the DeploymentProperties object itself. @@ -128,7 +128,7 @@ public DeploymentProperties withParameters(Object parameters) { } /** - * Get the parametersLink value. + * Get the URI of parameters file. You use this element to link to an existing parameters file. Use either the parametersLink property or the parameters property, but not both. * * @return the parametersLink value */ @@ -137,7 +137,7 @@ public ParametersLink parametersLink() { } /** - * Set the parametersLink value. + * Set the URI of parameters file. You use this element to link to an existing parameters file. Use either the parametersLink property or the parameters property, but not both. * * @param parametersLink the parametersLink value to set * @return the DeploymentProperties object itself. @@ -148,7 +148,7 @@ public DeploymentProperties withParametersLink(ParametersLink parametersLink) { } /** - * Get the mode value. + * Get the mode that is used to deploy resources. This value can be either Incremental or Complete. In Incremental mode, resources are deployed without deleting existing resources that are not included in the template. In Complete mode, resources are deployed and existing resources in the resource group that are not included in the template are deleted. Be careful when using Complete mode as you may unintentionally delete resources. Possible values include: 'Incremental', 'Complete'. * * @return the mode value */ @@ -157,7 +157,7 @@ public DeploymentMode mode() { } /** - * Set the mode value. + * Set the mode that is used to deploy resources. This value can be either Incremental or Complete. In Incremental mode, resources are deployed without deleting existing resources that are not included in the template. In Complete mode, resources are deployed and existing resources in the resource group that are not included in the template are deleted. Be careful when using Complete mode as you may unintentionally delete resources. Possible values include: 'Incremental', 'Complete'. * * @param mode the mode value to set * @return the DeploymentProperties object itself. @@ -168,7 +168,7 @@ public DeploymentProperties withMode(DeploymentMode mode) { } /** - * Get the debugSetting value. + * Get the debug setting of the deployment. * * @return the debugSetting value */ @@ -177,7 +177,7 @@ public DebugSetting debugSetting() { } /** - * Set the debugSetting value. + * Set the debug setting of the deployment. * * @param debugSetting the debugSetting value to set * @return the DeploymentProperties object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DeploymentPropertiesExtended.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DeploymentPropertiesExtended.java index 1c1e70c459e..59581c66435 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DeploymentPropertiesExtended.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/DeploymentPropertiesExtended.java @@ -93,7 +93,7 @@ public class DeploymentPropertiesExtended { private DebugSetting debugSetting; /** - * Get the provisioningState value. + * Get the state of the provisioning. * * @return the provisioningState value */ @@ -102,7 +102,7 @@ public String provisioningState() { } /** - * Get the correlationId value. + * Get the correlation ID of the deployment. * * @return the correlationId value */ @@ -111,7 +111,7 @@ public String correlationId() { } /** - * Get the timestamp value. + * Get the timestamp of the template deployment. * * @return the timestamp value */ @@ -120,7 +120,7 @@ public DateTime timestamp() { } /** - * Get the outputs value. + * Get key/value pairs that represent deploymentoutput. * * @return the outputs value */ @@ -129,7 +129,7 @@ public Object outputs() { } /** - * Set the outputs value. + * Set key/value pairs that represent deploymentoutput. * * @param outputs the outputs value to set * @return the DeploymentPropertiesExtended object itself. @@ -140,7 +140,7 @@ public DeploymentPropertiesExtended withOutputs(Object outputs) { } /** - * Get the providers value. + * Get the list of resource providers needed for the deployment. * * @return the providers value */ @@ -149,7 +149,7 @@ public List providers() { } /** - * Set the providers value. + * Set the list of resource providers needed for the deployment. * * @param providers the providers value to set * @return the DeploymentPropertiesExtended object itself. @@ -160,7 +160,7 @@ public DeploymentPropertiesExtended withProviders(List providers) } /** - * Get the dependencies value. + * Get the list of deployment dependencies. * * @return the dependencies value */ @@ -169,7 +169,7 @@ public List dependencies() { } /** - * Set the dependencies value. + * Set the list of deployment dependencies. * * @param dependencies the dependencies value to set * @return the DeploymentPropertiesExtended object itself. @@ -180,7 +180,7 @@ public DeploymentPropertiesExtended withDependencies(List dependenci } /** - * Get the template value. + * Get the template content. Use only one of Template or TemplateLink. * * @return the template value */ @@ -189,7 +189,7 @@ public Object template() { } /** - * Set the template value. + * Set the template content. Use only one of Template or TemplateLink. * * @param template the template value to set * @return the DeploymentPropertiesExtended object itself. @@ -200,7 +200,7 @@ public DeploymentPropertiesExtended withTemplate(Object template) { } /** - * Get the templateLink value. + * Get the URI referencing the template. Use only one of Template or TemplateLink. * * @return the templateLink value */ @@ -209,7 +209,7 @@ public TemplateLink templateLink() { } /** - * Set the templateLink value. + * Set the URI referencing the template. Use only one of Template or TemplateLink. * * @param templateLink the templateLink value to set * @return the DeploymentPropertiesExtended object itself. @@ -220,7 +220,7 @@ public DeploymentPropertiesExtended withTemplateLink(TemplateLink templateLink) } /** - * Get the parameters value. + * Get deployment parameters. Use only one of Parameters or ParametersLink. * * @return the parameters value */ @@ -229,7 +229,7 @@ public Object parameters() { } /** - * Set the parameters value. + * Set deployment parameters. Use only one of Parameters or ParametersLink. * * @param parameters the parameters value to set * @return the DeploymentPropertiesExtended object itself. @@ -240,7 +240,7 @@ public DeploymentPropertiesExtended withParameters(Object parameters) { } /** - * Get the parametersLink value. + * Get the URI referencing the parameters. Use only one of Parameters or ParametersLink. * * @return the parametersLink value */ @@ -249,7 +249,7 @@ public ParametersLink parametersLink() { } /** - * Set the parametersLink value. + * Set the URI referencing the parameters. Use only one of Parameters or ParametersLink. * * @param parametersLink the parametersLink value to set * @return the DeploymentPropertiesExtended object itself. @@ -260,7 +260,7 @@ public DeploymentPropertiesExtended withParametersLink(ParametersLink parameters } /** - * Get the mode value. + * Get the deployment mode. Possible values are Incremental and Complete. Possible values include: 'Incremental', 'Complete'. * * @return the mode value */ @@ -269,7 +269,7 @@ public DeploymentMode mode() { } /** - * Set the mode value. + * Set the deployment mode. Possible values are Incremental and Complete. Possible values include: 'Incremental', 'Complete'. * * @param mode the mode value to set * @return the DeploymentPropertiesExtended object itself. @@ -280,7 +280,7 @@ public DeploymentPropertiesExtended withMode(DeploymentMode mode) { } /** - * Get the debugSetting value. + * Get the debug setting of the deployment. * * @return the debugSetting value */ @@ -289,7 +289,7 @@ public DebugSetting debugSetting() { } /** - * Set the debugSetting value. + * Set the debug setting of the deployment. * * @param debugSetting the debugSetting value to set * @return the DeploymentPropertiesExtended object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ErrorResponse.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ErrorResponse.java index d6464cf8e37..ccfedd308e1 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ErrorResponse.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ErrorResponse.java @@ -34,7 +34,7 @@ public class ErrorResponse { private String errorMessage; /** - * Get the httpStatus value. + * Get http status code. * * @return the httpStatus value */ @@ -43,7 +43,7 @@ public String httpStatus() { } /** - * Set the httpStatus value. + * Set http status code. * * @param httpStatus the httpStatus value to set * @return the ErrorResponse object itself. @@ -54,7 +54,7 @@ public ErrorResponse withHttpStatus(String httpStatus) { } /** - * Get the errorCode value. + * Get error code. * * @return the errorCode value */ @@ -63,7 +63,7 @@ public String errorCode() { } /** - * Set the errorCode value. + * Set error code. * * @param errorCode the errorCode value to set * @return the ErrorResponse object itself. @@ -74,7 +74,7 @@ public ErrorResponse withErrorCode(String errorCode) { } /** - * Get the errorMessage value. + * Get error message indicating why the operation failed. * * @return the errorMessage value */ @@ -83,7 +83,7 @@ public String errorMessage() { } /** - * Set the errorMessage value. + * Set error message indicating why the operation failed. * * @param errorMessage the errorMessage value to set * @return the ErrorResponse object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ExportTemplateRequest.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ExportTemplateRequest.java index eab6f97270c..e9450030fb9 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ExportTemplateRequest.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ExportTemplateRequest.java @@ -32,7 +32,7 @@ public class ExportTemplateRequest { private String options; /** - * Get the resources value. + * Get the IDs of the resources. The only supported string currently is '*' (all resources). Future updates will support exporting specific resources. * * @return the resources value */ @@ -41,7 +41,7 @@ public List resources() { } /** - * Set the resources value. + * Set the IDs of the resources. The only supported string currently is '*' (all resources). Future updates will support exporting specific resources. * * @param resources the resources value to set * @return the ExportTemplateRequest object itself. @@ -52,7 +52,7 @@ public ExportTemplateRequest withResources(List resources) { } /** - * Get the options value. + * Get the export template options. Supported values include 'IncludeParameterDefaultValue', 'IncludeComments' or 'IncludeParameterDefaultValue, IncludeComments. * * @return the options value */ @@ -61,7 +61,7 @@ public String options() { } /** - * Set the options value. + * Set the export template options. Supported values include 'IncludeParameterDefaultValue', 'IncludeComments' or 'IncludeParameterDefaultValue, IncludeComments. * * @param options the options value to set * @return the ExportTemplateRequest object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/FeatureProperties.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/FeatureProperties.java index 1867d0b4110..728fd92d5ab 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/FeatureProperties.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/FeatureProperties.java @@ -21,7 +21,7 @@ public class FeatureProperties { private String state; /** - * Get the state value. + * Get the registration state of the feature for the subscription. * * @return the state value */ @@ -30,7 +30,7 @@ public String state() { } /** - * Set the state value. + * Set the registration state of the feature for the subscription. * * @param state the state value to set * @return the FeatureProperties object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/GenericResourceFilter.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/GenericResourceFilter.java index f4b2dfbfe41..bbbc606eb45 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/GenericResourceFilter.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/GenericResourceFilter.java @@ -33,7 +33,7 @@ public class GenericResourceFilter { private String tagvalue; /** - * Get the resourceType value. + * Get the resource type. * * @return the resourceType value */ @@ -42,7 +42,7 @@ public String resourceType() { } /** - * Set the resourceType value. + * Set the resource type. * * @param resourceType the resourceType value to set * @return the GenericResourceFilter object itself. @@ -53,7 +53,7 @@ public GenericResourceFilter withResourceType(String resourceType) { } /** - * Get the tagname value. + * Get the tag name. * * @return the tagname value */ @@ -62,7 +62,7 @@ public String tagname() { } /** - * Set the tagname value. + * Set the tag name. * * @param tagname the tagname value to set * @return the GenericResourceFilter object itself. @@ -73,7 +73,7 @@ public GenericResourceFilter withTagname(String tagname) { } /** - * Get the tagvalue value. + * Get the tag value. * * @return the tagvalue value */ @@ -82,7 +82,7 @@ public String tagvalue() { } /** - * Set the tagvalue value. + * Set the tag value. * * @param tagvalue the tagvalue value to set * @return the GenericResourceFilter object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/HttpMessage.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/HttpMessage.java index 101676c29ad..4a7991d376b 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/HttpMessage.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/HttpMessage.java @@ -21,7 +21,7 @@ public class HttpMessage { private Object content; /** - * Get the content value. + * Get hTTP message content. * * @return the content value */ @@ -30,7 +30,7 @@ public Object content() { } /** - * Set the content value. + * Set hTTP message content. * * @param content the content value to set * @return the HttpMessage object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/Identity.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/Identity.java index e0d54751017..a98ab981d36 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/Identity.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/Identity.java @@ -33,7 +33,7 @@ public class Identity { private ResourceIdentityType type; /** - * Get the principalId value. + * Get the principal ID of resource identity. * * @return the principalId value */ @@ -42,7 +42,7 @@ public String principalId() { } /** - * Get the tenantId value. + * Get the tenant ID of resource. * * @return the tenantId value */ @@ -51,7 +51,7 @@ public String tenantId() { } /** - * Get the type value. + * Get the identity type. Possible values include: 'SystemAssigned'. * * @return the type value */ @@ -60,7 +60,7 @@ public ResourceIdentityType type() { } /** - * Set the type value. + * Set the identity type. Possible values include: 'SystemAssigned'. * * @param type the type value to set * @return the Identity object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ParametersLink.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ParametersLink.java index ebec21001bf..4fa67bb6e04 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ParametersLink.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ParametersLink.java @@ -27,7 +27,7 @@ public class ParametersLink { private String contentVersion; /** - * Get the uri value. + * Get the URI of the parameters file. * * @return the uri value */ @@ -36,7 +36,7 @@ public String uri() { } /** - * Set the uri value. + * Set the URI of the parameters file. * * @param uri the uri value to set * @return the ParametersLink object itself. @@ -47,7 +47,7 @@ public ParametersLink withUri(String uri) { } /** - * Get the contentVersion value. + * Get if included, must match the ContentVersion in the template. * * @return the contentVersion value */ @@ -56,7 +56,7 @@ public String contentVersion() { } /** - * Set the contentVersion value. + * Set if included, must match the ContentVersion in the template. * * @param contentVersion the contentVersion value to set * @return the ParametersLink object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/Plan.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/Plan.java index e04fa9db967..745fa508a3f 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/Plan.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/Plan.java @@ -39,7 +39,7 @@ public class Plan { private String promotionCode; /** - * Get the name value. + * Get the plan ID. * * @return the name value */ @@ -48,7 +48,7 @@ public String name() { } /** - * Set the name value. + * Set the plan ID. * * @param name the name value to set * @return the Plan object itself. @@ -59,7 +59,7 @@ public Plan withName(String name) { } /** - * Get the publisher value. + * Get the publisher ID. * * @return the publisher value */ @@ -68,7 +68,7 @@ public String publisher() { } /** - * Set the publisher value. + * Set the publisher ID. * * @param publisher the publisher value to set * @return the Plan object itself. @@ -79,7 +79,7 @@ public Plan withPublisher(String publisher) { } /** - * Get the product value. + * Get the offer ID. * * @return the product value */ @@ -88,7 +88,7 @@ public String product() { } /** - * Set the product value. + * Set the offer ID. * * @param product the product value to set * @return the Plan object itself. @@ -99,7 +99,7 @@ public Plan withProduct(String product) { } /** - * Get the promotionCode value. + * Get the promotion code. * * @return the promotionCode value */ @@ -108,7 +108,7 @@ public String promotionCode() { } /** - * Set the promotionCode value. + * Set the promotion code. * * @param promotionCode the promotionCode value to set * @return the Plan object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/PolicyDefinitionReference.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/PolicyDefinitionReference.java index df5f9f50cfc..444c7e6180d 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/PolicyDefinitionReference.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/PolicyDefinitionReference.java @@ -27,7 +27,7 @@ public class PolicyDefinitionReference { private Object parameters; /** - * Get the policyDefinitionId value. + * Get the ID of the policy definition or policy set definition. * * @return the policyDefinitionId value */ @@ -36,7 +36,7 @@ public String policyDefinitionId() { } /** - * Set the policyDefinitionId value. + * Set the ID of the policy definition or policy set definition. * * @param policyDefinitionId the policyDefinitionId value to set * @return the PolicyDefinitionReference object itself. @@ -47,7 +47,7 @@ public PolicyDefinitionReference withPolicyDefinitionId(String policyDefinitionI } /** - * Get the parameters value. + * Get required if a parameter is used in policy rule. * * @return the parameters value */ @@ -56,7 +56,7 @@ public Object parameters() { } /** - * Set the parameters value. + * Set required if a parameter is used in policy rule. * * @param parameters the parameters value to set * @return the PolicyDefinitionReference object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/PolicySku.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/PolicySku.java index ebc31162484..de2b5969466 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/PolicySku.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/PolicySku.java @@ -27,7 +27,7 @@ public class PolicySku { private String tier; /** - * Get the name value. + * Get the name of the policy sku. Possible values are A0 and A1. * * @return the name value */ @@ -36,7 +36,7 @@ public String name() { } /** - * Set the name value. + * Set the name of the policy sku. Possible values are A0 and A1. * * @param name the name value to set * @return the PolicySku object itself. @@ -47,7 +47,7 @@ public PolicySku withName(String name) { } /** - * Get the tier value. + * Get the policy sku tier. Possible values are Free and Standard. * * @return the tier value */ @@ -56,7 +56,7 @@ public String tier() { } /** - * Set the tier value. + * Set the policy sku tier. Possible values are Free and Standard. * * @param tier the tier value to set * @return the PolicySku object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ProviderResourceType.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ProviderResourceType.java index 480fc91db2b..e872cea6f53 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ProviderResourceType.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ProviderResourceType.java @@ -47,7 +47,7 @@ public class ProviderResourceType { private Map properties; /** - * Get the resourceType value. + * Get the resource type. * * @return the resourceType value */ @@ -56,7 +56,7 @@ public String resourceType() { } /** - * Set the resourceType value. + * Set the resource type. * * @param resourceType the resourceType value to set * @return the ProviderResourceType object itself. @@ -67,7 +67,7 @@ public ProviderResourceType withResourceType(String resourceType) { } /** - * Get the locations value. + * Get the collection of locations where this resource type can be created. * * @return the locations value */ @@ -76,7 +76,7 @@ public List locations() { } /** - * Set the locations value. + * Set the collection of locations where this resource type can be created. * * @param locations the locations value to set * @return the ProviderResourceType object itself. @@ -87,7 +87,7 @@ public ProviderResourceType withLocations(List locations) { } /** - * Get the aliases value. + * Get the aliases that are supported by this resource type. * * @return the aliases value */ @@ -96,7 +96,7 @@ public List aliases() { } /** - * Set the aliases value. + * Set the aliases that are supported by this resource type. * * @param aliases the aliases value to set * @return the ProviderResourceType object itself. @@ -107,7 +107,7 @@ public ProviderResourceType withAliases(List aliases) { } /** - * Get the apiVersions value. + * Get the API version. * * @return the apiVersions value */ @@ -116,7 +116,7 @@ public List apiVersions() { } /** - * Set the apiVersions value. + * Set the API version. * * @param apiVersions the apiVersions value to set * @return the ProviderResourceType object itself. @@ -127,7 +127,7 @@ public ProviderResourceType withApiVersions(List apiVersions) { } /** - * Get the properties value. + * Get the properties. * * @return the properties value */ @@ -136,7 +136,7 @@ public Map properties() { } /** - * Set the properties value. + * Set the properties. * * @param properties the properties value to set * @return the ProviderResourceType object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourceGroupFilter.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourceGroupFilter.java index a40cd41c268..6f2c2642245 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourceGroupFilter.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourceGroupFilter.java @@ -27,7 +27,7 @@ public class ResourceGroupFilter { private String tagValue; /** - * Get the tagName value. + * Get the tag name. * * @return the tagName value */ @@ -36,7 +36,7 @@ public String tagName() { } /** - * Set the tagName value. + * Set the tag name. * * @param tagName the tagName value to set * @return the ResourceGroupFilter object itself. @@ -47,7 +47,7 @@ public ResourceGroupFilter withTagName(String tagName) { } /** - * Get the tagValue value. + * Get the tag value. * * @return the tagValue value */ @@ -56,7 +56,7 @@ public String tagValue() { } /** - * Set the tagValue value. + * Set the tag value. * * @param tagValue the tagValue value to set * @return the ResourceGroupFilter object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourceGroupProperties.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourceGroupProperties.java index cf4ecdaaf6d..b28a4af0a66 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourceGroupProperties.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourceGroupProperties.java @@ -21,7 +21,7 @@ public class ResourceGroupProperties { private String provisioningState; /** - * Get the provisioningState value. + * Get the provisioning state. * * @return the provisioningState value */ diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourceManagementErrorWithDetails.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourceManagementErrorWithDetails.java index 19633f57a75..fae85e340af 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourceManagementErrorWithDetails.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourceManagementErrorWithDetails.java @@ -40,7 +40,7 @@ public class ResourceManagementErrorWithDetails { private List details; /** - * Get the code value. + * Get the error code returned when exporting the template. * * @return the code value */ @@ -49,7 +49,7 @@ public String code() { } /** - * Get the message value. + * Get the error message describing the export error. * * @return the message value */ @@ -58,7 +58,7 @@ public String message() { } /** - * Get the target value. + * Get the target of the error. * * @return the target value */ @@ -67,7 +67,7 @@ public String target() { } /** - * Get the details value. + * Get validation error. * * @return the details value */ diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourceProviderOperationDisplayProperties.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourceProviderOperationDisplayProperties.java index 102de9bf0dd..40a645ad98f 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourceProviderOperationDisplayProperties.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourceProviderOperationDisplayProperties.java @@ -45,7 +45,7 @@ public class ResourceProviderOperationDisplayProperties { private String description; /** - * Get the publisher value. + * Get operation description. * * @return the publisher value */ @@ -54,7 +54,7 @@ public String publisher() { } /** - * Set the publisher value. + * Set operation description. * * @param publisher the publisher value to set * @return the ResourceProviderOperationDisplayProperties object itself. @@ -65,7 +65,7 @@ public ResourceProviderOperationDisplayProperties withPublisher(String publisher } /** - * Get the provider value. + * Get operation provider. * * @return the provider value */ @@ -74,7 +74,7 @@ public String provider() { } /** - * Set the provider value. + * Set operation provider. * * @param provider the provider value to set * @return the ResourceProviderOperationDisplayProperties object itself. @@ -85,7 +85,7 @@ public ResourceProviderOperationDisplayProperties withProvider(String provider) } /** - * Get the resource value. + * Get operation resource. * * @return the resource value */ @@ -94,7 +94,7 @@ public String resource() { } /** - * Set the resource value. + * Set operation resource. * * @param resource the resource value to set * @return the ResourceProviderOperationDisplayProperties object itself. @@ -105,7 +105,7 @@ public ResourceProviderOperationDisplayProperties withResource(String resource) } /** - * Get the operation value. + * Get operation. * * @return the operation value */ @@ -114,7 +114,7 @@ public String operation() { } /** - * Set the operation value. + * Set operation. * * @param operation the operation value to set * @return the ResourceProviderOperationDisplayProperties object itself. @@ -125,7 +125,7 @@ public ResourceProviderOperationDisplayProperties withOperation(String operation } /** - * Get the description value. + * Get operation description. * * @return the description value */ @@ -134,7 +134,7 @@ public String description() { } /** - * Set the description value. + * Set operation description. * * @param description the description value to set * @return the ResourceProviderOperationDisplayProperties object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourcesMoveInfo.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourcesMoveInfo.java index fd1efee658e..50eec1a12a0 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourcesMoveInfo.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/ResourcesMoveInfo.java @@ -28,7 +28,7 @@ public class ResourcesMoveInfo { private String targetResourceGroup; /** - * Get the resources value. + * Get the IDs of the resources. * * @return the resources value */ @@ -37,7 +37,7 @@ public List resources() { } /** - * Set the resources value. + * Set the IDs of the resources. * * @param resources the resources value to set * @return the ResourcesMoveInfo object itself. @@ -48,7 +48,7 @@ public ResourcesMoveInfo withResources(List resources) { } /** - * Get the targetResourceGroup value. + * Get the target resource group. * * @return the targetResourceGroup value */ @@ -57,7 +57,7 @@ public String targetResourceGroup() { } /** - * Set the targetResourceGroup value. + * Set the target resource group. * * @param targetResourceGroup the targetResourceGroup value to set * @return the ResourcesMoveInfo object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/Sku.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/Sku.java index 1664395e87c..caf6f206e11 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/Sku.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/Sku.java @@ -51,7 +51,7 @@ public class Sku { private Integer capacity; /** - * Get the name value. + * Get the SKU name. * * @return the name value */ @@ -60,7 +60,7 @@ public String name() { } /** - * Set the name value. + * Set the SKU name. * * @param name the name value to set * @return the Sku object itself. @@ -71,7 +71,7 @@ public Sku withName(String name) { } /** - * Get the tier value. + * Get the SKU tier. * * @return the tier value */ @@ -80,7 +80,7 @@ public String tier() { } /** - * Set the tier value. + * Set the SKU tier. * * @param tier the tier value to set * @return the Sku object itself. @@ -91,7 +91,7 @@ public Sku withTier(String tier) { } /** - * Get the size value. + * Get the SKU size. * * @return the size value */ @@ -100,7 +100,7 @@ public String size() { } /** - * Set the size value. + * Set the SKU size. * * @param size the size value to set * @return the Sku object itself. @@ -111,7 +111,7 @@ public Sku withSize(String size) { } /** - * Get the family value. + * Get the SKU family. * * @return the family value */ @@ -120,7 +120,7 @@ public String family() { } /** - * Set the family value. + * Set the SKU family. * * @param family the family value to set * @return the Sku object itself. @@ -131,7 +131,7 @@ public Sku withFamily(String family) { } /** - * Get the model value. + * Get the SKU model. * * @return the model value */ @@ -140,7 +140,7 @@ public String model() { } /** - * Set the model value. + * Set the SKU model. * * @param model the model value to set * @return the Sku object itself. @@ -151,7 +151,7 @@ public Sku withModel(String model) { } /** - * Get the capacity value. + * Get the SKU capacity. * * @return the capacity value */ @@ -160,7 +160,7 @@ public Integer capacity() { } /** - * Set the capacity value. + * Set the SKU capacity. * * @param capacity the capacity value to set * @return the Sku object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/SubscriptionPolicies.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/SubscriptionPolicies.java index 928b51a1e85..82ec1c3b2cf 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/SubscriptionPolicies.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/SubscriptionPolicies.java @@ -37,7 +37,7 @@ public class SubscriptionPolicies { private SpendingLimit spendingLimit; /** - * Get the locationPlacementId value. + * Get the subscription location placement ID. The ID indicates which regions are visible for a subscription. For example, a subscription with a location placement Id of Public_2014-09-01 has access to Azure public regions. * * @return the locationPlacementId value */ @@ -46,7 +46,7 @@ public String locationPlacementId() { } /** - * Get the quotaId value. + * Get the subscription quota ID. * * @return the quotaId value */ @@ -55,7 +55,7 @@ public String quotaId() { } /** - * Get the spendingLimit value. + * Get the subscription spending limit. Possible values include: 'On', 'Off', 'CurrentPeriodOff'. * * @return the spendingLimit value */ diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/TagCount.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/TagCount.java index c76b95c9121..42d01c9b329 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/TagCount.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/TagCount.java @@ -27,7 +27,7 @@ public class TagCount { private Integer value; /** - * Get the type value. + * Get type of count. * * @return the type value */ @@ -36,7 +36,7 @@ public String type() { } /** - * Set the type value. + * Set type of count. * * @param type the type value to set * @return the TagCount object itself. @@ -47,7 +47,7 @@ public TagCount withType(String type) { } /** - * Get the value value. + * Get value of count. * * @return the value value */ @@ -56,7 +56,7 @@ public Integer value() { } /** - * Set the value value. + * Set value of count. * * @param value the value value to set * @return the TagCount object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/TargetResource.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/TargetResource.java index 9e45c17adeb..9eb4ab41331 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/TargetResource.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/TargetResource.java @@ -33,7 +33,7 @@ public class TargetResource { private String resourceType; /** - * Get the id value. + * Get the ID of the resource. * * @return the id value */ @@ -42,7 +42,7 @@ public String id() { } /** - * Set the id value. + * Set the ID of the resource. * * @param id the id value to set * @return the TargetResource object itself. @@ -53,7 +53,7 @@ public TargetResource withId(String id) { } /** - * Get the resourceName value. + * Get the name of the resource. * * @return the resourceName value */ @@ -62,7 +62,7 @@ public String resourceName() { } /** - * Set the resourceName value. + * Set the name of the resource. * * @param resourceName the resourceName value to set * @return the TargetResource object itself. @@ -73,7 +73,7 @@ public TargetResource withResourceName(String resourceName) { } /** - * Get the resourceType value. + * Get the type of the resource. * * @return the resourceType value */ @@ -82,7 +82,7 @@ public String resourceType() { } /** - * Set the resourceType value. + * Set the type of the resource. * * @param resourceType the resourceType value to set * @return the TargetResource object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/TemplateLink.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/TemplateLink.java index 9b100a41e26..3e14c958513 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/TemplateLink.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/TemplateLink.java @@ -27,7 +27,7 @@ public class TemplateLink { private String contentVersion; /** - * Get the uri value. + * Get the URI of the template to deploy. * * @return the uri value */ @@ -36,7 +36,7 @@ public String uri() { } /** - * Set the uri value. + * Set the URI of the template to deploy. * * @param uri the uri value to set * @return the TemplateLink object itself. @@ -47,7 +47,7 @@ public TemplateLink withUri(String uri) { } /** - * Get the contentVersion value. + * Get if included, must match the ContentVersion in the template. * * @return the contentVersion value */ @@ -56,7 +56,7 @@ public String contentVersion() { } /** - * Set the contentVersion value. + * Set if included, must match the ContentVersion in the template. * * @param contentVersion the contentVersion value to set * @return the TemplateLink object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentExportResultInner.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentExportResultInner.java index 354e6538055..611e91509c2 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentExportResultInner.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentExportResultInner.java @@ -21,7 +21,7 @@ public class DeploymentExportResultInner { private Object template; /** - * Get the template value. + * Get the template content. * * @return the template value */ @@ -30,7 +30,7 @@ public Object template() { } /** - * Set the template value. + * Set the template content. * * @param template the template value to set * @return the DeploymentExportResultInner object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentExtendedInner.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentExtendedInner.java index 52727eb71ea..37ceb6d2529 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentExtendedInner.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentExtendedInner.java @@ -34,7 +34,7 @@ public class DeploymentExtendedInner { private DeploymentPropertiesExtended properties; /** - * Get the id value. + * Get the ID of the deployment. * * @return the id value */ @@ -43,7 +43,7 @@ public String id() { } /** - * Get the name value. + * Get the name of the deployment. * * @return the name value */ @@ -52,7 +52,7 @@ public String name() { } /** - * Set the name value. + * Set the name of the deployment. * * @param name the name value to set * @return the DeploymentExtendedInner object itself. @@ -63,7 +63,7 @@ public DeploymentExtendedInner withName(String name) { } /** - * Get the properties value. + * Get deployment properties. * * @return the properties value */ @@ -72,7 +72,7 @@ public DeploymentPropertiesExtended properties() { } /** - * Set the properties value. + * Set deployment properties. * * @param properties the properties value to set * @return the DeploymentExtendedInner object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentInner.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentInner.java index 5eb62e8a7b4..01597af8555 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentInner.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentInner.java @@ -22,7 +22,7 @@ public class DeploymentInner { private DeploymentProperties properties; /** - * Get the properties value. + * Get the deployment properties. * * @return the properties value */ @@ -31,7 +31,7 @@ public DeploymentProperties properties() { } /** - * Set the properties value. + * Set the deployment properties. * * @param properties the properties value to set * @return the DeploymentInner object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentOperationInner.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentOperationInner.java index c3efcb23447..593c804ad8f 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentOperationInner.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentOperationInner.java @@ -34,7 +34,7 @@ public class DeploymentOperationInner { private DeploymentOperationProperties properties; /** - * Get the id value. + * Get full deployment operation ID. * * @return the id value */ @@ -43,7 +43,7 @@ public String id() { } /** - * Get the operationId value. + * Get deployment operation ID. * * @return the operationId value */ @@ -52,7 +52,7 @@ public String operationId() { } /** - * Get the properties value. + * Get deployment properties. * * @return the properties value */ @@ -61,7 +61,7 @@ public DeploymentOperationProperties properties() { } /** - * Set the properties value. + * Set deployment properties. * * @param properties the properties value to set * @return the DeploymentOperationInner object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentValidateResultInner.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentValidateResultInner.java index b08cc84fbd3..711f5533576 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentValidateResultInner.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentValidateResultInner.java @@ -29,7 +29,7 @@ public class DeploymentValidateResultInner { private DeploymentPropertiesExtended properties; /** - * Get the error value. + * Get validation error. * * @return the error value */ @@ -38,7 +38,7 @@ public ResourceManagementErrorWithDetails error() { } /** - * Set the error value. + * Set validation error. * * @param error the error value to set * @return the DeploymentValidateResultInner object itself. @@ -49,7 +49,7 @@ public DeploymentValidateResultInner withError(ResourceManagementErrorWithDetail } /** - * Get the properties value. + * Get the template deployment properties. * * @return the properties value */ @@ -58,7 +58,7 @@ public DeploymentPropertiesExtended properties() { } /** - * Set the properties value. + * Set the template deployment properties. * * @param properties the properties value to set * @return the DeploymentValidateResultInner object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/FeatureResultInner.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/FeatureResultInner.java index 72f207764a5..6164ecb474a 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/FeatureResultInner.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/FeatureResultInner.java @@ -40,7 +40,7 @@ public class FeatureResultInner { private String type; /** - * Get the name value. + * Get the name of the feature. * * @return the name value */ @@ -49,7 +49,7 @@ public String name() { } /** - * Set the name value. + * Set the name of the feature. * * @param name the name value to set * @return the FeatureResultInner object itself. @@ -60,7 +60,7 @@ public FeatureResultInner withName(String name) { } /** - * Get the properties value. + * Get properties of the previewed feature. * * @return the properties value */ @@ -69,7 +69,7 @@ public FeatureProperties properties() { } /** - * Set the properties value. + * Set properties of the previewed feature. * * @param properties the properties value to set * @return the FeatureResultInner object itself. @@ -80,7 +80,7 @@ public FeatureResultInner withProperties(FeatureProperties properties) { } /** - * Get the id value. + * Get the resource ID of the feature. * * @return the id value */ @@ -89,7 +89,7 @@ public String id() { } /** - * Set the id value. + * Set the resource ID of the feature. * * @param id the id value to set * @return the FeatureResultInner object itself. @@ -100,7 +100,7 @@ public FeatureResultInner withId(String id) { } /** - * Get the type value. + * Get the resource type of the feature. * * @return the type value */ @@ -109,7 +109,7 @@ public String type() { } /** - * Set the type value. + * Set the resource type of the feature. * * @param type the type value to set * @return the FeatureResultInner object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/GenericResourceInner.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/GenericResourceInner.java index f67752c38fa..18eb75812e0 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/GenericResourceInner.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/GenericResourceInner.java @@ -57,7 +57,7 @@ public class GenericResourceInner extends Resource { private Identity identity; /** - * Get the plan value. + * Get the plan of the resource. * * @return the plan value */ @@ -66,7 +66,7 @@ public Plan plan() { } /** - * Set the plan value. + * Set the plan of the resource. * * @param plan the plan value to set * @return the GenericResourceInner object itself. @@ -77,7 +77,7 @@ public GenericResourceInner withPlan(Plan plan) { } /** - * Get the properties value. + * Get the resource properties. * * @return the properties value */ @@ -86,7 +86,7 @@ public Object properties() { } /** - * Set the properties value. + * Set the resource properties. * * @param properties the properties value to set * @return the GenericResourceInner object itself. @@ -97,7 +97,7 @@ public GenericResourceInner withProperties(Object properties) { } /** - * Get the kind value. + * Get the kind of the resource. * * @return the kind value */ @@ -106,7 +106,7 @@ public String kind() { } /** - * Set the kind value. + * Set the kind of the resource. * * @param kind the kind value to set * @return the GenericResourceInner object itself. @@ -117,7 +117,7 @@ public GenericResourceInner withKind(String kind) { } /** - * Get the managedBy value. + * Get iD of the resource that manages this resource. * * @return the managedBy value */ @@ -126,7 +126,7 @@ public String managedBy() { } /** - * Set the managedBy value. + * Set iD of the resource that manages this resource. * * @param managedBy the managedBy value to set * @return the GenericResourceInner object itself. @@ -137,7 +137,7 @@ public GenericResourceInner withManagedBy(String managedBy) { } /** - * Get the sku value. + * Get the SKU of the resource. * * @return the sku value */ @@ -146,7 +146,7 @@ public Sku sku() { } /** - * Set the sku value. + * Set the SKU of the resource. * * @param sku the sku value to set * @return the GenericResourceInner object itself. @@ -157,7 +157,7 @@ public GenericResourceInner withSku(Sku sku) { } /** - * Get the identity value. + * Get the identity of the resource. * * @return the identity value */ @@ -166,7 +166,7 @@ public Identity identity() { } /** - * Set the identity value. + * Set the identity of the resource. * * @param identity the identity value to set * @return the GenericResourceInner object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/LocationInner.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/LocationInner.java index 11efc2d460b..abf715c57ce 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/LocationInner.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/LocationInner.java @@ -52,7 +52,7 @@ public class LocationInner { private String longitude; /** - * Get the id value. + * Get the fully qualified ID of the location. For example, /subscriptions/00000000-0000-0000-0000-000000000000/locations/westus. * * @return the id value */ @@ -61,7 +61,7 @@ public String id() { } /** - * Get the subscriptionId value. + * Get the subscription ID. * * @return the subscriptionId value */ @@ -70,7 +70,7 @@ public String subscriptionId() { } /** - * Get the name value. + * Get the location name. * * @return the name value */ @@ -79,7 +79,7 @@ public String name() { } /** - * Get the displayName value. + * Get the display name of the location. * * @return the displayName value */ @@ -88,7 +88,7 @@ public String displayName() { } /** - * Get the latitude value. + * Get the latitude of the location. * * @return the latitude value */ @@ -97,7 +97,7 @@ public String latitude() { } /** - * Get the longitude value. + * Get the longitude of the location. * * @return the longitude value */ diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/PolicyAssignmentInner.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/PolicyAssignmentInner.java index 17c407dc4b4..2479dcd5bd1 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/PolicyAssignmentInner.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/PolicyAssignmentInner.java @@ -85,7 +85,7 @@ public class PolicyAssignmentInner { private PolicySku sku; /** - * Get the displayName value. + * Get the display name of the policy assignment. * * @return the displayName value */ @@ -94,7 +94,7 @@ public String displayName() { } /** - * Set the displayName value. + * Set the display name of the policy assignment. * * @param displayName the displayName value to set * @return the PolicyAssignmentInner object itself. @@ -105,7 +105,7 @@ public PolicyAssignmentInner withDisplayName(String displayName) { } /** - * Get the policyDefinitionId value. + * Get the ID of the policy definition. * * @return the policyDefinitionId value */ @@ -114,7 +114,7 @@ public String policyDefinitionId() { } /** - * Set the policyDefinitionId value. + * Set the ID of the policy definition. * * @param policyDefinitionId the policyDefinitionId value to set * @return the PolicyAssignmentInner object itself. @@ -125,7 +125,7 @@ public PolicyAssignmentInner withPolicyDefinitionId(String policyDefinitionId) { } /** - * Get the scope value. + * Get the scope for the policy assignment. * * @return the scope value */ @@ -134,7 +134,7 @@ public String scope() { } /** - * Set the scope value. + * Set the scope for the policy assignment. * * @param scope the scope value to set * @return the PolicyAssignmentInner object itself. @@ -145,7 +145,7 @@ public PolicyAssignmentInner withScope(String scope) { } /** - * Get the notScopes value. + * Get the policy's excluded scopes. * * @return the notScopes value */ @@ -154,7 +154,7 @@ public List notScopes() { } /** - * Set the notScopes value. + * Set the policy's excluded scopes. * * @param notScopes the notScopes value to set * @return the PolicyAssignmentInner object itself. @@ -165,7 +165,7 @@ public PolicyAssignmentInner withNotScopes(List notScopes) { } /** - * Get the parameters value. + * Get required if a parameter is used in policy rule. * * @return the parameters value */ @@ -174,7 +174,7 @@ public Object parameters() { } /** - * Set the parameters value. + * Set required if a parameter is used in policy rule. * * @param parameters the parameters value to set * @return the PolicyAssignmentInner object itself. @@ -185,7 +185,7 @@ public PolicyAssignmentInner withParameters(Object parameters) { } /** - * Get the description value. + * Get this message will be part of response in case of policy violation. * * @return the description value */ @@ -194,7 +194,7 @@ public String description() { } /** - * Set the description value. + * Set this message will be part of response in case of policy violation. * * @param description the description value to set * @return the PolicyAssignmentInner object itself. @@ -205,7 +205,7 @@ public PolicyAssignmentInner withDescription(String description) { } /** - * Get the metadata value. + * Get the policy assignment metadata. * * @return the metadata value */ @@ -214,7 +214,7 @@ public Object metadata() { } /** - * Set the metadata value. + * Set the policy assignment metadata. * * @param metadata the metadata value to set * @return the PolicyAssignmentInner object itself. @@ -225,7 +225,7 @@ public PolicyAssignmentInner withMetadata(Object metadata) { } /** - * Get the id value. + * Get the ID of the policy assignment. * * @return the id value */ @@ -234,7 +234,7 @@ public String id() { } /** - * Get the type value. + * Get the type of the policy assignment. * * @return the type value */ @@ -243,7 +243,7 @@ public String type() { } /** - * Get the name value. + * Get the name of the policy assignment. * * @return the name value */ @@ -252,7 +252,7 @@ public String name() { } /** - * Get the sku value. + * Get the policy sku. * * @return the sku value */ @@ -261,7 +261,7 @@ public PolicySku sku() { } /** - * Set the sku value. + * Set the policy sku. * * @param sku the sku value to set * @return the PolicyAssignmentInner object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/PolicyDefinitionInner.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/PolicyDefinitionInner.java index 1ded4fb9754..8dc81cd3e09 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/PolicyDefinitionInner.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/PolicyDefinitionInner.java @@ -82,7 +82,7 @@ public class PolicyDefinitionInner { private String type; /** - * Get the policyType value. + * Get the type of policy definition. Possible values are NotSpecified, BuiltIn, and Custom. Possible values include: 'NotSpecified', 'BuiltIn', 'Custom'. * * @return the policyType value */ @@ -91,7 +91,7 @@ public PolicyType policyType() { } /** - * Set the policyType value. + * Set the type of policy definition. Possible values are NotSpecified, BuiltIn, and Custom. Possible values include: 'NotSpecified', 'BuiltIn', 'Custom'. * * @param policyType the policyType value to set * @return the PolicyDefinitionInner object itself. @@ -102,7 +102,7 @@ public PolicyDefinitionInner withPolicyType(PolicyType policyType) { } /** - * Get the mode value. + * Get the policy definition mode. Possible values are NotSpecified, Indexed, and All. Possible values include: 'NotSpecified', 'Indexed', 'All'. * * @return the mode value */ @@ -111,7 +111,7 @@ public PolicyMode mode() { } /** - * Set the mode value. + * Set the policy definition mode. Possible values are NotSpecified, Indexed, and All. Possible values include: 'NotSpecified', 'Indexed', 'All'. * * @param mode the mode value to set * @return the PolicyDefinitionInner object itself. @@ -122,7 +122,7 @@ public PolicyDefinitionInner withMode(PolicyMode mode) { } /** - * Get the displayName value. + * Get the display name of the policy definition. * * @return the displayName value */ @@ -131,7 +131,7 @@ public String displayName() { } /** - * Set the displayName value. + * Set the display name of the policy definition. * * @param displayName the displayName value to set * @return the PolicyDefinitionInner object itself. @@ -142,7 +142,7 @@ public PolicyDefinitionInner withDisplayName(String displayName) { } /** - * Get the description value. + * Get the policy definition description. * * @return the description value */ @@ -151,7 +151,7 @@ public String description() { } /** - * Set the description value. + * Set the policy definition description. * * @param description the description value to set * @return the PolicyDefinitionInner object itself. @@ -162,7 +162,7 @@ public PolicyDefinitionInner withDescription(String description) { } /** - * Get the policyRule value. + * Get the policy rule. * * @return the policyRule value */ @@ -171,7 +171,7 @@ public Object policyRule() { } /** - * Set the policyRule value. + * Set the policy rule. * * @param policyRule the policyRule value to set * @return the PolicyDefinitionInner object itself. @@ -182,7 +182,7 @@ public PolicyDefinitionInner withPolicyRule(Object policyRule) { } /** - * Get the metadata value. + * Get the policy definition metadata. * * @return the metadata value */ @@ -191,7 +191,7 @@ public Object metadata() { } /** - * Set the metadata value. + * Set the policy definition metadata. * * @param metadata the metadata value to set * @return the PolicyDefinitionInner object itself. @@ -202,7 +202,7 @@ public PolicyDefinitionInner withMetadata(Object metadata) { } /** - * Get the parameters value. + * Get required if a parameter is used in policy rule. * * @return the parameters value */ @@ -211,7 +211,7 @@ public Object parameters() { } /** - * Set the parameters value. + * Set required if a parameter is used in policy rule. * * @param parameters the parameters value to set * @return the PolicyDefinitionInner object itself. @@ -222,7 +222,7 @@ public PolicyDefinitionInner withParameters(Object parameters) { } /** - * Get the id value. + * Get the ID of the policy definition. * * @return the id value */ @@ -231,7 +231,7 @@ public String id() { } /** - * Get the name value. + * Get the name of the policy definition. * * @return the name value */ @@ -240,7 +240,7 @@ public String name() { } /** - * Get the type value. + * Get the type of the resource (Microsoft.Authorization/policyDefinitions). * * @return the type value */ diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/PolicySetDefinitionInner.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/PolicySetDefinitionInner.java index 898ce4ccfed..e78e7c24ab6 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/PolicySetDefinitionInner.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/PolicySetDefinitionInner.java @@ -77,7 +77,7 @@ public class PolicySetDefinitionInner { private String type; /** - * Get the policyType value. + * Get the type of policy definition. Possible values are NotSpecified, BuiltIn, and Custom. Possible values include: 'NotSpecified', 'BuiltIn', 'Custom'. * * @return the policyType value */ @@ -86,7 +86,7 @@ public PolicyType policyType() { } /** - * Set the policyType value. + * Set the type of policy definition. Possible values are NotSpecified, BuiltIn, and Custom. Possible values include: 'NotSpecified', 'BuiltIn', 'Custom'. * * @param policyType the policyType value to set * @return the PolicySetDefinitionInner object itself. @@ -97,7 +97,7 @@ public PolicySetDefinitionInner withPolicyType(PolicyType policyType) { } /** - * Get the displayName value. + * Get the display name of the policy set definition. * * @return the displayName value */ @@ -106,7 +106,7 @@ public String displayName() { } /** - * Set the displayName value. + * Set the display name of the policy set definition. * * @param displayName the displayName value to set * @return the PolicySetDefinitionInner object itself. @@ -117,7 +117,7 @@ public PolicySetDefinitionInner withDisplayName(String displayName) { } /** - * Get the description value. + * Get the policy set definition description. * * @return the description value */ @@ -126,7 +126,7 @@ public String description() { } /** - * Set the description value. + * Set the policy set definition description. * * @param description the description value to set * @return the PolicySetDefinitionInner object itself. @@ -137,7 +137,7 @@ public PolicySetDefinitionInner withDescription(String description) { } /** - * Get the metadata value. + * Get the policy set definition metadata. * * @return the metadata value */ @@ -146,7 +146,7 @@ public Object metadata() { } /** - * Set the metadata value. + * Set the policy set definition metadata. * * @param metadata the metadata value to set * @return the PolicySetDefinitionInner object itself. @@ -157,7 +157,7 @@ public PolicySetDefinitionInner withMetadata(Object metadata) { } /** - * Get the parameters value. + * Get the policy set definition parameters that can be used in policy definition references. * * @return the parameters value */ @@ -166,7 +166,7 @@ public Object parameters() { } /** - * Set the parameters value. + * Set the policy set definition parameters that can be used in policy definition references. * * @param parameters the parameters value to set * @return the PolicySetDefinitionInner object itself. @@ -177,7 +177,7 @@ public PolicySetDefinitionInner withParameters(Object parameters) { } /** - * Get the policyDefinitions value. + * Get an array of policy definition references. * * @return the policyDefinitions value */ @@ -186,7 +186,7 @@ public List policyDefinitions() { } /** - * Set the policyDefinitions value. + * Set an array of policy definition references. * * @param policyDefinitions the policyDefinitions value to set * @return the PolicySetDefinitionInner object itself. @@ -197,7 +197,7 @@ public PolicySetDefinitionInner withPolicyDefinitions(List resourceTypes; /** - * Get the id value. + * Get the provider ID. * * @return the id value */ @@ -50,7 +50,7 @@ public String id() { } /** - * Get the namespace value. + * Get the namespace of the resource provider. * * @return the namespace value */ @@ -59,7 +59,7 @@ public String namespace() { } /** - * Set the namespace value. + * Set the namespace of the resource provider. * * @param namespace the namespace value to set * @return the ProviderInner object itself. @@ -70,7 +70,7 @@ public ProviderInner withNamespace(String namespace) { } /** - * Get the registrationState value. + * Get the registration state of the provider. * * @return the registrationState value */ @@ -79,7 +79,7 @@ public String registrationState() { } /** - * Get the resourceTypes value. + * Get the collection of provider resource types. * * @return the resourceTypes value */ diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/ResourceGroupExportResultInner.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/ResourceGroupExportResultInner.java index 9a0c5ae8c4c..264161d97cc 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/ResourceGroupExportResultInner.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/ResourceGroupExportResultInner.java @@ -28,7 +28,7 @@ public class ResourceGroupExportResultInner { private ResourceManagementErrorWithDetails error; /** - * Get the template value. + * Get the template content. * * @return the template value */ @@ -37,7 +37,7 @@ public Object template() { } /** - * Set the template value. + * Set the template content. * * @param template the template value to set * @return the ResourceGroupExportResultInner object itself. @@ -48,7 +48,7 @@ public ResourceGroupExportResultInner withTemplate(Object template) { } /** - * Get the error value. + * Get the error. * * @return the error value */ @@ -57,7 +57,7 @@ public ResourceManagementErrorWithDetails error() { } /** - * Set the error value. + * Set the error. * * @param error the error value to set * @return the ResourceGroupExportResultInner object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/ResourceGroupInner.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/ResourceGroupInner.java index 9e8bceac184..830f21df781 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/ResourceGroupInner.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/ResourceGroupInner.java @@ -55,7 +55,7 @@ public class ResourceGroupInner { private Map tags; /** - * Get the id value. + * Get the ID of the resource group. * * @return the id value */ @@ -64,7 +64,7 @@ public String id() { } /** - * Get the name value. + * Get the name of the resource group. * * @return the name value */ @@ -73,7 +73,7 @@ public String name() { } /** - * Set the name value. + * Set the name of the resource group. * * @param name the name value to set * @return the ResourceGroupInner object itself. @@ -104,7 +104,7 @@ public ResourceGroupInner withProperties(ResourceGroupProperties properties) { } /** - * Get the location value. + * Get the location of the resource group. It cannot be changed after the resource group has been created. It muct be one of the supported Azure locations. * * @return the location value */ @@ -113,7 +113,7 @@ public String location() { } /** - * Set the location value. + * Set the location of the resource group. It cannot be changed after the resource group has been created. It muct be one of the supported Azure locations. * * @param location the location value to set * @return the ResourceGroupInner object itself. @@ -124,7 +124,7 @@ public ResourceGroupInner withLocation(String location) { } /** - * Get the managedBy value. + * Get the ID of the resource that manages this resource group. * * @return the managedBy value */ @@ -133,7 +133,7 @@ public String managedBy() { } /** - * Set the managedBy value. + * Set the ID of the resource that manages this resource group. * * @param managedBy the managedBy value to set * @return the ResourceGroupInner object itself. @@ -144,7 +144,7 @@ public ResourceGroupInner withManagedBy(String managedBy) { } /** - * Get the tags value. + * Get the tags attached to the resource group. * * @return the tags value */ @@ -153,7 +153,7 @@ public Map tags() { } /** - * Set the tags value. + * Set the tags attached to the resource group. * * @param tags the tags value to set * @return the ResourceGroupInner object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/SubscriptionInner.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/SubscriptionInner.java index a955dd07556..9c0fa3274fc 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/SubscriptionInner.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/SubscriptionInner.java @@ -58,7 +58,7 @@ public class SubscriptionInner { private String authorizationSource; /** - * Get the id value. + * Get the fully qualified ID for the subscription. For example, /subscriptions/00000000-0000-0000-0000-000000000000. * * @return the id value */ @@ -67,7 +67,7 @@ public String id() { } /** - * Get the subscriptionId value. + * Get the subscription ID. * * @return the subscriptionId value */ @@ -76,7 +76,7 @@ public String subscriptionId() { } /** - * Get the displayName value. + * Get the subscription display name. * * @return the displayName value */ @@ -85,7 +85,7 @@ public String displayName() { } /** - * Get the state value. + * Get the subscription state. Possible values are Enabled, Warned, PastDue, Disabled, and Deleted. Possible values include: 'Enabled', 'Warned', 'PastDue', 'Disabled', 'Deleted'. * * @return the state value */ @@ -94,7 +94,7 @@ public SubscriptionState state() { } /** - * Get the subscriptionPolicies value. + * Get the subscription policies. * * @return the subscriptionPolicies value */ @@ -103,7 +103,7 @@ public SubscriptionPolicies subscriptionPolicies() { } /** - * Set the subscriptionPolicies value. + * Set the subscription policies. * * @param subscriptionPolicies the subscriptionPolicies value to set * @return the SubscriptionInner object itself. @@ -114,7 +114,7 @@ public SubscriptionInner withSubscriptionPolicies(SubscriptionPolicies subscript } /** - * Get the authorizationSource value. + * Get the authorization source of the request. Valid values are one or more combinations of Legacy, RoleBased, Bypassed, Direct and Management. For example, 'Legacy, RoleBased'. * * @return the authorizationSource value */ @@ -123,7 +123,7 @@ public String authorizationSource() { } /** - * Set the authorizationSource value. + * Set the authorization source of the request. Valid values are one or more combinations of Legacy, RoleBased, Bypassed, Direct and Management. For example, 'Legacy, RoleBased'. * * @param authorizationSource the authorizationSource value to set * @return the SubscriptionInner object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/TagDetailsInner.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/TagDetailsInner.java index d4e7385e46d..d9b93099eba 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/TagDetailsInner.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/TagDetailsInner.java @@ -42,7 +42,7 @@ public class TagDetailsInner { private List values; /** - * Get the id value. + * Get the tag ID. * * @return the id value */ @@ -51,7 +51,7 @@ public String id() { } /** - * Get the tagName value. + * Get the tag name. * * @return the tagName value */ @@ -60,7 +60,7 @@ public String tagName() { } /** - * Set the tagName value. + * Set the tag name. * * @param tagName the tagName value to set * @return the TagDetailsInner object itself. @@ -71,7 +71,7 @@ public TagDetailsInner withTagName(String tagName) { } /** - * Get the count value. + * Get the total number of resources that use the resource tag. When a tag is initially created and has no associated resources, the value is 0. * * @return the count value */ @@ -80,7 +80,7 @@ public TagCount count() { } /** - * Set the count value. + * Set the total number of resources that use the resource tag. When a tag is initially created and has no associated resources, the value is 0. * * @param count the count value to set * @return the TagDetailsInner object itself. @@ -91,7 +91,7 @@ public TagDetailsInner withCount(TagCount count) { } /** - * Get the values value. + * Get the list of tag values. * * @return the values value */ @@ -100,7 +100,7 @@ public List values() { } /** - * Set the values value. + * Set the list of tag values. * * @param values the values value to set * @return the TagDetailsInner object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/TagValueInner.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/TagValueInner.java index 214c5064428..c71bc8d16cc 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/TagValueInner.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/TagValueInner.java @@ -34,7 +34,7 @@ public class TagValueInner { private TagCount count; /** - * Get the id value. + * Get the tag ID. * * @return the id value */ @@ -43,7 +43,7 @@ public String id() { } /** - * Get the tagValue value. + * Get the tag value. * * @return the tagValue value */ @@ -52,7 +52,7 @@ public String tagValue() { } /** - * Set the tagValue value. + * Set the tag value. * * @param tagValue the tagValue value to set * @return the TagValueInner object itself. @@ -63,7 +63,7 @@ public TagValueInner withTagValue(String tagValue) { } /** - * Get the count value. + * Get the tag value count. * * @return the count value */ @@ -72,7 +72,7 @@ public TagCount count() { } /** - * Set the count value. + * Set the tag value count. * * @param count the count value to set * @return the TagValueInner object itself. diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/TenantIdDescriptionInner.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/TenantIdDescriptionInner.java index 9aa9f4241db..6a2be5193cc 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/TenantIdDescriptionInner.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/TenantIdDescriptionInner.java @@ -28,7 +28,7 @@ public class TenantIdDescriptionInner { private String tenantId; /** - * Get the id value. + * Get the fully qualified ID of the tenant. For example, /tenants/00000000-0000-0000-0000-000000000000. * * @return the id value */ @@ -37,7 +37,7 @@ public String id() { } /** - * Get the tenantId value. + * Get the tenant ID. For example, 00000000-0000-0000-0000-000000000000. * * @return the tenantId value */