index int64 | repo_id string | file_path string | content string |
|---|---|---|---|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/ContinueCreateStackResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link ContinueCreateStackResponseBody} extends {@link TeaModel}
*
* <p>ContinueCreateStackResponseBody</p>
*/
public class ContinueCreateStackResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("StackId")
private String stackId;
private ContinueCreateStackResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.stackId = builder.stackId;
}
public static Builder builder() {
return new Builder();
}
public static ContinueCreateStackResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
public static final class Builder {
private String requestId;
private String stackId;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.stackId = stackId;
return this;
}
public ContinueCreateStackResponseBody build() {
return new ContinueCreateStackResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/CreateChangeSetRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link CreateChangeSetRequest} extends {@link RequestModel}
*
* <p>CreateChangeSetRequest</p>
*/
public class CreateChangeSetRequest extends Request {
@Query
@NameInMap("ChangeSetName")
private String changeSetName;
@Query
@NameInMap("ChangeSetType")
private String changeSetType;
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("Description")
private String description;
@Query
@NameInMap("DisableRollback")
private Boolean disableRollback;
@Query
@NameInMap("NotificationURLs")
private java.util.List < String > notificationURLs;
@Query
@NameInMap("Parallelism")
private Long parallelism;
@Query
@NameInMap("Parameters")
private java.util.List < Parameters> parameters;
@Query
@NameInMap("RamRoleName")
private String ramRoleName;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("ReplacementOption")
private String replacementOption;
@Query
@NameInMap("ResourcesToImport")
private java.util.List < ResourcesToImport> resourcesToImport;
@Query
@NameInMap("StackId")
private String stackId;
@Query
@NameInMap("StackName")
private String stackName;
@Query
@NameInMap("StackPolicyBody")
private String stackPolicyBody;
@Query
@NameInMap("StackPolicyDuringUpdateBody")
private String stackPolicyDuringUpdateBody;
@Query
@NameInMap("StackPolicyDuringUpdateURL")
private String stackPolicyDuringUpdateURL;
@Query
@NameInMap("StackPolicyURL")
private String stackPolicyURL;
@Query
@NameInMap("TemplateBody")
private String templateBody;
@Query
@NameInMap("TemplateId")
private String templateId;
@Query
@NameInMap("TemplateScratchId")
private String templateScratchId;
@Query
@NameInMap("TemplateURL")
private String templateURL;
@Query
@NameInMap("TemplateVersion")
private String templateVersion;
@Query
@NameInMap("TimeoutInMinutes")
private Long timeoutInMinutes;
@Query
@NameInMap("UsePreviousParameters")
private Boolean usePreviousParameters;
private CreateChangeSetRequest(Builder builder) {
super(builder);
this.changeSetName = builder.changeSetName;
this.changeSetType = builder.changeSetType;
this.clientToken = builder.clientToken;
this.description = builder.description;
this.disableRollback = builder.disableRollback;
this.notificationURLs = builder.notificationURLs;
this.parallelism = builder.parallelism;
this.parameters = builder.parameters;
this.ramRoleName = builder.ramRoleName;
this.regionId = builder.regionId;
this.replacementOption = builder.replacementOption;
this.resourcesToImport = builder.resourcesToImport;
this.stackId = builder.stackId;
this.stackName = builder.stackName;
this.stackPolicyBody = builder.stackPolicyBody;
this.stackPolicyDuringUpdateBody = builder.stackPolicyDuringUpdateBody;
this.stackPolicyDuringUpdateURL = builder.stackPolicyDuringUpdateURL;
this.stackPolicyURL = builder.stackPolicyURL;
this.templateBody = builder.templateBody;
this.templateId = builder.templateId;
this.templateScratchId = builder.templateScratchId;
this.templateURL = builder.templateURL;
this.templateVersion = builder.templateVersion;
this.timeoutInMinutes = builder.timeoutInMinutes;
this.usePreviousParameters = builder.usePreviousParameters;
}
public static Builder builder() {
return new Builder();
}
public static CreateChangeSetRequest create() {
return builder().build();
}
/**
* @return changeSetName
*/
public String getChangeSetName() {
return this.changeSetName;
}
/**
* @return changeSetType
*/
public String getChangeSetType() {
return this.changeSetType;
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return disableRollback
*/
public Boolean getDisableRollback() {
return this.disableRollback;
}
/**
* @return notificationURLs
*/
public java.util.List < String > getNotificationURLs() {
return this.notificationURLs;
}
/**
* @return parallelism
*/
public Long getParallelism() {
return this.parallelism;
}
/**
* @return parameters
*/
public java.util.List < Parameters> getParameters() {
return this.parameters;
}
/**
* @return ramRoleName
*/
public String getRamRoleName() {
return this.ramRoleName;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return replacementOption
*/
public String getReplacementOption() {
return this.replacementOption;
}
/**
* @return resourcesToImport
*/
public java.util.List < ResourcesToImport> getResourcesToImport() {
return this.resourcesToImport;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
/**
* @return stackName
*/
public String getStackName() {
return this.stackName;
}
/**
* @return stackPolicyBody
*/
public String getStackPolicyBody() {
return this.stackPolicyBody;
}
/**
* @return stackPolicyDuringUpdateBody
*/
public String getStackPolicyDuringUpdateBody() {
return this.stackPolicyDuringUpdateBody;
}
/**
* @return stackPolicyDuringUpdateURL
*/
public String getStackPolicyDuringUpdateURL() {
return this.stackPolicyDuringUpdateURL;
}
/**
* @return stackPolicyURL
*/
public String getStackPolicyURL() {
return this.stackPolicyURL;
}
/**
* @return templateBody
*/
public String getTemplateBody() {
return this.templateBody;
}
/**
* @return templateId
*/
public String getTemplateId() {
return this.templateId;
}
/**
* @return templateScratchId
*/
public String getTemplateScratchId() {
return this.templateScratchId;
}
/**
* @return templateURL
*/
public String getTemplateURL() {
return this.templateURL;
}
/**
* @return templateVersion
*/
public String getTemplateVersion() {
return this.templateVersion;
}
/**
* @return timeoutInMinutes
*/
public Long getTimeoutInMinutes() {
return this.timeoutInMinutes;
}
/**
* @return usePreviousParameters
*/
public Boolean getUsePreviousParameters() {
return this.usePreviousParameters;
}
public static final class Builder extends Request.Builder<Builder> {
private String changeSetName;
private String changeSetType;
private String clientToken;
private String description;
private Boolean disableRollback;
private java.util.List < String > notificationURLs;
private Long parallelism;
private java.util.List < Parameters> parameters;
private String ramRoleName;
private String regionId;
private String replacementOption;
private java.util.List < ResourcesToImport> resourcesToImport;
private String stackId;
private String stackName;
private String stackPolicyBody;
private String stackPolicyDuringUpdateBody;
private String stackPolicyDuringUpdateURL;
private String stackPolicyURL;
private String templateBody;
private String templateId;
private String templateScratchId;
private String templateURL;
private String templateVersion;
private Long timeoutInMinutes;
private Boolean usePreviousParameters;
/**
* <p>ChangeSetName.</p>
*/
public Builder changeSetName(String changeSetName) {
this.putQueryParameter("ChangeSetName", changeSetName);
this.changeSetName = changeSetName;
return this;
}
/**
* <p>ChangeSetType.</p>
*/
public Builder changeSetType(String changeSetType) {
this.putQueryParameter("ChangeSetType", changeSetType);
this.changeSetType = changeSetType;
return this;
}
/**
* <p>ClientToken.</p>
*/
public Builder clientToken(String clientToken) {
this.putQueryParameter("ClientToken", clientToken);
this.clientToken = clientToken;
return this;
}
/**
* <p>Description.</p>
*/
public Builder description(String description) {
this.putQueryParameter("Description", description);
this.description = description;
return this;
}
/**
* <p>DisableRollback.</p>
*/
public Builder disableRollback(Boolean disableRollback) {
this.putQueryParameter("DisableRollback", disableRollback);
this.disableRollback = disableRollback;
return this;
}
/**
* <p>NotificationURLs.</p>
*/
public Builder notificationURLs(java.util.List < String > notificationURLs) {
this.putQueryParameter("NotificationURLs", notificationURLs);
this.notificationURLs = notificationURLs;
return this;
}
/**
* <p>Parallelism.</p>
*/
public Builder parallelism(Long parallelism) {
this.putQueryParameter("Parallelism", parallelism);
this.parallelism = parallelism;
return this;
}
/**
* <p>Parameters.</p>
*/
public Builder parameters(java.util.List < Parameters> parameters) {
this.putQueryParameter("Parameters", parameters);
this.parameters = parameters;
return this;
}
/**
* <p>RamRoleName.</p>
*/
public Builder ramRoleName(String ramRoleName) {
this.putQueryParameter("RamRoleName", ramRoleName);
this.ramRoleName = ramRoleName;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>ReplacementOption.</p>
*/
public Builder replacementOption(String replacementOption) {
this.putQueryParameter("ReplacementOption", replacementOption);
this.replacementOption = replacementOption;
return this;
}
/**
* <p>ResourcesToImport.</p>
*/
public Builder resourcesToImport(java.util.List < ResourcesToImport> resourcesToImport) {
this.putQueryParameter("ResourcesToImport", resourcesToImport);
this.resourcesToImport = resourcesToImport;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.putQueryParameter("StackId", stackId);
this.stackId = stackId;
return this;
}
/**
* <p>StackName.</p>
*/
public Builder stackName(String stackName) {
this.putQueryParameter("StackName", stackName);
this.stackName = stackName;
return this;
}
/**
* <p>StackPolicyBody.</p>
*/
public Builder stackPolicyBody(String stackPolicyBody) {
this.putQueryParameter("StackPolicyBody", stackPolicyBody);
this.stackPolicyBody = stackPolicyBody;
return this;
}
/**
* <p>StackPolicyDuringUpdateBody.</p>
*/
public Builder stackPolicyDuringUpdateBody(String stackPolicyDuringUpdateBody) {
this.putQueryParameter("StackPolicyDuringUpdateBody", stackPolicyDuringUpdateBody);
this.stackPolicyDuringUpdateBody = stackPolicyDuringUpdateBody;
return this;
}
/**
* <p>StackPolicyDuringUpdateURL.</p>
*/
public Builder stackPolicyDuringUpdateURL(String stackPolicyDuringUpdateURL) {
this.putQueryParameter("StackPolicyDuringUpdateURL", stackPolicyDuringUpdateURL);
this.stackPolicyDuringUpdateURL = stackPolicyDuringUpdateURL;
return this;
}
/**
* <p>StackPolicyURL.</p>
*/
public Builder stackPolicyURL(String stackPolicyURL) {
this.putQueryParameter("StackPolicyURL", stackPolicyURL);
this.stackPolicyURL = stackPolicyURL;
return this;
}
/**
* <p>TemplateBody.</p>
*/
public Builder templateBody(String templateBody) {
this.putQueryParameter("TemplateBody", templateBody);
this.templateBody = templateBody;
return this;
}
/**
* <p>TemplateId.</p>
*/
public Builder templateId(String templateId) {
this.putQueryParameter("TemplateId", templateId);
this.templateId = templateId;
return this;
}
/**
* <p>TemplateScratchId.</p>
*/
public Builder templateScratchId(String templateScratchId) {
this.putQueryParameter("TemplateScratchId", templateScratchId);
this.templateScratchId = templateScratchId;
return this;
}
/**
* <p>TemplateURL.</p>
*/
public Builder templateURL(String templateURL) {
this.putQueryParameter("TemplateURL", templateURL);
this.templateURL = templateURL;
return this;
}
/**
* <p>TemplateVersion.</p>
*/
public Builder templateVersion(String templateVersion) {
this.putQueryParameter("TemplateVersion", templateVersion);
this.templateVersion = templateVersion;
return this;
}
/**
* <p>TimeoutInMinutes.</p>
*/
public Builder timeoutInMinutes(Long timeoutInMinutes) {
this.putQueryParameter("TimeoutInMinutes", timeoutInMinutes);
this.timeoutInMinutes = timeoutInMinutes;
return this;
}
/**
* <p>UsePreviousParameters.</p>
*/
public Builder usePreviousParameters(Boolean usePreviousParameters) {
this.putQueryParameter("UsePreviousParameters", usePreviousParameters);
this.usePreviousParameters = usePreviousParameters;
return this;
}
public CreateChangeSetRequest build() {
return new CreateChangeSetRequest(this);
}
}
public static class Parameters extends TeaModel {
@NameInMap("ParameterKey")
private String parameterKey;
@NameInMap("ParameterValue")
private String parameterValue;
private Parameters(Builder builder) {
this.parameterKey = builder.parameterKey;
this.parameterValue = builder.parameterValue;
}
public static Builder builder() {
return new Builder();
}
public static Parameters create() {
return builder().build();
}
/**
* @return parameterKey
*/
public String getParameterKey() {
return this.parameterKey;
}
/**
* @return parameterValue
*/
public String getParameterValue() {
return this.parameterValue;
}
public static final class Builder {
private String parameterKey;
private String parameterValue;
/**
* <p>ParameterKey.</p>
*/
public Builder parameterKey(String parameterKey) {
this.parameterKey = parameterKey;
return this;
}
/**
* <p>ParameterValue.</p>
*/
public Builder parameterValue(String parameterValue) {
this.parameterValue = parameterValue;
return this;
}
public Parameters build() {
return new Parameters(this);
}
}
}
public static class ResourcesToImport extends TeaModel {
@NameInMap("LogicalResourceId")
private String logicalResourceId;
@NameInMap("ResourceIdentifier")
private String resourceIdentifier;
@NameInMap("ResourceType")
private String resourceType;
private ResourcesToImport(Builder builder) {
this.logicalResourceId = builder.logicalResourceId;
this.resourceIdentifier = builder.resourceIdentifier;
this.resourceType = builder.resourceType;
}
public static Builder builder() {
return new Builder();
}
public static ResourcesToImport create() {
return builder().build();
}
/**
* @return logicalResourceId
*/
public String getLogicalResourceId() {
return this.logicalResourceId;
}
/**
* @return resourceIdentifier
*/
public String getResourceIdentifier() {
return this.resourceIdentifier;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
public static final class Builder {
private String logicalResourceId;
private String resourceIdentifier;
private String resourceType;
/**
* <p>LogicalResourceId.</p>
*/
public Builder logicalResourceId(String logicalResourceId) {
this.logicalResourceId = logicalResourceId;
return this;
}
/**
* <p>ResourceIdentifier.</p>
*/
public Builder resourceIdentifier(String resourceIdentifier) {
this.resourceIdentifier = resourceIdentifier;
return this;
}
/**
* <p>ResourceType.</p>
*/
public Builder resourceType(String resourceType) {
this.resourceType = resourceType;
return this;
}
public ResourcesToImport build() {
return new ResourcesToImport(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/CreateChangeSetResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link CreateChangeSetResponse} extends {@link TeaModel}
*
* <p>CreateChangeSetResponse</p>
*/
public class CreateChangeSetResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private CreateChangeSetResponseBody body;
private CreateChangeSetResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static CreateChangeSetResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public CreateChangeSetResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private CreateChangeSetResponseBody body;
private Builder() {
super();
}
private Builder(CreateChangeSetResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(CreateChangeSetResponseBody body) {
this.body = body;
return this;
}
public CreateChangeSetResponse build() {
return new CreateChangeSetResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/CreateChangeSetResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link CreateChangeSetResponseBody} extends {@link TeaModel}
*
* <p>CreateChangeSetResponseBody</p>
*/
public class CreateChangeSetResponseBody extends TeaModel {
@NameInMap("ChangeSetId")
private String changeSetId;
@NameInMap("RequestId")
private String requestId;
@NameInMap("StackId")
private String stackId;
private CreateChangeSetResponseBody(Builder builder) {
this.changeSetId = builder.changeSetId;
this.requestId = builder.requestId;
this.stackId = builder.stackId;
}
public static Builder builder() {
return new Builder();
}
public static CreateChangeSetResponseBody create() {
return builder().build();
}
/**
* @return changeSetId
*/
public String getChangeSetId() {
return this.changeSetId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
public static final class Builder {
private String changeSetId;
private String requestId;
private String stackId;
/**
* <p>ChangeSetId.</p>
*/
public Builder changeSetId(String changeSetId) {
this.changeSetId = changeSetId;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.stackId = stackId;
return this;
}
public CreateChangeSetResponseBody build() {
return new CreateChangeSetResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/CreateStackGroupRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link CreateStackGroupRequest} extends {@link RequestModel}
*
* <p>CreateStackGroupRequest</p>
*/
public class CreateStackGroupRequest extends Request {
@Query
@NameInMap("AdministrationRoleName")
private String administrationRoleName;
@Query
@NameInMap("AutoDeployment")
private AutoDeployment autoDeployment;
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("Description")
private String description;
@Query
@NameInMap("ExecutionRoleName")
private String executionRoleName;
@Query
@NameInMap("Parameters")
private java.util.List < Parameters> parameters;
@Query
@NameInMap("PermissionModel")
private String permissionModel;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("ResourceGroupId")
private String resourceGroupId;
@Query
@NameInMap("StackGroupName")
private String stackGroupName;
@Query
@NameInMap("TemplateBody")
private String templateBody;
@Query
@NameInMap("TemplateId")
private String templateId;
@Query
@NameInMap("TemplateURL")
private String templateURL;
@Query
@NameInMap("TemplateVersion")
private String templateVersion;
private CreateStackGroupRequest(Builder builder) {
super(builder);
this.administrationRoleName = builder.administrationRoleName;
this.autoDeployment = builder.autoDeployment;
this.clientToken = builder.clientToken;
this.description = builder.description;
this.executionRoleName = builder.executionRoleName;
this.parameters = builder.parameters;
this.permissionModel = builder.permissionModel;
this.regionId = builder.regionId;
this.resourceGroupId = builder.resourceGroupId;
this.stackGroupName = builder.stackGroupName;
this.templateBody = builder.templateBody;
this.templateId = builder.templateId;
this.templateURL = builder.templateURL;
this.templateVersion = builder.templateVersion;
}
public static Builder builder() {
return new Builder();
}
public static CreateStackGroupRequest create() {
return builder().build();
}
/**
* @return administrationRoleName
*/
public String getAdministrationRoleName() {
return this.administrationRoleName;
}
/**
* @return autoDeployment
*/
public AutoDeployment getAutoDeployment() {
return this.autoDeployment;
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return executionRoleName
*/
public String getExecutionRoleName() {
return this.executionRoleName;
}
/**
* @return parameters
*/
public java.util.List < Parameters> getParameters() {
return this.parameters;
}
/**
* @return permissionModel
*/
public String getPermissionModel() {
return this.permissionModel;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return resourceGroupId
*/
public String getResourceGroupId() {
return this.resourceGroupId;
}
/**
* @return stackGroupName
*/
public String getStackGroupName() {
return this.stackGroupName;
}
/**
* @return templateBody
*/
public String getTemplateBody() {
return this.templateBody;
}
/**
* @return templateId
*/
public String getTemplateId() {
return this.templateId;
}
/**
* @return templateURL
*/
public String getTemplateURL() {
return this.templateURL;
}
/**
* @return templateVersion
*/
public String getTemplateVersion() {
return this.templateVersion;
}
public static final class Builder extends Request.Builder<Builder> {
private String administrationRoleName;
private AutoDeployment autoDeployment;
private String clientToken;
private String description;
private String executionRoleName;
private java.util.List < Parameters> parameters;
private String permissionModel;
private String regionId;
private String resourceGroupId;
private String stackGroupName;
private String templateBody;
private String templateId;
private String templateURL;
private String templateVersion;
/**
* <p>AdministrationRoleName.</p>
*/
public Builder administrationRoleName(String administrationRoleName) {
this.putQueryParameter("AdministrationRoleName", administrationRoleName);
this.administrationRoleName = administrationRoleName;
return this;
}
/**
* <p>AutoDeployment.</p>
*/
public Builder autoDeployment(AutoDeployment autoDeployment) {
this.putQueryParameter("AutoDeployment", autoDeployment);
this.autoDeployment = autoDeployment;
return this;
}
/**
* <p>ClientToken.</p>
*/
public Builder clientToken(String clientToken) {
this.putQueryParameter("ClientToken", clientToken);
this.clientToken = clientToken;
return this;
}
/**
* <p>Description.</p>
*/
public Builder description(String description) {
this.putQueryParameter("Description", description);
this.description = description;
return this;
}
/**
* <p>ExecutionRoleName.</p>
*/
public Builder executionRoleName(String executionRoleName) {
this.putQueryParameter("ExecutionRoleName", executionRoleName);
this.executionRoleName = executionRoleName;
return this;
}
/**
* <p>Parameters.</p>
*/
public Builder parameters(java.util.List < Parameters> parameters) {
this.putQueryParameter("Parameters", parameters);
this.parameters = parameters;
return this;
}
/**
* <p>PermissionModel.</p>
*/
public Builder permissionModel(String permissionModel) {
this.putQueryParameter("PermissionModel", permissionModel);
this.permissionModel = permissionModel;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>ResourceGroupId.</p>
*/
public Builder resourceGroupId(String resourceGroupId) {
this.putQueryParameter("ResourceGroupId", resourceGroupId);
this.resourceGroupId = resourceGroupId;
return this;
}
/**
* <p>StackGroupName.</p>
*/
public Builder stackGroupName(String stackGroupName) {
this.putQueryParameter("StackGroupName", stackGroupName);
this.stackGroupName = stackGroupName;
return this;
}
/**
* <p>TemplateBody.</p>
*/
public Builder templateBody(String templateBody) {
this.putQueryParameter("TemplateBody", templateBody);
this.templateBody = templateBody;
return this;
}
/**
* <p>TemplateId.</p>
*/
public Builder templateId(String templateId) {
this.putQueryParameter("TemplateId", templateId);
this.templateId = templateId;
return this;
}
/**
* <p>TemplateURL.</p>
*/
public Builder templateURL(String templateURL) {
this.putQueryParameter("TemplateURL", templateURL);
this.templateURL = templateURL;
return this;
}
/**
* <p>TemplateVersion.</p>
*/
public Builder templateVersion(String templateVersion) {
this.putQueryParameter("TemplateVersion", templateVersion);
this.templateVersion = templateVersion;
return this;
}
public CreateStackGroupRequest build() {
return new CreateStackGroupRequest(this);
}
}
public static class AutoDeployment extends TeaModel {
@NameInMap("Enabled")
private Boolean enabled;
@NameInMap("RetainStacksOnAccountRemoval")
private Boolean retainStacksOnAccountRemoval;
private AutoDeployment(Builder builder) {
this.enabled = builder.enabled;
this.retainStacksOnAccountRemoval = builder.retainStacksOnAccountRemoval;
}
public static Builder builder() {
return new Builder();
}
public static AutoDeployment create() {
return builder().build();
}
/**
* @return enabled
*/
public Boolean getEnabled() {
return this.enabled;
}
/**
* @return retainStacksOnAccountRemoval
*/
public Boolean getRetainStacksOnAccountRemoval() {
return this.retainStacksOnAccountRemoval;
}
public static final class Builder {
private Boolean enabled;
private Boolean retainStacksOnAccountRemoval;
/**
* <p>Enabled.</p>
*/
public Builder enabled(Boolean enabled) {
this.enabled = enabled;
return this;
}
/**
* <p>RetainStacksOnAccountRemoval.</p>
*/
public Builder retainStacksOnAccountRemoval(Boolean retainStacksOnAccountRemoval) {
this.retainStacksOnAccountRemoval = retainStacksOnAccountRemoval;
return this;
}
public AutoDeployment build() {
return new AutoDeployment(this);
}
}
}
public static class Parameters extends TeaModel {
@NameInMap("ParameterKey")
private String parameterKey;
@NameInMap("ParameterValue")
private String parameterValue;
private Parameters(Builder builder) {
this.parameterKey = builder.parameterKey;
this.parameterValue = builder.parameterValue;
}
public static Builder builder() {
return new Builder();
}
public static Parameters create() {
return builder().build();
}
/**
* @return parameterKey
*/
public String getParameterKey() {
return this.parameterKey;
}
/**
* @return parameterValue
*/
public String getParameterValue() {
return this.parameterValue;
}
public static final class Builder {
private String parameterKey;
private String parameterValue;
/**
* <p>ParameterKey.</p>
*/
public Builder parameterKey(String parameterKey) {
this.parameterKey = parameterKey;
return this;
}
/**
* <p>ParameterValue.</p>
*/
public Builder parameterValue(String parameterValue) {
this.parameterValue = parameterValue;
return this;
}
public Parameters build() {
return new Parameters(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/CreateStackGroupResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link CreateStackGroupResponse} extends {@link TeaModel}
*
* <p>CreateStackGroupResponse</p>
*/
public class CreateStackGroupResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private CreateStackGroupResponseBody body;
private CreateStackGroupResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static CreateStackGroupResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public CreateStackGroupResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private CreateStackGroupResponseBody body;
private Builder() {
super();
}
private Builder(CreateStackGroupResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(CreateStackGroupResponseBody body) {
this.body = body;
return this;
}
public CreateStackGroupResponse build() {
return new CreateStackGroupResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/CreateStackGroupResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link CreateStackGroupResponseBody} extends {@link TeaModel}
*
* <p>CreateStackGroupResponseBody</p>
*/
public class CreateStackGroupResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("StackGroupId")
private String stackGroupId;
private CreateStackGroupResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.stackGroupId = builder.stackGroupId;
}
public static Builder builder() {
return new Builder();
}
public static CreateStackGroupResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return stackGroupId
*/
public String getStackGroupId() {
return this.stackGroupId;
}
public static final class Builder {
private String requestId;
private String stackGroupId;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>StackGroupId.</p>
*/
public Builder stackGroupId(String stackGroupId) {
this.stackGroupId = stackGroupId;
return this;
}
public CreateStackGroupResponseBody build() {
return new CreateStackGroupResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/CreateStackInstancesRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link CreateStackInstancesRequest} extends {@link RequestModel}
*
* <p>CreateStackInstancesRequest</p>
*/
public class CreateStackInstancesRequest extends Request {
@Query
@NameInMap("AccountIds")
private java.util.List < String > accountIds;
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("DeploymentTargets")
private DeploymentTargets deploymentTargets;
@Query
@NameInMap("DisableRollback")
private Boolean disableRollback;
@Query
@NameInMap("OperationDescription")
private String operationDescription;
@Query
@NameInMap("OperationPreferences")
private java.util.Map < String, ? > operationPreferences;
@Query
@NameInMap("ParameterOverrides")
private java.util.List < ParameterOverrides> parameterOverrides;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("RegionIds")
private java.util.List < String > regionIds;
@Query
@NameInMap("StackGroupName")
private String stackGroupName;
@Query
@NameInMap("TimeoutInMinutes")
private Long timeoutInMinutes;
private CreateStackInstancesRequest(Builder builder) {
super(builder);
this.accountIds = builder.accountIds;
this.clientToken = builder.clientToken;
this.deploymentTargets = builder.deploymentTargets;
this.disableRollback = builder.disableRollback;
this.operationDescription = builder.operationDescription;
this.operationPreferences = builder.operationPreferences;
this.parameterOverrides = builder.parameterOverrides;
this.regionId = builder.regionId;
this.regionIds = builder.regionIds;
this.stackGroupName = builder.stackGroupName;
this.timeoutInMinutes = builder.timeoutInMinutes;
}
public static Builder builder() {
return new Builder();
}
public static CreateStackInstancesRequest create() {
return builder().build();
}
/**
* @return accountIds
*/
public java.util.List < String > getAccountIds() {
return this.accountIds;
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return deploymentTargets
*/
public DeploymentTargets getDeploymentTargets() {
return this.deploymentTargets;
}
/**
* @return disableRollback
*/
public Boolean getDisableRollback() {
return this.disableRollback;
}
/**
* @return operationDescription
*/
public String getOperationDescription() {
return this.operationDescription;
}
/**
* @return operationPreferences
*/
public java.util.Map < String, ? > getOperationPreferences() {
return this.operationPreferences;
}
/**
* @return parameterOverrides
*/
public java.util.List < ParameterOverrides> getParameterOverrides() {
return this.parameterOverrides;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return regionIds
*/
public java.util.List < String > getRegionIds() {
return this.regionIds;
}
/**
* @return stackGroupName
*/
public String getStackGroupName() {
return this.stackGroupName;
}
/**
* @return timeoutInMinutes
*/
public Long getTimeoutInMinutes() {
return this.timeoutInMinutes;
}
public static final class Builder extends Request.Builder<Builder> {
private java.util.List < String > accountIds;
private String clientToken;
private DeploymentTargets deploymentTargets;
private Boolean disableRollback;
private String operationDescription;
private java.util.Map < String, ? > operationPreferences;
private java.util.List < ParameterOverrides> parameterOverrides;
private String regionId;
private java.util.List < String > regionIds;
private String stackGroupName;
private Long timeoutInMinutes;
/**
* <p>AccountIds.</p>
*/
public Builder accountIds(java.util.List < String > accountIds) {
this.putQueryParameter("AccountIds", accountIds);
this.accountIds = accountIds;
return this;
}
/**
* <p>ClientToken.</p>
*/
public Builder clientToken(String clientToken) {
this.putQueryParameter("ClientToken", clientToken);
this.clientToken = clientToken;
return this;
}
/**
* <p>DeploymentTargets.</p>
*/
public Builder deploymentTargets(DeploymentTargets deploymentTargets) {
this.putQueryParameter("DeploymentTargets", deploymentTargets);
this.deploymentTargets = deploymentTargets;
return this;
}
/**
* <p>DisableRollback.</p>
*/
public Builder disableRollback(Boolean disableRollback) {
this.putQueryParameter("DisableRollback", disableRollback);
this.disableRollback = disableRollback;
return this;
}
/**
* <p>OperationDescription.</p>
*/
public Builder operationDescription(String operationDescription) {
this.putQueryParameter("OperationDescription", operationDescription);
this.operationDescription = operationDescription;
return this;
}
/**
* <p>OperationPreferences.</p>
*/
public Builder operationPreferences(java.util.Map < String, ? > operationPreferences) {
this.putQueryParameter("OperationPreferences", operationPreferences);
this.operationPreferences = operationPreferences;
return this;
}
/**
* <p>ParameterOverrides.</p>
*/
public Builder parameterOverrides(java.util.List < ParameterOverrides> parameterOverrides) {
this.putQueryParameter("ParameterOverrides", parameterOverrides);
this.parameterOverrides = parameterOverrides;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>RegionIds.</p>
*/
public Builder regionIds(java.util.List < String > regionIds) {
this.putQueryParameter("RegionIds", regionIds);
this.regionIds = regionIds;
return this;
}
/**
* <p>StackGroupName.</p>
*/
public Builder stackGroupName(String stackGroupName) {
this.putQueryParameter("StackGroupName", stackGroupName);
this.stackGroupName = stackGroupName;
return this;
}
/**
* <p>TimeoutInMinutes.</p>
*/
public Builder timeoutInMinutes(Long timeoutInMinutes) {
this.putQueryParameter("TimeoutInMinutes", timeoutInMinutes);
this.timeoutInMinutes = timeoutInMinutes;
return this;
}
public CreateStackInstancesRequest build() {
return new CreateStackInstancesRequest(this);
}
}
public static class DeploymentTargets extends TeaModel {
@NameInMap("RdFolderIds")
private java.util.List < String > rdFolderIds;
private DeploymentTargets(Builder builder) {
this.rdFolderIds = builder.rdFolderIds;
}
public static Builder builder() {
return new Builder();
}
public static DeploymentTargets create() {
return builder().build();
}
/**
* @return rdFolderIds
*/
public java.util.List < String > getRdFolderIds() {
return this.rdFolderIds;
}
public static final class Builder {
private java.util.List < String > rdFolderIds;
/**
* <p>RdFolderIds.</p>
*/
public Builder rdFolderIds(java.util.List < String > rdFolderIds) {
this.rdFolderIds = rdFolderIds;
return this;
}
public DeploymentTargets build() {
return new DeploymentTargets(this);
}
}
}
public static class ParameterOverrides extends TeaModel {
@NameInMap("ParameterKey")
private String parameterKey;
@NameInMap("ParameterValue")
private String parameterValue;
private ParameterOverrides(Builder builder) {
this.parameterKey = builder.parameterKey;
this.parameterValue = builder.parameterValue;
}
public static Builder builder() {
return new Builder();
}
public static ParameterOverrides create() {
return builder().build();
}
/**
* @return parameterKey
*/
public String getParameterKey() {
return this.parameterKey;
}
/**
* @return parameterValue
*/
public String getParameterValue() {
return this.parameterValue;
}
public static final class Builder {
private String parameterKey;
private String parameterValue;
/**
* <p>ParameterKey.</p>
*/
public Builder parameterKey(String parameterKey) {
this.parameterKey = parameterKey;
return this;
}
/**
* <p>ParameterValue.</p>
*/
public Builder parameterValue(String parameterValue) {
this.parameterValue = parameterValue;
return this;
}
public ParameterOverrides build() {
return new ParameterOverrides(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/CreateStackInstancesResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link CreateStackInstancesResponse} extends {@link TeaModel}
*
* <p>CreateStackInstancesResponse</p>
*/
public class CreateStackInstancesResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private CreateStackInstancesResponseBody body;
private CreateStackInstancesResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static CreateStackInstancesResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public CreateStackInstancesResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private CreateStackInstancesResponseBody body;
private Builder() {
super();
}
private Builder(CreateStackInstancesResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(CreateStackInstancesResponseBody body) {
this.body = body;
return this;
}
public CreateStackInstancesResponse build() {
return new CreateStackInstancesResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/CreateStackInstancesResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link CreateStackInstancesResponseBody} extends {@link TeaModel}
*
* <p>CreateStackInstancesResponseBody</p>
*/
public class CreateStackInstancesResponseBody extends TeaModel {
@NameInMap("OperationId")
private String operationId;
@NameInMap("RequestId")
private String requestId;
private CreateStackInstancesResponseBody(Builder builder) {
this.operationId = builder.operationId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static CreateStackInstancesResponseBody create() {
return builder().build();
}
/**
* @return operationId
*/
public String getOperationId() {
return this.operationId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String operationId;
private String requestId;
/**
* <p>OperationId.</p>
*/
public Builder operationId(String operationId) {
this.operationId = operationId;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public CreateStackInstancesResponseBody build() {
return new CreateStackInstancesResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/CreateStackRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link CreateStackRequest} extends {@link RequestModel}
*
* <p>CreateStackRequest</p>
*/
public class CreateStackRequest extends Request {
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("CreateOption")
private String createOption;
@Query
@NameInMap("DeletionProtection")
private String deletionProtection;
@Query
@NameInMap("DisableRollback")
private Boolean disableRollback;
@Query
@NameInMap("NotificationURLs")
private java.util.List < String > notificationURLs;
@Query
@NameInMap("Parallelism")
private Long parallelism;
@Query
@NameInMap("Parameters")
private java.util.List < Parameters> parameters;
@Query
@NameInMap("RamRoleName")
private String ramRoleName;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("ResourceGroupId")
private String resourceGroupId;
@Query
@NameInMap("StackName")
private String stackName;
@Query
@NameInMap("StackPolicyBody")
private String stackPolicyBody;
@Query
@NameInMap("StackPolicyURL")
private String stackPolicyURL;
@Query
@NameInMap("Tags")
private java.util.List < Tags> tags;
@Query
@NameInMap("TemplateBody")
private String templateBody;
@Query
@NameInMap("TemplateId")
private String templateId;
@Query
@NameInMap("TemplateScratchId")
private String templateScratchId;
@Query
@NameInMap("TemplateScratchRegionId")
private String templateScratchRegionId;
@Query
@NameInMap("TemplateURL")
private String templateURL;
@Query
@NameInMap("TemplateVersion")
private String templateVersion;
@Query
@NameInMap("TimeoutInMinutes")
private Long timeoutInMinutes;
private CreateStackRequest(Builder builder) {
super(builder);
this.clientToken = builder.clientToken;
this.createOption = builder.createOption;
this.deletionProtection = builder.deletionProtection;
this.disableRollback = builder.disableRollback;
this.notificationURLs = builder.notificationURLs;
this.parallelism = builder.parallelism;
this.parameters = builder.parameters;
this.ramRoleName = builder.ramRoleName;
this.regionId = builder.regionId;
this.resourceGroupId = builder.resourceGroupId;
this.stackName = builder.stackName;
this.stackPolicyBody = builder.stackPolicyBody;
this.stackPolicyURL = builder.stackPolicyURL;
this.tags = builder.tags;
this.templateBody = builder.templateBody;
this.templateId = builder.templateId;
this.templateScratchId = builder.templateScratchId;
this.templateScratchRegionId = builder.templateScratchRegionId;
this.templateURL = builder.templateURL;
this.templateVersion = builder.templateVersion;
this.timeoutInMinutes = builder.timeoutInMinutes;
}
public static Builder builder() {
return new Builder();
}
public static CreateStackRequest create() {
return builder().build();
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return createOption
*/
public String getCreateOption() {
return this.createOption;
}
/**
* @return deletionProtection
*/
public String getDeletionProtection() {
return this.deletionProtection;
}
/**
* @return disableRollback
*/
public Boolean getDisableRollback() {
return this.disableRollback;
}
/**
* @return notificationURLs
*/
public java.util.List < String > getNotificationURLs() {
return this.notificationURLs;
}
/**
* @return parallelism
*/
public Long getParallelism() {
return this.parallelism;
}
/**
* @return parameters
*/
public java.util.List < Parameters> getParameters() {
return this.parameters;
}
/**
* @return ramRoleName
*/
public String getRamRoleName() {
return this.ramRoleName;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return resourceGroupId
*/
public String getResourceGroupId() {
return this.resourceGroupId;
}
/**
* @return stackName
*/
public String getStackName() {
return this.stackName;
}
/**
* @return stackPolicyBody
*/
public String getStackPolicyBody() {
return this.stackPolicyBody;
}
/**
* @return stackPolicyURL
*/
public String getStackPolicyURL() {
return this.stackPolicyURL;
}
/**
* @return tags
*/
public java.util.List < Tags> getTags() {
return this.tags;
}
/**
* @return templateBody
*/
public String getTemplateBody() {
return this.templateBody;
}
/**
* @return templateId
*/
public String getTemplateId() {
return this.templateId;
}
/**
* @return templateScratchId
*/
public String getTemplateScratchId() {
return this.templateScratchId;
}
/**
* @return templateScratchRegionId
*/
public String getTemplateScratchRegionId() {
return this.templateScratchRegionId;
}
/**
* @return templateURL
*/
public String getTemplateURL() {
return this.templateURL;
}
/**
* @return templateVersion
*/
public String getTemplateVersion() {
return this.templateVersion;
}
/**
* @return timeoutInMinutes
*/
public Long getTimeoutInMinutes() {
return this.timeoutInMinutes;
}
public static final class Builder extends Request.Builder<Builder> {
private String clientToken;
private String createOption;
private String deletionProtection;
private Boolean disableRollback;
private java.util.List < String > notificationURLs;
private Long parallelism;
private java.util.List < Parameters> parameters;
private String ramRoleName;
private String regionId;
private String resourceGroupId;
private String stackName;
private String stackPolicyBody;
private String stackPolicyURL;
private java.util.List < Tags> tags;
private String templateBody;
private String templateId;
private String templateScratchId;
private String templateScratchRegionId;
private String templateURL;
private String templateVersion;
private Long timeoutInMinutes;
/**
* <p>ClientToken.</p>
*/
public Builder clientToken(String clientToken) {
this.putQueryParameter("ClientToken", clientToken);
this.clientToken = clientToken;
return this;
}
/**
* <p>CreateOption.</p>
*/
public Builder createOption(String createOption) {
this.putQueryParameter("CreateOption", createOption);
this.createOption = createOption;
return this;
}
/**
* <p>DeletionProtection.</p>
*/
public Builder deletionProtection(String deletionProtection) {
this.putQueryParameter("DeletionProtection", deletionProtection);
this.deletionProtection = deletionProtection;
return this;
}
/**
* <p>DisableRollback.</p>
*/
public Builder disableRollback(Boolean disableRollback) {
this.putQueryParameter("DisableRollback", disableRollback);
this.disableRollback = disableRollback;
return this;
}
/**
* <p>NotificationURLs.</p>
*/
public Builder notificationURLs(java.util.List < String > notificationURLs) {
this.putQueryParameter("NotificationURLs", notificationURLs);
this.notificationURLs = notificationURLs;
return this;
}
/**
* <p>Parallelism.</p>
*/
public Builder parallelism(Long parallelism) {
this.putQueryParameter("Parallelism", parallelism);
this.parallelism = parallelism;
return this;
}
/**
* <p>Parameters.</p>
*/
public Builder parameters(java.util.List < Parameters> parameters) {
this.putQueryParameter("Parameters", parameters);
this.parameters = parameters;
return this;
}
/**
* <p>RamRoleName.</p>
*/
public Builder ramRoleName(String ramRoleName) {
this.putQueryParameter("RamRoleName", ramRoleName);
this.ramRoleName = ramRoleName;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>ResourceGroupId.</p>
*/
public Builder resourceGroupId(String resourceGroupId) {
this.putQueryParameter("ResourceGroupId", resourceGroupId);
this.resourceGroupId = resourceGroupId;
return this;
}
/**
* <p>StackName.</p>
*/
public Builder stackName(String stackName) {
this.putQueryParameter("StackName", stackName);
this.stackName = stackName;
return this;
}
/**
* <p>StackPolicyBody.</p>
*/
public Builder stackPolicyBody(String stackPolicyBody) {
this.putQueryParameter("StackPolicyBody", stackPolicyBody);
this.stackPolicyBody = stackPolicyBody;
return this;
}
/**
* <p>StackPolicyURL.</p>
*/
public Builder stackPolicyURL(String stackPolicyURL) {
this.putQueryParameter("StackPolicyURL", stackPolicyURL);
this.stackPolicyURL = stackPolicyURL;
return this;
}
/**
* <p>Tags.</p>
*/
public Builder tags(java.util.List < Tags> tags) {
this.putQueryParameter("Tags", tags);
this.tags = tags;
return this;
}
/**
* <p>TemplateBody.</p>
*/
public Builder templateBody(String templateBody) {
this.putQueryParameter("TemplateBody", templateBody);
this.templateBody = templateBody;
return this;
}
/**
* <p>TemplateId.</p>
*/
public Builder templateId(String templateId) {
this.putQueryParameter("TemplateId", templateId);
this.templateId = templateId;
return this;
}
/**
* <p>TemplateScratchId.</p>
*/
public Builder templateScratchId(String templateScratchId) {
this.putQueryParameter("TemplateScratchId", templateScratchId);
this.templateScratchId = templateScratchId;
return this;
}
/**
* <p>TemplateScratchRegionId.</p>
*/
public Builder templateScratchRegionId(String templateScratchRegionId) {
this.putQueryParameter("TemplateScratchRegionId", templateScratchRegionId);
this.templateScratchRegionId = templateScratchRegionId;
return this;
}
/**
* <p>TemplateURL.</p>
*/
public Builder templateURL(String templateURL) {
this.putQueryParameter("TemplateURL", templateURL);
this.templateURL = templateURL;
return this;
}
/**
* <p>TemplateVersion.</p>
*/
public Builder templateVersion(String templateVersion) {
this.putQueryParameter("TemplateVersion", templateVersion);
this.templateVersion = templateVersion;
return this;
}
/**
* <p>TimeoutInMinutes.</p>
*/
public Builder timeoutInMinutes(Long timeoutInMinutes) {
this.putQueryParameter("TimeoutInMinutes", timeoutInMinutes);
this.timeoutInMinutes = timeoutInMinutes;
return this;
}
public CreateStackRequest build() {
return new CreateStackRequest(this);
}
}
public static class Parameters extends TeaModel {
@NameInMap("ParameterKey")
private String parameterKey;
@NameInMap("ParameterValue")
private String parameterValue;
private Parameters(Builder builder) {
this.parameterKey = builder.parameterKey;
this.parameterValue = builder.parameterValue;
}
public static Builder builder() {
return new Builder();
}
public static Parameters create() {
return builder().build();
}
/**
* @return parameterKey
*/
public String getParameterKey() {
return this.parameterKey;
}
/**
* @return parameterValue
*/
public String getParameterValue() {
return this.parameterValue;
}
public static final class Builder {
private String parameterKey;
private String parameterValue;
/**
* <p>ParameterKey.</p>
*/
public Builder parameterKey(String parameterKey) {
this.parameterKey = parameterKey;
return this;
}
/**
* <p>ParameterValue.</p>
*/
public Builder parameterValue(String parameterValue) {
this.parameterValue = parameterValue;
return this;
}
public Parameters build() {
return new Parameters(this);
}
}
}
public static class Tags extends TeaModel {
@NameInMap("Key")
private String key;
@NameInMap("Value")
private String value;
private Tags(Builder builder) {
this.key = builder.key;
this.value = builder.value;
}
public static Builder builder() {
return new Builder();
}
public static Tags create() {
return builder().build();
}
/**
* @return key
*/
public String getKey() {
return this.key;
}
/**
* @return value
*/
public String getValue() {
return this.value;
}
public static final class Builder {
private String key;
private String value;
/**
* <p>Key.</p>
*/
public Builder key(String key) {
this.key = key;
return this;
}
/**
* <p>Value.</p>
*/
public Builder value(String value) {
this.value = value;
return this;
}
public Tags build() {
return new Tags(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/CreateStackResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link CreateStackResponse} extends {@link TeaModel}
*
* <p>CreateStackResponse</p>
*/
public class CreateStackResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private CreateStackResponseBody body;
private CreateStackResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static CreateStackResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public CreateStackResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private CreateStackResponseBody body;
private Builder() {
super();
}
private Builder(CreateStackResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(CreateStackResponseBody body) {
this.body = body;
return this;
}
public CreateStackResponse build() {
return new CreateStackResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/CreateStackResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link CreateStackResponseBody} extends {@link TeaModel}
*
* <p>CreateStackResponseBody</p>
*/
public class CreateStackResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("StackId")
private String stackId;
private CreateStackResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.stackId = builder.stackId;
}
public static Builder builder() {
return new Builder();
}
public static CreateStackResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
public static final class Builder {
private String requestId;
private String stackId;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.stackId = stackId;
return this;
}
public CreateStackResponseBody build() {
return new CreateStackResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/CreateTemplateRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link CreateTemplateRequest} extends {@link RequestModel}
*
* <p>CreateTemplateRequest</p>
*/
public class CreateTemplateRequest extends Request {
@Query
@NameInMap("Description")
private String description;
@Query
@NameInMap("ResourceGroupId")
private String resourceGroupId;
@Query
@NameInMap("TemplateBody")
private String templateBody;
@Query
@NameInMap("TemplateName")
private String templateName;
@Query
@NameInMap("TemplateURL")
private String templateURL;
private CreateTemplateRequest(Builder builder) {
super(builder);
this.description = builder.description;
this.resourceGroupId = builder.resourceGroupId;
this.templateBody = builder.templateBody;
this.templateName = builder.templateName;
this.templateURL = builder.templateURL;
}
public static Builder builder() {
return new Builder();
}
public static CreateTemplateRequest create() {
return builder().build();
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return resourceGroupId
*/
public String getResourceGroupId() {
return this.resourceGroupId;
}
/**
* @return templateBody
*/
public String getTemplateBody() {
return this.templateBody;
}
/**
* @return templateName
*/
public String getTemplateName() {
return this.templateName;
}
/**
* @return templateURL
*/
public String getTemplateURL() {
return this.templateURL;
}
public static final class Builder extends Request.Builder<Builder> {
private String description;
private String resourceGroupId;
private String templateBody;
private String templateName;
private String templateURL;
/**
* <p>Description.</p>
*/
public Builder description(String description) {
this.putQueryParameter("Description", description);
this.description = description;
return this;
}
/**
* <p>ResourceGroupId.</p>
*/
public Builder resourceGroupId(String resourceGroupId) {
this.putQueryParameter("ResourceGroupId", resourceGroupId);
this.resourceGroupId = resourceGroupId;
return this;
}
/**
* <p>TemplateBody.</p>
*/
public Builder templateBody(String templateBody) {
this.putQueryParameter("TemplateBody", templateBody);
this.templateBody = templateBody;
return this;
}
/**
* <p>TemplateName.</p>
*/
public Builder templateName(String templateName) {
this.putQueryParameter("TemplateName", templateName);
this.templateName = templateName;
return this;
}
/**
* <p>TemplateURL.</p>
*/
public Builder templateURL(String templateURL) {
this.putQueryParameter("TemplateURL", templateURL);
this.templateURL = templateURL;
return this;
}
public CreateTemplateRequest build() {
return new CreateTemplateRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/CreateTemplateResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link CreateTemplateResponse} extends {@link TeaModel}
*
* <p>CreateTemplateResponse</p>
*/
public class CreateTemplateResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private CreateTemplateResponseBody body;
private CreateTemplateResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static CreateTemplateResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public CreateTemplateResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private CreateTemplateResponseBody body;
private Builder() {
super();
}
private Builder(CreateTemplateResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(CreateTemplateResponseBody body) {
this.body = body;
return this;
}
public CreateTemplateResponse build() {
return new CreateTemplateResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/CreateTemplateResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link CreateTemplateResponseBody} extends {@link TeaModel}
*
* <p>CreateTemplateResponseBody</p>
*/
public class CreateTemplateResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("TemplateId")
private String templateId;
private CreateTemplateResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.templateId = builder.templateId;
}
public static Builder builder() {
return new Builder();
}
public static CreateTemplateResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return templateId
*/
public String getTemplateId() {
return this.templateId;
}
public static final class Builder {
private String requestId;
private String templateId;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>TemplateId.</p>
*/
public Builder templateId(String templateId) {
this.templateId = templateId;
return this;
}
public CreateTemplateResponseBody build() {
return new CreateTemplateResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/CreateTemplateScratchRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link CreateTemplateScratchRequest} extends {@link RequestModel}
*
* <p>CreateTemplateScratchRequest</p>
*/
public class CreateTemplateScratchRequest extends Request {
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("Description")
private String description;
@Query
@NameInMap("ExecutionMode")
private String executionMode;
@Query
@NameInMap("LogicalIdStrategy")
private String logicalIdStrategy;
@Query
@NameInMap("PreferenceParameters")
private java.util.List < PreferenceParameters> preferenceParameters;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("SourceResourceGroup")
private SourceResourceGroup sourceResourceGroup;
@Query
@NameInMap("SourceResources")
private java.util.List < SourceResources> sourceResources;
@Query
@NameInMap("SourceTag")
private SourceTag sourceTag;
@Query
@NameInMap("TemplateScratchType")
private String templateScratchType;
private CreateTemplateScratchRequest(Builder builder) {
super(builder);
this.clientToken = builder.clientToken;
this.description = builder.description;
this.executionMode = builder.executionMode;
this.logicalIdStrategy = builder.logicalIdStrategy;
this.preferenceParameters = builder.preferenceParameters;
this.regionId = builder.regionId;
this.sourceResourceGroup = builder.sourceResourceGroup;
this.sourceResources = builder.sourceResources;
this.sourceTag = builder.sourceTag;
this.templateScratchType = builder.templateScratchType;
}
public static Builder builder() {
return new Builder();
}
public static CreateTemplateScratchRequest create() {
return builder().build();
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return executionMode
*/
public String getExecutionMode() {
return this.executionMode;
}
/**
* @return logicalIdStrategy
*/
public String getLogicalIdStrategy() {
return this.logicalIdStrategy;
}
/**
* @return preferenceParameters
*/
public java.util.List < PreferenceParameters> getPreferenceParameters() {
return this.preferenceParameters;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return sourceResourceGroup
*/
public SourceResourceGroup getSourceResourceGroup() {
return this.sourceResourceGroup;
}
/**
* @return sourceResources
*/
public java.util.List < SourceResources> getSourceResources() {
return this.sourceResources;
}
/**
* @return sourceTag
*/
public SourceTag getSourceTag() {
return this.sourceTag;
}
/**
* @return templateScratchType
*/
public String getTemplateScratchType() {
return this.templateScratchType;
}
public static final class Builder extends Request.Builder<Builder> {
private String clientToken;
private String description;
private String executionMode;
private String logicalIdStrategy;
private java.util.List < PreferenceParameters> preferenceParameters;
private String regionId;
private SourceResourceGroup sourceResourceGroup;
private java.util.List < SourceResources> sourceResources;
private SourceTag sourceTag;
private String templateScratchType;
/**
* <p>ClientToken.</p>
*/
public Builder clientToken(String clientToken) {
this.putQueryParameter("ClientToken", clientToken);
this.clientToken = clientToken;
return this;
}
/**
* <p>Description.</p>
*/
public Builder description(String description) {
this.putQueryParameter("Description", description);
this.description = description;
return this;
}
/**
* <p>ExecutionMode.</p>
*/
public Builder executionMode(String executionMode) {
this.putQueryParameter("ExecutionMode", executionMode);
this.executionMode = executionMode;
return this;
}
/**
* <p>LogicalIdStrategy.</p>
*/
public Builder logicalIdStrategy(String logicalIdStrategy) {
this.putQueryParameter("LogicalIdStrategy", logicalIdStrategy);
this.logicalIdStrategy = logicalIdStrategy;
return this;
}
/**
* <p>PreferenceParameters.</p>
*/
public Builder preferenceParameters(java.util.List < PreferenceParameters> preferenceParameters) {
this.putQueryParameter("PreferenceParameters", preferenceParameters);
this.preferenceParameters = preferenceParameters;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>SourceResourceGroup.</p>
*/
public Builder sourceResourceGroup(SourceResourceGroup sourceResourceGroup) {
this.putQueryParameter("SourceResourceGroup", sourceResourceGroup);
this.sourceResourceGroup = sourceResourceGroup;
return this;
}
/**
* <p>SourceResources.</p>
*/
public Builder sourceResources(java.util.List < SourceResources> sourceResources) {
this.putQueryParameter("SourceResources", sourceResources);
this.sourceResources = sourceResources;
return this;
}
/**
* <p>SourceTag.</p>
*/
public Builder sourceTag(SourceTag sourceTag) {
this.putQueryParameter("SourceTag", sourceTag);
this.sourceTag = sourceTag;
return this;
}
/**
* <p>TemplateScratchType.</p>
*/
public Builder templateScratchType(String templateScratchType) {
this.putQueryParameter("TemplateScratchType", templateScratchType);
this.templateScratchType = templateScratchType;
return this;
}
public CreateTemplateScratchRequest build() {
return new CreateTemplateScratchRequest(this);
}
}
public static class PreferenceParameters extends TeaModel {
@NameInMap("ParameterKey")
private String parameterKey;
@NameInMap("ParameterValue")
private String parameterValue;
private PreferenceParameters(Builder builder) {
this.parameterKey = builder.parameterKey;
this.parameterValue = builder.parameterValue;
}
public static Builder builder() {
return new Builder();
}
public static PreferenceParameters create() {
return builder().build();
}
/**
* @return parameterKey
*/
public String getParameterKey() {
return this.parameterKey;
}
/**
* @return parameterValue
*/
public String getParameterValue() {
return this.parameterValue;
}
public static final class Builder {
private String parameterKey;
private String parameterValue;
/**
* <p>ParameterKey.</p>
*/
public Builder parameterKey(String parameterKey) {
this.parameterKey = parameterKey;
return this;
}
/**
* <p>ParameterValue.</p>
*/
public Builder parameterValue(String parameterValue) {
this.parameterValue = parameterValue;
return this;
}
public PreferenceParameters build() {
return new PreferenceParameters(this);
}
}
}
public static class SourceResourceGroup extends TeaModel {
@NameInMap("ResourceGroupId")
private String resourceGroupId;
@NameInMap("ResourceTypeFilter")
private java.util.List < String > resourceTypeFilter;
private SourceResourceGroup(Builder builder) {
this.resourceGroupId = builder.resourceGroupId;
this.resourceTypeFilter = builder.resourceTypeFilter;
}
public static Builder builder() {
return new Builder();
}
public static SourceResourceGroup create() {
return builder().build();
}
/**
* @return resourceGroupId
*/
public String getResourceGroupId() {
return this.resourceGroupId;
}
/**
* @return resourceTypeFilter
*/
public java.util.List < String > getResourceTypeFilter() {
return this.resourceTypeFilter;
}
public static final class Builder {
private String resourceGroupId;
private java.util.List < String > resourceTypeFilter;
/**
* <p>ResourceGroupId.</p>
*/
public Builder resourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
return this;
}
/**
* <p>ResourceTypeFilter.</p>
*/
public Builder resourceTypeFilter(java.util.List < String > resourceTypeFilter) {
this.resourceTypeFilter = resourceTypeFilter;
return this;
}
public SourceResourceGroup build() {
return new SourceResourceGroup(this);
}
}
}
public static class SourceResources extends TeaModel {
@NameInMap("ResourceId")
private String resourceId;
@NameInMap("ResourceType")
private String resourceType;
private SourceResources(Builder builder) {
this.resourceId = builder.resourceId;
this.resourceType = builder.resourceType;
}
public static Builder builder() {
return new Builder();
}
public static SourceResources create() {
return builder().build();
}
/**
* @return resourceId
*/
public String getResourceId() {
return this.resourceId;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
public static final class Builder {
private String resourceId;
private String resourceType;
/**
* <p>ResourceId.</p>
*/
public Builder resourceId(String resourceId) {
this.resourceId = resourceId;
return this;
}
/**
* <p>ResourceType.</p>
*/
public Builder resourceType(String resourceType) {
this.resourceType = resourceType;
return this;
}
public SourceResources build() {
return new SourceResources(this);
}
}
}
public static class SourceTag extends TeaModel {
@NameInMap("ResourceTags")
private java.util.Map < String, ? > resourceTags;
@NameInMap("ResourceTypeFilter")
private java.util.List < String > resourceTypeFilter;
private SourceTag(Builder builder) {
this.resourceTags = builder.resourceTags;
this.resourceTypeFilter = builder.resourceTypeFilter;
}
public static Builder builder() {
return new Builder();
}
public static SourceTag create() {
return builder().build();
}
/**
* @return resourceTags
*/
public java.util.Map < String, ? > getResourceTags() {
return this.resourceTags;
}
/**
* @return resourceTypeFilter
*/
public java.util.List < String > getResourceTypeFilter() {
return this.resourceTypeFilter;
}
public static final class Builder {
private java.util.Map < String, ? > resourceTags;
private java.util.List < String > resourceTypeFilter;
/**
* <p>ResourceTags.</p>
*/
public Builder resourceTags(java.util.Map < String, ? > resourceTags) {
this.resourceTags = resourceTags;
return this;
}
/**
* <p>ResourceTypeFilter.</p>
*/
public Builder resourceTypeFilter(java.util.List < String > resourceTypeFilter) {
this.resourceTypeFilter = resourceTypeFilter;
return this;
}
public SourceTag build() {
return new SourceTag(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/CreateTemplateScratchResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link CreateTemplateScratchResponse} extends {@link TeaModel}
*
* <p>CreateTemplateScratchResponse</p>
*/
public class CreateTemplateScratchResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private CreateTemplateScratchResponseBody body;
private CreateTemplateScratchResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static CreateTemplateScratchResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public CreateTemplateScratchResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private CreateTemplateScratchResponseBody body;
private Builder() {
super();
}
private Builder(CreateTemplateScratchResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(CreateTemplateScratchResponseBody body) {
this.body = body;
return this;
}
public CreateTemplateScratchResponse build() {
return new CreateTemplateScratchResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/CreateTemplateScratchResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link CreateTemplateScratchResponseBody} extends {@link TeaModel}
*
* <p>CreateTemplateScratchResponseBody</p>
*/
public class CreateTemplateScratchResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("TemplateScratchId")
private String templateScratchId;
private CreateTemplateScratchResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.templateScratchId = builder.templateScratchId;
}
public static Builder builder() {
return new Builder();
}
public static CreateTemplateScratchResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return templateScratchId
*/
public String getTemplateScratchId() {
return this.templateScratchId;
}
public static final class Builder {
private String requestId;
private String templateScratchId;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>TemplateScratchId.</p>
*/
public Builder templateScratchId(String templateScratchId) {
this.templateScratchId = templateScratchId;
return this;
}
public CreateTemplateScratchResponseBody build() {
return new CreateTemplateScratchResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DeleteChangeSetRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DeleteChangeSetRequest} extends {@link RequestModel}
*
* <p>DeleteChangeSetRequest</p>
*/
public class DeleteChangeSetRequest extends Request {
@Query
@NameInMap("ChangeSetId")
private String changeSetId;
@Query
@NameInMap("RegionId")
private String regionId;
private DeleteChangeSetRequest(Builder builder) {
super(builder);
this.changeSetId = builder.changeSetId;
this.regionId = builder.regionId;
}
public static Builder builder() {
return new Builder();
}
public static DeleteChangeSetRequest create() {
return builder().build();
}
/**
* @return changeSetId
*/
public String getChangeSetId() {
return this.changeSetId;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
public static final class Builder extends Request.Builder<Builder> {
private String changeSetId;
private String regionId;
/**
* <p>ChangeSetId.</p>
*/
public Builder changeSetId(String changeSetId) {
this.putQueryParameter("ChangeSetId", changeSetId);
this.changeSetId = changeSetId;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
public DeleteChangeSetRequest build() {
return new DeleteChangeSetRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DeleteChangeSetResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DeleteChangeSetResponse} extends {@link TeaModel}
*
* <p>DeleteChangeSetResponse</p>
*/
public class DeleteChangeSetResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private DeleteChangeSetResponseBody body;
private DeleteChangeSetResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static DeleteChangeSetResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public DeleteChangeSetResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private DeleteChangeSetResponseBody body;
private Builder() {
super();
}
private Builder(DeleteChangeSetResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(DeleteChangeSetResponseBody body) {
this.body = body;
return this;
}
public DeleteChangeSetResponse build() {
return new DeleteChangeSetResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DeleteChangeSetResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DeleteChangeSetResponseBody} extends {@link TeaModel}
*
* <p>DeleteChangeSetResponseBody</p>
*/
public class DeleteChangeSetResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
private DeleteChangeSetResponseBody(Builder builder) {
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static DeleteChangeSetResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String requestId;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public DeleteChangeSetResponseBody build() {
return new DeleteChangeSetResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DeleteStackGroupRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DeleteStackGroupRequest} extends {@link RequestModel}
*
* <p>DeleteStackGroupRequest</p>
*/
public class DeleteStackGroupRequest extends Request {
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("StackGroupName")
private String stackGroupName;
private DeleteStackGroupRequest(Builder builder) {
super(builder);
this.regionId = builder.regionId;
this.stackGroupName = builder.stackGroupName;
}
public static Builder builder() {
return new Builder();
}
public static DeleteStackGroupRequest create() {
return builder().build();
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return stackGroupName
*/
public String getStackGroupName() {
return this.stackGroupName;
}
public static final class Builder extends Request.Builder<Builder> {
private String regionId;
private String stackGroupName;
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>StackGroupName.</p>
*/
public Builder stackGroupName(String stackGroupName) {
this.putQueryParameter("StackGroupName", stackGroupName);
this.stackGroupName = stackGroupName;
return this;
}
public DeleteStackGroupRequest build() {
return new DeleteStackGroupRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DeleteStackGroupResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DeleteStackGroupResponse} extends {@link TeaModel}
*
* <p>DeleteStackGroupResponse</p>
*/
public class DeleteStackGroupResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private DeleteStackGroupResponseBody body;
private DeleteStackGroupResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static DeleteStackGroupResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public DeleteStackGroupResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private DeleteStackGroupResponseBody body;
private Builder() {
super();
}
private Builder(DeleteStackGroupResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(DeleteStackGroupResponseBody body) {
this.body = body;
return this;
}
public DeleteStackGroupResponse build() {
return new DeleteStackGroupResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DeleteStackGroupResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DeleteStackGroupResponseBody} extends {@link TeaModel}
*
* <p>DeleteStackGroupResponseBody</p>
*/
public class DeleteStackGroupResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
private DeleteStackGroupResponseBody(Builder builder) {
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static DeleteStackGroupResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String requestId;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public DeleteStackGroupResponseBody build() {
return new DeleteStackGroupResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DeleteStackInstancesRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DeleteStackInstancesRequest} extends {@link RequestModel}
*
* <p>DeleteStackInstancesRequest</p>
*/
public class DeleteStackInstancesRequest extends Request {
@Query
@NameInMap("AccountIds")
private java.util.List < String > accountIds;
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("DeploymentTargets")
private DeploymentTargets deploymentTargets;
@Query
@NameInMap("OperationDescription")
private String operationDescription;
@Query
@NameInMap("OperationPreferences")
private java.util.Map < String, ? > operationPreferences;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("RegionIds")
private java.util.List < String > regionIds;
@Query
@NameInMap("RetainStacks")
private Boolean retainStacks;
@Query
@NameInMap("StackGroupName")
private String stackGroupName;
private DeleteStackInstancesRequest(Builder builder) {
super(builder);
this.accountIds = builder.accountIds;
this.clientToken = builder.clientToken;
this.deploymentTargets = builder.deploymentTargets;
this.operationDescription = builder.operationDescription;
this.operationPreferences = builder.operationPreferences;
this.regionId = builder.regionId;
this.regionIds = builder.regionIds;
this.retainStacks = builder.retainStacks;
this.stackGroupName = builder.stackGroupName;
}
public static Builder builder() {
return new Builder();
}
public static DeleteStackInstancesRequest create() {
return builder().build();
}
/**
* @return accountIds
*/
public java.util.List < String > getAccountIds() {
return this.accountIds;
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return deploymentTargets
*/
public DeploymentTargets getDeploymentTargets() {
return this.deploymentTargets;
}
/**
* @return operationDescription
*/
public String getOperationDescription() {
return this.operationDescription;
}
/**
* @return operationPreferences
*/
public java.util.Map < String, ? > getOperationPreferences() {
return this.operationPreferences;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return regionIds
*/
public java.util.List < String > getRegionIds() {
return this.regionIds;
}
/**
* @return retainStacks
*/
public Boolean getRetainStacks() {
return this.retainStacks;
}
/**
* @return stackGroupName
*/
public String getStackGroupName() {
return this.stackGroupName;
}
public static final class Builder extends Request.Builder<Builder> {
private java.util.List < String > accountIds;
private String clientToken;
private DeploymentTargets deploymentTargets;
private String operationDescription;
private java.util.Map < String, ? > operationPreferences;
private String regionId;
private java.util.List < String > regionIds;
private Boolean retainStacks;
private String stackGroupName;
/**
* <p>AccountIds.</p>
*/
public Builder accountIds(java.util.List < String > accountIds) {
this.putQueryParameter("AccountIds", accountIds);
this.accountIds = accountIds;
return this;
}
/**
* <p>ClientToken.</p>
*/
public Builder clientToken(String clientToken) {
this.putQueryParameter("ClientToken", clientToken);
this.clientToken = clientToken;
return this;
}
/**
* <p>DeploymentTargets.</p>
*/
public Builder deploymentTargets(DeploymentTargets deploymentTargets) {
this.putQueryParameter("DeploymentTargets", deploymentTargets);
this.deploymentTargets = deploymentTargets;
return this;
}
/**
* <p>OperationDescription.</p>
*/
public Builder operationDescription(String operationDescription) {
this.putQueryParameter("OperationDescription", operationDescription);
this.operationDescription = operationDescription;
return this;
}
/**
* <p>OperationPreferences.</p>
*/
public Builder operationPreferences(java.util.Map < String, ? > operationPreferences) {
this.putQueryParameter("OperationPreferences", operationPreferences);
this.operationPreferences = operationPreferences;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>RegionIds.</p>
*/
public Builder regionIds(java.util.List < String > regionIds) {
this.putQueryParameter("RegionIds", regionIds);
this.regionIds = regionIds;
return this;
}
/**
* <p>RetainStacks.</p>
*/
public Builder retainStacks(Boolean retainStacks) {
this.putQueryParameter("RetainStacks", retainStacks);
this.retainStacks = retainStacks;
return this;
}
/**
* <p>StackGroupName.</p>
*/
public Builder stackGroupName(String stackGroupName) {
this.putQueryParameter("StackGroupName", stackGroupName);
this.stackGroupName = stackGroupName;
return this;
}
public DeleteStackInstancesRequest build() {
return new DeleteStackInstancesRequest(this);
}
}
public static class DeploymentTargets extends TeaModel {
@NameInMap("RdFolderIds")
private java.util.List < String > rdFolderIds;
private DeploymentTargets(Builder builder) {
this.rdFolderIds = builder.rdFolderIds;
}
public static Builder builder() {
return new Builder();
}
public static DeploymentTargets create() {
return builder().build();
}
/**
* @return rdFolderIds
*/
public java.util.List < String > getRdFolderIds() {
return this.rdFolderIds;
}
public static final class Builder {
private java.util.List < String > rdFolderIds;
/**
* <p>RdFolderIds.</p>
*/
public Builder rdFolderIds(java.util.List < String > rdFolderIds) {
this.rdFolderIds = rdFolderIds;
return this;
}
public DeploymentTargets build() {
return new DeploymentTargets(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DeleteStackInstancesResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DeleteStackInstancesResponse} extends {@link TeaModel}
*
* <p>DeleteStackInstancesResponse</p>
*/
public class DeleteStackInstancesResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private DeleteStackInstancesResponseBody body;
private DeleteStackInstancesResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static DeleteStackInstancesResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public DeleteStackInstancesResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private DeleteStackInstancesResponseBody body;
private Builder() {
super();
}
private Builder(DeleteStackInstancesResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(DeleteStackInstancesResponseBody body) {
this.body = body;
return this;
}
public DeleteStackInstancesResponse build() {
return new DeleteStackInstancesResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DeleteStackInstancesResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DeleteStackInstancesResponseBody} extends {@link TeaModel}
*
* <p>DeleteStackInstancesResponseBody</p>
*/
public class DeleteStackInstancesResponseBody extends TeaModel {
@NameInMap("OperationId")
private String operationId;
@NameInMap("RequestId")
private String requestId;
private DeleteStackInstancesResponseBody(Builder builder) {
this.operationId = builder.operationId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static DeleteStackInstancesResponseBody create() {
return builder().build();
}
/**
* @return operationId
*/
public String getOperationId() {
return this.operationId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String operationId;
private String requestId;
/**
* <p>OperationId.</p>
*/
public Builder operationId(String operationId) {
this.operationId = operationId;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public DeleteStackInstancesResponseBody build() {
return new DeleteStackInstancesResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DeleteStackRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DeleteStackRequest} extends {@link RequestModel}
*
* <p>DeleteStackRequest</p>
*/
public class DeleteStackRequest extends Request {
@Query
@NameInMap("RamRoleName")
private String ramRoleName;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("RetainAllResources")
private Boolean retainAllResources;
@Query
@NameInMap("RetainResources")
private java.util.List < String > retainResources;
@Query
@NameInMap("StackId")
private String stackId;
private DeleteStackRequest(Builder builder) {
super(builder);
this.ramRoleName = builder.ramRoleName;
this.regionId = builder.regionId;
this.retainAllResources = builder.retainAllResources;
this.retainResources = builder.retainResources;
this.stackId = builder.stackId;
}
public static Builder builder() {
return new Builder();
}
public static DeleteStackRequest create() {
return builder().build();
}
/**
* @return ramRoleName
*/
public String getRamRoleName() {
return this.ramRoleName;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return retainAllResources
*/
public Boolean getRetainAllResources() {
return this.retainAllResources;
}
/**
* @return retainResources
*/
public java.util.List < String > getRetainResources() {
return this.retainResources;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
public static final class Builder extends Request.Builder<Builder> {
private String ramRoleName;
private String regionId;
private Boolean retainAllResources;
private java.util.List < String > retainResources;
private String stackId;
/**
* <p>RamRoleName.</p>
*/
public Builder ramRoleName(String ramRoleName) {
this.putQueryParameter("RamRoleName", ramRoleName);
this.ramRoleName = ramRoleName;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>RetainAllResources.</p>
*/
public Builder retainAllResources(Boolean retainAllResources) {
this.putQueryParameter("RetainAllResources", retainAllResources);
this.retainAllResources = retainAllResources;
return this;
}
/**
* <p>RetainResources.</p>
*/
public Builder retainResources(java.util.List < String > retainResources) {
this.putQueryParameter("RetainResources", retainResources);
this.retainResources = retainResources;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.putQueryParameter("StackId", stackId);
this.stackId = stackId;
return this;
}
public DeleteStackRequest build() {
return new DeleteStackRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DeleteStackResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DeleteStackResponse} extends {@link TeaModel}
*
* <p>DeleteStackResponse</p>
*/
public class DeleteStackResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private DeleteStackResponseBody body;
private DeleteStackResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static DeleteStackResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public DeleteStackResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private DeleteStackResponseBody body;
private Builder() {
super();
}
private Builder(DeleteStackResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(DeleteStackResponseBody body) {
this.body = body;
return this;
}
public DeleteStackResponse build() {
return new DeleteStackResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DeleteStackResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DeleteStackResponseBody} extends {@link TeaModel}
*
* <p>DeleteStackResponseBody</p>
*/
public class DeleteStackResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
private DeleteStackResponseBody(Builder builder) {
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static DeleteStackResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String requestId;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public DeleteStackResponseBody build() {
return new DeleteStackResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DeleteTemplateRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DeleteTemplateRequest} extends {@link RequestModel}
*
* <p>DeleteTemplateRequest</p>
*/
public class DeleteTemplateRequest extends Request {
@Query
@NameInMap("TemplateId")
private String templateId;
private DeleteTemplateRequest(Builder builder) {
super(builder);
this.templateId = builder.templateId;
}
public static Builder builder() {
return new Builder();
}
public static DeleteTemplateRequest create() {
return builder().build();
}
/**
* @return templateId
*/
public String getTemplateId() {
return this.templateId;
}
public static final class Builder extends Request.Builder<Builder> {
private String templateId;
/**
* <p>TemplateId.</p>
*/
public Builder templateId(String templateId) {
this.putQueryParameter("TemplateId", templateId);
this.templateId = templateId;
return this;
}
public DeleteTemplateRequest build() {
return new DeleteTemplateRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DeleteTemplateResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DeleteTemplateResponse} extends {@link TeaModel}
*
* <p>DeleteTemplateResponse</p>
*/
public class DeleteTemplateResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private DeleteTemplateResponseBody body;
private DeleteTemplateResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static DeleteTemplateResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public DeleteTemplateResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private DeleteTemplateResponseBody body;
private Builder() {
super();
}
private Builder(DeleteTemplateResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(DeleteTemplateResponseBody body) {
this.body = body;
return this;
}
public DeleteTemplateResponse build() {
return new DeleteTemplateResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DeleteTemplateResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DeleteTemplateResponseBody} extends {@link TeaModel}
*
* <p>DeleteTemplateResponseBody</p>
*/
public class DeleteTemplateResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
private DeleteTemplateResponseBody(Builder builder) {
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static DeleteTemplateResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String requestId;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public DeleteTemplateResponseBody build() {
return new DeleteTemplateResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DeleteTemplateScratchRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DeleteTemplateScratchRequest} extends {@link RequestModel}
*
* <p>DeleteTemplateScratchRequest</p>
*/
public class DeleteTemplateScratchRequest extends Request {
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("TemplateScratchId")
private String templateScratchId;
private DeleteTemplateScratchRequest(Builder builder) {
super(builder);
this.regionId = builder.regionId;
this.templateScratchId = builder.templateScratchId;
}
public static Builder builder() {
return new Builder();
}
public static DeleteTemplateScratchRequest create() {
return builder().build();
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return templateScratchId
*/
public String getTemplateScratchId() {
return this.templateScratchId;
}
public static final class Builder extends Request.Builder<Builder> {
private String regionId;
private String templateScratchId;
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>TemplateScratchId.</p>
*/
public Builder templateScratchId(String templateScratchId) {
this.putQueryParameter("TemplateScratchId", templateScratchId);
this.templateScratchId = templateScratchId;
return this;
}
public DeleteTemplateScratchRequest build() {
return new DeleteTemplateScratchRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DeleteTemplateScratchResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DeleteTemplateScratchResponse} extends {@link TeaModel}
*
* <p>DeleteTemplateScratchResponse</p>
*/
public class DeleteTemplateScratchResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private DeleteTemplateScratchResponseBody body;
private DeleteTemplateScratchResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static DeleteTemplateScratchResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public DeleteTemplateScratchResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private DeleteTemplateScratchResponseBody body;
private Builder() {
super();
}
private Builder(DeleteTemplateScratchResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(DeleteTemplateScratchResponseBody body) {
this.body = body;
return this;
}
public DeleteTemplateScratchResponse build() {
return new DeleteTemplateScratchResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DeleteTemplateScratchResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DeleteTemplateScratchResponseBody} extends {@link TeaModel}
*
* <p>DeleteTemplateScratchResponseBody</p>
*/
public class DeleteTemplateScratchResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
private DeleteTemplateScratchResponseBody(Builder builder) {
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static DeleteTemplateScratchResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String requestId;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public DeleteTemplateScratchResponseBody build() {
return new DeleteTemplateScratchResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DescribeRegionsRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DescribeRegionsRequest} extends {@link RequestModel}
*
* <p>DescribeRegionsRequest</p>
*/
public class DescribeRegionsRequest extends Request {
@Query
@NameInMap("AcceptLanguage")
private String acceptLanguage;
private DescribeRegionsRequest(Builder builder) {
super(builder);
this.acceptLanguage = builder.acceptLanguage;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRegionsRequest create() {
return builder().build();
}
/**
* @return acceptLanguage
*/
public String getAcceptLanguage() {
return this.acceptLanguage;
}
public static final class Builder extends Request.Builder<Builder> {
private String acceptLanguage;
/**
* <p>AcceptLanguage.</p>
*/
public Builder acceptLanguage(String acceptLanguage) {
this.putQueryParameter("AcceptLanguage", acceptLanguage);
this.acceptLanguage = acceptLanguage;
return this;
}
public DescribeRegionsRequest build() {
return new DescribeRegionsRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DescribeRegionsResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DescribeRegionsResponse} extends {@link TeaModel}
*
* <p>DescribeRegionsResponse</p>
*/
public class DescribeRegionsResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private DescribeRegionsResponseBody body;
private DescribeRegionsResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRegionsResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public DescribeRegionsResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private DescribeRegionsResponseBody body;
private Builder() {
super();
}
private Builder(DescribeRegionsResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(DescribeRegionsResponseBody body) {
this.body = body;
return this;
}
public DescribeRegionsResponse build() {
return new DescribeRegionsResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DescribeRegionsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DescribeRegionsResponseBody} extends {@link TeaModel}
*
* <p>DescribeRegionsResponseBody</p>
*/
public class DescribeRegionsResponseBody extends TeaModel {
@NameInMap("Regions")
private java.util.List < Regions> regions;
@NameInMap("RequestId")
private String requestId;
private DescribeRegionsResponseBody(Builder builder) {
this.regions = builder.regions;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRegionsResponseBody create() {
return builder().build();
}
/**
* @return regions
*/
public java.util.List < Regions> getRegions() {
return this.regions;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private java.util.List < Regions> regions;
private String requestId;
/**
* <p>Regions.</p>
*/
public Builder regions(java.util.List < Regions> regions) {
this.regions = regions;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public DescribeRegionsResponseBody build() {
return new DescribeRegionsResponseBody(this);
}
}
public static class Regions extends TeaModel {
@NameInMap("LocalName")
private String localName;
@NameInMap("RegionEndpoint")
private String regionEndpoint;
@NameInMap("RegionId")
private String regionId;
private Regions(Builder builder) {
this.localName = builder.localName;
this.regionEndpoint = builder.regionEndpoint;
this.regionId = builder.regionId;
}
public static Builder builder() {
return new Builder();
}
public static Regions create() {
return builder().build();
}
/**
* @return localName
*/
public String getLocalName() {
return this.localName;
}
/**
* @return regionEndpoint
*/
public String getRegionEndpoint() {
return this.regionEndpoint;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
public static final class Builder {
private String localName;
private String regionEndpoint;
private String regionId;
/**
* <p>LocalName.</p>
*/
public Builder localName(String localName) {
this.localName = localName;
return this;
}
/**
* <p>RegionEndpoint.</p>
*/
public Builder regionEndpoint(String regionEndpoint) {
this.regionEndpoint = regionEndpoint;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.regionId = regionId;
return this;
}
public Regions build() {
return new Regions(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DetectStackDriftRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DetectStackDriftRequest} extends {@link RequestModel}
*
* <p>DetectStackDriftRequest</p>
*/
public class DetectStackDriftRequest extends Request {
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("LogicalResourceId")
private java.util.List < String > logicalResourceId;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("StackId")
private String stackId;
private DetectStackDriftRequest(Builder builder) {
super(builder);
this.clientToken = builder.clientToken;
this.logicalResourceId = builder.logicalResourceId;
this.regionId = builder.regionId;
this.stackId = builder.stackId;
}
public static Builder builder() {
return new Builder();
}
public static DetectStackDriftRequest create() {
return builder().build();
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return logicalResourceId
*/
public java.util.List < String > getLogicalResourceId() {
return this.logicalResourceId;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
public static final class Builder extends Request.Builder<Builder> {
private String clientToken;
private java.util.List < String > logicalResourceId;
private String regionId;
private String stackId;
/**
* <p>ClientToken.</p>
*/
public Builder clientToken(String clientToken) {
this.putQueryParameter("ClientToken", clientToken);
this.clientToken = clientToken;
return this;
}
/**
* <p>LogicalResourceId.</p>
*/
public Builder logicalResourceId(java.util.List < String > logicalResourceId) {
this.putQueryParameter("LogicalResourceId", logicalResourceId);
this.logicalResourceId = logicalResourceId;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.putQueryParameter("StackId", stackId);
this.stackId = stackId;
return this;
}
public DetectStackDriftRequest build() {
return new DetectStackDriftRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DetectStackDriftResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DetectStackDriftResponse} extends {@link TeaModel}
*
* <p>DetectStackDriftResponse</p>
*/
public class DetectStackDriftResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private DetectStackDriftResponseBody body;
private DetectStackDriftResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static DetectStackDriftResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public DetectStackDriftResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private DetectStackDriftResponseBody body;
private Builder() {
super();
}
private Builder(DetectStackDriftResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(DetectStackDriftResponseBody body) {
this.body = body;
return this;
}
public DetectStackDriftResponse build() {
return new DetectStackDriftResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DetectStackDriftResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DetectStackDriftResponseBody} extends {@link TeaModel}
*
* <p>DetectStackDriftResponseBody</p>
*/
public class DetectStackDriftResponseBody extends TeaModel {
@NameInMap("DriftDetectionId")
private String driftDetectionId;
@NameInMap("RequestId")
private String requestId;
private DetectStackDriftResponseBody(Builder builder) {
this.driftDetectionId = builder.driftDetectionId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static DetectStackDriftResponseBody create() {
return builder().build();
}
/**
* @return driftDetectionId
*/
public String getDriftDetectionId() {
return this.driftDetectionId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String driftDetectionId;
private String requestId;
/**
* <p>DriftDetectionId.</p>
*/
public Builder driftDetectionId(String driftDetectionId) {
this.driftDetectionId = driftDetectionId;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public DetectStackDriftResponseBody build() {
return new DetectStackDriftResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DetectStackGroupDriftRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DetectStackGroupDriftRequest} extends {@link RequestModel}
*
* <p>DetectStackGroupDriftRequest</p>
*/
public class DetectStackGroupDriftRequest extends Request {
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("OperationPreferences")
private java.util.Map < String, ? > operationPreferences;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("StackGroupName")
private String stackGroupName;
private DetectStackGroupDriftRequest(Builder builder) {
super(builder);
this.clientToken = builder.clientToken;
this.operationPreferences = builder.operationPreferences;
this.regionId = builder.regionId;
this.stackGroupName = builder.stackGroupName;
}
public static Builder builder() {
return new Builder();
}
public static DetectStackGroupDriftRequest create() {
return builder().build();
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return operationPreferences
*/
public java.util.Map < String, ? > getOperationPreferences() {
return this.operationPreferences;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return stackGroupName
*/
public String getStackGroupName() {
return this.stackGroupName;
}
public static final class Builder extends Request.Builder<Builder> {
private String clientToken;
private java.util.Map < String, ? > operationPreferences;
private String regionId;
private String stackGroupName;
/**
* <p>ClientToken.</p>
*/
public Builder clientToken(String clientToken) {
this.putQueryParameter("ClientToken", clientToken);
this.clientToken = clientToken;
return this;
}
/**
* <p>OperationPreferences.</p>
*/
public Builder operationPreferences(java.util.Map < String, ? > operationPreferences) {
this.putQueryParameter("OperationPreferences", operationPreferences);
this.operationPreferences = operationPreferences;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>StackGroupName.</p>
*/
public Builder stackGroupName(String stackGroupName) {
this.putQueryParameter("StackGroupName", stackGroupName);
this.stackGroupName = stackGroupName;
return this;
}
public DetectStackGroupDriftRequest build() {
return new DetectStackGroupDriftRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DetectStackGroupDriftResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DetectStackGroupDriftResponse} extends {@link TeaModel}
*
* <p>DetectStackGroupDriftResponse</p>
*/
public class DetectStackGroupDriftResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private DetectStackGroupDriftResponseBody body;
private DetectStackGroupDriftResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static DetectStackGroupDriftResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public DetectStackGroupDriftResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private DetectStackGroupDriftResponseBody body;
private Builder() {
super();
}
private Builder(DetectStackGroupDriftResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(DetectStackGroupDriftResponseBody body) {
this.body = body;
return this;
}
public DetectStackGroupDriftResponse build() {
return new DetectStackGroupDriftResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DetectStackGroupDriftResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DetectStackGroupDriftResponseBody} extends {@link TeaModel}
*
* <p>DetectStackGroupDriftResponseBody</p>
*/
public class DetectStackGroupDriftResponseBody extends TeaModel {
@NameInMap("OperationId")
private String operationId;
@NameInMap("RequestId")
private String requestId;
private DetectStackGroupDriftResponseBody(Builder builder) {
this.operationId = builder.operationId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static DetectStackGroupDriftResponseBody create() {
return builder().build();
}
/**
* @return operationId
*/
public String getOperationId() {
return this.operationId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String operationId;
private String requestId;
/**
* <p>OperationId.</p>
*/
public Builder operationId(String operationId) {
this.operationId = operationId;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public DetectStackGroupDriftResponseBody build() {
return new DetectStackGroupDriftResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DetectStackResourceDriftRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DetectStackResourceDriftRequest} extends {@link RequestModel}
*
* <p>DetectStackResourceDriftRequest</p>
*/
public class DetectStackResourceDriftRequest extends Request {
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("LogicalResourceId")
private String logicalResourceId;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("StackId")
private String stackId;
private DetectStackResourceDriftRequest(Builder builder) {
super(builder);
this.clientToken = builder.clientToken;
this.logicalResourceId = builder.logicalResourceId;
this.regionId = builder.regionId;
this.stackId = builder.stackId;
}
public static Builder builder() {
return new Builder();
}
public static DetectStackResourceDriftRequest create() {
return builder().build();
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return logicalResourceId
*/
public String getLogicalResourceId() {
return this.logicalResourceId;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
public static final class Builder extends Request.Builder<Builder> {
private String clientToken;
private String logicalResourceId;
private String regionId;
private String stackId;
/**
* <p>ClientToken.</p>
*/
public Builder clientToken(String clientToken) {
this.putQueryParameter("ClientToken", clientToken);
this.clientToken = clientToken;
return this;
}
/**
* <p>LogicalResourceId.</p>
*/
public Builder logicalResourceId(String logicalResourceId) {
this.putQueryParameter("LogicalResourceId", logicalResourceId);
this.logicalResourceId = logicalResourceId;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.putQueryParameter("StackId", stackId);
this.stackId = stackId;
return this;
}
public DetectStackResourceDriftRequest build() {
return new DetectStackResourceDriftRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DetectStackResourceDriftResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DetectStackResourceDriftResponse} extends {@link TeaModel}
*
* <p>DetectStackResourceDriftResponse</p>
*/
public class DetectStackResourceDriftResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private DetectStackResourceDriftResponseBody body;
private DetectStackResourceDriftResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static DetectStackResourceDriftResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public DetectStackResourceDriftResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private DetectStackResourceDriftResponseBody body;
private Builder() {
super();
}
private Builder(DetectStackResourceDriftResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(DetectStackResourceDriftResponseBody body) {
this.body = body;
return this;
}
public DetectStackResourceDriftResponse build() {
return new DetectStackResourceDriftResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/DetectStackResourceDriftResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link DetectStackResourceDriftResponseBody} extends {@link TeaModel}
*
* <p>DetectStackResourceDriftResponseBody</p>
*/
public class DetectStackResourceDriftResponseBody extends TeaModel {
@NameInMap("ActualProperties")
private String actualProperties;
@NameInMap("DriftDetectionTime")
private String driftDetectionTime;
@NameInMap("ExpectedProperties")
private String expectedProperties;
@NameInMap("LogicalResourceId")
private String logicalResourceId;
@NameInMap("PhysicalResourceId")
private String physicalResourceId;
@NameInMap("PropertyDifferences")
private java.util.List < PropertyDifferences> propertyDifferences;
@NameInMap("RequestId")
private String requestId;
@NameInMap("ResourceDriftStatus")
private String resourceDriftStatus;
@NameInMap("ResourceType")
private String resourceType;
@NameInMap("StackId")
private String stackId;
private DetectStackResourceDriftResponseBody(Builder builder) {
this.actualProperties = builder.actualProperties;
this.driftDetectionTime = builder.driftDetectionTime;
this.expectedProperties = builder.expectedProperties;
this.logicalResourceId = builder.logicalResourceId;
this.physicalResourceId = builder.physicalResourceId;
this.propertyDifferences = builder.propertyDifferences;
this.requestId = builder.requestId;
this.resourceDriftStatus = builder.resourceDriftStatus;
this.resourceType = builder.resourceType;
this.stackId = builder.stackId;
}
public static Builder builder() {
return new Builder();
}
public static DetectStackResourceDriftResponseBody create() {
return builder().build();
}
/**
* @return actualProperties
*/
public String getActualProperties() {
return this.actualProperties;
}
/**
* @return driftDetectionTime
*/
public String getDriftDetectionTime() {
return this.driftDetectionTime;
}
/**
* @return expectedProperties
*/
public String getExpectedProperties() {
return this.expectedProperties;
}
/**
* @return logicalResourceId
*/
public String getLogicalResourceId() {
return this.logicalResourceId;
}
/**
* @return physicalResourceId
*/
public String getPhysicalResourceId() {
return this.physicalResourceId;
}
/**
* @return propertyDifferences
*/
public java.util.List < PropertyDifferences> getPropertyDifferences() {
return this.propertyDifferences;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resourceDriftStatus
*/
public String getResourceDriftStatus() {
return this.resourceDriftStatus;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
public static final class Builder {
private String actualProperties;
private String driftDetectionTime;
private String expectedProperties;
private String logicalResourceId;
private String physicalResourceId;
private java.util.List < PropertyDifferences> propertyDifferences;
private String requestId;
private String resourceDriftStatus;
private String resourceType;
private String stackId;
/**
* <p>ActualProperties.</p>
*/
public Builder actualProperties(String actualProperties) {
this.actualProperties = actualProperties;
return this;
}
/**
* <p>DriftDetectionTime.</p>
*/
public Builder driftDetectionTime(String driftDetectionTime) {
this.driftDetectionTime = driftDetectionTime;
return this;
}
/**
* <p>ExpectedProperties.</p>
*/
public Builder expectedProperties(String expectedProperties) {
this.expectedProperties = expectedProperties;
return this;
}
/**
* <p>LogicalResourceId.</p>
*/
public Builder logicalResourceId(String logicalResourceId) {
this.logicalResourceId = logicalResourceId;
return this;
}
/**
* <p>PhysicalResourceId.</p>
*/
public Builder physicalResourceId(String physicalResourceId) {
this.physicalResourceId = physicalResourceId;
return this;
}
/**
* <p>PropertyDifferences.</p>
*/
public Builder propertyDifferences(java.util.List < PropertyDifferences> propertyDifferences) {
this.propertyDifferences = propertyDifferences;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>ResourceDriftStatus.</p>
*/
public Builder resourceDriftStatus(String resourceDriftStatus) {
this.resourceDriftStatus = resourceDriftStatus;
return this;
}
/**
* <p>ResourceType.</p>
*/
public Builder resourceType(String resourceType) {
this.resourceType = resourceType;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.stackId = stackId;
return this;
}
public DetectStackResourceDriftResponseBody build() {
return new DetectStackResourceDriftResponseBody(this);
}
}
public static class PropertyDifferences extends TeaModel {
@NameInMap("ActualValue")
private String actualValue;
@NameInMap("DifferenceType")
private String differenceType;
@NameInMap("ExpectedValue")
private String expectedValue;
@NameInMap("PropertyPath")
private String propertyPath;
private PropertyDifferences(Builder builder) {
this.actualValue = builder.actualValue;
this.differenceType = builder.differenceType;
this.expectedValue = builder.expectedValue;
this.propertyPath = builder.propertyPath;
}
public static Builder builder() {
return new Builder();
}
public static PropertyDifferences create() {
return builder().build();
}
/**
* @return actualValue
*/
public String getActualValue() {
return this.actualValue;
}
/**
* @return differenceType
*/
public String getDifferenceType() {
return this.differenceType;
}
/**
* @return expectedValue
*/
public String getExpectedValue() {
return this.expectedValue;
}
/**
* @return propertyPath
*/
public String getPropertyPath() {
return this.propertyPath;
}
public static final class Builder {
private String actualValue;
private String differenceType;
private String expectedValue;
private String propertyPath;
/**
* <p>ActualValue.</p>
*/
public Builder actualValue(String actualValue) {
this.actualValue = actualValue;
return this;
}
/**
* <p>DifferenceType.</p>
*/
public Builder differenceType(String differenceType) {
this.differenceType = differenceType;
return this;
}
/**
* <p>ExpectedValue.</p>
*/
public Builder expectedValue(String expectedValue) {
this.expectedValue = expectedValue;
return this;
}
/**
* <p>PropertyPath.</p>
*/
public Builder propertyPath(String propertyPath) {
this.propertyPath = propertyPath;
return this;
}
public PropertyDifferences build() {
return new PropertyDifferences(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/ExecuteChangeSetRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link ExecuteChangeSetRequest} extends {@link RequestModel}
*
* <p>ExecuteChangeSetRequest</p>
*/
public class ExecuteChangeSetRequest extends Request {
@Query
@NameInMap("ChangeSetId")
private String changeSetId;
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("RegionId")
private String regionId;
private ExecuteChangeSetRequest(Builder builder) {
super(builder);
this.changeSetId = builder.changeSetId;
this.clientToken = builder.clientToken;
this.regionId = builder.regionId;
}
public static Builder builder() {
return new Builder();
}
public static ExecuteChangeSetRequest create() {
return builder().build();
}
/**
* @return changeSetId
*/
public String getChangeSetId() {
return this.changeSetId;
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
public static final class Builder extends Request.Builder<Builder> {
private String changeSetId;
private String clientToken;
private String regionId;
/**
* <p>ChangeSetId.</p>
*/
public Builder changeSetId(String changeSetId) {
this.putQueryParameter("ChangeSetId", changeSetId);
this.changeSetId = changeSetId;
return this;
}
/**
* <p>ClientToken.</p>
*/
public Builder clientToken(String clientToken) {
this.putQueryParameter("ClientToken", clientToken);
this.clientToken = clientToken;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
public ExecuteChangeSetRequest build() {
return new ExecuteChangeSetRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/ExecuteChangeSetResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link ExecuteChangeSetResponse} extends {@link TeaModel}
*
* <p>ExecuteChangeSetResponse</p>
*/
public class ExecuteChangeSetResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ExecuteChangeSetResponseBody body;
private ExecuteChangeSetResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static ExecuteChangeSetResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public ExecuteChangeSetResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private ExecuteChangeSetResponseBody body;
private Builder() {
super();
}
private Builder(ExecuteChangeSetResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(ExecuteChangeSetResponseBody body) {
this.body = body;
return this;
}
public ExecuteChangeSetResponse build() {
return new ExecuteChangeSetResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/ExecuteChangeSetResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link ExecuteChangeSetResponseBody} extends {@link TeaModel}
*
* <p>ExecuteChangeSetResponseBody</p>
*/
public class ExecuteChangeSetResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
private ExecuteChangeSetResponseBody(Builder builder) {
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ExecuteChangeSetResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String requestId;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ExecuteChangeSetResponseBody build() {
return new ExecuteChangeSetResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GenerateTemplateByScratchRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GenerateTemplateByScratchRequest} extends {@link RequestModel}
*
* <p>GenerateTemplateByScratchRequest</p>
*/
public class GenerateTemplateByScratchRequest extends Request {
@Query
@NameInMap("ProvisionRegionId")
private String provisionRegionId;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("TemplateScratchId")
private String templateScratchId;
private GenerateTemplateByScratchRequest(Builder builder) {
super(builder);
this.provisionRegionId = builder.provisionRegionId;
this.regionId = builder.regionId;
this.templateScratchId = builder.templateScratchId;
}
public static Builder builder() {
return new Builder();
}
public static GenerateTemplateByScratchRequest create() {
return builder().build();
}
/**
* @return provisionRegionId
*/
public String getProvisionRegionId() {
return this.provisionRegionId;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return templateScratchId
*/
public String getTemplateScratchId() {
return this.templateScratchId;
}
public static final class Builder extends Request.Builder<Builder> {
private String provisionRegionId;
private String regionId;
private String templateScratchId;
/**
* <p>ProvisionRegionId.</p>
*/
public Builder provisionRegionId(String provisionRegionId) {
this.putQueryParameter("ProvisionRegionId", provisionRegionId);
this.provisionRegionId = provisionRegionId;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>TemplateScratchId.</p>
*/
public Builder templateScratchId(String templateScratchId) {
this.putQueryParameter("TemplateScratchId", templateScratchId);
this.templateScratchId = templateScratchId;
return this;
}
public GenerateTemplateByScratchRequest build() {
return new GenerateTemplateByScratchRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GenerateTemplateByScratchResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GenerateTemplateByScratchResponse} extends {@link TeaModel}
*
* <p>GenerateTemplateByScratchResponse</p>
*/
public class GenerateTemplateByScratchResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GenerateTemplateByScratchResponseBody body;
private GenerateTemplateByScratchResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GenerateTemplateByScratchResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public GenerateTemplateByScratchResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GenerateTemplateByScratchResponseBody body;
private Builder() {
super();
}
private Builder(GenerateTemplateByScratchResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(GenerateTemplateByScratchResponseBody body) {
this.body = body;
return this;
}
public GenerateTemplateByScratchResponse build() {
return new GenerateTemplateByScratchResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GenerateTemplateByScratchResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GenerateTemplateByScratchResponseBody} extends {@link TeaModel}
*
* <p>GenerateTemplateByScratchResponseBody</p>
*/
public class GenerateTemplateByScratchResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("ResourcesToImport")
private java.util.List < ResourcesToImport> resourcesToImport;
@NameInMap("TemplateBody")
private String templateBody;
private GenerateTemplateByScratchResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resourcesToImport = builder.resourcesToImport;
this.templateBody = builder.templateBody;
}
public static Builder builder() {
return new Builder();
}
public static GenerateTemplateByScratchResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resourcesToImport
*/
public java.util.List < ResourcesToImport> getResourcesToImport() {
return this.resourcesToImport;
}
/**
* @return templateBody
*/
public String getTemplateBody() {
return this.templateBody;
}
public static final class Builder {
private String requestId;
private java.util.List < ResourcesToImport> resourcesToImport;
private String templateBody;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>ResourcesToImport.</p>
*/
public Builder resourcesToImport(java.util.List < ResourcesToImport> resourcesToImport) {
this.resourcesToImport = resourcesToImport;
return this;
}
/**
* <p>TemplateBody.</p>
*/
public Builder templateBody(String templateBody) {
this.templateBody = templateBody;
return this;
}
public GenerateTemplateByScratchResponseBody build() {
return new GenerateTemplateByScratchResponseBody(this);
}
}
public static class ResourcesToImport extends TeaModel {
@NameInMap("LogicalResourceId")
private String logicalResourceId;
@NameInMap("ResourceIdentifier")
private java.util.Map < String, ? > resourceIdentifier;
@NameInMap("ResourceType")
private String resourceType;
private ResourcesToImport(Builder builder) {
this.logicalResourceId = builder.logicalResourceId;
this.resourceIdentifier = builder.resourceIdentifier;
this.resourceType = builder.resourceType;
}
public static Builder builder() {
return new Builder();
}
public static ResourcesToImport create() {
return builder().build();
}
/**
* @return logicalResourceId
*/
public String getLogicalResourceId() {
return this.logicalResourceId;
}
/**
* @return resourceIdentifier
*/
public java.util.Map < String, ? > getResourceIdentifier() {
return this.resourceIdentifier;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
public static final class Builder {
private String logicalResourceId;
private java.util.Map < String, ? > resourceIdentifier;
private String resourceType;
/**
* <p>LogicalResourceId.</p>
*/
public Builder logicalResourceId(String logicalResourceId) {
this.logicalResourceId = logicalResourceId;
return this;
}
/**
* <p>ResourceIdentifier.</p>
*/
public Builder resourceIdentifier(java.util.Map < String, ? > resourceIdentifier) {
this.resourceIdentifier = resourceIdentifier;
return this;
}
/**
* <p>ResourceType.</p>
*/
public Builder resourceType(String resourceType) {
this.resourceType = resourceType;
return this;
}
public ResourcesToImport build() {
return new ResourcesToImport(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GenerateTemplatePolicyRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GenerateTemplatePolicyRequest} extends {@link RequestModel}
*
* <p>GenerateTemplatePolicyRequest</p>
*/
public class GenerateTemplatePolicyRequest extends Request {
@Query
@NameInMap("TemplateBody")
private String templateBody;
@Query
@NameInMap("TemplateId")
private String templateId;
@Query
@NameInMap("TemplateURL")
private String templateURL;
@Query
@NameInMap("TemplateVersion")
private String templateVersion;
private GenerateTemplatePolicyRequest(Builder builder) {
super(builder);
this.templateBody = builder.templateBody;
this.templateId = builder.templateId;
this.templateURL = builder.templateURL;
this.templateVersion = builder.templateVersion;
}
public static Builder builder() {
return new Builder();
}
public static GenerateTemplatePolicyRequest create() {
return builder().build();
}
/**
* @return templateBody
*/
public String getTemplateBody() {
return this.templateBody;
}
/**
* @return templateId
*/
public String getTemplateId() {
return this.templateId;
}
/**
* @return templateURL
*/
public String getTemplateURL() {
return this.templateURL;
}
/**
* @return templateVersion
*/
public String getTemplateVersion() {
return this.templateVersion;
}
public static final class Builder extends Request.Builder<Builder> {
private String templateBody;
private String templateId;
private String templateURL;
private String templateVersion;
/**
* <p>TemplateBody.</p>
*/
public Builder templateBody(String templateBody) {
this.putQueryParameter("TemplateBody", templateBody);
this.templateBody = templateBody;
return this;
}
/**
* <p>TemplateId.</p>
*/
public Builder templateId(String templateId) {
this.putQueryParameter("TemplateId", templateId);
this.templateId = templateId;
return this;
}
/**
* <p>TemplateURL.</p>
*/
public Builder templateURL(String templateURL) {
this.putQueryParameter("TemplateURL", templateURL);
this.templateURL = templateURL;
return this;
}
/**
* <p>TemplateVersion.</p>
*/
public Builder templateVersion(String templateVersion) {
this.putQueryParameter("TemplateVersion", templateVersion);
this.templateVersion = templateVersion;
return this;
}
public GenerateTemplatePolicyRequest build() {
return new GenerateTemplatePolicyRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GenerateTemplatePolicyResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GenerateTemplatePolicyResponse} extends {@link TeaModel}
*
* <p>GenerateTemplatePolicyResponse</p>
*/
public class GenerateTemplatePolicyResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GenerateTemplatePolicyResponseBody body;
private GenerateTemplatePolicyResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GenerateTemplatePolicyResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public GenerateTemplatePolicyResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GenerateTemplatePolicyResponseBody body;
private Builder() {
super();
}
private Builder(GenerateTemplatePolicyResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(GenerateTemplatePolicyResponseBody body) {
this.body = body;
return this;
}
public GenerateTemplatePolicyResponse build() {
return new GenerateTemplatePolicyResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GenerateTemplatePolicyResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GenerateTemplatePolicyResponseBody} extends {@link TeaModel}
*
* <p>GenerateTemplatePolicyResponseBody</p>
*/
public class GenerateTemplatePolicyResponseBody extends TeaModel {
@NameInMap("Policy")
private Policy policy;
@NameInMap("RequestId")
private String requestId;
private GenerateTemplatePolicyResponseBody(Builder builder) {
this.policy = builder.policy;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static GenerateTemplatePolicyResponseBody create() {
return builder().build();
}
/**
* @return policy
*/
public Policy getPolicy() {
return this.policy;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private Policy policy;
private String requestId;
/**
* <p>Policy.</p>
*/
public Builder policy(Policy policy) {
this.policy = policy;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public GenerateTemplatePolicyResponseBody build() {
return new GenerateTemplatePolicyResponseBody(this);
}
}
public static class Statement extends TeaModel {
@NameInMap("Action")
private java.util.List < String > action;
@NameInMap("Effect")
private String effect;
@NameInMap("Resource")
private String resource;
private Statement(Builder builder) {
this.action = builder.action;
this.effect = builder.effect;
this.resource = builder.resource;
}
public static Builder builder() {
return new Builder();
}
public static Statement create() {
return builder().build();
}
/**
* @return action
*/
public java.util.List < String > getAction() {
return this.action;
}
/**
* @return effect
*/
public String getEffect() {
return this.effect;
}
/**
* @return resource
*/
public String getResource() {
return this.resource;
}
public static final class Builder {
private java.util.List < String > action;
private String effect;
private String resource;
/**
* <p>Action.</p>
*/
public Builder action(java.util.List < String > action) {
this.action = action;
return this;
}
/**
* <p>Effect.</p>
*/
public Builder effect(String effect) {
this.effect = effect;
return this;
}
/**
* <p>Resource.</p>
*/
public Builder resource(String resource) {
this.resource = resource;
return this;
}
public Statement build() {
return new Statement(this);
}
}
}
public static class Policy extends TeaModel {
@NameInMap("Statement")
private java.util.List < Statement> statement;
@NameInMap("Version")
private String version;
private Policy(Builder builder) {
this.statement = builder.statement;
this.version = builder.version;
}
public static Builder builder() {
return new Builder();
}
public static Policy create() {
return builder().build();
}
/**
* @return statement
*/
public java.util.List < Statement> getStatement() {
return this.statement;
}
/**
* @return version
*/
public String getVersion() {
return this.version;
}
public static final class Builder {
private java.util.List < Statement> statement;
private String version;
/**
* <p>Statement.</p>
*/
public Builder statement(java.util.List < Statement> statement) {
this.statement = statement;
return this;
}
/**
* <p>Version.</p>
*/
public Builder version(String version) {
this.version = version;
return this;
}
public Policy build() {
return new Policy(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetChangeSetRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetChangeSetRequest} extends {@link RequestModel}
*
* <p>GetChangeSetRequest</p>
*/
public class GetChangeSetRequest extends Request {
@Query
@NameInMap("ChangeSetId")
private String changeSetId;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("ShowTemplate")
private Boolean showTemplate;
private GetChangeSetRequest(Builder builder) {
super(builder);
this.changeSetId = builder.changeSetId;
this.regionId = builder.regionId;
this.showTemplate = builder.showTemplate;
}
public static Builder builder() {
return new Builder();
}
public static GetChangeSetRequest create() {
return builder().build();
}
/**
* @return changeSetId
*/
public String getChangeSetId() {
return this.changeSetId;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return showTemplate
*/
public Boolean getShowTemplate() {
return this.showTemplate;
}
public static final class Builder extends Request.Builder<Builder> {
private String changeSetId;
private String regionId;
private Boolean showTemplate;
/**
* <p>ChangeSetId.</p>
*/
public Builder changeSetId(String changeSetId) {
this.putQueryParameter("ChangeSetId", changeSetId);
this.changeSetId = changeSetId;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>ShowTemplate.</p>
*/
public Builder showTemplate(Boolean showTemplate) {
this.putQueryParameter("ShowTemplate", showTemplate);
this.showTemplate = showTemplate;
return this;
}
public GetChangeSetRequest build() {
return new GetChangeSetRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetChangeSetResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetChangeSetResponse} extends {@link TeaModel}
*
* <p>GetChangeSetResponse</p>
*/
public class GetChangeSetResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GetChangeSetResponseBody body;
private GetChangeSetResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GetChangeSetResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public GetChangeSetResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GetChangeSetResponseBody body;
private Builder() {
super();
}
private Builder(GetChangeSetResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(GetChangeSetResponseBody body) {
this.body = body;
return this;
}
public GetChangeSetResponse build() {
return new GetChangeSetResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetChangeSetResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetChangeSetResponseBody} extends {@link TeaModel}
*
* <p>GetChangeSetResponseBody</p>
*/
public class GetChangeSetResponseBody extends TeaModel {
@NameInMap("ChangeSetId")
private String changeSetId;
@NameInMap("ChangeSetName")
private String changeSetName;
@NameInMap("ChangeSetType")
private String changeSetType;
@NameInMap("Changes")
private java.util.List < java.util.Map<String, ?>> changes;
@NameInMap("CreateTime")
private String createTime;
@NameInMap("Description")
private String description;
@NameInMap("DisableRollback")
private Boolean disableRollback;
@NameInMap("ExecutionStatus")
private String executionStatus;
@NameInMap("Log")
private Log log;
@NameInMap("Parameters")
private java.util.List < Parameters> parameters;
@NameInMap("RegionId")
private String regionId;
@NameInMap("RequestId")
private String requestId;
@NameInMap("StackId")
private String stackId;
@NameInMap("StackName")
private String stackName;
@NameInMap("Status")
private String status;
@NameInMap("StatusReason")
private String statusReason;
@NameInMap("TemplateBody")
private String templateBody;
@NameInMap("TimeoutInMinutes")
private Integer timeoutInMinutes;
private GetChangeSetResponseBody(Builder builder) {
this.changeSetId = builder.changeSetId;
this.changeSetName = builder.changeSetName;
this.changeSetType = builder.changeSetType;
this.changes = builder.changes;
this.createTime = builder.createTime;
this.description = builder.description;
this.disableRollback = builder.disableRollback;
this.executionStatus = builder.executionStatus;
this.log = builder.log;
this.parameters = builder.parameters;
this.regionId = builder.regionId;
this.requestId = builder.requestId;
this.stackId = builder.stackId;
this.stackName = builder.stackName;
this.status = builder.status;
this.statusReason = builder.statusReason;
this.templateBody = builder.templateBody;
this.timeoutInMinutes = builder.timeoutInMinutes;
}
public static Builder builder() {
return new Builder();
}
public static GetChangeSetResponseBody create() {
return builder().build();
}
/**
* @return changeSetId
*/
public String getChangeSetId() {
return this.changeSetId;
}
/**
* @return changeSetName
*/
public String getChangeSetName() {
return this.changeSetName;
}
/**
* @return changeSetType
*/
public String getChangeSetType() {
return this.changeSetType;
}
/**
* @return changes
*/
public java.util.List < java.util.Map<String, ?>> getChanges() {
return this.changes;
}
/**
* @return createTime
*/
public String getCreateTime() {
return this.createTime;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return disableRollback
*/
public Boolean getDisableRollback() {
return this.disableRollback;
}
/**
* @return executionStatus
*/
public String getExecutionStatus() {
return this.executionStatus;
}
/**
* @return log
*/
public Log getLog() {
return this.log;
}
/**
* @return parameters
*/
public java.util.List < Parameters> getParameters() {
return this.parameters;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
/**
* @return stackName
*/
public String getStackName() {
return this.stackName;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return statusReason
*/
public String getStatusReason() {
return this.statusReason;
}
/**
* @return templateBody
*/
public String getTemplateBody() {
return this.templateBody;
}
/**
* @return timeoutInMinutes
*/
public Integer getTimeoutInMinutes() {
return this.timeoutInMinutes;
}
public static final class Builder {
private String changeSetId;
private String changeSetName;
private String changeSetType;
private java.util.List < java.util.Map<String, ?>> changes;
private String createTime;
private String description;
private Boolean disableRollback;
private String executionStatus;
private Log log;
private java.util.List < Parameters> parameters;
private String regionId;
private String requestId;
private String stackId;
private String stackName;
private String status;
private String statusReason;
private String templateBody;
private Integer timeoutInMinutes;
/**
* <p>ChangeSetId.</p>
*/
public Builder changeSetId(String changeSetId) {
this.changeSetId = changeSetId;
return this;
}
/**
* <p>ChangeSetName.</p>
*/
public Builder changeSetName(String changeSetName) {
this.changeSetName = changeSetName;
return this;
}
/**
* <p>ChangeSetType.</p>
*/
public Builder changeSetType(String changeSetType) {
this.changeSetType = changeSetType;
return this;
}
/**
* <p>Changes.</p>
*/
public Builder changes(java.util.List < java.util.Map<String, ?>> changes) {
this.changes = changes;
return this;
}
/**
* <p>CreateTime.</p>
*/
public Builder createTime(String createTime) {
this.createTime = createTime;
return this;
}
/**
* <p>Description.</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>DisableRollback.</p>
*/
public Builder disableRollback(Boolean disableRollback) {
this.disableRollback = disableRollback;
return this;
}
/**
* <p>ExecutionStatus.</p>
*/
public Builder executionStatus(String executionStatus) {
this.executionStatus = executionStatus;
return this;
}
/**
* <p>Log.</p>
*/
public Builder log(Log log) {
this.log = log;
return this;
}
/**
* <p>Parameters.</p>
*/
public Builder parameters(java.util.List < Parameters> parameters) {
this.parameters = parameters;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.regionId = regionId;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.stackId = stackId;
return this;
}
/**
* <p>StackName.</p>
*/
public Builder stackName(String stackName) {
this.stackName = stackName;
return this;
}
/**
* <p>Status.</p>
*/
public Builder status(String status) {
this.status = status;
return this;
}
/**
* <p>StatusReason.</p>
*/
public Builder statusReason(String statusReason) {
this.statusReason = statusReason;
return this;
}
/**
* <p>TemplateBody.</p>
*/
public Builder templateBody(String templateBody) {
this.templateBody = templateBody;
return this;
}
/**
* <p>TimeoutInMinutes.</p>
*/
public Builder timeoutInMinutes(Integer timeoutInMinutes) {
this.timeoutInMinutes = timeoutInMinutes;
return this;
}
public GetChangeSetResponseBody build() {
return new GetChangeSetResponseBody(this);
}
}
public static class TerraformLogs extends TeaModel {
@NameInMap("Command")
private String command;
@NameInMap("Content")
private String content;
@NameInMap("Stream")
private String stream;
private TerraformLogs(Builder builder) {
this.command = builder.command;
this.content = builder.content;
this.stream = builder.stream;
}
public static Builder builder() {
return new Builder();
}
public static TerraformLogs create() {
return builder().build();
}
/**
* @return command
*/
public String getCommand() {
return this.command;
}
/**
* @return content
*/
public String getContent() {
return this.content;
}
/**
* @return stream
*/
public String getStream() {
return this.stream;
}
public static final class Builder {
private String command;
private String content;
private String stream;
/**
* <p>Command.</p>
*/
public Builder command(String command) {
this.command = command;
return this;
}
/**
* <p>Content.</p>
*/
public Builder content(String content) {
this.content = content;
return this;
}
/**
* <p>Stream.</p>
*/
public Builder stream(String stream) {
this.stream = stream;
return this;
}
public TerraformLogs build() {
return new TerraformLogs(this);
}
}
}
public static class Log extends TeaModel {
@NameInMap("TerraformLogs")
private java.util.List < TerraformLogs> terraformLogs;
private Log(Builder builder) {
this.terraformLogs = builder.terraformLogs;
}
public static Builder builder() {
return new Builder();
}
public static Log create() {
return builder().build();
}
/**
* @return terraformLogs
*/
public java.util.List < TerraformLogs> getTerraformLogs() {
return this.terraformLogs;
}
public static final class Builder {
private java.util.List < TerraformLogs> terraformLogs;
/**
* <p>TerraformLogs.</p>
*/
public Builder terraformLogs(java.util.List < TerraformLogs> terraformLogs) {
this.terraformLogs = terraformLogs;
return this;
}
public Log build() {
return new Log(this);
}
}
}
public static class Parameters extends TeaModel {
@NameInMap("ParameterKey")
private String parameterKey;
@NameInMap("ParameterValue")
private String parameterValue;
private Parameters(Builder builder) {
this.parameterKey = builder.parameterKey;
this.parameterValue = builder.parameterValue;
}
public static Builder builder() {
return new Builder();
}
public static Parameters create() {
return builder().build();
}
/**
* @return parameterKey
*/
public String getParameterKey() {
return this.parameterKey;
}
/**
* @return parameterValue
*/
public String getParameterValue() {
return this.parameterValue;
}
public static final class Builder {
private String parameterKey;
private String parameterValue;
/**
* <p>ParameterKey.</p>
*/
public Builder parameterKey(String parameterKey) {
this.parameterKey = parameterKey;
return this;
}
/**
* <p>ParameterValue.</p>
*/
public Builder parameterValue(String parameterValue) {
this.parameterValue = parameterValue;
return this;
}
public Parameters build() {
return new Parameters(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetFeatureDetailsRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetFeatureDetailsRequest} extends {@link RequestModel}
*
* <p>GetFeatureDetailsRequest</p>
*/
public class GetFeatureDetailsRequest extends Request {
@Query
@NameInMap("Feature")
private String feature;
@Query
@NameInMap("RegionId")
private String regionId;
private GetFeatureDetailsRequest(Builder builder) {
super(builder);
this.feature = builder.feature;
this.regionId = builder.regionId;
}
public static Builder builder() {
return new Builder();
}
public static GetFeatureDetailsRequest create() {
return builder().build();
}
/**
* @return feature
*/
public String getFeature() {
return this.feature;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
public static final class Builder extends Request.Builder<Builder> {
private String feature;
private String regionId;
/**
* <p>Feature.</p>
*/
public Builder feature(String feature) {
this.putQueryParameter("Feature", feature);
this.feature = feature;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
public GetFeatureDetailsRequest build() {
return new GetFeatureDetailsRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetFeatureDetailsResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetFeatureDetailsResponse} extends {@link TeaModel}
*
* <p>GetFeatureDetailsResponse</p>
*/
public class GetFeatureDetailsResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GetFeatureDetailsResponseBody body;
private GetFeatureDetailsResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GetFeatureDetailsResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public GetFeatureDetailsResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GetFeatureDetailsResponseBody body;
private Builder() {
super();
}
private Builder(GetFeatureDetailsResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(GetFeatureDetailsResponseBody body) {
this.body = body;
return this;
}
public GetFeatureDetailsResponse build() {
return new GetFeatureDetailsResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetFeatureDetailsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetFeatureDetailsResponseBody} extends {@link TeaModel}
*
* <p>GetFeatureDetailsResponseBody</p>
*/
public class GetFeatureDetailsResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("Terraform")
private Terraform terraform;
private GetFeatureDetailsResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.terraform = builder.terraform;
}
public static Builder builder() {
return new Builder();
}
public static GetFeatureDetailsResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return terraform
*/
public Terraform getTerraform() {
return this.terraform;
}
public static final class Builder {
private String requestId;
private Terraform terraform;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Terraform.</p>
*/
public Builder terraform(Terraform terraform) {
this.terraform = terraform;
return this;
}
public GetFeatureDetailsResponseBody build() {
return new GetFeatureDetailsResponseBody(this);
}
}
public static class SupportedResourceTypes extends TeaModel {
@NameInMap("CustomTag")
private java.util.List < String > customTag;
@NameInMap("EstimateCost")
private java.util.List < String > estimateCost;
@NameInMap("ResourceGroup")
private java.util.List < String > resourceGroup;
@NameInMap("SystemTag")
private java.util.List < String > systemTag;
private SupportedResourceTypes(Builder builder) {
this.customTag = builder.customTag;
this.estimateCost = builder.estimateCost;
this.resourceGroup = builder.resourceGroup;
this.systemTag = builder.systemTag;
}
public static Builder builder() {
return new Builder();
}
public static SupportedResourceTypes create() {
return builder().build();
}
/**
* @return customTag
*/
public java.util.List < String > getCustomTag() {
return this.customTag;
}
/**
* @return estimateCost
*/
public java.util.List < String > getEstimateCost() {
return this.estimateCost;
}
/**
* @return resourceGroup
*/
public java.util.List < String > getResourceGroup() {
return this.resourceGroup;
}
/**
* @return systemTag
*/
public java.util.List < String > getSystemTag() {
return this.systemTag;
}
public static final class Builder {
private java.util.List < String > customTag;
private java.util.List < String > estimateCost;
private java.util.List < String > resourceGroup;
private java.util.List < String > systemTag;
/**
* <p>CustomTag.</p>
*/
public Builder customTag(java.util.List < String > customTag) {
this.customTag = customTag;
return this;
}
/**
* <p>EstimateCost.</p>
*/
public Builder estimateCost(java.util.List < String > estimateCost) {
this.estimateCost = estimateCost;
return this;
}
/**
* <p>ResourceGroup.</p>
*/
public Builder resourceGroup(java.util.List < String > resourceGroup) {
this.resourceGroup = resourceGroup;
return this;
}
/**
* <p>SystemTag.</p>
*/
public Builder systemTag(java.util.List < String > systemTag) {
this.systemTag = systemTag;
return this;
}
public SupportedResourceTypes build() {
return new SupportedResourceTypes(this);
}
}
}
public static class ProviderVersions extends TeaModel {
@NameInMap("ProviderName")
private String providerName;
@NameInMap("SupportedVersions")
private java.util.List < String > supportedVersions;
private ProviderVersions(Builder builder) {
this.providerName = builder.providerName;
this.supportedVersions = builder.supportedVersions;
}
public static Builder builder() {
return new Builder();
}
public static ProviderVersions create() {
return builder().build();
}
/**
* @return providerName
*/
public String getProviderName() {
return this.providerName;
}
/**
* @return supportedVersions
*/
public java.util.List < String > getSupportedVersions() {
return this.supportedVersions;
}
public static final class Builder {
private String providerName;
private java.util.List < String > supportedVersions;
/**
* <p>ProviderName.</p>
*/
public Builder providerName(String providerName) {
this.providerName = providerName;
return this;
}
/**
* <p>SupportedVersions.</p>
*/
public Builder supportedVersions(java.util.List < String > supportedVersions) {
this.supportedVersions = supportedVersions;
return this;
}
public ProviderVersions build() {
return new ProviderVersions(this);
}
}
}
public static class SupportedVersions extends TeaModel {
@NameInMap("ProviderVersions")
private java.util.List < ProviderVersions> providerVersions;
@NameInMap("TerraformVersion")
private String terraformVersion;
@NameInMap("Transform")
private String transform;
@NameInMap("UpdateAllowedTransforms")
private java.util.List < String > updateAllowedTransforms;
private SupportedVersions(Builder builder) {
this.providerVersions = builder.providerVersions;
this.terraformVersion = builder.terraformVersion;
this.transform = builder.transform;
this.updateAllowedTransforms = builder.updateAllowedTransforms;
}
public static Builder builder() {
return new Builder();
}
public static SupportedVersions create() {
return builder().build();
}
/**
* @return providerVersions
*/
public java.util.List < ProviderVersions> getProviderVersions() {
return this.providerVersions;
}
/**
* @return terraformVersion
*/
public String getTerraformVersion() {
return this.terraformVersion;
}
/**
* @return transform
*/
public String getTransform() {
return this.transform;
}
/**
* @return updateAllowedTransforms
*/
public java.util.List < String > getUpdateAllowedTransforms() {
return this.updateAllowedTransforms;
}
public static final class Builder {
private java.util.List < ProviderVersions> providerVersions;
private String terraformVersion;
private String transform;
private java.util.List < String > updateAllowedTransforms;
/**
* <p>ProviderVersions.</p>
*/
public Builder providerVersions(java.util.List < ProviderVersions> providerVersions) {
this.providerVersions = providerVersions;
return this;
}
/**
* <p>TerraformVersion.</p>
*/
public Builder terraformVersion(String terraformVersion) {
this.terraformVersion = terraformVersion;
return this;
}
/**
* <p>Transform.</p>
*/
public Builder transform(String transform) {
this.transform = transform;
return this;
}
/**
* <p>UpdateAllowedTransforms.</p>
*/
public Builder updateAllowedTransforms(java.util.List < String > updateAllowedTransforms) {
this.updateAllowedTransforms = updateAllowedTransforms;
return this;
}
public SupportedVersions build() {
return new SupportedVersions(this);
}
}
}
public static class Terraform extends TeaModel {
@NameInMap("SupportedResourceTypes")
private SupportedResourceTypes supportedResourceTypes;
@NameInMap("SupportedVersions")
private java.util.List < SupportedVersions> supportedVersions;
private Terraform(Builder builder) {
this.supportedResourceTypes = builder.supportedResourceTypes;
this.supportedVersions = builder.supportedVersions;
}
public static Builder builder() {
return new Builder();
}
public static Terraform create() {
return builder().build();
}
/**
* @return supportedResourceTypes
*/
public SupportedResourceTypes getSupportedResourceTypes() {
return this.supportedResourceTypes;
}
/**
* @return supportedVersions
*/
public java.util.List < SupportedVersions> getSupportedVersions() {
return this.supportedVersions;
}
public static final class Builder {
private SupportedResourceTypes supportedResourceTypes;
private java.util.List < SupportedVersions> supportedVersions;
/**
* <p>SupportedResourceTypes.</p>
*/
public Builder supportedResourceTypes(SupportedResourceTypes supportedResourceTypes) {
this.supportedResourceTypes = supportedResourceTypes;
return this;
}
/**
* <p>SupportedVersions.</p>
*/
public Builder supportedVersions(java.util.List < SupportedVersions> supportedVersions) {
this.supportedVersions = supportedVersions;
return this;
}
public Terraform build() {
return new Terraform(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetResourceTypeRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetResourceTypeRequest} extends {@link RequestModel}
*
* <p>GetResourceTypeRequest</p>
*/
public class GetResourceTypeRequest extends Request {
@Query
@NameInMap("ResourceType")
private String resourceType;
private GetResourceTypeRequest(Builder builder) {
super(builder);
this.resourceType = builder.resourceType;
}
public static Builder builder() {
return new Builder();
}
public static GetResourceTypeRequest create() {
return builder().build();
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
public static final class Builder extends Request.Builder<Builder> {
private String resourceType;
/**
* <p>ResourceType.</p>
*/
public Builder resourceType(String resourceType) {
this.putQueryParameter("ResourceType", resourceType);
this.resourceType = resourceType;
return this;
}
public GetResourceTypeRequest build() {
return new GetResourceTypeRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetResourceTypeResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetResourceTypeResponse} extends {@link TeaModel}
*
* <p>GetResourceTypeResponse</p>
*/
public class GetResourceTypeResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GetResourceTypeResponseBody body;
private GetResourceTypeResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GetResourceTypeResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public GetResourceTypeResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GetResourceTypeResponseBody body;
private Builder() {
super();
}
private Builder(GetResourceTypeResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(GetResourceTypeResponseBody body) {
this.body = body;
return this;
}
public GetResourceTypeResponse build() {
return new GetResourceTypeResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetResourceTypeResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetResourceTypeResponseBody} extends {@link TeaModel}
*
* <p>GetResourceTypeResponseBody</p>
*/
public class GetResourceTypeResponseBody extends TeaModel {
@NameInMap("Attributes")
private java.util.Map < String, ? > attributes;
@NameInMap("EntityType")
private String entityType;
@NameInMap("Properties")
private java.util.Map < String, ? > properties;
@NameInMap("RequestId")
private String requestId;
@NameInMap("ResourceType")
private String resourceType;
@NameInMap("SupportDriftDetection")
private Boolean supportDriftDetection;
@NameInMap("SupportScratchDetection")
private Boolean supportScratchDetection;
private GetResourceTypeResponseBody(Builder builder) {
this.attributes = builder.attributes;
this.entityType = builder.entityType;
this.properties = builder.properties;
this.requestId = builder.requestId;
this.resourceType = builder.resourceType;
this.supportDriftDetection = builder.supportDriftDetection;
this.supportScratchDetection = builder.supportScratchDetection;
}
public static Builder builder() {
return new Builder();
}
public static GetResourceTypeResponseBody create() {
return builder().build();
}
/**
* @return attributes
*/
public java.util.Map < String, ? > getAttributes() {
return this.attributes;
}
/**
* @return entityType
*/
public String getEntityType() {
return this.entityType;
}
/**
* @return properties
*/
public java.util.Map < String, ? > getProperties() {
return this.properties;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
/**
* @return supportDriftDetection
*/
public Boolean getSupportDriftDetection() {
return this.supportDriftDetection;
}
/**
* @return supportScratchDetection
*/
public Boolean getSupportScratchDetection() {
return this.supportScratchDetection;
}
public static final class Builder {
private java.util.Map < String, ? > attributes;
private String entityType;
private java.util.Map < String, ? > properties;
private String requestId;
private String resourceType;
private Boolean supportDriftDetection;
private Boolean supportScratchDetection;
/**
* <p>Attributes.</p>
*/
public Builder attributes(java.util.Map < String, ? > attributes) {
this.attributes = attributes;
return this;
}
/**
* <p>EntityType.</p>
*/
public Builder entityType(String entityType) {
this.entityType = entityType;
return this;
}
/**
* <p>Properties.</p>
*/
public Builder properties(java.util.Map < String, ? > properties) {
this.properties = properties;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>ResourceType.</p>
*/
public Builder resourceType(String resourceType) {
this.resourceType = resourceType;
return this;
}
/**
* <p>SupportDriftDetection.</p>
*/
public Builder supportDriftDetection(Boolean supportDriftDetection) {
this.supportDriftDetection = supportDriftDetection;
return this;
}
/**
* <p>SupportScratchDetection.</p>
*/
public Builder supportScratchDetection(Boolean supportScratchDetection) {
this.supportScratchDetection = supportScratchDetection;
return this;
}
public GetResourceTypeResponseBody build() {
return new GetResourceTypeResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetResourceTypeTemplateRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetResourceTypeTemplateRequest} extends {@link RequestModel}
*
* <p>GetResourceTypeTemplateRequest</p>
*/
public class GetResourceTypeTemplateRequest extends Request {
@Query
@NameInMap("ResourceType")
private String resourceType;
private GetResourceTypeTemplateRequest(Builder builder) {
super(builder);
this.resourceType = builder.resourceType;
}
public static Builder builder() {
return new Builder();
}
public static GetResourceTypeTemplateRequest create() {
return builder().build();
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
public static final class Builder extends Request.Builder<Builder> {
private String resourceType;
/**
* <p>ResourceType.</p>
*/
public Builder resourceType(String resourceType) {
this.putQueryParameter("ResourceType", resourceType);
this.resourceType = resourceType;
return this;
}
public GetResourceTypeTemplateRequest build() {
return new GetResourceTypeTemplateRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetResourceTypeTemplateResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetResourceTypeTemplateResponse} extends {@link TeaModel}
*
* <p>GetResourceTypeTemplateResponse</p>
*/
public class GetResourceTypeTemplateResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GetResourceTypeTemplateResponseBody body;
private GetResourceTypeTemplateResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GetResourceTypeTemplateResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public GetResourceTypeTemplateResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GetResourceTypeTemplateResponseBody body;
private Builder() {
super();
}
private Builder(GetResourceTypeTemplateResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(GetResourceTypeTemplateResponseBody body) {
this.body = body;
return this;
}
public GetResourceTypeTemplateResponse build() {
return new GetResourceTypeTemplateResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetResourceTypeTemplateResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetResourceTypeTemplateResponseBody} extends {@link TeaModel}
*
* <p>GetResourceTypeTemplateResponseBody</p>
*/
public class GetResourceTypeTemplateResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("TemplateBody")
private java.util.Map < String, ? > templateBody;
private GetResourceTypeTemplateResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.templateBody = builder.templateBody;
}
public static Builder builder() {
return new Builder();
}
public static GetResourceTypeTemplateResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return templateBody
*/
public java.util.Map < String, ? > getTemplateBody() {
return this.templateBody;
}
public static final class Builder {
private String requestId;
private java.util.Map < String, ? > templateBody;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>TemplateBody.</p>
*/
public Builder templateBody(java.util.Map < String, ? > templateBody) {
this.templateBody = templateBody;
return this;
}
public GetResourceTypeTemplateResponseBody build() {
return new GetResourceTypeTemplateResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetServiceProvisionsRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetServiceProvisionsRequest} extends {@link RequestModel}
*
* <p>GetServiceProvisionsRequest</p>
*/
public class GetServiceProvisionsRequest extends Request {
@Query
@NameInMap("Parameters")
private java.util.List < Parameters> parameters;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("Services")
private java.util.List < Services> services;
@Query
@NameInMap("TemplateBody")
private String templateBody;
@Query
@NameInMap("TemplateId")
private String templateId;
@Query
@NameInMap("TemplateURL")
private String templateURL;
@Query
@NameInMap("TemplateVersion")
private String templateVersion;
private GetServiceProvisionsRequest(Builder builder) {
super(builder);
this.parameters = builder.parameters;
this.regionId = builder.regionId;
this.services = builder.services;
this.templateBody = builder.templateBody;
this.templateId = builder.templateId;
this.templateURL = builder.templateURL;
this.templateVersion = builder.templateVersion;
}
public static Builder builder() {
return new Builder();
}
public static GetServiceProvisionsRequest create() {
return builder().build();
}
/**
* @return parameters
*/
public java.util.List < Parameters> getParameters() {
return this.parameters;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return services
*/
public java.util.List < Services> getServices() {
return this.services;
}
/**
* @return templateBody
*/
public String getTemplateBody() {
return this.templateBody;
}
/**
* @return templateId
*/
public String getTemplateId() {
return this.templateId;
}
/**
* @return templateURL
*/
public String getTemplateURL() {
return this.templateURL;
}
/**
* @return templateVersion
*/
public String getTemplateVersion() {
return this.templateVersion;
}
public static final class Builder extends Request.Builder<Builder> {
private java.util.List < Parameters> parameters;
private String regionId;
private java.util.List < Services> services;
private String templateBody;
private String templateId;
private String templateURL;
private String templateVersion;
/**
* <p>Parameters.</p>
*/
public Builder parameters(java.util.List < Parameters> parameters) {
this.putQueryParameter("Parameters", parameters);
this.parameters = parameters;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>Services.</p>
*/
public Builder services(java.util.List < Services> services) {
this.putQueryParameter("Services", services);
this.services = services;
return this;
}
/**
* <p>TemplateBody.</p>
*/
public Builder templateBody(String templateBody) {
this.putQueryParameter("TemplateBody", templateBody);
this.templateBody = templateBody;
return this;
}
/**
* <p>TemplateId.</p>
*/
public Builder templateId(String templateId) {
this.putQueryParameter("TemplateId", templateId);
this.templateId = templateId;
return this;
}
/**
* <p>TemplateURL.</p>
*/
public Builder templateURL(String templateURL) {
this.putQueryParameter("TemplateURL", templateURL);
this.templateURL = templateURL;
return this;
}
/**
* <p>TemplateVersion.</p>
*/
public Builder templateVersion(String templateVersion) {
this.putQueryParameter("TemplateVersion", templateVersion);
this.templateVersion = templateVersion;
return this;
}
public GetServiceProvisionsRequest build() {
return new GetServiceProvisionsRequest(this);
}
}
public static class Parameters extends TeaModel {
@NameInMap("ParameterKey")
private String parameterKey;
@NameInMap("ParameterValue")
private String parameterValue;
private Parameters(Builder builder) {
this.parameterKey = builder.parameterKey;
this.parameterValue = builder.parameterValue;
}
public static Builder builder() {
return new Builder();
}
public static Parameters create() {
return builder().build();
}
/**
* @return parameterKey
*/
public String getParameterKey() {
return this.parameterKey;
}
/**
* @return parameterValue
*/
public String getParameterValue() {
return this.parameterValue;
}
public static final class Builder {
private String parameterKey;
private String parameterValue;
/**
* <p>ParameterKey.</p>
*/
public Builder parameterKey(String parameterKey) {
this.parameterKey = parameterKey;
return this;
}
/**
* <p>ParameterValue.</p>
*/
public Builder parameterValue(String parameterValue) {
this.parameterValue = parameterValue;
return this;
}
public Parameters build() {
return new Parameters(this);
}
}
}
public static class Services extends TeaModel {
@NameInMap("ServiceName")
private String serviceName;
private Services(Builder builder) {
this.serviceName = builder.serviceName;
}
public static Builder builder() {
return new Builder();
}
public static Services create() {
return builder().build();
}
/**
* @return serviceName
*/
public String getServiceName() {
return this.serviceName;
}
public static final class Builder {
private String serviceName;
/**
* <p>ServiceName.</p>
*/
public Builder serviceName(String serviceName) {
this.serviceName = serviceName;
return this;
}
public Services build() {
return new Services(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetServiceProvisionsResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetServiceProvisionsResponse} extends {@link TeaModel}
*
* <p>GetServiceProvisionsResponse</p>
*/
public class GetServiceProvisionsResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GetServiceProvisionsResponseBody body;
private GetServiceProvisionsResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GetServiceProvisionsResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public GetServiceProvisionsResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GetServiceProvisionsResponseBody body;
private Builder() {
super();
}
private Builder(GetServiceProvisionsResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(GetServiceProvisionsResponseBody body) {
this.body = body;
return this;
}
public GetServiceProvisionsResponse build() {
return new GetServiceProvisionsResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetServiceProvisionsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetServiceProvisionsResponseBody} extends {@link TeaModel}
*
* <p>GetServiceProvisionsResponseBody</p>
*/
public class GetServiceProvisionsResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("ServiceProvisions")
private java.util.List < ServiceProvisions> serviceProvisions;
private GetServiceProvisionsResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.serviceProvisions = builder.serviceProvisions;
}
public static Builder builder() {
return new Builder();
}
public static GetServiceProvisionsResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return serviceProvisions
*/
public java.util.List < ServiceProvisions> getServiceProvisions() {
return this.serviceProvisions;
}
public static final class Builder {
private String requestId;
private java.util.List < ServiceProvisions> serviceProvisions;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>ServiceProvisions.</p>
*/
public Builder serviceProvisions(java.util.List < ServiceProvisions> serviceProvisions) {
this.serviceProvisions = serviceProvisions;
return this;
}
public GetServiceProvisionsResponseBody build() {
return new GetServiceProvisionsResponseBody(this);
}
}
public static class Roles extends TeaModel {
@NameInMap("Created")
private Boolean created;
@NameInMap("Function")
private String function;
@NameInMap("RoleName")
private String roleName;
private Roles(Builder builder) {
this.created = builder.created;
this.function = builder.function;
this.roleName = builder.roleName;
}
public static Builder builder() {
return new Builder();
}
public static Roles create() {
return builder().build();
}
/**
* @return created
*/
public Boolean getCreated() {
return this.created;
}
/**
* @return function
*/
public String getFunction() {
return this.function;
}
/**
* @return roleName
*/
public String getRoleName() {
return this.roleName;
}
public static final class Builder {
private Boolean created;
private String function;
private String roleName;
/**
* <p>Created.</p>
*/
public Builder created(Boolean created) {
this.created = created;
return this;
}
/**
* <p>Function.</p>
*/
public Builder function(String function) {
this.function = function;
return this;
}
/**
* <p>RoleName.</p>
*/
public Builder roleName(String roleName) {
this.roleName = roleName;
return this;
}
public Roles build() {
return new Roles(this);
}
}
}
public static class RoleProvision extends TeaModel {
@NameInMap("AuthorizationURL")
private String authorizationURL;
@NameInMap("Roles")
private java.util.List < Roles> roles;
private RoleProvision(Builder builder) {
this.authorizationURL = builder.authorizationURL;
this.roles = builder.roles;
}
public static Builder builder() {
return new Builder();
}
public static RoleProvision create() {
return builder().build();
}
/**
* @return authorizationURL
*/
public String getAuthorizationURL() {
return this.authorizationURL;
}
/**
* @return roles
*/
public java.util.List < Roles> getRoles() {
return this.roles;
}
public static final class Builder {
private String authorizationURL;
private java.util.List < Roles> roles;
/**
* <p>AuthorizationURL.</p>
*/
public Builder authorizationURL(String authorizationURL) {
this.authorizationURL = authorizationURL;
return this;
}
/**
* <p>Roles.</p>
*/
public Builder roles(java.util.List < Roles> roles) {
this.roles = roles;
return this;
}
public RoleProvision build() {
return new RoleProvision(this);
}
}
}
public static class ServiceProvisions extends TeaModel {
@NameInMap("AutoEnableService")
private Boolean autoEnableService;
@NameInMap("EnableURL")
private String enableURL;
@NameInMap("RoleProvision")
private RoleProvision roleProvision;
@NameInMap("ServiceName")
private String serviceName;
@NameInMap("Status")
private String status;
@NameInMap("StatusReason")
private String statusReason;
private ServiceProvisions(Builder builder) {
this.autoEnableService = builder.autoEnableService;
this.enableURL = builder.enableURL;
this.roleProvision = builder.roleProvision;
this.serviceName = builder.serviceName;
this.status = builder.status;
this.statusReason = builder.statusReason;
}
public static Builder builder() {
return new Builder();
}
public static ServiceProvisions create() {
return builder().build();
}
/**
* @return autoEnableService
*/
public Boolean getAutoEnableService() {
return this.autoEnableService;
}
/**
* @return enableURL
*/
public String getEnableURL() {
return this.enableURL;
}
/**
* @return roleProvision
*/
public RoleProvision getRoleProvision() {
return this.roleProvision;
}
/**
* @return serviceName
*/
public String getServiceName() {
return this.serviceName;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return statusReason
*/
public String getStatusReason() {
return this.statusReason;
}
public static final class Builder {
private Boolean autoEnableService;
private String enableURL;
private RoleProvision roleProvision;
private String serviceName;
private String status;
private String statusReason;
/**
* <p>AutoEnableService.</p>
*/
public Builder autoEnableService(Boolean autoEnableService) {
this.autoEnableService = autoEnableService;
return this;
}
/**
* <p>EnableURL.</p>
*/
public Builder enableURL(String enableURL) {
this.enableURL = enableURL;
return this;
}
/**
* <p>RoleProvision.</p>
*/
public Builder roleProvision(RoleProvision roleProvision) {
this.roleProvision = roleProvision;
return this;
}
/**
* <p>ServiceName.</p>
*/
public Builder serviceName(String serviceName) {
this.serviceName = serviceName;
return this;
}
/**
* <p>Status.</p>
*/
public Builder status(String status) {
this.status = status;
return this;
}
/**
* <p>StatusReason.</p>
*/
public Builder statusReason(String statusReason) {
this.statusReason = statusReason;
return this;
}
public ServiceProvisions build() {
return new ServiceProvisions(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackDriftDetectionStatusRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackDriftDetectionStatusRequest} extends {@link RequestModel}
*
* <p>GetStackDriftDetectionStatusRequest</p>
*/
public class GetStackDriftDetectionStatusRequest extends Request {
@Query
@NameInMap("DriftDetectionId")
private String driftDetectionId;
@Query
@NameInMap("RegionId")
private String regionId;
private GetStackDriftDetectionStatusRequest(Builder builder) {
super(builder);
this.driftDetectionId = builder.driftDetectionId;
this.regionId = builder.regionId;
}
public static Builder builder() {
return new Builder();
}
public static GetStackDriftDetectionStatusRequest create() {
return builder().build();
}
/**
* @return driftDetectionId
*/
public String getDriftDetectionId() {
return this.driftDetectionId;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
public static final class Builder extends Request.Builder<Builder> {
private String driftDetectionId;
private String regionId;
/**
* <p>DriftDetectionId.</p>
*/
public Builder driftDetectionId(String driftDetectionId) {
this.putQueryParameter("DriftDetectionId", driftDetectionId);
this.driftDetectionId = driftDetectionId;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
public GetStackDriftDetectionStatusRequest build() {
return new GetStackDriftDetectionStatusRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackDriftDetectionStatusResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackDriftDetectionStatusResponse} extends {@link TeaModel}
*
* <p>GetStackDriftDetectionStatusResponse</p>
*/
public class GetStackDriftDetectionStatusResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GetStackDriftDetectionStatusResponseBody body;
private GetStackDriftDetectionStatusResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GetStackDriftDetectionStatusResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public GetStackDriftDetectionStatusResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GetStackDriftDetectionStatusResponseBody body;
private Builder() {
super();
}
private Builder(GetStackDriftDetectionStatusResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(GetStackDriftDetectionStatusResponseBody body) {
this.body = body;
return this;
}
public GetStackDriftDetectionStatusResponse build() {
return new GetStackDriftDetectionStatusResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackDriftDetectionStatusResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackDriftDetectionStatusResponseBody} extends {@link TeaModel}
*
* <p>GetStackDriftDetectionStatusResponseBody</p>
*/
public class GetStackDriftDetectionStatusResponseBody extends TeaModel {
@NameInMap("DriftDetectionId")
private String driftDetectionId;
@NameInMap("DriftDetectionStatus")
private String driftDetectionStatus;
@NameInMap("DriftDetectionStatusReason")
private String driftDetectionStatusReason;
@NameInMap("DriftDetectionTime")
private String driftDetectionTime;
@NameInMap("DriftedStackResourceCount")
private Integer driftedStackResourceCount;
@NameInMap("RequestId")
private String requestId;
@NameInMap("StackDriftStatus")
private String stackDriftStatus;
@NameInMap("StackId")
private String stackId;
private GetStackDriftDetectionStatusResponseBody(Builder builder) {
this.driftDetectionId = builder.driftDetectionId;
this.driftDetectionStatus = builder.driftDetectionStatus;
this.driftDetectionStatusReason = builder.driftDetectionStatusReason;
this.driftDetectionTime = builder.driftDetectionTime;
this.driftedStackResourceCount = builder.driftedStackResourceCount;
this.requestId = builder.requestId;
this.stackDriftStatus = builder.stackDriftStatus;
this.stackId = builder.stackId;
}
public static Builder builder() {
return new Builder();
}
public static GetStackDriftDetectionStatusResponseBody create() {
return builder().build();
}
/**
* @return driftDetectionId
*/
public String getDriftDetectionId() {
return this.driftDetectionId;
}
/**
* @return driftDetectionStatus
*/
public String getDriftDetectionStatus() {
return this.driftDetectionStatus;
}
/**
* @return driftDetectionStatusReason
*/
public String getDriftDetectionStatusReason() {
return this.driftDetectionStatusReason;
}
/**
* @return driftDetectionTime
*/
public String getDriftDetectionTime() {
return this.driftDetectionTime;
}
/**
* @return driftedStackResourceCount
*/
public Integer getDriftedStackResourceCount() {
return this.driftedStackResourceCount;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return stackDriftStatus
*/
public String getStackDriftStatus() {
return this.stackDriftStatus;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
public static final class Builder {
private String driftDetectionId;
private String driftDetectionStatus;
private String driftDetectionStatusReason;
private String driftDetectionTime;
private Integer driftedStackResourceCount;
private String requestId;
private String stackDriftStatus;
private String stackId;
/**
* <p>DriftDetectionId.</p>
*/
public Builder driftDetectionId(String driftDetectionId) {
this.driftDetectionId = driftDetectionId;
return this;
}
/**
* <p>DriftDetectionStatus.</p>
*/
public Builder driftDetectionStatus(String driftDetectionStatus) {
this.driftDetectionStatus = driftDetectionStatus;
return this;
}
/**
* <p>DriftDetectionStatusReason.</p>
*/
public Builder driftDetectionStatusReason(String driftDetectionStatusReason) {
this.driftDetectionStatusReason = driftDetectionStatusReason;
return this;
}
/**
* <p>DriftDetectionTime.</p>
*/
public Builder driftDetectionTime(String driftDetectionTime) {
this.driftDetectionTime = driftDetectionTime;
return this;
}
/**
* <p>DriftedStackResourceCount.</p>
*/
public Builder driftedStackResourceCount(Integer driftedStackResourceCount) {
this.driftedStackResourceCount = driftedStackResourceCount;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>StackDriftStatus.</p>
*/
public Builder stackDriftStatus(String stackDriftStatus) {
this.stackDriftStatus = stackDriftStatus;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.stackId = stackId;
return this;
}
public GetStackDriftDetectionStatusResponseBody build() {
return new GetStackDriftDetectionStatusResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackGroupOperationRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackGroupOperationRequest} extends {@link RequestModel}
*
* <p>GetStackGroupOperationRequest</p>
*/
public class GetStackGroupOperationRequest extends Request {
@Query
@NameInMap("OperationId")
private String operationId;
@Query
@NameInMap("RegionId")
private String regionId;
private GetStackGroupOperationRequest(Builder builder) {
super(builder);
this.operationId = builder.operationId;
this.regionId = builder.regionId;
}
public static Builder builder() {
return new Builder();
}
public static GetStackGroupOperationRequest create() {
return builder().build();
}
/**
* @return operationId
*/
public String getOperationId() {
return this.operationId;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
public static final class Builder extends Request.Builder<Builder> {
private String operationId;
private String regionId;
/**
* <p>OperationId.</p>
*/
public Builder operationId(String operationId) {
this.putQueryParameter("OperationId", operationId);
this.operationId = operationId;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
public GetStackGroupOperationRequest build() {
return new GetStackGroupOperationRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackGroupOperationResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackGroupOperationResponse} extends {@link TeaModel}
*
* <p>GetStackGroupOperationResponse</p>
*/
public class GetStackGroupOperationResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GetStackGroupOperationResponseBody body;
private GetStackGroupOperationResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GetStackGroupOperationResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public GetStackGroupOperationResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GetStackGroupOperationResponseBody body;
private Builder() {
super();
}
private Builder(GetStackGroupOperationResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(GetStackGroupOperationResponseBody body) {
this.body = body;
return this;
}
public GetStackGroupOperationResponse build() {
return new GetStackGroupOperationResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackGroupOperationResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackGroupOperationResponseBody} extends {@link TeaModel}
*
* <p>GetStackGroupOperationResponseBody</p>
*/
public class GetStackGroupOperationResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("StackGroupOperation")
private StackGroupOperation stackGroupOperation;
private GetStackGroupOperationResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.stackGroupOperation = builder.stackGroupOperation;
}
public static Builder builder() {
return new Builder();
}
public static GetStackGroupOperationResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return stackGroupOperation
*/
public StackGroupOperation getStackGroupOperation() {
return this.stackGroupOperation;
}
public static final class Builder {
private String requestId;
private StackGroupOperation stackGroupOperation;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>StackGroupOperation.</p>
*/
public Builder stackGroupOperation(StackGroupOperation stackGroupOperation) {
this.stackGroupOperation = stackGroupOperation;
return this;
}
public GetStackGroupOperationResponseBody build() {
return new GetStackGroupOperationResponseBody(this);
}
}
public static class DeploymentTargets extends TeaModel {
@NameInMap("AccountIds")
private java.util.List < String > accountIds;
@NameInMap("RdFolderIds")
private java.util.List < String > rdFolderIds;
private DeploymentTargets(Builder builder) {
this.accountIds = builder.accountIds;
this.rdFolderIds = builder.rdFolderIds;
}
public static Builder builder() {
return new Builder();
}
public static DeploymentTargets create() {
return builder().build();
}
/**
* @return accountIds
*/
public java.util.List < String > getAccountIds() {
return this.accountIds;
}
/**
* @return rdFolderIds
*/
public java.util.List < String > getRdFolderIds() {
return this.rdFolderIds;
}
public static final class Builder {
private java.util.List < String > accountIds;
private java.util.List < String > rdFolderIds;
/**
* <p>AccountIds.</p>
*/
public Builder accountIds(java.util.List < String > accountIds) {
this.accountIds = accountIds;
return this;
}
/**
* <p>RdFolderIds.</p>
*/
public Builder rdFolderIds(java.util.List < String > rdFolderIds) {
this.rdFolderIds = rdFolderIds;
return this;
}
public DeploymentTargets build() {
return new DeploymentTargets(this);
}
}
}
public static class OperationPreferences extends TeaModel {
@NameInMap("FailureToleranceCount")
private Integer failureToleranceCount;
@NameInMap("FailureTolerancePercentage")
private Integer failureTolerancePercentage;
@NameInMap("MaxConcurrentCount")
private Integer maxConcurrentCount;
@NameInMap("MaxConcurrentPercentage")
private Integer maxConcurrentPercentage;
@NameInMap("RegionIdsOrder")
private java.util.List < String > regionIdsOrder;
private OperationPreferences(Builder builder) {
this.failureToleranceCount = builder.failureToleranceCount;
this.failureTolerancePercentage = builder.failureTolerancePercentage;
this.maxConcurrentCount = builder.maxConcurrentCount;
this.maxConcurrentPercentage = builder.maxConcurrentPercentage;
this.regionIdsOrder = builder.regionIdsOrder;
}
public static Builder builder() {
return new Builder();
}
public static OperationPreferences create() {
return builder().build();
}
/**
* @return failureToleranceCount
*/
public Integer getFailureToleranceCount() {
return this.failureToleranceCount;
}
/**
* @return failureTolerancePercentage
*/
public Integer getFailureTolerancePercentage() {
return this.failureTolerancePercentage;
}
/**
* @return maxConcurrentCount
*/
public Integer getMaxConcurrentCount() {
return this.maxConcurrentCount;
}
/**
* @return maxConcurrentPercentage
*/
public Integer getMaxConcurrentPercentage() {
return this.maxConcurrentPercentage;
}
/**
* @return regionIdsOrder
*/
public java.util.List < String > getRegionIdsOrder() {
return this.regionIdsOrder;
}
public static final class Builder {
private Integer failureToleranceCount;
private Integer failureTolerancePercentage;
private Integer maxConcurrentCount;
private Integer maxConcurrentPercentage;
private java.util.List < String > regionIdsOrder;
/**
* <p>FailureToleranceCount.</p>
*/
public Builder failureToleranceCount(Integer failureToleranceCount) {
this.failureToleranceCount = failureToleranceCount;
return this;
}
/**
* <p>FailureTolerancePercentage.</p>
*/
public Builder failureTolerancePercentage(Integer failureTolerancePercentage) {
this.failureTolerancePercentage = failureTolerancePercentage;
return this;
}
/**
* <p>MaxConcurrentCount.</p>
*/
public Builder maxConcurrentCount(Integer maxConcurrentCount) {
this.maxConcurrentCount = maxConcurrentCount;
return this;
}
/**
* <p>MaxConcurrentPercentage.</p>
*/
public Builder maxConcurrentPercentage(Integer maxConcurrentPercentage) {
this.maxConcurrentPercentage = maxConcurrentPercentage;
return this;
}
/**
* <p>RegionIdsOrder.</p>
*/
public Builder regionIdsOrder(java.util.List < String > regionIdsOrder) {
this.regionIdsOrder = regionIdsOrder;
return this;
}
public OperationPreferences build() {
return new OperationPreferences(this);
}
}
}
public static class StackGroupDriftDetectionDetail extends TeaModel {
@NameInMap("CancelledStackInstancesCount")
private Integer cancelledStackInstancesCount;
@NameInMap("DriftDetectionStatus")
private String driftDetectionStatus;
@NameInMap("DriftDetectionTime")
private String driftDetectionTime;
@NameInMap("DriftedStackInstancesCount")
private Integer driftedStackInstancesCount;
@NameInMap("FailedStackInstancesCount")
private Integer failedStackInstancesCount;
@NameInMap("InProgressStackInstancesCount")
private Integer inProgressStackInstancesCount;
@NameInMap("InSyncStackInstancesCount")
private Integer inSyncStackInstancesCount;
@NameInMap("StackGroupDriftStatus")
private String stackGroupDriftStatus;
@NameInMap("TotalStackInstancesCount")
private Integer totalStackInstancesCount;
private StackGroupDriftDetectionDetail(Builder builder) {
this.cancelledStackInstancesCount = builder.cancelledStackInstancesCount;
this.driftDetectionStatus = builder.driftDetectionStatus;
this.driftDetectionTime = builder.driftDetectionTime;
this.driftedStackInstancesCount = builder.driftedStackInstancesCount;
this.failedStackInstancesCount = builder.failedStackInstancesCount;
this.inProgressStackInstancesCount = builder.inProgressStackInstancesCount;
this.inSyncStackInstancesCount = builder.inSyncStackInstancesCount;
this.stackGroupDriftStatus = builder.stackGroupDriftStatus;
this.totalStackInstancesCount = builder.totalStackInstancesCount;
}
public static Builder builder() {
return new Builder();
}
public static StackGroupDriftDetectionDetail create() {
return builder().build();
}
/**
* @return cancelledStackInstancesCount
*/
public Integer getCancelledStackInstancesCount() {
return this.cancelledStackInstancesCount;
}
/**
* @return driftDetectionStatus
*/
public String getDriftDetectionStatus() {
return this.driftDetectionStatus;
}
/**
* @return driftDetectionTime
*/
public String getDriftDetectionTime() {
return this.driftDetectionTime;
}
/**
* @return driftedStackInstancesCount
*/
public Integer getDriftedStackInstancesCount() {
return this.driftedStackInstancesCount;
}
/**
* @return failedStackInstancesCount
*/
public Integer getFailedStackInstancesCount() {
return this.failedStackInstancesCount;
}
/**
* @return inProgressStackInstancesCount
*/
public Integer getInProgressStackInstancesCount() {
return this.inProgressStackInstancesCount;
}
/**
* @return inSyncStackInstancesCount
*/
public Integer getInSyncStackInstancesCount() {
return this.inSyncStackInstancesCount;
}
/**
* @return stackGroupDriftStatus
*/
public String getStackGroupDriftStatus() {
return this.stackGroupDriftStatus;
}
/**
* @return totalStackInstancesCount
*/
public Integer getTotalStackInstancesCount() {
return this.totalStackInstancesCount;
}
public static final class Builder {
private Integer cancelledStackInstancesCount;
private String driftDetectionStatus;
private String driftDetectionTime;
private Integer driftedStackInstancesCount;
private Integer failedStackInstancesCount;
private Integer inProgressStackInstancesCount;
private Integer inSyncStackInstancesCount;
private String stackGroupDriftStatus;
private Integer totalStackInstancesCount;
/**
* <p>CancelledStackInstancesCount.</p>
*/
public Builder cancelledStackInstancesCount(Integer cancelledStackInstancesCount) {
this.cancelledStackInstancesCount = cancelledStackInstancesCount;
return this;
}
/**
* <p>DriftDetectionStatus.</p>
*/
public Builder driftDetectionStatus(String driftDetectionStatus) {
this.driftDetectionStatus = driftDetectionStatus;
return this;
}
/**
* <p>DriftDetectionTime.</p>
*/
public Builder driftDetectionTime(String driftDetectionTime) {
this.driftDetectionTime = driftDetectionTime;
return this;
}
/**
* <p>DriftedStackInstancesCount.</p>
*/
public Builder driftedStackInstancesCount(Integer driftedStackInstancesCount) {
this.driftedStackInstancesCount = driftedStackInstancesCount;
return this;
}
/**
* <p>FailedStackInstancesCount.</p>
*/
public Builder failedStackInstancesCount(Integer failedStackInstancesCount) {
this.failedStackInstancesCount = failedStackInstancesCount;
return this;
}
/**
* <p>InProgressStackInstancesCount.</p>
*/
public Builder inProgressStackInstancesCount(Integer inProgressStackInstancesCount) {
this.inProgressStackInstancesCount = inProgressStackInstancesCount;
return this;
}
/**
* <p>InSyncStackInstancesCount.</p>
*/
public Builder inSyncStackInstancesCount(Integer inSyncStackInstancesCount) {
this.inSyncStackInstancesCount = inSyncStackInstancesCount;
return this;
}
/**
* <p>StackGroupDriftStatus.</p>
*/
public Builder stackGroupDriftStatus(String stackGroupDriftStatus) {
this.stackGroupDriftStatus = stackGroupDriftStatus;
return this;
}
/**
* <p>TotalStackInstancesCount.</p>
*/
public Builder totalStackInstancesCount(Integer totalStackInstancesCount) {
this.totalStackInstancesCount = totalStackInstancesCount;
return this;
}
public StackGroupDriftDetectionDetail build() {
return new StackGroupDriftDetectionDetail(this);
}
}
}
public static class StackGroupOperation extends TeaModel {
@NameInMap("Action")
private String action;
@NameInMap("AdministrationRoleName")
private String administrationRoleName;
@NameInMap("CreateTime")
private String createTime;
@NameInMap("DeploymentTargets")
private DeploymentTargets deploymentTargets;
@NameInMap("EndTime")
private String endTime;
@NameInMap("ExecutionRoleName")
private String executionRoleName;
@NameInMap("OperationDescription")
private String operationDescription;
@NameInMap("OperationId")
private String operationId;
@NameInMap("OperationPreferences")
private OperationPreferences operationPreferences;
@NameInMap("RetainStacks")
private Boolean retainStacks;
@NameInMap("StackGroupDriftDetectionDetail")
private StackGroupDriftDetectionDetail stackGroupDriftDetectionDetail;
@NameInMap("StackGroupId")
private String stackGroupId;
@NameInMap("StackGroupName")
private String stackGroupName;
@NameInMap("Status")
private String status;
private StackGroupOperation(Builder builder) {
this.action = builder.action;
this.administrationRoleName = builder.administrationRoleName;
this.createTime = builder.createTime;
this.deploymentTargets = builder.deploymentTargets;
this.endTime = builder.endTime;
this.executionRoleName = builder.executionRoleName;
this.operationDescription = builder.operationDescription;
this.operationId = builder.operationId;
this.operationPreferences = builder.operationPreferences;
this.retainStacks = builder.retainStacks;
this.stackGroupDriftDetectionDetail = builder.stackGroupDriftDetectionDetail;
this.stackGroupId = builder.stackGroupId;
this.stackGroupName = builder.stackGroupName;
this.status = builder.status;
}
public static Builder builder() {
return new Builder();
}
public static StackGroupOperation create() {
return builder().build();
}
/**
* @return action
*/
public String getAction() {
return this.action;
}
/**
* @return administrationRoleName
*/
public String getAdministrationRoleName() {
return this.administrationRoleName;
}
/**
* @return createTime
*/
public String getCreateTime() {
return this.createTime;
}
/**
* @return deploymentTargets
*/
public DeploymentTargets getDeploymentTargets() {
return this.deploymentTargets;
}
/**
* @return endTime
*/
public String getEndTime() {
return this.endTime;
}
/**
* @return executionRoleName
*/
public String getExecutionRoleName() {
return this.executionRoleName;
}
/**
* @return operationDescription
*/
public String getOperationDescription() {
return this.operationDescription;
}
/**
* @return operationId
*/
public String getOperationId() {
return this.operationId;
}
/**
* @return operationPreferences
*/
public OperationPreferences getOperationPreferences() {
return this.operationPreferences;
}
/**
* @return retainStacks
*/
public Boolean getRetainStacks() {
return this.retainStacks;
}
/**
* @return stackGroupDriftDetectionDetail
*/
public StackGroupDriftDetectionDetail getStackGroupDriftDetectionDetail() {
return this.stackGroupDriftDetectionDetail;
}
/**
* @return stackGroupId
*/
public String getStackGroupId() {
return this.stackGroupId;
}
/**
* @return stackGroupName
*/
public String getStackGroupName() {
return this.stackGroupName;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
public static final class Builder {
private String action;
private String administrationRoleName;
private String createTime;
private DeploymentTargets deploymentTargets;
private String endTime;
private String executionRoleName;
private String operationDescription;
private String operationId;
private OperationPreferences operationPreferences;
private Boolean retainStacks;
private StackGroupDriftDetectionDetail stackGroupDriftDetectionDetail;
private String stackGroupId;
private String stackGroupName;
private String status;
/**
* <p>Action.</p>
*/
public Builder action(String action) {
this.action = action;
return this;
}
/**
* <p>AdministrationRoleName.</p>
*/
public Builder administrationRoleName(String administrationRoleName) {
this.administrationRoleName = administrationRoleName;
return this;
}
/**
* <p>CreateTime.</p>
*/
public Builder createTime(String createTime) {
this.createTime = createTime;
return this;
}
/**
* <p>DeploymentTargets.</p>
*/
public Builder deploymentTargets(DeploymentTargets deploymentTargets) {
this.deploymentTargets = deploymentTargets;
return this;
}
/**
* <p>EndTime.</p>
*/
public Builder endTime(String endTime) {
this.endTime = endTime;
return this;
}
/**
* <p>ExecutionRoleName.</p>
*/
public Builder executionRoleName(String executionRoleName) {
this.executionRoleName = executionRoleName;
return this;
}
/**
* <p>OperationDescription.</p>
*/
public Builder operationDescription(String operationDescription) {
this.operationDescription = operationDescription;
return this;
}
/**
* <p>OperationId.</p>
*/
public Builder operationId(String operationId) {
this.operationId = operationId;
return this;
}
/**
* <p>OperationPreferences.</p>
*/
public Builder operationPreferences(OperationPreferences operationPreferences) {
this.operationPreferences = operationPreferences;
return this;
}
/**
* <p>RetainStacks.</p>
*/
public Builder retainStacks(Boolean retainStacks) {
this.retainStacks = retainStacks;
return this;
}
/**
* <p>StackGroupDriftDetectionDetail.</p>
*/
public Builder stackGroupDriftDetectionDetail(StackGroupDriftDetectionDetail stackGroupDriftDetectionDetail) {
this.stackGroupDriftDetectionDetail = stackGroupDriftDetectionDetail;
return this;
}
/**
* <p>StackGroupId.</p>
*/
public Builder stackGroupId(String stackGroupId) {
this.stackGroupId = stackGroupId;
return this;
}
/**
* <p>StackGroupName.</p>
*/
public Builder stackGroupName(String stackGroupName) {
this.stackGroupName = stackGroupName;
return this;
}
/**
* <p>Status.</p>
*/
public Builder status(String status) {
this.status = status;
return this;
}
public StackGroupOperation build() {
return new StackGroupOperation(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackGroupRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackGroupRequest} extends {@link RequestModel}
*
* <p>GetStackGroupRequest</p>
*/
public class GetStackGroupRequest extends Request {
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("StackGroupId")
private String stackGroupId;
@Query
@NameInMap("StackGroupName")
private String stackGroupName;
private GetStackGroupRequest(Builder builder) {
super(builder);
this.regionId = builder.regionId;
this.stackGroupId = builder.stackGroupId;
this.stackGroupName = builder.stackGroupName;
}
public static Builder builder() {
return new Builder();
}
public static GetStackGroupRequest create() {
return builder().build();
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return stackGroupId
*/
public String getStackGroupId() {
return this.stackGroupId;
}
/**
* @return stackGroupName
*/
public String getStackGroupName() {
return this.stackGroupName;
}
public static final class Builder extends Request.Builder<Builder> {
private String regionId;
private String stackGroupId;
private String stackGroupName;
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>StackGroupId.</p>
*/
public Builder stackGroupId(String stackGroupId) {
this.putQueryParameter("StackGroupId", stackGroupId);
this.stackGroupId = stackGroupId;
return this;
}
/**
* <p>StackGroupName.</p>
*/
public Builder stackGroupName(String stackGroupName) {
this.putQueryParameter("StackGroupName", stackGroupName);
this.stackGroupName = stackGroupName;
return this;
}
public GetStackGroupRequest build() {
return new GetStackGroupRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackGroupResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackGroupResponse} extends {@link TeaModel}
*
* <p>GetStackGroupResponse</p>
*/
public class GetStackGroupResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GetStackGroupResponseBody body;
private GetStackGroupResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GetStackGroupResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public GetStackGroupResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GetStackGroupResponseBody body;
private Builder() {
super();
}
private Builder(GetStackGroupResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(GetStackGroupResponseBody body) {
this.body = body;
return this;
}
public GetStackGroupResponse build() {
return new GetStackGroupResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackGroupResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackGroupResponseBody} extends {@link TeaModel}
*
* <p>GetStackGroupResponseBody</p>
*/
public class GetStackGroupResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("StackGroup")
private StackGroup stackGroup;
private GetStackGroupResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.stackGroup = builder.stackGroup;
}
public static Builder builder() {
return new Builder();
}
public static GetStackGroupResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return stackGroup
*/
public StackGroup getStackGroup() {
return this.stackGroup;
}
public static final class Builder {
private String requestId;
private StackGroup stackGroup;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>StackGroup.</p>
*/
public Builder stackGroup(StackGroup stackGroup) {
this.stackGroup = stackGroup;
return this;
}
public GetStackGroupResponseBody build() {
return new GetStackGroupResponseBody(this);
}
}
public static class AutoDeployment extends TeaModel {
@NameInMap("Enabled")
private Boolean enabled;
@NameInMap("RetainStacksOnAccountRemoval")
private Boolean retainStacksOnAccountRemoval;
private AutoDeployment(Builder builder) {
this.enabled = builder.enabled;
this.retainStacksOnAccountRemoval = builder.retainStacksOnAccountRemoval;
}
public static Builder builder() {
return new Builder();
}
public static AutoDeployment create() {
return builder().build();
}
/**
* @return enabled
*/
public Boolean getEnabled() {
return this.enabled;
}
/**
* @return retainStacksOnAccountRemoval
*/
public Boolean getRetainStacksOnAccountRemoval() {
return this.retainStacksOnAccountRemoval;
}
public static final class Builder {
private Boolean enabled;
private Boolean retainStacksOnAccountRemoval;
/**
* <p>Enabled.</p>
*/
public Builder enabled(Boolean enabled) {
this.enabled = enabled;
return this;
}
/**
* <p>RetainStacksOnAccountRemoval.</p>
*/
public Builder retainStacksOnAccountRemoval(Boolean retainStacksOnAccountRemoval) {
this.retainStacksOnAccountRemoval = retainStacksOnAccountRemoval;
return this;
}
public AutoDeployment build() {
return new AutoDeployment(this);
}
}
}
public static class Parameters extends TeaModel {
@NameInMap("ParameterKey")
private String parameterKey;
@NameInMap("ParameterValue")
private String parameterValue;
private Parameters(Builder builder) {
this.parameterKey = builder.parameterKey;
this.parameterValue = builder.parameterValue;
}
public static Builder builder() {
return new Builder();
}
public static Parameters create() {
return builder().build();
}
/**
* @return parameterKey
*/
public String getParameterKey() {
return this.parameterKey;
}
/**
* @return parameterValue
*/
public String getParameterValue() {
return this.parameterValue;
}
public static final class Builder {
private String parameterKey;
private String parameterValue;
/**
* <p>ParameterKey.</p>
*/
public Builder parameterKey(String parameterKey) {
this.parameterKey = parameterKey;
return this;
}
/**
* <p>ParameterValue.</p>
*/
public Builder parameterValue(String parameterValue) {
this.parameterValue = parameterValue;
return this;
}
public Parameters build() {
return new Parameters(this);
}
}
}
public static class StackGroupDriftDetectionDetail extends TeaModel {
@NameInMap("CancelledStackInstancesCount")
private Integer cancelledStackInstancesCount;
@NameInMap("DriftDetectionStatus")
private String driftDetectionStatus;
@NameInMap("DriftDetectionTime")
private String driftDetectionTime;
@NameInMap("DriftedStackInstancesCount")
private Integer driftedStackInstancesCount;
@NameInMap("FailedStackInstancesCount")
private Integer failedStackInstancesCount;
@NameInMap("InProgressStackInstancesCount")
private Integer inProgressStackInstancesCount;
@NameInMap("InSyncStackInstancesCount")
private Integer inSyncStackInstancesCount;
@NameInMap("StackGroupDriftStatus")
private String stackGroupDriftStatus;
@NameInMap("TotalStackInstancesCount")
private Integer totalStackInstancesCount;
private StackGroupDriftDetectionDetail(Builder builder) {
this.cancelledStackInstancesCount = builder.cancelledStackInstancesCount;
this.driftDetectionStatus = builder.driftDetectionStatus;
this.driftDetectionTime = builder.driftDetectionTime;
this.driftedStackInstancesCount = builder.driftedStackInstancesCount;
this.failedStackInstancesCount = builder.failedStackInstancesCount;
this.inProgressStackInstancesCount = builder.inProgressStackInstancesCount;
this.inSyncStackInstancesCount = builder.inSyncStackInstancesCount;
this.stackGroupDriftStatus = builder.stackGroupDriftStatus;
this.totalStackInstancesCount = builder.totalStackInstancesCount;
}
public static Builder builder() {
return new Builder();
}
public static StackGroupDriftDetectionDetail create() {
return builder().build();
}
/**
* @return cancelledStackInstancesCount
*/
public Integer getCancelledStackInstancesCount() {
return this.cancelledStackInstancesCount;
}
/**
* @return driftDetectionStatus
*/
public String getDriftDetectionStatus() {
return this.driftDetectionStatus;
}
/**
* @return driftDetectionTime
*/
public String getDriftDetectionTime() {
return this.driftDetectionTime;
}
/**
* @return driftedStackInstancesCount
*/
public Integer getDriftedStackInstancesCount() {
return this.driftedStackInstancesCount;
}
/**
* @return failedStackInstancesCount
*/
public Integer getFailedStackInstancesCount() {
return this.failedStackInstancesCount;
}
/**
* @return inProgressStackInstancesCount
*/
public Integer getInProgressStackInstancesCount() {
return this.inProgressStackInstancesCount;
}
/**
* @return inSyncStackInstancesCount
*/
public Integer getInSyncStackInstancesCount() {
return this.inSyncStackInstancesCount;
}
/**
* @return stackGroupDriftStatus
*/
public String getStackGroupDriftStatus() {
return this.stackGroupDriftStatus;
}
/**
* @return totalStackInstancesCount
*/
public Integer getTotalStackInstancesCount() {
return this.totalStackInstancesCount;
}
public static final class Builder {
private Integer cancelledStackInstancesCount;
private String driftDetectionStatus;
private String driftDetectionTime;
private Integer driftedStackInstancesCount;
private Integer failedStackInstancesCount;
private Integer inProgressStackInstancesCount;
private Integer inSyncStackInstancesCount;
private String stackGroupDriftStatus;
private Integer totalStackInstancesCount;
/**
* <p>CancelledStackInstancesCount.</p>
*/
public Builder cancelledStackInstancesCount(Integer cancelledStackInstancesCount) {
this.cancelledStackInstancesCount = cancelledStackInstancesCount;
return this;
}
/**
* <p>DriftDetectionStatus.</p>
*/
public Builder driftDetectionStatus(String driftDetectionStatus) {
this.driftDetectionStatus = driftDetectionStatus;
return this;
}
/**
* <p>DriftDetectionTime.</p>
*/
public Builder driftDetectionTime(String driftDetectionTime) {
this.driftDetectionTime = driftDetectionTime;
return this;
}
/**
* <p>DriftedStackInstancesCount.</p>
*/
public Builder driftedStackInstancesCount(Integer driftedStackInstancesCount) {
this.driftedStackInstancesCount = driftedStackInstancesCount;
return this;
}
/**
* <p>FailedStackInstancesCount.</p>
*/
public Builder failedStackInstancesCount(Integer failedStackInstancesCount) {
this.failedStackInstancesCount = failedStackInstancesCount;
return this;
}
/**
* <p>InProgressStackInstancesCount.</p>
*/
public Builder inProgressStackInstancesCount(Integer inProgressStackInstancesCount) {
this.inProgressStackInstancesCount = inProgressStackInstancesCount;
return this;
}
/**
* <p>InSyncStackInstancesCount.</p>
*/
public Builder inSyncStackInstancesCount(Integer inSyncStackInstancesCount) {
this.inSyncStackInstancesCount = inSyncStackInstancesCount;
return this;
}
/**
* <p>StackGroupDriftStatus.</p>
*/
public Builder stackGroupDriftStatus(String stackGroupDriftStatus) {
this.stackGroupDriftStatus = stackGroupDriftStatus;
return this;
}
/**
* <p>TotalStackInstancesCount.</p>
*/
public Builder totalStackInstancesCount(Integer totalStackInstancesCount) {
this.totalStackInstancesCount = totalStackInstancesCount;
return this;
}
public StackGroupDriftDetectionDetail build() {
return new StackGroupDriftDetectionDetail(this);
}
}
}
public static class StackGroup extends TeaModel {
@NameInMap("AdministrationRoleName")
private String administrationRoleName;
@NameInMap("AutoDeployment")
private AutoDeployment autoDeployment;
@NameInMap("Description")
private String description;
@NameInMap("ExecutionRoleName")
private String executionRoleName;
@NameInMap("Parameters")
private java.util.List < Parameters> parameters;
@NameInMap("PermissionModel")
private String permissionModel;
@NameInMap("RdFolderIds")
private java.util.List < String > rdFolderIds;
@NameInMap("ResourceGroupId")
private String resourceGroupId;
@NameInMap("StackGroupDriftDetectionDetail")
private StackGroupDriftDetectionDetail stackGroupDriftDetectionDetail;
@NameInMap("StackGroupId")
private String stackGroupId;
@NameInMap("StackGroupName")
private String stackGroupName;
@NameInMap("Status")
private String status;
@NameInMap("TemplateBody")
private String templateBody;
private StackGroup(Builder builder) {
this.administrationRoleName = builder.administrationRoleName;
this.autoDeployment = builder.autoDeployment;
this.description = builder.description;
this.executionRoleName = builder.executionRoleName;
this.parameters = builder.parameters;
this.permissionModel = builder.permissionModel;
this.rdFolderIds = builder.rdFolderIds;
this.resourceGroupId = builder.resourceGroupId;
this.stackGroupDriftDetectionDetail = builder.stackGroupDriftDetectionDetail;
this.stackGroupId = builder.stackGroupId;
this.stackGroupName = builder.stackGroupName;
this.status = builder.status;
this.templateBody = builder.templateBody;
}
public static Builder builder() {
return new Builder();
}
public static StackGroup create() {
return builder().build();
}
/**
* @return administrationRoleName
*/
public String getAdministrationRoleName() {
return this.administrationRoleName;
}
/**
* @return autoDeployment
*/
public AutoDeployment getAutoDeployment() {
return this.autoDeployment;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return executionRoleName
*/
public String getExecutionRoleName() {
return this.executionRoleName;
}
/**
* @return parameters
*/
public java.util.List < Parameters> getParameters() {
return this.parameters;
}
/**
* @return permissionModel
*/
public String getPermissionModel() {
return this.permissionModel;
}
/**
* @return rdFolderIds
*/
public java.util.List < String > getRdFolderIds() {
return this.rdFolderIds;
}
/**
* @return resourceGroupId
*/
public String getResourceGroupId() {
return this.resourceGroupId;
}
/**
* @return stackGroupDriftDetectionDetail
*/
public StackGroupDriftDetectionDetail getStackGroupDriftDetectionDetail() {
return this.stackGroupDriftDetectionDetail;
}
/**
* @return stackGroupId
*/
public String getStackGroupId() {
return this.stackGroupId;
}
/**
* @return stackGroupName
*/
public String getStackGroupName() {
return this.stackGroupName;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return templateBody
*/
public String getTemplateBody() {
return this.templateBody;
}
public static final class Builder {
private String administrationRoleName;
private AutoDeployment autoDeployment;
private String description;
private String executionRoleName;
private java.util.List < Parameters> parameters;
private String permissionModel;
private java.util.List < String > rdFolderIds;
private String resourceGroupId;
private StackGroupDriftDetectionDetail stackGroupDriftDetectionDetail;
private String stackGroupId;
private String stackGroupName;
private String status;
private String templateBody;
/**
* <p>AdministrationRoleName.</p>
*/
public Builder administrationRoleName(String administrationRoleName) {
this.administrationRoleName = administrationRoleName;
return this;
}
/**
* <p>AutoDeployment.</p>
*/
public Builder autoDeployment(AutoDeployment autoDeployment) {
this.autoDeployment = autoDeployment;
return this;
}
/**
* <p>Description.</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>ExecutionRoleName.</p>
*/
public Builder executionRoleName(String executionRoleName) {
this.executionRoleName = executionRoleName;
return this;
}
/**
* <p>Parameters.</p>
*/
public Builder parameters(java.util.List < Parameters> parameters) {
this.parameters = parameters;
return this;
}
/**
* <p>PermissionModel.</p>
*/
public Builder permissionModel(String permissionModel) {
this.permissionModel = permissionModel;
return this;
}
/**
* <p>RdFolderIds.</p>
*/
public Builder rdFolderIds(java.util.List < String > rdFolderIds) {
this.rdFolderIds = rdFolderIds;
return this;
}
/**
* <p>ResourceGroupId.</p>
*/
public Builder resourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
return this;
}
/**
* <p>StackGroupDriftDetectionDetail.</p>
*/
public Builder stackGroupDriftDetectionDetail(StackGroupDriftDetectionDetail stackGroupDriftDetectionDetail) {
this.stackGroupDriftDetectionDetail = stackGroupDriftDetectionDetail;
return this;
}
/**
* <p>StackGroupId.</p>
*/
public Builder stackGroupId(String stackGroupId) {
this.stackGroupId = stackGroupId;
return this;
}
/**
* <p>StackGroupName.</p>
*/
public Builder stackGroupName(String stackGroupName) {
this.stackGroupName = stackGroupName;
return this;
}
/**
* <p>Status.</p>
*/
public Builder status(String status) {
this.status = status;
return this;
}
/**
* <p>TemplateBody.</p>
*/
public Builder templateBody(String templateBody) {
this.templateBody = templateBody;
return this;
}
public StackGroup build() {
return new StackGroup(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackInstanceRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackInstanceRequest} extends {@link RequestModel}
*
* <p>GetStackInstanceRequest</p>
*/
public class GetStackInstanceRequest extends Request {
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("StackGroupName")
private String stackGroupName;
@Query
@NameInMap("StackInstanceAccountId")
private String stackInstanceAccountId;
@Query
@NameInMap("StackInstanceRegionId")
private String stackInstanceRegionId;
private GetStackInstanceRequest(Builder builder) {
super(builder);
this.regionId = builder.regionId;
this.stackGroupName = builder.stackGroupName;
this.stackInstanceAccountId = builder.stackInstanceAccountId;
this.stackInstanceRegionId = builder.stackInstanceRegionId;
}
public static Builder builder() {
return new Builder();
}
public static GetStackInstanceRequest create() {
return builder().build();
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return stackGroupName
*/
public String getStackGroupName() {
return this.stackGroupName;
}
/**
* @return stackInstanceAccountId
*/
public String getStackInstanceAccountId() {
return this.stackInstanceAccountId;
}
/**
* @return stackInstanceRegionId
*/
public String getStackInstanceRegionId() {
return this.stackInstanceRegionId;
}
public static final class Builder extends Request.Builder<Builder> {
private String regionId;
private String stackGroupName;
private String stackInstanceAccountId;
private String stackInstanceRegionId;
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>StackGroupName.</p>
*/
public Builder stackGroupName(String stackGroupName) {
this.putQueryParameter("StackGroupName", stackGroupName);
this.stackGroupName = stackGroupName;
return this;
}
/**
* <p>StackInstanceAccountId.</p>
*/
public Builder stackInstanceAccountId(String stackInstanceAccountId) {
this.putQueryParameter("StackInstanceAccountId", stackInstanceAccountId);
this.stackInstanceAccountId = stackInstanceAccountId;
return this;
}
/**
* <p>StackInstanceRegionId.</p>
*/
public Builder stackInstanceRegionId(String stackInstanceRegionId) {
this.putQueryParameter("StackInstanceRegionId", stackInstanceRegionId);
this.stackInstanceRegionId = stackInstanceRegionId;
return this;
}
public GetStackInstanceRequest build() {
return new GetStackInstanceRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackInstanceResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackInstanceResponse} extends {@link TeaModel}
*
* <p>GetStackInstanceResponse</p>
*/
public class GetStackInstanceResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GetStackInstanceResponseBody body;
private GetStackInstanceResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GetStackInstanceResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public GetStackInstanceResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GetStackInstanceResponseBody body;
private Builder() {
super();
}
private Builder(GetStackInstanceResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(GetStackInstanceResponseBody body) {
this.body = body;
return this;
}
public GetStackInstanceResponse build() {
return new GetStackInstanceResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackInstanceResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackInstanceResponseBody} extends {@link TeaModel}
*
* <p>GetStackInstanceResponseBody</p>
*/
public class GetStackInstanceResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("StackInstance")
private StackInstance stackInstance;
private GetStackInstanceResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.stackInstance = builder.stackInstance;
}
public static Builder builder() {
return new Builder();
}
public static GetStackInstanceResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return stackInstance
*/
public StackInstance getStackInstance() {
return this.stackInstance;
}
public static final class Builder {
private String requestId;
private StackInstance stackInstance;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>StackInstance.</p>
*/
public Builder stackInstance(StackInstance stackInstance) {
this.stackInstance = stackInstance;
return this;
}
public GetStackInstanceResponseBody build() {
return new GetStackInstanceResponseBody(this);
}
}
public static class ParameterOverrides extends TeaModel {
@NameInMap("ParameterKey")
private String parameterKey;
@NameInMap("ParameterValue")
private String parameterValue;
private ParameterOverrides(Builder builder) {
this.parameterKey = builder.parameterKey;
this.parameterValue = builder.parameterValue;
}
public static Builder builder() {
return new Builder();
}
public static ParameterOverrides create() {
return builder().build();
}
/**
* @return parameterKey
*/
public String getParameterKey() {
return this.parameterKey;
}
/**
* @return parameterValue
*/
public String getParameterValue() {
return this.parameterValue;
}
public static final class Builder {
private String parameterKey;
private String parameterValue;
/**
* <p>ParameterKey.</p>
*/
public Builder parameterKey(String parameterKey) {
this.parameterKey = parameterKey;
return this;
}
/**
* <p>ParameterValue.</p>
*/
public Builder parameterValue(String parameterValue) {
this.parameterValue = parameterValue;
return this;
}
public ParameterOverrides build() {
return new ParameterOverrides(this);
}
}
}
public static class StackInstance extends TeaModel {
@NameInMap("AccountId")
private String accountId;
@NameInMap("DriftDetectionTime")
private String driftDetectionTime;
@NameInMap("ParameterOverrides")
private java.util.List < ParameterOverrides> parameterOverrides;
@NameInMap("RdFolderId")
private String rdFolderId;
@NameInMap("RegionId")
private String regionId;
@NameInMap("StackDriftStatus")
private String stackDriftStatus;
@NameInMap("StackGroupId")
private String stackGroupId;
@NameInMap("StackGroupName")
private String stackGroupName;
@NameInMap("StackId")
private String stackId;
@NameInMap("Status")
private String status;
@NameInMap("StatusReason")
private String statusReason;
private StackInstance(Builder builder) {
this.accountId = builder.accountId;
this.driftDetectionTime = builder.driftDetectionTime;
this.parameterOverrides = builder.parameterOverrides;
this.rdFolderId = builder.rdFolderId;
this.regionId = builder.regionId;
this.stackDriftStatus = builder.stackDriftStatus;
this.stackGroupId = builder.stackGroupId;
this.stackGroupName = builder.stackGroupName;
this.stackId = builder.stackId;
this.status = builder.status;
this.statusReason = builder.statusReason;
}
public static Builder builder() {
return new Builder();
}
public static StackInstance create() {
return builder().build();
}
/**
* @return accountId
*/
public String getAccountId() {
return this.accountId;
}
/**
* @return driftDetectionTime
*/
public String getDriftDetectionTime() {
return this.driftDetectionTime;
}
/**
* @return parameterOverrides
*/
public java.util.List < ParameterOverrides> getParameterOverrides() {
return this.parameterOverrides;
}
/**
* @return rdFolderId
*/
public String getRdFolderId() {
return this.rdFolderId;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return stackDriftStatus
*/
public String getStackDriftStatus() {
return this.stackDriftStatus;
}
/**
* @return stackGroupId
*/
public String getStackGroupId() {
return this.stackGroupId;
}
/**
* @return stackGroupName
*/
public String getStackGroupName() {
return this.stackGroupName;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return statusReason
*/
public String getStatusReason() {
return this.statusReason;
}
public static final class Builder {
private String accountId;
private String driftDetectionTime;
private java.util.List < ParameterOverrides> parameterOverrides;
private String rdFolderId;
private String regionId;
private String stackDriftStatus;
private String stackGroupId;
private String stackGroupName;
private String stackId;
private String status;
private String statusReason;
/**
* <p>AccountId.</p>
*/
public Builder accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* <p>DriftDetectionTime.</p>
*/
public Builder driftDetectionTime(String driftDetectionTime) {
this.driftDetectionTime = driftDetectionTime;
return this;
}
/**
* <p>ParameterOverrides.</p>
*/
public Builder parameterOverrides(java.util.List < ParameterOverrides> parameterOverrides) {
this.parameterOverrides = parameterOverrides;
return this;
}
/**
* <p>RdFolderId.</p>
*/
public Builder rdFolderId(String rdFolderId) {
this.rdFolderId = rdFolderId;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.regionId = regionId;
return this;
}
/**
* <p>StackDriftStatus.</p>
*/
public Builder stackDriftStatus(String stackDriftStatus) {
this.stackDriftStatus = stackDriftStatus;
return this;
}
/**
* <p>StackGroupId.</p>
*/
public Builder stackGroupId(String stackGroupId) {
this.stackGroupId = stackGroupId;
return this;
}
/**
* <p>StackGroupName.</p>
*/
public Builder stackGroupName(String stackGroupName) {
this.stackGroupName = stackGroupName;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.stackId = stackId;
return this;
}
/**
* <p>Status.</p>
*/
public Builder status(String status) {
this.status = status;
return this;
}
/**
* <p>StatusReason.</p>
*/
public Builder statusReason(String statusReason) {
this.statusReason = statusReason;
return this;
}
public StackInstance build() {
return new StackInstance(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackPolicyRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackPolicyRequest} extends {@link RequestModel}
*
* <p>GetStackPolicyRequest</p>
*/
public class GetStackPolicyRequest extends Request {
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("StackId")
private String stackId;
private GetStackPolicyRequest(Builder builder) {
super(builder);
this.regionId = builder.regionId;
this.stackId = builder.stackId;
}
public static Builder builder() {
return new Builder();
}
public static GetStackPolicyRequest create() {
return builder().build();
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
public static final class Builder extends Request.Builder<Builder> {
private String regionId;
private String stackId;
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.putQueryParameter("StackId", stackId);
this.stackId = stackId;
return this;
}
public GetStackPolicyRequest build() {
return new GetStackPolicyRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackPolicyResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackPolicyResponse} extends {@link TeaModel}
*
* <p>GetStackPolicyResponse</p>
*/
public class GetStackPolicyResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GetStackPolicyResponseBody body;
private GetStackPolicyResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GetStackPolicyResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public GetStackPolicyResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GetStackPolicyResponseBody body;
private Builder() {
super();
}
private Builder(GetStackPolicyResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(GetStackPolicyResponseBody body) {
this.body = body;
return this;
}
public GetStackPolicyResponse build() {
return new GetStackPolicyResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackPolicyResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackPolicyResponseBody} extends {@link TeaModel}
*
* <p>GetStackPolicyResponseBody</p>
*/
public class GetStackPolicyResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("StackPolicyBody")
private java.util.Map < String, ? > stackPolicyBody;
private GetStackPolicyResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.stackPolicyBody = builder.stackPolicyBody;
}
public static Builder builder() {
return new Builder();
}
public static GetStackPolicyResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return stackPolicyBody
*/
public java.util.Map < String, ? > getStackPolicyBody() {
return this.stackPolicyBody;
}
public static final class Builder {
private String requestId;
private java.util.Map < String, ? > stackPolicyBody;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>StackPolicyBody.</p>
*/
public Builder stackPolicyBody(java.util.Map < String, ? > stackPolicyBody) {
this.stackPolicyBody = stackPolicyBody;
return this;
}
public GetStackPolicyResponseBody build() {
return new GetStackPolicyResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackRequest} extends {@link RequestModel}
*
* <p>GetStackRequest</p>
*/
public class GetStackRequest extends Request {
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("OutputOption")
private String outputOption;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("ShowResourceProgress")
private String showResourceProgress;
@Query
@NameInMap("StackId")
private String stackId;
private GetStackRequest(Builder builder) {
super(builder);
this.clientToken = builder.clientToken;
this.outputOption = builder.outputOption;
this.regionId = builder.regionId;
this.showResourceProgress = builder.showResourceProgress;
this.stackId = builder.stackId;
}
public static Builder builder() {
return new Builder();
}
public static GetStackRequest create() {
return builder().build();
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return outputOption
*/
public String getOutputOption() {
return this.outputOption;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return showResourceProgress
*/
public String getShowResourceProgress() {
return this.showResourceProgress;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
public static final class Builder extends Request.Builder<Builder> {
private String clientToken;
private String outputOption;
private String regionId;
private String showResourceProgress;
private String stackId;
/**
* <p>ClientToken.</p>
*/
public Builder clientToken(String clientToken) {
this.putQueryParameter("ClientToken", clientToken);
this.clientToken = clientToken;
return this;
}
/**
* <p>OutputOption.</p>
*/
public Builder outputOption(String outputOption) {
this.putQueryParameter("OutputOption", outputOption);
this.outputOption = outputOption;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>ShowResourceProgress.</p>
*/
public Builder showResourceProgress(String showResourceProgress) {
this.putQueryParameter("ShowResourceProgress", showResourceProgress);
this.showResourceProgress = showResourceProgress;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.putQueryParameter("StackId", stackId);
this.stackId = stackId;
return this;
}
public GetStackRequest build() {
return new GetStackRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackResourceRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackResourceRequest} extends {@link RequestModel}
*
* <p>GetStackResourceRequest</p>
*/
public class GetStackResourceRequest extends Request {
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("LogicalResourceId")
private String logicalResourceId;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("ShowResourceAttributes")
private Boolean showResourceAttributes;
@Query
@NameInMap("StackId")
private String stackId;
private GetStackResourceRequest(Builder builder) {
super(builder);
this.clientToken = builder.clientToken;
this.logicalResourceId = builder.logicalResourceId;
this.regionId = builder.regionId;
this.showResourceAttributes = builder.showResourceAttributes;
this.stackId = builder.stackId;
}
public static Builder builder() {
return new Builder();
}
public static GetStackResourceRequest create() {
return builder().build();
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return logicalResourceId
*/
public String getLogicalResourceId() {
return this.logicalResourceId;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return showResourceAttributes
*/
public Boolean getShowResourceAttributes() {
return this.showResourceAttributes;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
public static final class Builder extends Request.Builder<Builder> {
private String clientToken;
private String logicalResourceId;
private String regionId;
private Boolean showResourceAttributes;
private String stackId;
/**
* <p>ClientToken.</p>
*/
public Builder clientToken(String clientToken) {
this.putQueryParameter("ClientToken", clientToken);
this.clientToken = clientToken;
return this;
}
/**
* <p>LogicalResourceId.</p>
*/
public Builder logicalResourceId(String logicalResourceId) {
this.putQueryParameter("LogicalResourceId", logicalResourceId);
this.logicalResourceId = logicalResourceId;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>ShowResourceAttributes.</p>
*/
public Builder showResourceAttributes(Boolean showResourceAttributes) {
this.putQueryParameter("ShowResourceAttributes", showResourceAttributes);
this.showResourceAttributes = showResourceAttributes;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.putQueryParameter("StackId", stackId);
this.stackId = stackId;
return this;
}
public GetStackResourceRequest build() {
return new GetStackResourceRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackResourceResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackResourceResponse} extends {@link TeaModel}
*
* <p>GetStackResourceResponse</p>
*/
public class GetStackResourceResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GetStackResourceResponseBody body;
private GetStackResourceResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GetStackResourceResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public GetStackResourceResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GetStackResourceResponseBody body;
private Builder() {
super();
}
private Builder(GetStackResourceResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(GetStackResourceResponseBody body) {
this.body = body;
return this;
}
public GetStackResourceResponse build() {
return new GetStackResourceResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackResourceResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackResourceResponseBody} extends {@link TeaModel}
*
* <p>GetStackResourceResponseBody</p>
*/
public class GetStackResourceResponseBody extends TeaModel {
@NameInMap("CreateTime")
private String createTime;
@NameInMap("Description")
private String description;
@NameInMap("DriftDetectionTime")
private String driftDetectionTime;
@NameInMap("LogicalResourceId")
private String logicalResourceId;
@NameInMap("Metadata")
private java.util.Map < String, ? > metadata;
@NameInMap("PhysicalResourceId")
private String physicalResourceId;
@NameInMap("RequestId")
private String requestId;
@NameInMap("ResourceAttributes")
private java.util.List < java.util.Map<String, ?>> resourceAttributes;
@NameInMap("ResourceDriftStatus")
private String resourceDriftStatus;
@NameInMap("ResourceType")
private String resourceType;
@NameInMap("StackId")
private String stackId;
@NameInMap("StackName")
private String stackName;
@NameInMap("Status")
private String status;
@NameInMap("StatusReason")
private String statusReason;
@NameInMap("UpdateTime")
private String updateTime;
private GetStackResourceResponseBody(Builder builder) {
this.createTime = builder.createTime;
this.description = builder.description;
this.driftDetectionTime = builder.driftDetectionTime;
this.logicalResourceId = builder.logicalResourceId;
this.metadata = builder.metadata;
this.physicalResourceId = builder.physicalResourceId;
this.requestId = builder.requestId;
this.resourceAttributes = builder.resourceAttributes;
this.resourceDriftStatus = builder.resourceDriftStatus;
this.resourceType = builder.resourceType;
this.stackId = builder.stackId;
this.stackName = builder.stackName;
this.status = builder.status;
this.statusReason = builder.statusReason;
this.updateTime = builder.updateTime;
}
public static Builder builder() {
return new Builder();
}
public static GetStackResourceResponseBody create() {
return builder().build();
}
/**
* @return createTime
*/
public String getCreateTime() {
return this.createTime;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return driftDetectionTime
*/
public String getDriftDetectionTime() {
return this.driftDetectionTime;
}
/**
* @return logicalResourceId
*/
public String getLogicalResourceId() {
return this.logicalResourceId;
}
/**
* @return metadata
*/
public java.util.Map < String, ? > getMetadata() {
return this.metadata;
}
/**
* @return physicalResourceId
*/
public String getPhysicalResourceId() {
return this.physicalResourceId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resourceAttributes
*/
public java.util.List < java.util.Map<String, ?>> getResourceAttributes() {
return this.resourceAttributes;
}
/**
* @return resourceDriftStatus
*/
public String getResourceDriftStatus() {
return this.resourceDriftStatus;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
/**
* @return stackName
*/
public String getStackName() {
return this.stackName;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return statusReason
*/
public String getStatusReason() {
return this.statusReason;
}
/**
* @return updateTime
*/
public String getUpdateTime() {
return this.updateTime;
}
public static final class Builder {
private String createTime;
private String description;
private String driftDetectionTime;
private String logicalResourceId;
private java.util.Map < String, ? > metadata;
private String physicalResourceId;
private String requestId;
private java.util.List < java.util.Map<String, ?>> resourceAttributes;
private String resourceDriftStatus;
private String resourceType;
private String stackId;
private String stackName;
private String status;
private String statusReason;
private String updateTime;
/**
* <p>CreateTime.</p>
*/
public Builder createTime(String createTime) {
this.createTime = createTime;
return this;
}
/**
* <p>Description.</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>DriftDetectionTime.</p>
*/
public Builder driftDetectionTime(String driftDetectionTime) {
this.driftDetectionTime = driftDetectionTime;
return this;
}
/**
* <p>LogicalResourceId.</p>
*/
public Builder logicalResourceId(String logicalResourceId) {
this.logicalResourceId = logicalResourceId;
return this;
}
/**
* <p>Metadata.</p>
*/
public Builder metadata(java.util.Map < String, ? > metadata) {
this.metadata = metadata;
return this;
}
/**
* <p>PhysicalResourceId.</p>
*/
public Builder physicalResourceId(String physicalResourceId) {
this.physicalResourceId = physicalResourceId;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>ResourceAttributes.</p>
*/
public Builder resourceAttributes(java.util.List < java.util.Map<String, ?>> resourceAttributes) {
this.resourceAttributes = resourceAttributes;
return this;
}
/**
* <p>ResourceDriftStatus.</p>
*/
public Builder resourceDriftStatus(String resourceDriftStatus) {
this.resourceDriftStatus = resourceDriftStatus;
return this;
}
/**
* <p>ResourceType.</p>
*/
public Builder resourceType(String resourceType) {
this.resourceType = resourceType;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.stackId = stackId;
return this;
}
/**
* <p>StackName.</p>
*/
public Builder stackName(String stackName) {
this.stackName = stackName;
return this;
}
/**
* <p>Status.</p>
*/
public Builder status(String status) {
this.status = status;
return this;
}
/**
* <p>StatusReason.</p>
*/
public Builder statusReason(String statusReason) {
this.statusReason = statusReason;
return this;
}
/**
* <p>UpdateTime.</p>
*/
public Builder updateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
public GetStackResourceResponseBody build() {
return new GetStackResourceResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackResponse} extends {@link TeaModel}
*
* <p>GetStackResponse</p>
*/
public class GetStackResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GetStackResponseBody body;
private GetStackResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GetStackResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public GetStackResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GetStackResponseBody body;
private Builder() {
super();
}
private Builder(GetStackResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(GetStackResponseBody body) {
this.body = body;
return this;
}
public GetStackResponse build() {
return new GetStackResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetStackResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetStackResponseBody} extends {@link TeaModel}
*
* <p>GetStackResponseBody</p>
*/
public class GetStackResponseBody extends TeaModel {
@NameInMap("CreateTime")
private String createTime;
@NameInMap("DeletionProtection")
private String deletionProtection;
@NameInMap("Description")
private String description;
@NameInMap("DisableRollback")
private Boolean disableRollback;
@NameInMap("DriftDetectionTime")
private String driftDetectionTime;
@NameInMap("Log")
private Log log;
@NameInMap("NotificationURLs")
private java.util.List < String > notificationURLs;
@NameInMap("Outputs")
private java.util.List < java.util.Map<String, ?>> outputs;
@NameInMap("Parameters")
private java.util.List < Parameters> parameters;
@NameInMap("ParentStackId")
private String parentStackId;
@NameInMap("RamRoleName")
private String ramRoleName;
@NameInMap("RegionId")
private String regionId;
@NameInMap("RequestId")
private String requestId;
@NameInMap("ResourceGroupId")
private String resourceGroupId;
@NameInMap("ResourceProgress")
private ResourceProgress resourceProgress;
@NameInMap("RootStackId")
private String rootStackId;
@NameInMap("StackDriftStatus")
private String stackDriftStatus;
@NameInMap("StackId")
private String stackId;
@NameInMap("StackName")
private String stackName;
@NameInMap("StackType")
private String stackType;
@NameInMap("Status")
private String status;
@NameInMap("StatusReason")
private String statusReason;
@NameInMap("Tags")
private java.util.List < Tags> tags;
@NameInMap("TemplateDescription")
private String templateDescription;
@NameInMap("TemplateId")
private String templateId;
@NameInMap("TemplateScratchId")
private String templateScratchId;
@NameInMap("TemplateURL")
private String templateURL;
@NameInMap("TemplateVersion")
private String templateVersion;
@NameInMap("TimeoutInMinutes")
private Integer timeoutInMinutes;
@NameInMap("UpdateTime")
private String updateTime;
private GetStackResponseBody(Builder builder) {
this.createTime = builder.createTime;
this.deletionProtection = builder.deletionProtection;
this.description = builder.description;
this.disableRollback = builder.disableRollback;
this.driftDetectionTime = builder.driftDetectionTime;
this.log = builder.log;
this.notificationURLs = builder.notificationURLs;
this.outputs = builder.outputs;
this.parameters = builder.parameters;
this.parentStackId = builder.parentStackId;
this.ramRoleName = builder.ramRoleName;
this.regionId = builder.regionId;
this.requestId = builder.requestId;
this.resourceGroupId = builder.resourceGroupId;
this.resourceProgress = builder.resourceProgress;
this.rootStackId = builder.rootStackId;
this.stackDriftStatus = builder.stackDriftStatus;
this.stackId = builder.stackId;
this.stackName = builder.stackName;
this.stackType = builder.stackType;
this.status = builder.status;
this.statusReason = builder.statusReason;
this.tags = builder.tags;
this.templateDescription = builder.templateDescription;
this.templateId = builder.templateId;
this.templateScratchId = builder.templateScratchId;
this.templateURL = builder.templateURL;
this.templateVersion = builder.templateVersion;
this.timeoutInMinutes = builder.timeoutInMinutes;
this.updateTime = builder.updateTime;
}
public static Builder builder() {
return new Builder();
}
public static GetStackResponseBody create() {
return builder().build();
}
/**
* @return createTime
*/
public String getCreateTime() {
return this.createTime;
}
/**
* @return deletionProtection
*/
public String getDeletionProtection() {
return this.deletionProtection;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return disableRollback
*/
public Boolean getDisableRollback() {
return this.disableRollback;
}
/**
* @return driftDetectionTime
*/
public String getDriftDetectionTime() {
return this.driftDetectionTime;
}
/**
* @return log
*/
public Log getLog() {
return this.log;
}
/**
* @return notificationURLs
*/
public java.util.List < String > getNotificationURLs() {
return this.notificationURLs;
}
/**
* @return outputs
*/
public java.util.List < java.util.Map<String, ?>> getOutputs() {
return this.outputs;
}
/**
* @return parameters
*/
public java.util.List < Parameters> getParameters() {
return this.parameters;
}
/**
* @return parentStackId
*/
public String getParentStackId() {
return this.parentStackId;
}
/**
* @return ramRoleName
*/
public String getRamRoleName() {
return this.ramRoleName;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resourceGroupId
*/
public String getResourceGroupId() {
return this.resourceGroupId;
}
/**
* @return resourceProgress
*/
public ResourceProgress getResourceProgress() {
return this.resourceProgress;
}
/**
* @return rootStackId
*/
public String getRootStackId() {
return this.rootStackId;
}
/**
* @return stackDriftStatus
*/
public String getStackDriftStatus() {
return this.stackDriftStatus;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
/**
* @return stackName
*/
public String getStackName() {
return this.stackName;
}
/**
* @return stackType
*/
public String getStackType() {
return this.stackType;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return statusReason
*/
public String getStatusReason() {
return this.statusReason;
}
/**
* @return tags
*/
public java.util.List < Tags> getTags() {
return this.tags;
}
/**
* @return templateDescription
*/
public String getTemplateDescription() {
return this.templateDescription;
}
/**
* @return templateId
*/
public String getTemplateId() {
return this.templateId;
}
/**
* @return templateScratchId
*/
public String getTemplateScratchId() {
return this.templateScratchId;
}
/**
* @return templateURL
*/
public String getTemplateURL() {
return this.templateURL;
}
/**
* @return templateVersion
*/
public String getTemplateVersion() {
return this.templateVersion;
}
/**
* @return timeoutInMinutes
*/
public Integer getTimeoutInMinutes() {
return this.timeoutInMinutes;
}
/**
* @return updateTime
*/
public String getUpdateTime() {
return this.updateTime;
}
public static final class Builder {
private String createTime;
private String deletionProtection;
private String description;
private Boolean disableRollback;
private String driftDetectionTime;
private Log log;
private java.util.List < String > notificationURLs;
private java.util.List < java.util.Map<String, ?>> outputs;
private java.util.List < Parameters> parameters;
private String parentStackId;
private String ramRoleName;
private String regionId;
private String requestId;
private String resourceGroupId;
private ResourceProgress resourceProgress;
private String rootStackId;
private String stackDriftStatus;
private String stackId;
private String stackName;
private String stackType;
private String status;
private String statusReason;
private java.util.List < Tags> tags;
private String templateDescription;
private String templateId;
private String templateScratchId;
private String templateURL;
private String templateVersion;
private Integer timeoutInMinutes;
private String updateTime;
/**
* <p>CreateTime.</p>
*/
public Builder createTime(String createTime) {
this.createTime = createTime;
return this;
}
/**
* <p>DeletionProtection.</p>
*/
public Builder deletionProtection(String deletionProtection) {
this.deletionProtection = deletionProtection;
return this;
}
/**
* <p>Description.</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>DisableRollback.</p>
*/
public Builder disableRollback(Boolean disableRollback) {
this.disableRollback = disableRollback;
return this;
}
/**
* <p>DriftDetectionTime.</p>
*/
public Builder driftDetectionTime(String driftDetectionTime) {
this.driftDetectionTime = driftDetectionTime;
return this;
}
/**
* <p>Log.</p>
*/
public Builder log(Log log) {
this.log = log;
return this;
}
/**
* <p>NotificationURLs.</p>
*/
public Builder notificationURLs(java.util.List < String > notificationURLs) {
this.notificationURLs = notificationURLs;
return this;
}
/**
* <p>Outputs.</p>
*/
public Builder outputs(java.util.List < java.util.Map<String, ?>> outputs) {
this.outputs = outputs;
return this;
}
/**
* <p>Parameters.</p>
*/
public Builder parameters(java.util.List < Parameters> parameters) {
this.parameters = parameters;
return this;
}
/**
* <p>ParentStackId.</p>
*/
public Builder parentStackId(String parentStackId) {
this.parentStackId = parentStackId;
return this;
}
/**
* <p>RamRoleName.</p>
*/
public Builder ramRoleName(String ramRoleName) {
this.ramRoleName = ramRoleName;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.regionId = regionId;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>ResourceGroupId.</p>
*/
public Builder resourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
return this;
}
/**
* <p>ResourceProgress.</p>
*/
public Builder resourceProgress(ResourceProgress resourceProgress) {
this.resourceProgress = resourceProgress;
return this;
}
/**
* <p>RootStackId.</p>
*/
public Builder rootStackId(String rootStackId) {
this.rootStackId = rootStackId;
return this;
}
/**
* <p>StackDriftStatus.</p>
*/
public Builder stackDriftStatus(String stackDriftStatus) {
this.stackDriftStatus = stackDriftStatus;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.stackId = stackId;
return this;
}
/**
* <p>StackName.</p>
*/
public Builder stackName(String stackName) {
this.stackName = stackName;
return this;
}
/**
* <p>StackType.</p>
*/
public Builder stackType(String stackType) {
this.stackType = stackType;
return this;
}
/**
* <p>Status.</p>
*/
public Builder status(String status) {
this.status = status;
return this;
}
/**
* <p>StatusReason.</p>
*/
public Builder statusReason(String statusReason) {
this.statusReason = statusReason;
return this;
}
/**
* <p>Tags.</p>
*/
public Builder tags(java.util.List < Tags> tags) {
this.tags = tags;
return this;
}
/**
* <p>TemplateDescription.</p>
*/
public Builder templateDescription(String templateDescription) {
this.templateDescription = templateDescription;
return this;
}
/**
* <p>TemplateId.</p>
*/
public Builder templateId(String templateId) {
this.templateId = templateId;
return this;
}
/**
* <p>TemplateScratchId.</p>
*/
public Builder templateScratchId(String templateScratchId) {
this.templateScratchId = templateScratchId;
return this;
}
/**
* <p>TemplateURL.</p>
*/
public Builder templateURL(String templateURL) {
this.templateURL = templateURL;
return this;
}
/**
* <p>TemplateVersion.</p>
*/
public Builder templateVersion(String templateVersion) {
this.templateVersion = templateVersion;
return this;
}
/**
* <p>TimeoutInMinutes.</p>
*/
public Builder timeoutInMinutes(Integer timeoutInMinutes) {
this.timeoutInMinutes = timeoutInMinutes;
return this;
}
/**
* <p>UpdateTime.</p>
*/
public Builder updateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
public GetStackResponseBody build() {
return new GetStackResponseBody(this);
}
}
public static class TerraformLogs extends TeaModel {
@NameInMap("Command")
private String command;
@NameInMap("Content")
private String content;
@NameInMap("Stream")
private String stream;
private TerraformLogs(Builder builder) {
this.command = builder.command;
this.content = builder.content;
this.stream = builder.stream;
}
public static Builder builder() {
return new Builder();
}
public static TerraformLogs create() {
return builder().build();
}
/**
* @return command
*/
public String getCommand() {
return this.command;
}
/**
* @return content
*/
public String getContent() {
return this.content;
}
/**
* @return stream
*/
public String getStream() {
return this.stream;
}
public static final class Builder {
private String command;
private String content;
private String stream;
/**
* <p>Command.</p>
*/
public Builder command(String command) {
this.command = command;
return this;
}
/**
* <p>Content.</p>
*/
public Builder content(String content) {
this.content = content;
return this;
}
/**
* <p>Stream.</p>
*/
public Builder stream(String stream) {
this.stream = stream;
return this;
}
public TerraformLogs build() {
return new TerraformLogs(this);
}
}
}
public static class Log extends TeaModel {
@NameInMap("TerraformLogs")
private java.util.List < TerraformLogs> terraformLogs;
private Log(Builder builder) {
this.terraformLogs = builder.terraformLogs;
}
public static Builder builder() {
return new Builder();
}
public static Log create() {
return builder().build();
}
/**
* @return terraformLogs
*/
public java.util.List < TerraformLogs> getTerraformLogs() {
return this.terraformLogs;
}
public static final class Builder {
private java.util.List < TerraformLogs> terraformLogs;
/**
* <p>TerraformLogs.</p>
*/
public Builder terraformLogs(java.util.List < TerraformLogs> terraformLogs) {
this.terraformLogs = terraformLogs;
return this;
}
public Log build() {
return new Log(this);
}
}
}
public static class Parameters extends TeaModel {
@NameInMap("ParameterKey")
private String parameterKey;
@NameInMap("ParameterValue")
private String parameterValue;
private Parameters(Builder builder) {
this.parameterKey = builder.parameterKey;
this.parameterValue = builder.parameterValue;
}
public static Builder builder() {
return new Builder();
}
public static Parameters create() {
return builder().build();
}
/**
* @return parameterKey
*/
public String getParameterKey() {
return this.parameterKey;
}
/**
* @return parameterValue
*/
public String getParameterValue() {
return this.parameterValue;
}
public static final class Builder {
private String parameterKey;
private String parameterValue;
/**
* <p>ParameterKey.</p>
*/
public Builder parameterKey(String parameterKey) {
this.parameterKey = parameterKey;
return this;
}
/**
* <p>ParameterValue.</p>
*/
public Builder parameterValue(String parameterValue) {
this.parameterValue = parameterValue;
return this;
}
public Parameters build() {
return new Parameters(this);
}
}
}
public static class InProgressResourceDetails extends TeaModel {
@NameInMap("ProgressTargetValue")
private Float progressTargetValue;
@NameInMap("ProgressValue")
private Float progressValue;
@NameInMap("ResourceName")
private String resourceName;
@NameInMap("ResourceType")
private String resourceType;
private InProgressResourceDetails(Builder builder) {
this.progressTargetValue = builder.progressTargetValue;
this.progressValue = builder.progressValue;
this.resourceName = builder.resourceName;
this.resourceType = builder.resourceType;
}
public static Builder builder() {
return new Builder();
}
public static InProgressResourceDetails create() {
return builder().build();
}
/**
* @return progressTargetValue
*/
public Float getProgressTargetValue() {
return this.progressTargetValue;
}
/**
* @return progressValue
*/
public Float getProgressValue() {
return this.progressValue;
}
/**
* @return resourceName
*/
public String getResourceName() {
return this.resourceName;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
public static final class Builder {
private Float progressTargetValue;
private Float progressValue;
private String resourceName;
private String resourceType;
/**
* <p>ProgressTargetValue.</p>
*/
public Builder progressTargetValue(Float progressTargetValue) {
this.progressTargetValue = progressTargetValue;
return this;
}
/**
* <p>ProgressValue.</p>
*/
public Builder progressValue(Float progressValue) {
this.progressValue = progressValue;
return this;
}
/**
* <p>ResourceName.</p>
*/
public Builder resourceName(String resourceName) {
this.resourceName = resourceName;
return this;
}
/**
* <p>ResourceType.</p>
*/
public Builder resourceType(String resourceType) {
this.resourceType = resourceType;
return this;
}
public InProgressResourceDetails build() {
return new InProgressResourceDetails(this);
}
}
}
public static class ResourceProgress extends TeaModel {
@NameInMap("FailedResourceCount")
private Integer failedResourceCount;
@NameInMap("InProgressResourceCount")
private Integer inProgressResourceCount;
@NameInMap("InProgressResourceDetails")
private java.util.List < InProgressResourceDetails> inProgressResourceDetails;
@NameInMap("PendingResourceCount")
private Integer pendingResourceCount;
@NameInMap("SuccessResourceCount")
private Integer successResourceCount;
@NameInMap("TotalResourceCount")
private Integer totalResourceCount;
private ResourceProgress(Builder builder) {
this.failedResourceCount = builder.failedResourceCount;
this.inProgressResourceCount = builder.inProgressResourceCount;
this.inProgressResourceDetails = builder.inProgressResourceDetails;
this.pendingResourceCount = builder.pendingResourceCount;
this.successResourceCount = builder.successResourceCount;
this.totalResourceCount = builder.totalResourceCount;
}
public static Builder builder() {
return new Builder();
}
public static ResourceProgress create() {
return builder().build();
}
/**
* @return failedResourceCount
*/
public Integer getFailedResourceCount() {
return this.failedResourceCount;
}
/**
* @return inProgressResourceCount
*/
public Integer getInProgressResourceCount() {
return this.inProgressResourceCount;
}
/**
* @return inProgressResourceDetails
*/
public java.util.List < InProgressResourceDetails> getInProgressResourceDetails() {
return this.inProgressResourceDetails;
}
/**
* @return pendingResourceCount
*/
public Integer getPendingResourceCount() {
return this.pendingResourceCount;
}
/**
* @return successResourceCount
*/
public Integer getSuccessResourceCount() {
return this.successResourceCount;
}
/**
* @return totalResourceCount
*/
public Integer getTotalResourceCount() {
return this.totalResourceCount;
}
public static final class Builder {
private Integer failedResourceCount;
private Integer inProgressResourceCount;
private java.util.List < InProgressResourceDetails> inProgressResourceDetails;
private Integer pendingResourceCount;
private Integer successResourceCount;
private Integer totalResourceCount;
/**
* <p>FailedResourceCount.</p>
*/
public Builder failedResourceCount(Integer failedResourceCount) {
this.failedResourceCount = failedResourceCount;
return this;
}
/**
* <p>InProgressResourceCount.</p>
*/
public Builder inProgressResourceCount(Integer inProgressResourceCount) {
this.inProgressResourceCount = inProgressResourceCount;
return this;
}
/**
* <p>InProgressResourceDetails.</p>
*/
public Builder inProgressResourceDetails(java.util.List < InProgressResourceDetails> inProgressResourceDetails) {
this.inProgressResourceDetails = inProgressResourceDetails;
return this;
}
/**
* <p>PendingResourceCount.</p>
*/
public Builder pendingResourceCount(Integer pendingResourceCount) {
this.pendingResourceCount = pendingResourceCount;
return this;
}
/**
* <p>SuccessResourceCount.</p>
*/
public Builder successResourceCount(Integer successResourceCount) {
this.successResourceCount = successResourceCount;
return this;
}
/**
* <p>TotalResourceCount.</p>
*/
public Builder totalResourceCount(Integer totalResourceCount) {
this.totalResourceCount = totalResourceCount;
return this;
}
public ResourceProgress build() {
return new ResourceProgress(this);
}
}
}
public static class Tags extends TeaModel {
@NameInMap("Key")
private String key;
@NameInMap("Value")
private String value;
private Tags(Builder builder) {
this.key = builder.key;
this.value = builder.value;
}
public static Builder builder() {
return new Builder();
}
public static Tags create() {
return builder().build();
}
/**
* @return key
*/
public String getKey() {
return this.key;
}
/**
* @return value
*/
public String getValue() {
return this.value;
}
public static final class Builder {
private String key;
private String value;
/**
* <p>Key.</p>
*/
public Builder key(String key) {
this.key = key;
return this;
}
/**
* <p>Value.</p>
*/
public Builder value(String value) {
this.value = value;
return this;
}
public Tags build() {
return new Tags(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetTemplateEstimateCostRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetTemplateEstimateCostRequest} extends {@link RequestModel}
*
* <p>GetTemplateEstimateCostRequest</p>
*/
public class GetTemplateEstimateCostRequest extends Request {
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("Parameters")
private java.util.List < Parameters> parameters;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("TemplateBody")
private String templateBody;
@Query
@NameInMap("TemplateId")
private String templateId;
@Query
@NameInMap("TemplateScratchId")
private String templateScratchId;
@Query
@NameInMap("TemplateScratchRegionId")
private String templateScratchRegionId;
@Query
@NameInMap("TemplateURL")
private String templateURL;
@Query
@NameInMap("TemplateVersion")
private String templateVersion;
private GetTemplateEstimateCostRequest(Builder builder) {
super(builder);
this.clientToken = builder.clientToken;
this.parameters = builder.parameters;
this.regionId = builder.regionId;
this.templateBody = builder.templateBody;
this.templateId = builder.templateId;
this.templateScratchId = builder.templateScratchId;
this.templateScratchRegionId = builder.templateScratchRegionId;
this.templateURL = builder.templateURL;
this.templateVersion = builder.templateVersion;
}
public static Builder builder() {
return new Builder();
}
public static GetTemplateEstimateCostRequest create() {
return builder().build();
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return parameters
*/
public java.util.List < Parameters> getParameters() {
return this.parameters;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return templateBody
*/
public String getTemplateBody() {
return this.templateBody;
}
/**
* @return templateId
*/
public String getTemplateId() {
return this.templateId;
}
/**
* @return templateScratchId
*/
public String getTemplateScratchId() {
return this.templateScratchId;
}
/**
* @return templateScratchRegionId
*/
public String getTemplateScratchRegionId() {
return this.templateScratchRegionId;
}
/**
* @return templateURL
*/
public String getTemplateURL() {
return this.templateURL;
}
/**
* @return templateVersion
*/
public String getTemplateVersion() {
return this.templateVersion;
}
public static final class Builder extends Request.Builder<Builder> {
private String clientToken;
private java.util.List < Parameters> parameters;
private String regionId;
private String templateBody;
private String templateId;
private String templateScratchId;
private String templateScratchRegionId;
private String templateURL;
private String templateVersion;
/**
* <p>ClientToken.</p>
*/
public Builder clientToken(String clientToken) {
this.putQueryParameter("ClientToken", clientToken);
this.clientToken = clientToken;
return this;
}
/**
* <p>Parameters.</p>
*/
public Builder parameters(java.util.List < Parameters> parameters) {
this.putQueryParameter("Parameters", parameters);
this.parameters = parameters;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>TemplateBody.</p>
*/
public Builder templateBody(String templateBody) {
this.putQueryParameter("TemplateBody", templateBody);
this.templateBody = templateBody;
return this;
}
/**
* <p>TemplateId.</p>
*/
public Builder templateId(String templateId) {
this.putQueryParameter("TemplateId", templateId);
this.templateId = templateId;
return this;
}
/**
* <p>TemplateScratchId.</p>
*/
public Builder templateScratchId(String templateScratchId) {
this.putQueryParameter("TemplateScratchId", templateScratchId);
this.templateScratchId = templateScratchId;
return this;
}
/**
* <p>TemplateScratchRegionId.</p>
*/
public Builder templateScratchRegionId(String templateScratchRegionId) {
this.putQueryParameter("TemplateScratchRegionId", templateScratchRegionId);
this.templateScratchRegionId = templateScratchRegionId;
return this;
}
/**
* <p>TemplateURL.</p>
*/
public Builder templateURL(String templateURL) {
this.putQueryParameter("TemplateURL", templateURL);
this.templateURL = templateURL;
return this;
}
/**
* <p>TemplateVersion.</p>
*/
public Builder templateVersion(String templateVersion) {
this.putQueryParameter("TemplateVersion", templateVersion);
this.templateVersion = templateVersion;
return this;
}
public GetTemplateEstimateCostRequest build() {
return new GetTemplateEstimateCostRequest(this);
}
}
public static class Parameters extends TeaModel {
@NameInMap("ParameterKey")
private String parameterKey;
@NameInMap("ParameterValue")
private String parameterValue;
private Parameters(Builder builder) {
this.parameterKey = builder.parameterKey;
this.parameterValue = builder.parameterValue;
}
public static Builder builder() {
return new Builder();
}
public static Parameters create() {
return builder().build();
}
/**
* @return parameterKey
*/
public String getParameterKey() {
return this.parameterKey;
}
/**
* @return parameterValue
*/
public String getParameterValue() {
return this.parameterValue;
}
public static final class Builder {
private String parameterKey;
private String parameterValue;
/**
* <p>ParameterKey.</p>
*/
public Builder parameterKey(String parameterKey) {
this.parameterKey = parameterKey;
return this;
}
/**
* <p>ParameterValue.</p>
*/
public Builder parameterValue(String parameterValue) {
this.parameterValue = parameterValue;
return this;
}
public Parameters build() {
return new Parameters(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetTemplateEstimateCostResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetTemplateEstimateCostResponse} extends {@link TeaModel}
*
* <p>GetTemplateEstimateCostResponse</p>
*/
public class GetTemplateEstimateCostResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GetTemplateEstimateCostResponseBody body;
private GetTemplateEstimateCostResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GetTemplateEstimateCostResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public GetTemplateEstimateCostResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GetTemplateEstimateCostResponseBody body;
private Builder() {
super();
}
private Builder(GetTemplateEstimateCostResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(GetTemplateEstimateCostResponseBody body) {
this.body = body;
return this;
}
public GetTemplateEstimateCostResponse build() {
return new GetTemplateEstimateCostResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetTemplateEstimateCostResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetTemplateEstimateCostResponseBody} extends {@link TeaModel}
*
* <p>GetTemplateEstimateCostResponseBody</p>
*/
public class GetTemplateEstimateCostResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("Resources")
private java.util.Map < String, ? > resources;
private GetTemplateEstimateCostResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resources = builder.resources;
}
public static Builder builder() {
return new Builder();
}
public static GetTemplateEstimateCostResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resources
*/
public java.util.Map < String, ? > getResources() {
return this.resources;
}
public static final class Builder {
private String requestId;
private java.util.Map < String, ? > resources;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Resources.</p>
*/
public Builder resources(java.util.Map < String, ? > resources) {
this.resources = resources;
return this;
}
public GetTemplateEstimateCostResponseBody build() {
return new GetTemplateEstimateCostResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetTemplateParameterConstraintsRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetTemplateParameterConstraintsRequest} extends {@link RequestModel}
*
* <p>GetTemplateParameterConstraintsRequest</p>
*/
public class GetTemplateParameterConstraintsRequest extends Request {
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("Parameters")
private java.util.List < Parameters> parameters;
@Query
@NameInMap("ParametersKeyFilter")
private java.util.List < String > parametersKeyFilter;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("TemplateBody")
private String templateBody;
@Query
@NameInMap("TemplateId")
private String templateId;
@Query
@NameInMap("TemplateURL")
private String templateURL;
@Query
@NameInMap("TemplateVersion")
private String templateVersion;
private GetTemplateParameterConstraintsRequest(Builder builder) {
super(builder);
this.clientToken = builder.clientToken;
this.parameters = builder.parameters;
this.parametersKeyFilter = builder.parametersKeyFilter;
this.regionId = builder.regionId;
this.templateBody = builder.templateBody;
this.templateId = builder.templateId;
this.templateURL = builder.templateURL;
this.templateVersion = builder.templateVersion;
}
public static Builder builder() {
return new Builder();
}
public static GetTemplateParameterConstraintsRequest create() {
return builder().build();
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return parameters
*/
public java.util.List < Parameters> getParameters() {
return this.parameters;
}
/**
* @return parametersKeyFilter
*/
public java.util.List < String > getParametersKeyFilter() {
return this.parametersKeyFilter;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return templateBody
*/
public String getTemplateBody() {
return this.templateBody;
}
/**
* @return templateId
*/
public String getTemplateId() {
return this.templateId;
}
/**
* @return templateURL
*/
public String getTemplateURL() {
return this.templateURL;
}
/**
* @return templateVersion
*/
public String getTemplateVersion() {
return this.templateVersion;
}
public static final class Builder extends Request.Builder<Builder> {
private String clientToken;
private java.util.List < Parameters> parameters;
private java.util.List < String > parametersKeyFilter;
private String regionId;
private String templateBody;
private String templateId;
private String templateURL;
private String templateVersion;
/**
* <p>ClientToken.</p>
*/
public Builder clientToken(String clientToken) {
this.putQueryParameter("ClientToken", clientToken);
this.clientToken = clientToken;
return this;
}
/**
* <p>Parameters.</p>
*/
public Builder parameters(java.util.List < Parameters> parameters) {
this.putQueryParameter("Parameters", parameters);
this.parameters = parameters;
return this;
}
/**
* <p>ParametersKeyFilter.</p>
*/
public Builder parametersKeyFilter(java.util.List < String > parametersKeyFilter) {
this.putQueryParameter("ParametersKeyFilter", parametersKeyFilter);
this.parametersKeyFilter = parametersKeyFilter;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>TemplateBody.</p>
*/
public Builder templateBody(String templateBody) {
this.putQueryParameter("TemplateBody", templateBody);
this.templateBody = templateBody;
return this;
}
/**
* <p>TemplateId.</p>
*/
public Builder templateId(String templateId) {
this.putQueryParameter("TemplateId", templateId);
this.templateId = templateId;
return this;
}
/**
* <p>TemplateURL.</p>
*/
public Builder templateURL(String templateURL) {
this.putQueryParameter("TemplateURL", templateURL);
this.templateURL = templateURL;
return this;
}
/**
* <p>TemplateVersion.</p>
*/
public Builder templateVersion(String templateVersion) {
this.putQueryParameter("TemplateVersion", templateVersion);
this.templateVersion = templateVersion;
return this;
}
public GetTemplateParameterConstraintsRequest build() {
return new GetTemplateParameterConstraintsRequest(this);
}
}
public static class Parameters extends TeaModel {
@NameInMap("ParameterKey")
private String parameterKey;
@NameInMap("ParameterValue")
private String parameterValue;
private Parameters(Builder builder) {
this.parameterKey = builder.parameterKey;
this.parameterValue = builder.parameterValue;
}
public static Builder builder() {
return new Builder();
}
public static Parameters create() {
return builder().build();
}
/**
* @return parameterKey
*/
public String getParameterKey() {
return this.parameterKey;
}
/**
* @return parameterValue
*/
public String getParameterValue() {
return this.parameterValue;
}
public static final class Builder {
private String parameterKey;
private String parameterValue;
/**
* <p>ParameterKey.</p>
*/
public Builder parameterKey(String parameterKey) {
this.parameterKey = parameterKey;
return this;
}
/**
* <p>ParameterValue.</p>
*/
public Builder parameterValue(String parameterValue) {
this.parameterValue = parameterValue;
return this;
}
public Parameters build() {
return new Parameters(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetTemplateParameterConstraintsResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetTemplateParameterConstraintsResponse} extends {@link TeaModel}
*
* <p>GetTemplateParameterConstraintsResponse</p>
*/
public class GetTemplateParameterConstraintsResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GetTemplateParameterConstraintsResponseBody body;
private GetTemplateParameterConstraintsResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GetTemplateParameterConstraintsResponse create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return body
*/
public GetTemplateParameterConstraintsResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GetTemplateParameterConstraintsResponseBody body;
private Builder() {
super();
}
private Builder(GetTemplateParameterConstraintsResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* <p>headers.</p>
*/
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* <p>body.</p>
*/
public Builder body(GetTemplateParameterConstraintsResponseBody body) {
this.body = body;
return this;
}
public GetTemplateParameterConstraintsResponse build() {
return new GetTemplateParameterConstraintsResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910 | java-sources/com/aliyun/alibabacloud-ros20190910-async/1.1.0-beta/com/aliyun/ros20190910/models/GetTemplateParameterConstraintsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
/**
* {@link GetTemplateParameterConstraintsResponseBody} extends {@link TeaModel}
*
* <p>GetTemplateParameterConstraintsResponseBody</p>
*/
public class GetTemplateParameterConstraintsResponseBody extends TeaModel {
@NameInMap("ParameterConstraints")
private java.util.List < ParameterConstraints> parameterConstraints;
@NameInMap("RequestId")
private String requestId;
private GetTemplateParameterConstraintsResponseBody(Builder builder) {
this.parameterConstraints = builder.parameterConstraints;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static GetTemplateParameterConstraintsResponseBody create() {
return builder().build();
}
/**
* @return parameterConstraints
*/
public java.util.List < ParameterConstraints> getParameterConstraints() {
return this.parameterConstraints;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private java.util.List < ParameterConstraints> parameterConstraints;
private String requestId;
/**
* <p>ParameterConstraints.</p>
*/
public Builder parameterConstraints(java.util.List < ParameterConstraints> parameterConstraints) {
this.parameterConstraints = parameterConstraints;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public GetTemplateParameterConstraintsResponseBody build() {
return new GetTemplateParameterConstraintsResponseBody(this);
}
}
public static class ParameterConstraints extends TeaModel {
@NameInMap("AllowedValues")
private java.util.List < String > allowedValues;
@NameInMap("AssociationParameterNames")
private java.util.List < String > associationParameterNames;
@NameInMap("Behavior")
private String behavior;
@NameInMap("BehaviorReason")
private String behaviorReason;
@NameInMap("ParameterKey")
private String parameterKey;
@NameInMap("Type")
private String type;
private ParameterConstraints(Builder builder) {
this.allowedValues = builder.allowedValues;
this.associationParameterNames = builder.associationParameterNames;
this.behavior = builder.behavior;
this.behaviorReason = builder.behaviorReason;
this.parameterKey = builder.parameterKey;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static ParameterConstraints create() {
return builder().build();
}
/**
* @return allowedValues
*/
public java.util.List < String > getAllowedValues() {
return this.allowedValues;
}
/**
* @return associationParameterNames
*/
public java.util.List < String > getAssociationParameterNames() {
return this.associationParameterNames;
}
/**
* @return behavior
*/
public String getBehavior() {
return this.behavior;
}
/**
* @return behaviorReason
*/
public String getBehaviorReason() {
return this.behaviorReason;
}
/**
* @return parameterKey
*/
public String getParameterKey() {
return this.parameterKey;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
public static final class Builder {
private java.util.List < String > allowedValues;
private java.util.List < String > associationParameterNames;
private String behavior;
private String behaviorReason;
private String parameterKey;
private String type;
/**
* <p>AllowedValues.</p>
*/
public Builder allowedValues(java.util.List < String > allowedValues) {
this.allowedValues = allowedValues;
return this;
}
/**
* <p>AssociationParameterNames.</p>
*/
public Builder associationParameterNames(java.util.List < String > associationParameterNames) {
this.associationParameterNames = associationParameterNames;
return this;
}
/**
* <p>Behavior.</p>
*/
public Builder behavior(String behavior) {
this.behavior = behavior;
return this;
}
/**
* <p>BehaviorReason.</p>
*/
public Builder behaviorReason(String behaviorReason) {
this.behaviorReason = behaviorReason;
return this;
}
/**
* <p>ParameterKey.</p>
*/
public Builder parameterKey(String parameterKey) {
this.parameterKey = parameterKey;
return this;
}
/**
* <p>Type.</p>
*/
public Builder type(String type) {
this.type = type;
return this;
}
public ParameterConstraints build() {
return new ParameterConstraints(this);
}
}
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.