Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand All @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand All @@ -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.
Expand All @@ -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
*/
Expand All @@ -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.
Expand All @@ -100,7 +100,7 @@ public ManagementLockObjectInner withNotes(String notes) {
}

/**
* Get the owners value.
* Get the owners of the lock.
*
* @return the owners value
*/
Expand All @@ -109,7 +109,7 @@ public List<ManagementLockOwner> owners() {
}

/**
* Set the owners value.
* Set the owners of the lock.
*
* @param owners the owners value to set
* @return the ManagementLockObjectInner object itself.
Expand All @@ -120,7 +120,7 @@ public ManagementLockObjectInner withOwners(List<ManagementLockOwner> owners) {
}

/**
* Get the id value.
* Get the resource ID of the lock.
*
* @return the id value
*/
Expand All @@ -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
*/
Expand All @@ -138,7 +138,7 @@ public String type() {
}

/**
* Get the name value.
* Get the name of the lock.
*
* @return the name value
*/
Expand All @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,8 @@ public Observable<ServiceResponse<Void>> call(Response<ResponseBody> response) {

private ServiceResponse<Void> deleteAtResourceGroupLevelDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException {
return this.client.restClient().responseBuilderFactory().<Void, CloudException>newInstance(this.client.serializerAdapter())
.register(204, new TypeToken<Void>() { }.getType())
.register(200, new TypeToken<Void>() { }.getType())
.register(204, new TypeToken<Void>() { }.getType())
.registerError(CloudException.class)
.build(response);
}
Expand Down Expand Up @@ -581,8 +581,8 @@ public Observable<ServiceResponse<Void>> call(Response<ResponseBody> response) {

private ServiceResponse<Void> deleteByScopeDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException {
return this.client.restClient().responseBuilderFactory().<Void, CloudException>newInstance(this.client.serializerAdapter())
.register(204, new TypeToken<Void>() { }.getType())
.register(200, new TypeToken<Void>() { }.getType())
.register(204, new TypeToken<Void>() { }.getType())
.registerError(CloudException.class)
.build(response);
}
Expand Down Expand Up @@ -909,8 +909,8 @@ public Observable<ServiceResponse<Void>> call(Response<ResponseBody> response) {

private ServiceResponse<Void> deleteAtResourceLevelDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException {
return this.client.restClient().responseBuilderFactory().<Void, CloudException>newInstance(this.client.serializerAdapter())
.register(204, new TypeToken<Void>() { }.getType())
.register(200, new TypeToken<Void>() { }.getType())
.register(204, new TypeToken<Void>() { }.getType())
.registerError(CloudException.class)
.build(response);
}
Expand Down Expand Up @@ -1115,8 +1115,8 @@ public Observable<ServiceResponse<ManagementLockObjectInner>> call(Response<Resp

private ServiceResponse<ManagementLockObjectInner> createOrUpdateAtSubscriptionLevelDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException {
return this.client.restClient().responseBuilderFactory().<ManagementLockObjectInner, CloudException>newInstance(this.client.serializerAdapter())
.register(201, new TypeToken<ManagementLockObjectInner>() { }.getType())
.register(200, new TypeToken<ManagementLockObjectInner>() { }.getType())
.register(201, new TypeToken<ManagementLockObjectInner>() { }.getType())
.registerError(CloudException.class)
.build(response);
}
Expand Down Expand Up @@ -1198,8 +1198,8 @@ public Observable<ServiceResponse<Void>> call(Response<ResponseBody> response) {

private ServiceResponse<Void> deleteAtSubscriptionLevelDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException {
return this.client.restClient().responseBuilderFactory().<Void, CloudException>newInstance(this.client.serializerAdapter())
.register(204, new TypeToken<Void>() { }.getType())
.register(200, new TypeToken<Void>() { }.getType())
.register(204, new TypeToken<Void>() { }.getType())
.registerError(CloudException.class)
.build(response);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class AliasPathType {
private List<String> apiVersions;

/**
* Get the path value.
* Get the path of an alias.
*
* @return the path value
*/
Expand All @@ -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.
Expand All @@ -48,7 +48,7 @@ public AliasPathType withPath(String path) {
}

/**
* Get the apiVersions value.
* Get the API versions.
*
* @return the apiVersions value
*/
Expand All @@ -57,7 +57,7 @@ public List<String> apiVersions() {
}

/**
* Set the apiVersions value.
* Set the API versions.
*
* @param apiVersions the apiVersions value to set
* @return the AliasPathType object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class AliasType {
private List<AliasPathType> paths;

/**
* Get the name value.
* Get the alias name.
*
* @return the name value
*/
Expand All @@ -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.
Expand All @@ -48,7 +48,7 @@ public AliasType withName(String name) {
}

/**
* Get the paths value.
* Get the paths for an alias.
*
* @return the paths value
*/
Expand All @@ -57,7 +57,7 @@ public List<AliasPathType> paths() {
}

/**
* Set the paths value.
* Set the paths for an alias.
*
* @param paths the paths value to set
* @return the AliasType object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class BasicDependency {
private String resourceName;

/**
* Get the id value.
* Get the ID of the dependency.
*
* @return the id value
*/
Expand All @@ -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.
Expand All @@ -53,7 +53,7 @@ public BasicDependency withId(String id) {
}

/**
* Get the resourceType value.
* Get the dependency resource type.
*
* @return the resourceType value
*/
Expand All @@ -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.
Expand All @@ -73,7 +73,7 @@ public BasicDependency withResourceType(String resourceType) {
}

/**
* Get the resourceName value.
* Get the dependency resource name.
*
* @return the resourceName value
*/
Expand All @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand All @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class Dependency {
private String resourceName;

/**
* Get the dependsOn value.
* Get the list of dependencies.
*
* @return the dependsOn value
*/
Expand All @@ -49,7 +49,7 @@ public List<BasicDependency> dependsOn() {
}

/**
* Set the dependsOn value.
* Set the list of dependencies.
*
* @param dependsOn the dependsOn value to set
* @return the Dependency object itself.
Expand All @@ -60,7 +60,7 @@ public Dependency withDependsOn(List<BasicDependency> dependsOn) {
}

/**
* Get the id value.
* Get the ID of the dependency.
*
* @return the id value
*/
Expand All @@ -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.
Expand All @@ -80,7 +80,7 @@ public Dependency withId(String id) {
}

/**
* Get the resourceType value.
* Get the dependency resource type.
*
* @return the resourceType value
*/
Expand All @@ -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.
Expand All @@ -100,7 +100,7 @@ public Dependency withResourceType(String resourceType) {
}

/**
* Get the resourceName value.
* Get the dependency resource name.
*
* @return the resourceName value
*/
Expand All @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class DeploymentExtendedFilter {
private String provisioningState;

/**
* Get the provisioningState value.
* Get the provisioning state.
*
* @return the provisioningState value
*/
Expand All @@ -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.
Expand Down
Loading