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/GetTemplateRequest.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 GetTemplateRequest} extends {@link RequestModel}
*
* <p>GetTemplateRequest</p>
*/
public class GetTemplateRequest extends Request {
@Query
@NameInMap("ChangeSetId")
private String changeSetId;
@Query
@NameInMap("IncludePermission")
private String includePermission;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("StackGroupName")
private String stackGroupName;
@Query
@NameInMap("StackId")
private String stackId;
@Query
@NameInMap("TemplateId")
private String templateId;
@Query
@NameInMap("TemplateStage")
private String templateStage;
@Query
@NameInMap("TemplateVersion")
private String templateVersion;
private GetTemplateRequest(Builder builder) {
super(builder);
this.changeSetId = builder.changeSetId;
this.includePermission = builder.includePermission;
this.regionId = builder.regionId;
this.stackGroupName = builder.stackGroupName;
this.stackId = builder.stackId;
this.templateId = builder.templateId;
this.templateStage = builder.templateStage;
this.templateVersion = builder.templateVersion;
}
public static Builder builder() {
return new Builder();
}
public static GetTemplateRequest create() {
return builder().build();
}
/**
* @return changeSetId
*/
public String getChangeSetId() {
return this.changeSetId;
}
/**
* @return includePermission
*/
public String getIncludePermission() {
return this.includePermission;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return stackGroupName
*/
public String getStackGroupName() {
return this.stackGroupName;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
/**
* @return templateId
*/
public String getTemplateId() {
return this.templateId;
}
/**
* @return templateStage
*/
public String getTemplateStage() {
return this.templateStage;
}
/**
* @return templateVersion
*/
public String getTemplateVersion() {
return this.templateVersion;
}
public static final class Builder extends Request.Builder<Builder> {
private String changeSetId;
private String includePermission;
private String regionId;
private String stackGroupName;
private String stackId;
private String templateId;
private String templateStage;
private String templateVersion;
/**
* <p>ChangeSetId.</p>
*/
public Builder changeSetId(String changeSetId) {
this.putQueryParameter("ChangeSetId", changeSetId);
this.changeSetId = changeSetId;
return this;
}
/**
* <p>IncludePermission.</p>
*/
public Builder includePermission(String includePermission) {
this.putQueryParameter("IncludePermission", includePermission);
this.includePermission = includePermission;
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;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.putQueryParameter("StackId", stackId);
this.stackId = stackId;
return this;
}
/**
* <p>TemplateId.</p>
*/
public Builder templateId(String templateId) {
this.putQueryParameter("TemplateId", templateId);
this.templateId = templateId;
return this;
}
/**
* <p>TemplateStage.</p>
*/
public Builder templateStage(String templateStage) {
this.putQueryParameter("TemplateStage", templateStage);
this.templateStage = templateStage;
return this;
}
/**
* <p>TemplateVersion.</p>
*/
public Builder templateVersion(String templateVersion) {
this.putQueryParameter("TemplateVersion", templateVersion);
this.templateVersion = templateVersion;
return this;
}
public GetTemplateRequest build() {
return new GetTemplateRequest(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/GetTemplateResponse.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 GetTemplateResponse} extends {@link TeaModel}
*
* <p>GetTemplateResponse</p>
*/
public class GetTemplateResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GetTemplateResponseBody body;
private GetTemplateResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GetTemplateResponse 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 GetTemplateResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GetTemplateResponseBody body;
private Builder() {
super();
}
private Builder(GetTemplateResponse 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(GetTemplateResponseBody body) {
this.body = body;
return this;
}
public GetTemplateResponse build() {
return new GetTemplateResponse(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/GetTemplateResponseBody.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 GetTemplateResponseBody} extends {@link TeaModel}
*
* <p>GetTemplateResponseBody</p>
*/
public class GetTemplateResponseBody extends TeaModel {
@NameInMap("ChangeSetId")
private String changeSetId;
@NameInMap("CreateTime")
private String createTime;
@NameInMap("Description")
private String description;
@NameInMap("OwnerId")
private String ownerId;
@NameInMap("Permissions")
private java.util.List < Permissions> permissions;
@NameInMap("RegionId")
private String regionId;
@NameInMap("RequestId")
private String requestId;
@NameInMap("ResourceGroupId")
private String resourceGroupId;
@NameInMap("ShareType")
private String shareType;
@NameInMap("StackGroupName")
private String stackGroupName;
@NameInMap("StackId")
private String stackId;
@NameInMap("TemplateARN")
private String templateARN;
@NameInMap("TemplateBody")
private String templateBody;
@NameInMap("TemplateId")
private String templateId;
@NameInMap("TemplateName")
private String templateName;
@NameInMap("TemplateVersion")
private String templateVersion;
@NameInMap("UpdateTime")
private String updateTime;
private GetTemplateResponseBody(Builder builder) {
this.changeSetId = builder.changeSetId;
this.createTime = builder.createTime;
this.description = builder.description;
this.ownerId = builder.ownerId;
this.permissions = builder.permissions;
this.regionId = builder.regionId;
this.requestId = builder.requestId;
this.resourceGroupId = builder.resourceGroupId;
this.shareType = builder.shareType;
this.stackGroupName = builder.stackGroupName;
this.stackId = builder.stackId;
this.templateARN = builder.templateARN;
this.templateBody = builder.templateBody;
this.templateId = builder.templateId;
this.templateName = builder.templateName;
this.templateVersion = builder.templateVersion;
this.updateTime = builder.updateTime;
}
public static Builder builder() {
return new Builder();
}
public static GetTemplateResponseBody create() {
return builder().build();
}
/**
* @return changeSetId
*/
public String getChangeSetId() {
return this.changeSetId;
}
/**
* @return createTime
*/
public String getCreateTime() {
return this.createTime;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return ownerId
*/
public String getOwnerId() {
return this.ownerId;
}
/**
* @return permissions
*/
public java.util.List < Permissions> getPermissions() {
return this.permissions;
}
/**
* @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 shareType
*/
public String getShareType() {
return this.shareType;
}
/**
* @return stackGroupName
*/
public String getStackGroupName() {
return this.stackGroupName;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
/**
* @return templateARN
*/
public String getTemplateARN() {
return this.templateARN;
}
/**
* @return templateBody
*/
public String getTemplateBody() {
return this.templateBody;
}
/**
* @return templateId
*/
public String getTemplateId() {
return this.templateId;
}
/**
* @return templateName
*/
public String getTemplateName() {
return this.templateName;
}
/**
* @return templateVersion
*/
public String getTemplateVersion() {
return this.templateVersion;
}
/**
* @return updateTime
*/
public String getUpdateTime() {
return this.updateTime;
}
public static final class Builder {
private String changeSetId;
private String createTime;
private String description;
private String ownerId;
private java.util.List < Permissions> permissions;
private String regionId;
private String requestId;
private String resourceGroupId;
private String shareType;
private String stackGroupName;
private String stackId;
private String templateARN;
private String templateBody;
private String templateId;
private String templateName;
private String templateVersion;
private String updateTime;
/**
* <p>ChangeSetId.</p>
*/
public Builder changeSetId(String changeSetId) {
this.changeSetId = changeSetId;
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>OwnerId.</p>
*/
public Builder ownerId(String ownerId) {
this.ownerId = ownerId;
return this;
}
/**
* <p>Permissions.</p>
*/
public Builder permissions(java.util.List < Permissions> permissions) {
this.permissions = permissions;
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>ShareType.</p>
*/
public Builder shareType(String shareType) {
this.shareType = shareType;
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>TemplateARN.</p>
*/
public Builder templateARN(String templateARN) {
this.templateARN = templateARN;
return this;
}
/**
* <p>TemplateBody.</p>
*/
public Builder templateBody(String templateBody) {
this.templateBody = templateBody;
return this;
}
/**
* <p>TemplateId.</p>
*/
public Builder templateId(String templateId) {
this.templateId = templateId;
return this;
}
/**
* <p>TemplateName.</p>
*/
public Builder templateName(String templateName) {
this.templateName = templateName;
return this;
}
/**
* <p>TemplateVersion.</p>
*/
public Builder templateVersion(String templateVersion) {
this.templateVersion = templateVersion;
return this;
}
/**
* <p>UpdateTime.</p>
*/
public Builder updateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
public GetTemplateResponseBody build() {
return new GetTemplateResponseBody(this);
}
}
public static class Permissions extends TeaModel {
@NameInMap("AccountId")
private String accountId;
@NameInMap("ShareOption")
private String shareOption;
@NameInMap("ShareSource")
private String shareSource;
@NameInMap("TemplateVersion")
private String templateVersion;
@NameInMap("VersionOption")
private String versionOption;
private Permissions(Builder builder) {
this.accountId = builder.accountId;
this.shareOption = builder.shareOption;
this.shareSource = builder.shareSource;
this.templateVersion = builder.templateVersion;
this.versionOption = builder.versionOption;
}
public static Builder builder() {
return new Builder();
}
public static Permissions create() {
return builder().build();
}
/**
* @return accountId
*/
public String getAccountId() {
return this.accountId;
}
/**
* @return shareOption
*/
public String getShareOption() {
return this.shareOption;
}
/**
* @return shareSource
*/
public String getShareSource() {
return this.shareSource;
}
/**
* @return templateVersion
*/
public String getTemplateVersion() {
return this.templateVersion;
}
/**
* @return versionOption
*/
public String getVersionOption() {
return this.versionOption;
}
public static final class Builder {
private String accountId;
private String shareOption;
private String shareSource;
private String templateVersion;
private String versionOption;
/**
* <p>AccountId.</p>
*/
public Builder accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* <p>ShareOption.</p>
*/
public Builder shareOption(String shareOption) {
this.shareOption = shareOption;
return this;
}
/**
* <p>ShareSource.</p>
*/
public Builder shareSource(String shareSource) {
this.shareSource = shareSource;
return this;
}
/**
* <p>TemplateVersion.</p>
*/
public Builder templateVersion(String templateVersion) {
this.templateVersion = templateVersion;
return this;
}
/**
* <p>VersionOption.</p>
*/
public Builder versionOption(String versionOption) {
this.versionOption = versionOption;
return this;
}
public Permissions build() {
return new Permissions(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/GetTemplateScratchRequest.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 GetTemplateScratchRequest} extends {@link RequestModel}
*
* <p>GetTemplateScratchRequest</p>
*/
public class GetTemplateScratchRequest extends Request {
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("ShowDataOption")
private String showDataOption;
@Query
@NameInMap("TemplateScratchId")
private String templateScratchId;
private GetTemplateScratchRequest(Builder builder) {
super(builder);
this.regionId = builder.regionId;
this.showDataOption = builder.showDataOption;
this.templateScratchId = builder.templateScratchId;
}
public static Builder builder() {
return new Builder();
}
public static GetTemplateScratchRequest create() {
return builder().build();
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return showDataOption
*/
public String getShowDataOption() {
return this.showDataOption;
}
/**
* @return templateScratchId
*/
public String getTemplateScratchId() {
return this.templateScratchId;
}
public static final class Builder extends Request.Builder<Builder> {
private String regionId;
private String showDataOption;
private String templateScratchId;
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>ShowDataOption.</p>
*/
public Builder showDataOption(String showDataOption) {
this.putQueryParameter("ShowDataOption", showDataOption);
this.showDataOption = showDataOption;
return this;
}
/**
* <p>TemplateScratchId.</p>
*/
public Builder templateScratchId(String templateScratchId) {
this.putQueryParameter("TemplateScratchId", templateScratchId);
this.templateScratchId = templateScratchId;
return this;
}
public GetTemplateScratchRequest build() {
return new GetTemplateScratchRequest(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/GetTemplateScratchResponse.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 GetTemplateScratchResponse} extends {@link TeaModel}
*
* <p>GetTemplateScratchResponse</p>
*/
public class GetTemplateScratchResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GetTemplateScratchResponseBody body;
private GetTemplateScratchResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GetTemplateScratchResponse 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 GetTemplateScratchResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GetTemplateScratchResponseBody body;
private Builder() {
super();
}
private Builder(GetTemplateScratchResponse 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(GetTemplateScratchResponseBody body) {
this.body = body;
return this;
}
public GetTemplateScratchResponse build() {
return new GetTemplateScratchResponse(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/GetTemplateScratchResponseBody.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 GetTemplateScratchResponseBody} extends {@link TeaModel}
*
* <p>GetTemplateScratchResponseBody</p>
*/
public class GetTemplateScratchResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("TemplateScratch")
private TemplateScratch templateScratch;
private GetTemplateScratchResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.templateScratch = builder.templateScratch;
}
public static Builder builder() {
return new Builder();
}
public static GetTemplateScratchResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return templateScratch
*/
public TemplateScratch getTemplateScratch() {
return this.templateScratch;
}
public static final class Builder {
private String requestId;
private TemplateScratch templateScratch;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>TemplateScratch.</p>
*/
public Builder templateScratch(TemplateScratch templateScratch) {
this.templateScratch = templateScratch;
return this;
}
public GetTemplateScratchResponseBody build() {
return new GetTemplateScratchResponseBody(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);
}
}
}
public static class StackProvision extends TeaModel {
@NameInMap("Creatable")
private Boolean creatable;
@NameInMap("Importable")
private Boolean importable;
private StackProvision(Builder builder) {
this.creatable = builder.creatable;
this.importable = builder.importable;
}
public static Builder builder() {
return new Builder();
}
public static StackProvision create() {
return builder().build();
}
/**
* @return creatable
*/
public Boolean getCreatable() {
return this.creatable;
}
/**
* @return importable
*/
public Boolean getImportable() {
return this.importable;
}
public static final class Builder {
private Boolean creatable;
private Boolean importable;
/**
* <p>Creatable.</p>
*/
public Builder creatable(Boolean creatable) {
this.creatable = creatable;
return this;
}
/**
* <p>Importable.</p>
*/
public Builder importable(Boolean importable) {
this.importable = importable;
return this;
}
public StackProvision build() {
return new StackProvision(this);
}
}
}
public static class Stacks extends TeaModel {
@NameInMap("RegionId")
private String regionId;
@NameInMap("StackId")
private String stackId;
@NameInMap("UsageType")
private String usageType;
private Stacks(Builder builder) {
this.regionId = builder.regionId;
this.stackId = builder.stackId;
this.usageType = builder.usageType;
}
public static Builder builder() {
return new Builder();
}
public static Stacks create() {
return builder().build();
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
/**
* @return usageType
*/
public String getUsageType() {
return this.usageType;
}
public static final class Builder {
private String regionId;
private String stackId;
private String usageType;
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.regionId = regionId;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.stackId = stackId;
return this;
}
/**
* <p>UsageType.</p>
*/
public Builder usageType(String usageType) {
this.usageType = usageType;
return this;
}
public Stacks build() {
return new Stacks(this);
}
}
}
public static class TemplateScratch extends TeaModel {
@NameInMap("CreateTime")
private String createTime;
@NameInMap("Description")
private String description;
@NameInMap("FailedCode")
private String failedCode;
@NameInMap("LogicalIdStrategy")
private String logicalIdStrategy;
@NameInMap("PreferenceParameters")
private java.util.List < PreferenceParameters> preferenceParameters;
@NameInMap("SourceResourceGroup")
private SourceResourceGroup sourceResourceGroup;
@NameInMap("SourceResources")
private java.util.List < SourceResources> sourceResources;
@NameInMap("SourceTag")
private SourceTag sourceTag;
@NameInMap("StackProvision")
private StackProvision stackProvision;
@NameInMap("Stacks")
private java.util.List < Stacks> stacks;
@NameInMap("Status")
private String status;
@NameInMap("StatusReason")
private String statusReason;
@NameInMap("TemplateScratchData")
private java.util.Map < String, ? > templateScratchData;
@NameInMap("TemplateScratchId")
private String templateScratchId;
@NameInMap("TemplateScratchType")
private String templateScratchType;
@NameInMap("UpdateTime")
private String updateTime;
private TemplateScratch(Builder builder) {
this.createTime = builder.createTime;
this.description = builder.description;
this.failedCode = builder.failedCode;
this.logicalIdStrategy = builder.logicalIdStrategy;
this.preferenceParameters = builder.preferenceParameters;
this.sourceResourceGroup = builder.sourceResourceGroup;
this.sourceResources = builder.sourceResources;
this.sourceTag = builder.sourceTag;
this.stackProvision = builder.stackProvision;
this.stacks = builder.stacks;
this.status = builder.status;
this.statusReason = builder.statusReason;
this.templateScratchData = builder.templateScratchData;
this.templateScratchId = builder.templateScratchId;
this.templateScratchType = builder.templateScratchType;
this.updateTime = builder.updateTime;
}
public static Builder builder() {
return new Builder();
}
public static TemplateScratch create() {
return builder().build();
}
/**
* @return createTime
*/
public String getCreateTime() {
return this.createTime;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return failedCode
*/
public String getFailedCode() {
return this.failedCode;
}
/**
* @return logicalIdStrategy
*/
public String getLogicalIdStrategy() {
return this.logicalIdStrategy;
}
/**
* @return preferenceParameters
*/
public java.util.List < PreferenceParameters> getPreferenceParameters() {
return this.preferenceParameters;
}
/**
* @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 stackProvision
*/
public StackProvision getStackProvision() {
return this.stackProvision;
}
/**
* @return stacks
*/
public java.util.List < Stacks> getStacks() {
return this.stacks;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return statusReason
*/
public String getStatusReason() {
return this.statusReason;
}
/**
* @return templateScratchData
*/
public java.util.Map < String, ? > getTemplateScratchData() {
return this.templateScratchData;
}
/**
* @return templateScratchId
*/
public String getTemplateScratchId() {
return this.templateScratchId;
}
/**
* @return templateScratchType
*/
public String getTemplateScratchType() {
return this.templateScratchType;
}
/**
* @return updateTime
*/
public String getUpdateTime() {
return this.updateTime;
}
public static final class Builder {
private String createTime;
private String description;
private String failedCode;
private String logicalIdStrategy;
private java.util.List < PreferenceParameters> preferenceParameters;
private SourceResourceGroup sourceResourceGroup;
private java.util.List < SourceResources> sourceResources;
private SourceTag sourceTag;
private StackProvision stackProvision;
private java.util.List < Stacks> stacks;
private String status;
private String statusReason;
private java.util.Map < String, ? > templateScratchData;
private String templateScratchId;
private String templateScratchType;
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>FailedCode.</p>
*/
public Builder failedCode(String failedCode) {
this.failedCode = failedCode;
return this;
}
/**
* <p>LogicalIdStrategy.</p>
*/
public Builder logicalIdStrategy(String logicalIdStrategy) {
this.logicalIdStrategy = logicalIdStrategy;
return this;
}
/**
* <p>PreferenceParameters.</p>
*/
public Builder preferenceParameters(java.util.List < PreferenceParameters> preferenceParameters) {
this.preferenceParameters = preferenceParameters;
return this;
}
/**
* <p>SourceResourceGroup.</p>
*/
public Builder sourceResourceGroup(SourceResourceGroup sourceResourceGroup) {
this.sourceResourceGroup = sourceResourceGroup;
return this;
}
/**
* <p>SourceResources.</p>
*/
public Builder sourceResources(java.util.List < SourceResources> sourceResources) {
this.sourceResources = sourceResources;
return this;
}
/**
* <p>SourceTag.</p>
*/
public Builder sourceTag(SourceTag sourceTag) {
this.sourceTag = sourceTag;
return this;
}
/**
* <p>StackProvision.</p>
*/
public Builder stackProvision(StackProvision stackProvision) {
this.stackProvision = stackProvision;
return this;
}
/**
* <p>Stacks.</p>
*/
public Builder stacks(java.util.List < Stacks> stacks) {
this.stacks = stacks;
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>TemplateScratchData.</p>
*/
public Builder templateScratchData(java.util.Map < String, ? > templateScratchData) {
this.templateScratchData = templateScratchData;
return this;
}
/**
* <p>TemplateScratchId.</p>
*/
public Builder templateScratchId(String templateScratchId) {
this.templateScratchId = templateScratchId;
return this;
}
/**
* <p>TemplateScratchType.</p>
*/
public Builder templateScratchType(String templateScratchType) {
this.templateScratchType = templateScratchType;
return this;
}
/**
* <p>UpdateTime.</p>
*/
public Builder updateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
public TemplateScratch build() {
return new TemplateScratch(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/GetTemplateSummaryRequest.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 GetTemplateSummaryRequest} extends {@link RequestModel}
*
* <p>GetTemplateSummaryRequest</p>
*/
public class GetTemplateSummaryRequest extends Request {
@Query
@NameInMap("ChangeSetId")
private String changeSetId;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("StackGroupName")
private String stackGroupName;
@Query
@NameInMap("StackId")
private String stackId;
@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 GetTemplateSummaryRequest(Builder builder) {
super(builder);
this.changeSetId = builder.changeSetId;
this.regionId = builder.regionId;
this.stackGroupName = builder.stackGroupName;
this.stackId = builder.stackId;
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 GetTemplateSummaryRequest create() {
return builder().build();
}
/**
* @return changeSetId
*/
public String getChangeSetId() {
return this.changeSetId;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return stackGroupName
*/
public String getStackGroupName() {
return this.stackGroupName;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
/**
* @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 changeSetId;
private String regionId;
private String stackGroupName;
private String stackId;
private String templateBody;
private String templateId;
private String templateURL;
private String templateVersion;
/**
* <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>StackGroupName.</p>
*/
public Builder stackGroupName(String stackGroupName) {
this.putQueryParameter("StackGroupName", stackGroupName);
this.stackGroupName = stackGroupName;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.putQueryParameter("StackId", stackId);
this.stackId = stackId;
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 GetTemplateSummaryRequest build() {
return new GetTemplateSummaryRequest(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/GetTemplateSummaryResponse.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 GetTemplateSummaryResponse} extends {@link TeaModel}
*
* <p>GetTemplateSummaryResponse</p>
*/
public class GetTemplateSummaryResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private GetTemplateSummaryResponseBody body;
private GetTemplateSummaryResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static GetTemplateSummaryResponse 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 GetTemplateSummaryResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private GetTemplateSummaryResponseBody body;
private Builder() {
super();
}
private Builder(GetTemplateSummaryResponse 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(GetTemplateSummaryResponseBody body) {
this.body = body;
return this;
}
public GetTemplateSummaryResponse build() {
return new GetTemplateSummaryResponse(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/GetTemplateSummaryResponseBody.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 GetTemplateSummaryResponseBody} extends {@link TeaModel}
*
* <p>GetTemplateSummaryResponseBody</p>
*/
public class GetTemplateSummaryResponseBody extends TeaModel {
@NameInMap("Description")
private String description;
@NameInMap("Metadata")
private java.util.Map < String, ? > metadata;
@NameInMap("Parameters")
private java.util.List < java.util.Map<String, ?>> parameters;
@NameInMap("RequestId")
private String requestId;
@NameInMap("ResourceIdentifierSummaries")
private java.util.List < ResourceIdentifierSummaries> resourceIdentifierSummaries;
@NameInMap("ResourceTypes")
private java.util.List < String > resourceTypes;
@NameInMap("Version")
private String version;
private GetTemplateSummaryResponseBody(Builder builder) {
this.description = builder.description;
this.metadata = builder.metadata;
this.parameters = builder.parameters;
this.requestId = builder.requestId;
this.resourceIdentifierSummaries = builder.resourceIdentifierSummaries;
this.resourceTypes = builder.resourceTypes;
this.version = builder.version;
}
public static Builder builder() {
return new Builder();
}
public static GetTemplateSummaryResponseBody create() {
return builder().build();
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return metadata
*/
public java.util.Map < String, ? > getMetadata() {
return this.metadata;
}
/**
* @return parameters
*/
public java.util.List < java.util.Map<String, ?>> getParameters() {
return this.parameters;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resourceIdentifierSummaries
*/
public java.util.List < ResourceIdentifierSummaries> getResourceIdentifierSummaries() {
return this.resourceIdentifierSummaries;
}
/**
* @return resourceTypes
*/
public java.util.List < String > getResourceTypes() {
return this.resourceTypes;
}
/**
* @return version
*/
public String getVersion() {
return this.version;
}
public static final class Builder {
private String description;
private java.util.Map < String, ? > metadata;
private java.util.List < java.util.Map<String, ?>> parameters;
private String requestId;
private java.util.List < ResourceIdentifierSummaries> resourceIdentifierSummaries;
private java.util.List < String > resourceTypes;
private String version;
/**
* <p>Description.</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>Metadata.</p>
*/
public Builder metadata(java.util.Map < String, ? > metadata) {
this.metadata = metadata;
return this;
}
/**
* <p>Parameters.</p>
*/
public Builder parameters(java.util.List < java.util.Map<String, ?>> parameters) {
this.parameters = parameters;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>ResourceIdentifierSummaries.</p>
*/
public Builder resourceIdentifierSummaries(java.util.List < ResourceIdentifierSummaries> resourceIdentifierSummaries) {
this.resourceIdentifierSummaries = resourceIdentifierSummaries;
return this;
}
/**
* <p>ResourceTypes.</p>
*/
public Builder resourceTypes(java.util.List < String > resourceTypes) {
this.resourceTypes = resourceTypes;
return this;
}
/**
* <p>Version.</p>
*/
public Builder version(String version) {
this.version = version;
return this;
}
public GetTemplateSummaryResponseBody build() {
return new GetTemplateSummaryResponseBody(this);
}
}
public static class ResourceIdentifierSummaries extends TeaModel {
@NameInMap("LogicalResourceIds")
private java.util.List < String > logicalResourceIds;
@NameInMap("ResourceIdentifiers")
private java.util.List < String > resourceIdentifiers;
@NameInMap("ResourceType")
private String resourceType;
private ResourceIdentifierSummaries(Builder builder) {
this.logicalResourceIds = builder.logicalResourceIds;
this.resourceIdentifiers = builder.resourceIdentifiers;
this.resourceType = builder.resourceType;
}
public static Builder builder() {
return new Builder();
}
public static ResourceIdentifierSummaries create() {
return builder().build();
}
/**
* @return logicalResourceIds
*/
public java.util.List < String > getLogicalResourceIds() {
return this.logicalResourceIds;
}
/**
* @return resourceIdentifiers
*/
public java.util.List < String > getResourceIdentifiers() {
return this.resourceIdentifiers;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
public static final class Builder {
private java.util.List < String > logicalResourceIds;
private java.util.List < String > resourceIdentifiers;
private String resourceType;
/**
* <p>LogicalResourceIds.</p>
*/
public Builder logicalResourceIds(java.util.List < String > logicalResourceIds) {
this.logicalResourceIds = logicalResourceIds;
return this;
}
/**
* <p>ResourceIdentifiers.</p>
*/
public Builder resourceIdentifiers(java.util.List < String > resourceIdentifiers) {
this.resourceIdentifiers = resourceIdentifiers;
return this;
}
/**
* <p>ResourceType.</p>
*/
public Builder resourceType(String resourceType) {
this.resourceType = resourceType;
return this;
}
public ResourceIdentifierSummaries build() {
return new ResourceIdentifierSummaries(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/ListChangeSetsRequest.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 ListChangeSetsRequest} extends {@link RequestModel}
*
* <p>ListChangeSetsRequest</p>
*/
public class ListChangeSetsRequest extends Request {
@Query
@NameInMap("ChangeSetId")
private String changeSetId;
@Query
@NameInMap("ChangeSetName")
private java.util.List < String > changeSetName;
@Query
@NameInMap("ExecutionStatus")
private java.util.List < String > executionStatus;
@Query
@NameInMap("PageNumber")
private Long pageNumber;
@Query
@NameInMap("PageSize")
private Long pageSize;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("StackId")
private String stackId;
@Query
@NameInMap("Status")
private java.util.List < String > status;
private ListChangeSetsRequest(Builder builder) {
super(builder);
this.changeSetId = builder.changeSetId;
this.changeSetName = builder.changeSetName;
this.executionStatus = builder.executionStatus;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.regionId = builder.regionId;
this.stackId = builder.stackId;
this.status = builder.status;
}
public static Builder builder() {
return new Builder();
}
public static ListChangeSetsRequest create() {
return builder().build();
}
/**
* @return changeSetId
*/
public String getChangeSetId() {
return this.changeSetId;
}
/**
* @return changeSetName
*/
public java.util.List < String > getChangeSetName() {
return this.changeSetName;
}
/**
* @return executionStatus
*/
public java.util.List < String > getExecutionStatus() {
return this.executionStatus;
}
/**
* @return pageNumber
*/
public Long getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
/**
* @return status
*/
public java.util.List < String > getStatus() {
return this.status;
}
public static final class Builder extends Request.Builder<Builder> {
private String changeSetId;
private java.util.List < String > changeSetName;
private java.util.List < String > executionStatus;
private Long pageNumber;
private Long pageSize;
private String regionId;
private String stackId;
private java.util.List < String > status;
/**
* <p>ChangeSetId.</p>
*/
public Builder changeSetId(String changeSetId) {
this.putQueryParameter("ChangeSetId", changeSetId);
this.changeSetId = changeSetId;
return this;
}
/**
* <p>ChangeSetName.</p>
*/
public Builder changeSetName(java.util.List < String > changeSetName) {
this.putQueryParameter("ChangeSetName", changeSetName);
this.changeSetName = changeSetName;
return this;
}
/**
* <p>ExecutionStatus.</p>
*/
public Builder executionStatus(java.util.List < String > executionStatus) {
this.putQueryParameter("ExecutionStatus", executionStatus);
this.executionStatus = executionStatus;
return this;
}
/**
* <p>PageNumber.</p>
*/
public Builder pageNumber(Long pageNumber) {
this.putQueryParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* <p>PageSize.</p>
*/
public Builder pageSize(Long pageSize) {
this.putQueryParameter("PageSize", pageSize);
this.pageSize = pageSize;
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;
}
/**
* <p>Status.</p>
*/
public Builder status(java.util.List < String > status) {
this.putQueryParameter("Status", status);
this.status = status;
return this;
}
public ListChangeSetsRequest build() {
return new ListChangeSetsRequest(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/ListChangeSetsResponse.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 ListChangeSetsResponse} extends {@link TeaModel}
*
* <p>ListChangeSetsResponse</p>
*/
public class ListChangeSetsResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListChangeSetsResponseBody body;
private ListChangeSetsResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static ListChangeSetsResponse 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 ListChangeSetsResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private ListChangeSetsResponseBody body;
private Builder() {
super();
}
private Builder(ListChangeSetsResponse 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(ListChangeSetsResponseBody body) {
this.body = body;
return this;
}
public ListChangeSetsResponse build() {
return new ListChangeSetsResponse(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/ListChangeSetsResponseBody.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 ListChangeSetsResponseBody} extends {@link TeaModel}
*
* <p>ListChangeSetsResponseBody</p>
*/
public class ListChangeSetsResponseBody extends TeaModel {
@NameInMap("ChangeSets")
private java.util.List < ChangeSets> changeSets;
@NameInMap("PageNumber")
private Integer pageNumber;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("RequestId")
private String requestId;
@NameInMap("TotalCount")
private Integer totalCount;
private ListChangeSetsResponseBody(Builder builder) {
this.changeSets = builder.changeSets;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.requestId = builder.requestId;
this.totalCount = builder.totalCount;
}
public static Builder builder() {
return new Builder();
}
public static ListChangeSetsResponseBody create() {
return builder().build();
}
/**
* @return changeSets
*/
public java.util.List < ChangeSets> getChangeSets() {
return this.changeSets;
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return totalCount
*/
public Integer getTotalCount() {
return this.totalCount;
}
public static final class Builder {
private java.util.List < ChangeSets> changeSets;
private Integer pageNumber;
private Integer pageSize;
private String requestId;
private Integer totalCount;
/**
* <p>ChangeSets.</p>
*/
public Builder changeSets(java.util.List < ChangeSets> changeSets) {
this.changeSets = changeSets;
return this;
}
/**
* <p>PageNumber.</p>
*/
public Builder pageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* <p>PageSize.</p>
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>TotalCount.</p>
*/
public Builder totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public ListChangeSetsResponseBody build() {
return new ListChangeSetsResponseBody(this);
}
}
public static class ChangeSets extends TeaModel {
@NameInMap("ChangeSetId")
private String changeSetId;
@NameInMap("ChangeSetName")
private String changeSetName;
@NameInMap("ChangeSetType")
private String changeSetType;
@NameInMap("CreateTime")
private String createTime;
@NameInMap("Description")
private String description;
@NameInMap("ExecutionStatus")
private String executionStatus;
@NameInMap("RegionId")
private String regionId;
@NameInMap("StackId")
private String stackId;
@NameInMap("StackName")
private String stackName;
@NameInMap("Status")
private String status;
@NameInMap("StatusReason")
private String statusReason;
private ChangeSets(Builder builder) {
this.changeSetId = builder.changeSetId;
this.changeSetName = builder.changeSetName;
this.changeSetType = builder.changeSetType;
this.createTime = builder.createTime;
this.description = builder.description;
this.executionStatus = builder.executionStatus;
this.regionId = builder.regionId;
this.stackId = builder.stackId;
this.stackName = builder.stackName;
this.status = builder.status;
this.statusReason = builder.statusReason;
}
public static Builder builder() {
return new Builder();
}
public static ChangeSets 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 createTime
*/
public String getCreateTime() {
return this.createTime;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return executionStatus
*/
public String getExecutionStatus() {
return this.executionStatus;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @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;
}
public static final class Builder {
private String changeSetId;
private String changeSetName;
private String changeSetType;
private String createTime;
private String description;
private String executionStatus;
private String regionId;
private String stackId;
private String stackName;
private String status;
private String statusReason;
/**
* <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>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>ExecutionStatus.</p>
*/
public Builder executionStatus(String executionStatus) {
this.executionStatus = executionStatus;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.regionId = regionId;
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;
}
public ChangeSets build() {
return new ChangeSets(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/ListResourceTypesRequest.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 ListResourceTypesRequest} extends {@link RequestModel}
*
* <p>ListResourceTypesRequest</p>
*/
public class ListResourceTypesRequest extends Request {
@Query
@NameInMap("EntityType")
private String entityType;
private ListResourceTypesRequest(Builder builder) {
super(builder);
this.entityType = builder.entityType;
}
public static Builder builder() {
return new Builder();
}
public static ListResourceTypesRequest create() {
return builder().build();
}
/**
* @return entityType
*/
public String getEntityType() {
return this.entityType;
}
public static final class Builder extends Request.Builder<Builder> {
private String entityType;
/**
* <p>EntityType.</p>
*/
public Builder entityType(String entityType) {
this.putQueryParameter("EntityType", entityType);
this.entityType = entityType;
return this;
}
public ListResourceTypesRequest build() {
return new ListResourceTypesRequest(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/ListResourceTypesResponse.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 ListResourceTypesResponse} extends {@link TeaModel}
*
* <p>ListResourceTypesResponse</p>
*/
public class ListResourceTypesResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListResourceTypesResponseBody body;
private ListResourceTypesResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static ListResourceTypesResponse 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 ListResourceTypesResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private ListResourceTypesResponseBody body;
private Builder() {
super();
}
private Builder(ListResourceTypesResponse 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(ListResourceTypesResponseBody body) {
this.body = body;
return this;
}
public ListResourceTypesResponse build() {
return new ListResourceTypesResponse(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/ListResourceTypesResponseBody.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 ListResourceTypesResponseBody} extends {@link TeaModel}
*
* <p>ListResourceTypesResponseBody</p>
*/
public class ListResourceTypesResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("ResourceTypes")
private java.util.List < String > resourceTypes;
private ListResourceTypesResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resourceTypes = builder.resourceTypes;
}
public static Builder builder() {
return new Builder();
}
public static ListResourceTypesResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resourceTypes
*/
public java.util.List < String > getResourceTypes() {
return this.resourceTypes;
}
public static final class Builder {
private String requestId;
private java.util.List < String > resourceTypes;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>ResourceTypes.</p>
*/
public Builder resourceTypes(java.util.List < String > resourceTypes) {
this.resourceTypes = resourceTypes;
return this;
}
public ListResourceTypesResponseBody build() {
return new ListResourceTypesResponseBody(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/ListStackEventsRequest.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 ListStackEventsRequest} extends {@link RequestModel}
*
* <p>ListStackEventsRequest</p>
*/
public class ListStackEventsRequest extends Request {
@Query
@NameInMap("LogicalResourceId")
private java.util.List < String > logicalResourceId;
@Query
@NameInMap("PageNumber")
private Long pageNumber;
@Query
@NameInMap("PageSize")
private Long pageSize;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("ResourceType")
private java.util.List < String > resourceType;
@Query
@NameInMap("StackId")
private String stackId;
@Query
@NameInMap("Status")
private java.util.List < String > status;
private ListStackEventsRequest(Builder builder) {
super(builder);
this.logicalResourceId = builder.logicalResourceId;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.regionId = builder.regionId;
this.resourceType = builder.resourceType;
this.stackId = builder.stackId;
this.status = builder.status;
}
public static Builder builder() {
return new Builder();
}
public static ListStackEventsRequest create() {
return builder().build();
}
/**
* @return logicalResourceId
*/
public java.util.List < String > getLogicalResourceId() {
return this.logicalResourceId;
}
/**
* @return pageNumber
*/
public Long getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return resourceType
*/
public java.util.List < String > getResourceType() {
return this.resourceType;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
/**
* @return status
*/
public java.util.List < String > getStatus() {
return this.status;
}
public static final class Builder extends Request.Builder<Builder> {
private java.util.List < String > logicalResourceId;
private Long pageNumber;
private Long pageSize;
private String regionId;
private java.util.List < String > resourceType;
private String stackId;
private java.util.List < String > status;
/**
* <p>LogicalResourceId.</p>
*/
public Builder logicalResourceId(java.util.List < String > logicalResourceId) {
this.putQueryParameter("LogicalResourceId", logicalResourceId);
this.logicalResourceId = logicalResourceId;
return this;
}
/**
* <p>PageNumber.</p>
*/
public Builder pageNumber(Long pageNumber) {
this.putQueryParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* <p>PageSize.</p>
*/
public Builder pageSize(Long pageSize) {
this.putQueryParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>ResourceType.</p>
*/
public Builder resourceType(java.util.List < String > resourceType) {
this.putQueryParameter("ResourceType", resourceType);
this.resourceType = resourceType;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.putQueryParameter("StackId", stackId);
this.stackId = stackId;
return this;
}
/**
* <p>Status.</p>
*/
public Builder status(java.util.List < String > status) {
this.putQueryParameter("Status", status);
this.status = status;
return this;
}
public ListStackEventsRequest build() {
return new ListStackEventsRequest(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/ListStackEventsResponse.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 ListStackEventsResponse} extends {@link TeaModel}
*
* <p>ListStackEventsResponse</p>
*/
public class ListStackEventsResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListStackEventsResponseBody body;
private ListStackEventsResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static ListStackEventsResponse 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 ListStackEventsResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private ListStackEventsResponseBody body;
private Builder() {
super();
}
private Builder(ListStackEventsResponse 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(ListStackEventsResponseBody body) {
this.body = body;
return this;
}
public ListStackEventsResponse build() {
return new ListStackEventsResponse(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/ListStackEventsResponseBody.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 ListStackEventsResponseBody} extends {@link TeaModel}
*
* <p>ListStackEventsResponseBody</p>
*/
public class ListStackEventsResponseBody extends TeaModel {
@NameInMap("Events")
private java.util.List < Events> events;
@NameInMap("PageNumber")
private Integer pageNumber;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("RequestId")
private String requestId;
@NameInMap("TotalCount")
private Integer totalCount;
private ListStackEventsResponseBody(Builder builder) {
this.events = builder.events;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.requestId = builder.requestId;
this.totalCount = builder.totalCount;
}
public static Builder builder() {
return new Builder();
}
public static ListStackEventsResponseBody create() {
return builder().build();
}
/**
* @return events
*/
public java.util.List < Events> getEvents() {
return this.events;
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return totalCount
*/
public Integer getTotalCount() {
return this.totalCount;
}
public static final class Builder {
private java.util.List < Events> events;
private Integer pageNumber;
private Integer pageSize;
private String requestId;
private Integer totalCount;
/**
* <p>Events.</p>
*/
public Builder events(java.util.List < Events> events) {
this.events = events;
return this;
}
/**
* <p>PageNumber.</p>
*/
public Builder pageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* <p>PageSize.</p>
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>TotalCount.</p>
*/
public Builder totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public ListStackEventsResponseBody build() {
return new ListStackEventsResponseBody(this);
}
}
public static class Events extends TeaModel {
@NameInMap("CreateTime")
private String createTime;
@NameInMap("EventId")
private String eventId;
@NameInMap("LogicalResourceId")
private String logicalResourceId;
@NameInMap("PhysicalResourceId")
private String physicalResourceId;
@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;
private Events(Builder builder) {
this.createTime = builder.createTime;
this.eventId = builder.eventId;
this.logicalResourceId = builder.logicalResourceId;
this.physicalResourceId = builder.physicalResourceId;
this.resourceType = builder.resourceType;
this.stackId = builder.stackId;
this.stackName = builder.stackName;
this.status = builder.status;
this.statusReason = builder.statusReason;
}
public static Builder builder() {
return new Builder();
}
public static Events create() {
return builder().build();
}
/**
* @return createTime
*/
public String getCreateTime() {
return this.createTime;
}
/**
* @return eventId
*/
public String getEventId() {
return this.eventId;
}
/**
* @return logicalResourceId
*/
public String getLogicalResourceId() {
return this.logicalResourceId;
}
/**
* @return physicalResourceId
*/
public String getPhysicalResourceId() {
return this.physicalResourceId;
}
/**
* @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;
}
public static final class Builder {
private String createTime;
private String eventId;
private String logicalResourceId;
private String physicalResourceId;
private String resourceType;
private String stackId;
private String stackName;
private String status;
private String statusReason;
/**
* <p>CreateTime.</p>
*/
public Builder createTime(String createTime) {
this.createTime = createTime;
return this;
}
/**
* <p>EventId.</p>
*/
public Builder eventId(String eventId) {
this.eventId = eventId;
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>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;
}
public Events build() {
return new Events(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/ListStackGroupOperationResultsRequest.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 ListStackGroupOperationResultsRequest} extends {@link RequestModel}
*
* <p>ListStackGroupOperationResultsRequest</p>
*/
public class ListStackGroupOperationResultsRequest extends Request {
@Query
@NameInMap("OperationId")
private String operationId;
@Query
@NameInMap("PageNumber")
private Long pageNumber;
@Query
@NameInMap("PageSize")
private Long pageSize;
@Query
@NameInMap("RegionId")
private String regionId;
private ListStackGroupOperationResultsRequest(Builder builder) {
super(builder);
this.operationId = builder.operationId;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.regionId = builder.regionId;
}
public static Builder builder() {
return new Builder();
}
public static ListStackGroupOperationResultsRequest create() {
return builder().build();
}
/**
* @return operationId
*/
public String getOperationId() {
return this.operationId;
}
/**
* @return pageNumber
*/
public Long getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
public static final class Builder extends Request.Builder<Builder> {
private String operationId;
private Long pageNumber;
private Long pageSize;
private String regionId;
/**
* <p>OperationId.</p>
*/
public Builder operationId(String operationId) {
this.putQueryParameter("OperationId", operationId);
this.operationId = operationId;
return this;
}
/**
* <p>PageNumber.</p>
*/
public Builder pageNumber(Long pageNumber) {
this.putQueryParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* <p>PageSize.</p>
*/
public Builder pageSize(Long pageSize) {
this.putQueryParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
public ListStackGroupOperationResultsRequest build() {
return new ListStackGroupOperationResultsRequest(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/ListStackGroupOperationResultsResponse.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 ListStackGroupOperationResultsResponse} extends {@link TeaModel}
*
* <p>ListStackGroupOperationResultsResponse</p>
*/
public class ListStackGroupOperationResultsResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListStackGroupOperationResultsResponseBody body;
private ListStackGroupOperationResultsResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static ListStackGroupOperationResultsResponse 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 ListStackGroupOperationResultsResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private ListStackGroupOperationResultsResponseBody body;
private Builder() {
super();
}
private Builder(ListStackGroupOperationResultsResponse 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(ListStackGroupOperationResultsResponseBody body) {
this.body = body;
return this;
}
public ListStackGroupOperationResultsResponse build() {
return new ListStackGroupOperationResultsResponse(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/ListStackGroupOperationResultsResponseBody.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 ListStackGroupOperationResultsResponseBody} extends {@link TeaModel}
*
* <p>ListStackGroupOperationResultsResponseBody</p>
*/
public class ListStackGroupOperationResultsResponseBody extends TeaModel {
@NameInMap("PageNumber")
private Integer pageNumber;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("RequestId")
private String requestId;
@NameInMap("StackGroupOperationResults")
private java.util.List < StackGroupOperationResults> stackGroupOperationResults;
@NameInMap("TotalCount")
private Integer totalCount;
private ListStackGroupOperationResultsResponseBody(Builder builder) {
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.requestId = builder.requestId;
this.stackGroupOperationResults = builder.stackGroupOperationResults;
this.totalCount = builder.totalCount;
}
public static Builder builder() {
return new Builder();
}
public static ListStackGroupOperationResultsResponseBody create() {
return builder().build();
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return stackGroupOperationResults
*/
public java.util.List < StackGroupOperationResults> getStackGroupOperationResults() {
return this.stackGroupOperationResults;
}
/**
* @return totalCount
*/
public Integer getTotalCount() {
return this.totalCount;
}
public static final class Builder {
private Integer pageNumber;
private Integer pageSize;
private String requestId;
private java.util.List < StackGroupOperationResults> stackGroupOperationResults;
private Integer totalCount;
/**
* <p>PageNumber.</p>
*/
public Builder pageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* <p>PageSize.</p>
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>StackGroupOperationResults.</p>
*/
public Builder stackGroupOperationResults(java.util.List < StackGroupOperationResults> stackGroupOperationResults) {
this.stackGroupOperationResults = stackGroupOperationResults;
return this;
}
/**
* <p>TotalCount.</p>
*/
public Builder totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public ListStackGroupOperationResultsResponseBody build() {
return new ListStackGroupOperationResultsResponseBody(this);
}
}
public static class StackGroupOperationResults extends TeaModel {
@NameInMap("AccountId")
private String accountId;
@NameInMap("RdFolderId")
private String rdFolderId;
@NameInMap("RegionId")
private String regionId;
@NameInMap("Status")
private String status;
@NameInMap("StatusReason")
private String statusReason;
private StackGroupOperationResults(Builder builder) {
this.accountId = builder.accountId;
this.rdFolderId = builder.rdFolderId;
this.regionId = builder.regionId;
this.status = builder.status;
this.statusReason = builder.statusReason;
}
public static Builder builder() {
return new Builder();
}
public static StackGroupOperationResults create() {
return builder().build();
}
/**
* @return accountId
*/
public String getAccountId() {
return this.accountId;
}
/**
* @return rdFolderId
*/
public String getRdFolderId() {
return this.rdFolderId;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @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 rdFolderId;
private String regionId;
private String status;
private String statusReason;
/**
* <p>AccountId.</p>
*/
public Builder accountId(String accountId) {
this.accountId = accountId;
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>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 StackGroupOperationResults build() {
return new StackGroupOperationResults(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/ListStackGroupOperationsRequest.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 ListStackGroupOperationsRequest} extends {@link RequestModel}
*
* <p>ListStackGroupOperationsRequest</p>
*/
public class ListStackGroupOperationsRequest extends Request {
@Query
@NameInMap("PageNumber")
private Long pageNumber;
@Query
@NameInMap("PageSize")
private Long pageSize;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("StackGroupName")
private String stackGroupName;
private ListStackGroupOperationsRequest(Builder builder) {
super(builder);
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.regionId = builder.regionId;
this.stackGroupName = builder.stackGroupName;
}
public static Builder builder() {
return new Builder();
}
public static ListStackGroupOperationsRequest create() {
return builder().build();
}
/**
* @return pageNumber
*/
public Long getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @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 Long pageNumber;
private Long pageSize;
private String regionId;
private String stackGroupName;
/**
* <p>PageNumber.</p>
*/
public Builder pageNumber(Long pageNumber) {
this.putQueryParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* <p>PageSize.</p>
*/
public Builder pageSize(Long pageSize) {
this.putQueryParameter("PageSize", pageSize);
this.pageSize = pageSize;
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 ListStackGroupOperationsRequest build() {
return new ListStackGroupOperationsRequest(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/ListStackGroupOperationsResponse.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 ListStackGroupOperationsResponse} extends {@link TeaModel}
*
* <p>ListStackGroupOperationsResponse</p>
*/
public class ListStackGroupOperationsResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListStackGroupOperationsResponseBody body;
private ListStackGroupOperationsResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static ListStackGroupOperationsResponse 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 ListStackGroupOperationsResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private ListStackGroupOperationsResponseBody body;
private Builder() {
super();
}
private Builder(ListStackGroupOperationsResponse 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(ListStackGroupOperationsResponseBody body) {
this.body = body;
return this;
}
public ListStackGroupOperationsResponse build() {
return new ListStackGroupOperationsResponse(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/ListStackGroupOperationsResponseBody.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 ListStackGroupOperationsResponseBody} extends {@link TeaModel}
*
* <p>ListStackGroupOperationsResponseBody</p>
*/
public class ListStackGroupOperationsResponseBody extends TeaModel {
@NameInMap("PageNumber")
private Integer pageNumber;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("RequestId")
private String requestId;
@NameInMap("StackGroupOperations")
private java.util.List < StackGroupOperations> stackGroupOperations;
@NameInMap("TotalCount")
private Integer totalCount;
private ListStackGroupOperationsResponseBody(Builder builder) {
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.requestId = builder.requestId;
this.stackGroupOperations = builder.stackGroupOperations;
this.totalCount = builder.totalCount;
}
public static Builder builder() {
return new Builder();
}
public static ListStackGroupOperationsResponseBody create() {
return builder().build();
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return stackGroupOperations
*/
public java.util.List < StackGroupOperations> getStackGroupOperations() {
return this.stackGroupOperations;
}
/**
* @return totalCount
*/
public Integer getTotalCount() {
return this.totalCount;
}
public static final class Builder {
private Integer pageNumber;
private Integer pageSize;
private String requestId;
private java.util.List < StackGroupOperations> stackGroupOperations;
private Integer totalCount;
/**
* <p>PageNumber.</p>
*/
public Builder pageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* <p>PageSize.</p>
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>StackGroupOperations.</p>
*/
public Builder stackGroupOperations(java.util.List < StackGroupOperations> stackGroupOperations) {
this.stackGroupOperations = stackGroupOperations;
return this;
}
/**
* <p>TotalCount.</p>
*/
public Builder totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public ListStackGroupOperationsResponseBody build() {
return new ListStackGroupOperationsResponseBody(this);
}
}
public static class StackGroupOperations extends TeaModel {
@NameInMap("Action")
private String action;
@NameInMap("CreateTime")
private String createTime;
@NameInMap("EndTime")
private String endTime;
@NameInMap("OperationDescription")
private String operationDescription;
@NameInMap("OperationId")
private String operationId;
@NameInMap("StackGroupId")
private String stackGroupId;
@NameInMap("StackGroupName")
private String stackGroupName;
@NameInMap("Status")
private String status;
private StackGroupOperations(Builder builder) {
this.action = builder.action;
this.createTime = builder.createTime;
this.endTime = builder.endTime;
this.operationDescription = builder.operationDescription;
this.operationId = builder.operationId;
this.stackGroupId = builder.stackGroupId;
this.stackGroupName = builder.stackGroupName;
this.status = builder.status;
}
public static Builder builder() {
return new Builder();
}
public static StackGroupOperations create() {
return builder().build();
}
/**
* @return action
*/
public String getAction() {
return this.action;
}
/**
* @return createTime
*/
public String getCreateTime() {
return this.createTime;
}
/**
* @return endTime
*/
public String getEndTime() {
return this.endTime;
}
/**
* @return operationDescription
*/
public String getOperationDescription() {
return this.operationDescription;
}
/**
* @return operationId
*/
public String getOperationId() {
return this.operationId;
}
/**
* @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 createTime;
private String endTime;
private String operationDescription;
private String operationId;
private String stackGroupId;
private String stackGroupName;
private String status;
/**
* <p>Action.</p>
*/
public Builder action(String action) {
this.action = action;
return this;
}
/**
* <p>CreateTime.</p>
*/
public Builder createTime(String createTime) {
this.createTime = createTime;
return this;
}
/**
* <p>EndTime.</p>
*/
public Builder endTime(String endTime) {
this.endTime = endTime;
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>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 StackGroupOperations build() {
return new StackGroupOperations(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/ListStackGroupsRequest.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 ListStackGroupsRequest} extends {@link RequestModel}
*
* <p>ListStackGroupsRequest</p>
*/
public class ListStackGroupsRequest extends Request {
@Query
@NameInMap("PageNumber")
private Long pageNumber;
@Query
@NameInMap("PageSize")
private Long pageSize;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("ResourceGroupId")
private String resourceGroupId;
@Query
@NameInMap("Status")
private String status;
private ListStackGroupsRequest(Builder builder) {
super(builder);
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.regionId = builder.regionId;
this.resourceGroupId = builder.resourceGroupId;
this.status = builder.status;
}
public static Builder builder() {
return new Builder();
}
public static ListStackGroupsRequest create() {
return builder().build();
}
/**
* @return pageNumber
*/
public Long getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return resourceGroupId
*/
public String getResourceGroupId() {
return this.resourceGroupId;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
public static final class Builder extends Request.Builder<Builder> {
private Long pageNumber;
private Long pageSize;
private String regionId;
private String resourceGroupId;
private String status;
/**
* <p>PageNumber.</p>
*/
public Builder pageNumber(Long pageNumber) {
this.putQueryParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* <p>PageSize.</p>
*/
public Builder pageSize(Long pageSize) {
this.putQueryParameter("PageSize", pageSize);
this.pageSize = pageSize;
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>Status.</p>
*/
public Builder status(String status) {
this.putQueryParameter("Status", status);
this.status = status;
return this;
}
public ListStackGroupsRequest build() {
return new ListStackGroupsRequest(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/ListStackGroupsResponse.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 ListStackGroupsResponse} extends {@link TeaModel}
*
* <p>ListStackGroupsResponse</p>
*/
public class ListStackGroupsResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListStackGroupsResponseBody body;
private ListStackGroupsResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static ListStackGroupsResponse 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 ListStackGroupsResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private ListStackGroupsResponseBody body;
private Builder() {
super();
}
private Builder(ListStackGroupsResponse 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(ListStackGroupsResponseBody body) {
this.body = body;
return this;
}
public ListStackGroupsResponse build() {
return new ListStackGroupsResponse(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/ListStackGroupsResponseBody.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 ListStackGroupsResponseBody} extends {@link TeaModel}
*
* <p>ListStackGroupsResponseBody</p>
*/
public class ListStackGroupsResponseBody extends TeaModel {
@NameInMap("PageNumber")
private Integer pageNumber;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("RequestId")
private String requestId;
@NameInMap("StackGroups")
private java.util.List < StackGroups> stackGroups;
@NameInMap("TotalCount")
private Integer totalCount;
private ListStackGroupsResponseBody(Builder builder) {
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.requestId = builder.requestId;
this.stackGroups = builder.stackGroups;
this.totalCount = builder.totalCount;
}
public static Builder builder() {
return new Builder();
}
public static ListStackGroupsResponseBody create() {
return builder().build();
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return stackGroups
*/
public java.util.List < StackGroups> getStackGroups() {
return this.stackGroups;
}
/**
* @return totalCount
*/
public Integer getTotalCount() {
return this.totalCount;
}
public static final class Builder {
private Integer pageNumber;
private Integer pageSize;
private String requestId;
private java.util.List < StackGroups> stackGroups;
private Integer totalCount;
/**
* <p>PageNumber.</p>
*/
public Builder pageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* <p>PageSize.</p>
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>StackGroups.</p>
*/
public Builder stackGroups(java.util.List < StackGroups> stackGroups) {
this.stackGroups = stackGroups;
return this;
}
/**
* <p>TotalCount.</p>
*/
public Builder totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public ListStackGroupsResponseBody build() {
return new ListStackGroupsResponseBody(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 StackGroups extends TeaModel {
@NameInMap("AutoDeployment")
private AutoDeployment autoDeployment;
@NameInMap("Description")
private String description;
@NameInMap("DriftDetectionTime")
private String driftDetectionTime;
@NameInMap("PermissionModel")
private String permissionModel;
@NameInMap("ResourceGroupId")
private String resourceGroupId;
@NameInMap("StackGroupDriftStatus")
private String stackGroupDriftStatus;
@NameInMap("StackGroupId")
private String stackGroupId;
@NameInMap("StackGroupName")
private String stackGroupName;
@NameInMap("Status")
private String status;
private StackGroups(Builder builder) {
this.autoDeployment = builder.autoDeployment;
this.description = builder.description;
this.driftDetectionTime = builder.driftDetectionTime;
this.permissionModel = builder.permissionModel;
this.resourceGroupId = builder.resourceGroupId;
this.stackGroupDriftStatus = builder.stackGroupDriftStatus;
this.stackGroupId = builder.stackGroupId;
this.stackGroupName = builder.stackGroupName;
this.status = builder.status;
}
public static Builder builder() {
return new Builder();
}
public static StackGroups create() {
return builder().build();
}
/**
* @return autoDeployment
*/
public AutoDeployment getAutoDeployment() {
return this.autoDeployment;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return driftDetectionTime
*/
public String getDriftDetectionTime() {
return this.driftDetectionTime;
}
/**
* @return permissionModel
*/
public String getPermissionModel() {
return this.permissionModel;
}
/**
* @return resourceGroupId
*/
public String getResourceGroupId() {
return this.resourceGroupId;
}
/**
* @return stackGroupDriftStatus
*/
public String getStackGroupDriftStatus() {
return this.stackGroupDriftStatus;
}
/**
* @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 AutoDeployment autoDeployment;
private String description;
private String driftDetectionTime;
private String permissionModel;
private String resourceGroupId;
private String stackGroupDriftStatus;
private String stackGroupId;
private String stackGroupName;
private String status;
/**
* <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>DriftDetectionTime.</p>
*/
public Builder driftDetectionTime(String driftDetectionTime) {
this.driftDetectionTime = driftDetectionTime;
return this;
}
/**
* <p>PermissionModel.</p>
*/
public Builder permissionModel(String permissionModel) {
this.permissionModel = permissionModel;
return this;
}
/**
* <p>ResourceGroupId.</p>
*/
public Builder resourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
return this;
}
/**
* <p>StackGroupDriftStatus.</p>
*/
public Builder stackGroupDriftStatus(String stackGroupDriftStatus) {
this.stackGroupDriftStatus = stackGroupDriftStatus;
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 StackGroups build() {
return new StackGroups(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/ListStackInstancesRequest.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 ListStackInstancesRequest} extends {@link RequestModel}
*
* <p>ListStackInstancesRequest</p>
*/
public class ListStackInstancesRequest extends Request {
@Query
@NameInMap("PageNumber")
private Long pageNumber;
@Query
@NameInMap("PageSize")
private Long pageSize;
@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 ListStackInstancesRequest(Builder builder) {
super(builder);
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
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 ListStackInstancesRequest create() {
return builder().build();
}
/**
* @return pageNumber
*/
public Long getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @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 Long pageNumber;
private Long pageSize;
private String regionId;
private String stackGroupName;
private String stackInstanceAccountId;
private String stackInstanceRegionId;
/**
* <p>PageNumber.</p>
*/
public Builder pageNumber(Long pageNumber) {
this.putQueryParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* <p>PageSize.</p>
*/
public Builder pageSize(Long pageSize) {
this.putQueryParameter("PageSize", pageSize);
this.pageSize = pageSize;
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;
}
/**
* <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 ListStackInstancesRequest build() {
return new ListStackInstancesRequest(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/ListStackInstancesResponse.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 ListStackInstancesResponse} extends {@link TeaModel}
*
* <p>ListStackInstancesResponse</p>
*/
public class ListStackInstancesResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListStackInstancesResponseBody body;
private ListStackInstancesResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static ListStackInstancesResponse 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 ListStackInstancesResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private ListStackInstancesResponseBody body;
private Builder() {
super();
}
private Builder(ListStackInstancesResponse 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(ListStackInstancesResponseBody body) {
this.body = body;
return this;
}
public ListStackInstancesResponse build() {
return new ListStackInstancesResponse(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/ListStackInstancesResponseBody.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 ListStackInstancesResponseBody} extends {@link TeaModel}
*
* <p>ListStackInstancesResponseBody</p>
*/
public class ListStackInstancesResponseBody extends TeaModel {
@NameInMap("PageNumber")
private Integer pageNumber;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("RequestId")
private String requestId;
@NameInMap("StackInstances")
private java.util.List < StackInstances> stackInstances;
@NameInMap("TotalCount")
private Integer totalCount;
private ListStackInstancesResponseBody(Builder builder) {
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.requestId = builder.requestId;
this.stackInstances = builder.stackInstances;
this.totalCount = builder.totalCount;
}
public static Builder builder() {
return new Builder();
}
public static ListStackInstancesResponseBody create() {
return builder().build();
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return stackInstances
*/
public java.util.List < StackInstances> getStackInstances() {
return this.stackInstances;
}
/**
* @return totalCount
*/
public Integer getTotalCount() {
return this.totalCount;
}
public static final class Builder {
private Integer pageNumber;
private Integer pageSize;
private String requestId;
private java.util.List < StackInstances> stackInstances;
private Integer totalCount;
/**
* <p>PageNumber.</p>
*/
public Builder pageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* <p>PageSize.</p>
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>StackInstances.</p>
*/
public Builder stackInstances(java.util.List < StackInstances> stackInstances) {
this.stackInstances = stackInstances;
return this;
}
/**
* <p>TotalCount.</p>
*/
public Builder totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public ListStackInstancesResponseBody build() {
return new ListStackInstancesResponseBody(this);
}
}
public static class StackInstances extends TeaModel {
@NameInMap("AccountId")
private String accountId;
@NameInMap("DriftDetectionTime")
private String driftDetectionTime;
@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 StackInstances(Builder builder) {
this.accountId = builder.accountId;
this.driftDetectionTime = builder.driftDetectionTime;
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 StackInstances create() {
return builder().build();
}
/**
* @return accountId
*/
public String getAccountId() {
return this.accountId;
}
/**
* @return driftDetectionTime
*/
public String getDriftDetectionTime() {
return this.driftDetectionTime;
}
/**
* @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 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>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 StackInstances build() {
return new StackInstances(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/ListStackOperationRisksRequest.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 ListStackOperationRisksRequest} extends {@link RequestModel}
*
* <p>ListStackOperationRisksRequest</p>
*/
public class ListStackOperationRisksRequest extends Request {
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("OperationType")
private String operationType;
@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 ListStackOperationRisksRequest(Builder builder) {
super(builder);
this.clientToken = builder.clientToken;
this.operationType = builder.operationType;
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 ListStackOperationRisksRequest create() {
return builder().build();
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return operationType
*/
public String getOperationType() {
return this.operationType;
}
/**
* @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 clientToken;
private String operationType;
private String ramRoleName;
private String regionId;
private Boolean retainAllResources;
private java.util.List < String > retainResources;
private String stackId;
/**
* <p>ClientToken.</p>
*/
public Builder clientToken(String clientToken) {
this.putQueryParameter("ClientToken", clientToken);
this.clientToken = clientToken;
return this;
}
/**
* <p>OperationType.</p>
*/
public Builder operationType(String operationType) {
this.putQueryParameter("OperationType", operationType);
this.operationType = operationType;
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>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 ListStackOperationRisksRequest build() {
return new ListStackOperationRisksRequest(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/ListStackOperationRisksResponse.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 ListStackOperationRisksResponse} extends {@link TeaModel}
*
* <p>ListStackOperationRisksResponse</p>
*/
public class ListStackOperationRisksResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListStackOperationRisksResponseBody body;
private ListStackOperationRisksResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static ListStackOperationRisksResponse 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 ListStackOperationRisksResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private ListStackOperationRisksResponseBody body;
private Builder() {
super();
}
private Builder(ListStackOperationRisksResponse 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(ListStackOperationRisksResponseBody body) {
this.body = body;
return this;
}
public ListStackOperationRisksResponse build() {
return new ListStackOperationRisksResponse(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/ListStackOperationRisksResponseBody.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 ListStackOperationRisksResponseBody} extends {@link TeaModel}
*
* <p>ListStackOperationRisksResponseBody</p>
*/
public class ListStackOperationRisksResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("RiskResources")
private java.util.List < RiskResources> riskResources;
private ListStackOperationRisksResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.riskResources = builder.riskResources;
}
public static Builder builder() {
return new Builder();
}
public static ListStackOperationRisksResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return riskResources
*/
public java.util.List < RiskResources> getRiskResources() {
return this.riskResources;
}
public static final class Builder {
private String requestId;
private java.util.List < RiskResources> riskResources;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>RiskResources.</p>
*/
public Builder riskResources(java.util.List < RiskResources> riskResources) {
this.riskResources = riskResources;
return this;
}
public ListStackOperationRisksResponseBody build() {
return new ListStackOperationRisksResponseBody(this);
}
}
public static class RiskResources extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("LogicalResourceId")
private String logicalResourceId;
@NameInMap("Message")
private String message;
@NameInMap("PhysicalResourceId")
private String physicalResourceId;
@NameInMap("Reason")
private String reason;
@NameInMap("RequestId")
private String requestId;
@NameInMap("ResourceType")
private String resourceType;
@NameInMap("RiskType")
private String riskType;
private RiskResources(Builder builder) {
this.code = builder.code;
this.logicalResourceId = builder.logicalResourceId;
this.message = builder.message;
this.physicalResourceId = builder.physicalResourceId;
this.reason = builder.reason;
this.requestId = builder.requestId;
this.resourceType = builder.resourceType;
this.riskType = builder.riskType;
}
public static Builder builder() {
return new Builder();
}
public static RiskResources create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return logicalResourceId
*/
public String getLogicalResourceId() {
return this.logicalResourceId;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return physicalResourceId
*/
public String getPhysicalResourceId() {
return this.physicalResourceId;
}
/**
* @return reason
*/
public String getReason() {
return this.reason;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
/**
* @return riskType
*/
public String getRiskType() {
return this.riskType;
}
public static final class Builder {
private String code;
private String logicalResourceId;
private String message;
private String physicalResourceId;
private String reason;
private String requestId;
private String resourceType;
private String riskType;
/**
* <p>Code.</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>LogicalResourceId.</p>
*/
public Builder logicalResourceId(String logicalResourceId) {
this.logicalResourceId = logicalResourceId;
return this;
}
/**
* <p>Message.</p>
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* <p>PhysicalResourceId.</p>
*/
public Builder physicalResourceId(String physicalResourceId) {
this.physicalResourceId = physicalResourceId;
return this;
}
/**
* <p>Reason.</p>
*/
public Builder reason(String reason) {
this.reason = reason;
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>RiskType.</p>
*/
public Builder riskType(String riskType) {
this.riskType = riskType;
return this;
}
public RiskResources build() {
return new RiskResources(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/ListStackResourceDriftsRequest.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 ListStackResourceDriftsRequest} extends {@link RequestModel}
*
* <p>ListStackResourceDriftsRequest</p>
*/
public class ListStackResourceDriftsRequest extends Request {
@Query
@NameInMap("MaxResults")
private Long maxResults;
@Query
@NameInMap("NextToken")
private String nextToken;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("ResourceDriftStatus")
private java.util.List < String > resourceDriftStatus;
@Query
@NameInMap("StackId")
private String stackId;
private ListStackResourceDriftsRequest(Builder builder) {
super(builder);
this.maxResults = builder.maxResults;
this.nextToken = builder.nextToken;
this.regionId = builder.regionId;
this.resourceDriftStatus = builder.resourceDriftStatus;
this.stackId = builder.stackId;
}
public static Builder builder() {
return new Builder();
}
public static ListStackResourceDriftsRequest create() {
return builder().build();
}
/**
* @return maxResults
*/
public Long getMaxResults() {
return this.maxResults;
}
/**
* @return nextToken
*/
public String getNextToken() {
return this.nextToken;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return resourceDriftStatus
*/
public java.util.List < String > getResourceDriftStatus() {
return this.resourceDriftStatus;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
public static final class Builder extends Request.Builder<Builder> {
private Long maxResults;
private String nextToken;
private String regionId;
private java.util.List < String > resourceDriftStatus;
private String stackId;
/**
* <p>MaxResults.</p>
*/
public Builder maxResults(Long maxResults) {
this.putQueryParameter("MaxResults", maxResults);
this.maxResults = maxResults;
return this;
}
/**
* <p>NextToken.</p>
*/
public Builder nextToken(String nextToken) {
this.putQueryParameter("NextToken", nextToken);
this.nextToken = nextToken;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>ResourceDriftStatus.</p>
*/
public Builder resourceDriftStatus(java.util.List < String > resourceDriftStatus) {
this.putQueryParameter("ResourceDriftStatus", resourceDriftStatus);
this.resourceDriftStatus = resourceDriftStatus;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.putQueryParameter("StackId", stackId);
this.stackId = stackId;
return this;
}
public ListStackResourceDriftsRequest build() {
return new ListStackResourceDriftsRequest(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/ListStackResourceDriftsResponse.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 ListStackResourceDriftsResponse} extends {@link TeaModel}
*
* <p>ListStackResourceDriftsResponse</p>
*/
public class ListStackResourceDriftsResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListStackResourceDriftsResponseBody body;
private ListStackResourceDriftsResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static ListStackResourceDriftsResponse 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 ListStackResourceDriftsResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private ListStackResourceDriftsResponseBody body;
private Builder() {
super();
}
private Builder(ListStackResourceDriftsResponse 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(ListStackResourceDriftsResponseBody body) {
this.body = body;
return this;
}
public ListStackResourceDriftsResponse build() {
return new ListStackResourceDriftsResponse(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/ListStackResourceDriftsResponseBody.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 ListStackResourceDriftsResponseBody} extends {@link TeaModel}
*
* <p>ListStackResourceDriftsResponseBody</p>
*/
public class ListStackResourceDriftsResponseBody extends TeaModel {
@NameInMap("NextToken")
private String nextToken;
@NameInMap("RequestId")
private String requestId;
@NameInMap("ResourceDrifts")
private java.util.List < ResourceDrifts> resourceDrifts;
private ListStackResourceDriftsResponseBody(Builder builder) {
this.nextToken = builder.nextToken;
this.requestId = builder.requestId;
this.resourceDrifts = builder.resourceDrifts;
}
public static Builder builder() {
return new Builder();
}
public static ListStackResourceDriftsResponseBody create() {
return builder().build();
}
/**
* @return nextToken
*/
public String getNextToken() {
return this.nextToken;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resourceDrifts
*/
public java.util.List < ResourceDrifts> getResourceDrifts() {
return this.resourceDrifts;
}
public static final class Builder {
private String nextToken;
private String requestId;
private java.util.List < ResourceDrifts> resourceDrifts;
/**
* <p>NextToken.</p>
*/
public Builder nextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>ResourceDrifts.</p>
*/
public Builder resourceDrifts(java.util.List < ResourceDrifts> resourceDrifts) {
this.resourceDrifts = resourceDrifts;
return this;
}
public ListStackResourceDriftsResponseBody build() {
return new ListStackResourceDriftsResponseBody(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);
}
}
}
public static class ResourceDrifts 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("ResourceDriftStatus")
private String resourceDriftStatus;
@NameInMap("ResourceType")
private String resourceType;
@NameInMap("StackId")
private String stackId;
private ResourceDrifts(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.resourceDriftStatus = builder.resourceDriftStatus;
this.resourceType = builder.resourceType;
this.stackId = builder.stackId;
}
public static Builder builder() {
return new Builder();
}
public static ResourceDrifts 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 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 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>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 ResourceDrifts build() {
return new ResourceDrifts(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/ListStackResourcesRequest.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 ListStackResourcesRequest} extends {@link RequestModel}
*
* <p>ListStackResourcesRequest</p>
*/
public class ListStackResourcesRequest extends Request {
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("StackId")
private String stackId;
private ListStackResourcesRequest(Builder builder) {
super(builder);
this.regionId = builder.regionId;
this.stackId = builder.stackId;
}
public static Builder builder() {
return new Builder();
}
public static ListStackResourcesRequest 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 ListStackResourcesRequest build() {
return new ListStackResourcesRequest(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/ListStackResourcesResponse.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 ListStackResourcesResponse} extends {@link TeaModel}
*
* <p>ListStackResourcesResponse</p>
*/
public class ListStackResourcesResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListStackResourcesResponseBody body;
private ListStackResourcesResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static ListStackResourcesResponse 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 ListStackResourcesResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private ListStackResourcesResponseBody body;
private Builder() {
super();
}
private Builder(ListStackResourcesResponse 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(ListStackResourcesResponseBody body) {
this.body = body;
return this;
}
public ListStackResourcesResponse build() {
return new ListStackResourcesResponse(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/ListStackResourcesResponseBody.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 ListStackResourcesResponseBody} extends {@link TeaModel}
*
* <p>ListStackResourcesResponseBody</p>
*/
public class ListStackResourcesResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("Resources")
private java.util.List < Resources> resources;
private ListStackResourcesResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resources = builder.resources;
}
public static Builder builder() {
return new Builder();
}
public static ListStackResourcesResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resources
*/
public java.util.List < Resources> getResources() {
return this.resources;
}
public static final class Builder {
private String requestId;
private java.util.List < Resources> resources;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Resources.</p>
*/
public Builder resources(java.util.List < Resources> resources) {
this.resources = resources;
return this;
}
public ListStackResourcesResponseBody build() {
return new ListStackResourcesResponseBody(this);
}
}
public static class Resources extends TeaModel {
@NameInMap("CreateTime")
private String createTime;
@NameInMap("DriftDetectionTime")
private String driftDetectionTime;
@NameInMap("LogicalResourceId")
private String logicalResourceId;
@NameInMap("PhysicalResourceId")
private String physicalResourceId;
@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 Resources(Builder builder) {
this.createTime = builder.createTime;
this.driftDetectionTime = builder.driftDetectionTime;
this.logicalResourceId = builder.logicalResourceId;
this.physicalResourceId = builder.physicalResourceId;
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 Resources create() {
return builder().build();
}
/**
* @return createTime
*/
public String getCreateTime() {
return this.createTime;
}
/**
* @return driftDetectionTime
*/
public String getDriftDetectionTime() {
return this.driftDetectionTime;
}
/**
* @return logicalResourceId
*/
public String getLogicalResourceId() {
return this.logicalResourceId;
}
/**
* @return physicalResourceId
*/
public String getPhysicalResourceId() {
return this.physicalResourceId;
}
/**
* @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 driftDetectionTime;
private String logicalResourceId;
private String physicalResourceId;
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>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>PhysicalResourceId.</p>
*/
public Builder physicalResourceId(String physicalResourceId) {
this.physicalResourceId = physicalResourceId;
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 Resources build() {
return new Resources(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/ListStacksRequest.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 ListStacksRequest} extends {@link RequestModel}
*
* <p>ListStacksRequest</p>
*/
public class ListStacksRequest extends Request {
@Query
@NameInMap("PageNumber")
private Long pageNumber;
@Query
@NameInMap("PageSize")
private Long pageSize;
@Query
@NameInMap("ParentStackId")
private String parentStackId;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("ResourceGroupId")
private String resourceGroupId;
@Query
@NameInMap("ShowNestedStack")
private Boolean showNestedStack;
@Query
@NameInMap("StackId")
private String stackId;
@Query
@NameInMap("StackIds")
private java.util.List < String > stackIds;
@Query
@NameInMap("StackName")
private java.util.List < String > stackName;
@Query
@NameInMap("Status")
private java.util.List < String > status;
@Query
@NameInMap("Tag")
private java.util.List < Tag> tag;
private ListStacksRequest(Builder builder) {
super(builder);
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.parentStackId = builder.parentStackId;
this.regionId = builder.regionId;
this.resourceGroupId = builder.resourceGroupId;
this.showNestedStack = builder.showNestedStack;
this.stackId = builder.stackId;
this.stackIds = builder.stackIds;
this.stackName = builder.stackName;
this.status = builder.status;
this.tag = builder.tag;
}
public static Builder builder() {
return new Builder();
}
public static ListStacksRequest create() {
return builder().build();
}
/**
* @return pageNumber
*/
public Long getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return parentStackId
*/
public String getParentStackId() {
return this.parentStackId;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return resourceGroupId
*/
public String getResourceGroupId() {
return this.resourceGroupId;
}
/**
* @return showNestedStack
*/
public Boolean getShowNestedStack() {
return this.showNestedStack;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
/**
* @return stackIds
*/
public java.util.List < String > getStackIds() {
return this.stackIds;
}
/**
* @return stackName
*/
public java.util.List < String > getStackName() {
return this.stackName;
}
/**
* @return status
*/
public java.util.List < String > getStatus() {
return this.status;
}
/**
* @return tag
*/
public java.util.List < Tag> getTag() {
return this.tag;
}
public static final class Builder extends Request.Builder<Builder> {
private Long pageNumber;
private Long pageSize;
private String parentStackId;
private String regionId;
private String resourceGroupId;
private Boolean showNestedStack;
private String stackId;
private java.util.List < String > stackIds;
private java.util.List < String > stackName;
private java.util.List < String > status;
private java.util.List < Tag> tag;
/**
* <p>PageNumber.</p>
*/
public Builder pageNumber(Long pageNumber) {
this.putQueryParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* <p>PageSize.</p>
*/
public Builder pageSize(Long pageSize) {
this.putQueryParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* <p>ParentStackId.</p>
*/
public Builder parentStackId(String parentStackId) {
this.putQueryParameter("ParentStackId", parentStackId);
this.parentStackId = parentStackId;
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>ShowNestedStack.</p>
*/
public Builder showNestedStack(Boolean showNestedStack) {
this.putQueryParameter("ShowNestedStack", showNestedStack);
this.showNestedStack = showNestedStack;
return this;
}
/**
* <p>StackId.</p>
*/
public Builder stackId(String stackId) {
this.putQueryParameter("StackId", stackId);
this.stackId = stackId;
return this;
}
/**
* <p>StackIds.</p>
*/
public Builder stackIds(java.util.List < String > stackIds) {
this.putQueryParameter("StackIds", stackIds);
this.stackIds = stackIds;
return this;
}
/**
* <p>StackName.</p>
*/
public Builder stackName(java.util.List < String > stackName) {
this.putQueryParameter("StackName", stackName);
this.stackName = stackName;
return this;
}
/**
* <p>Status.</p>
*/
public Builder status(java.util.List < String > status) {
this.putQueryParameter("Status", status);
this.status = status;
return this;
}
/**
* <p>Tag.</p>
*/
public Builder tag(java.util.List < Tag> tag) {
this.putQueryParameter("Tag", tag);
this.tag = tag;
return this;
}
public ListStacksRequest build() {
return new ListStacksRequest(this);
}
}
public static class Tag extends TeaModel {
@NameInMap("Key")
private String key;
@NameInMap("Value")
private String value;
private Tag(Builder builder) {
this.key = builder.key;
this.value = builder.value;
}
public static Builder builder() {
return new Builder();
}
public static Tag 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 Tag build() {
return new Tag(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/ListStacksResponse.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 ListStacksResponse} extends {@link TeaModel}
*
* <p>ListStacksResponse</p>
*/
public class ListStacksResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListStacksResponseBody body;
private ListStacksResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static ListStacksResponse 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 ListStacksResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private ListStacksResponseBody body;
private Builder() {
super();
}
private Builder(ListStacksResponse 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(ListStacksResponseBody body) {
this.body = body;
return this;
}
public ListStacksResponse build() {
return new ListStacksResponse(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/ListStacksResponseBody.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 ListStacksResponseBody} extends {@link TeaModel}
*
* <p>ListStacksResponseBody</p>
*/
public class ListStacksResponseBody extends TeaModel {
@NameInMap("PageNumber")
private Integer pageNumber;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Stacks")
private java.util.List < Stacks> stacks;
@NameInMap("TotalCount")
private Integer totalCount;
private ListStacksResponseBody(Builder builder) {
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.requestId = builder.requestId;
this.stacks = builder.stacks;
this.totalCount = builder.totalCount;
}
public static Builder builder() {
return new Builder();
}
public static ListStacksResponseBody create() {
return builder().build();
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return stacks
*/
public java.util.List < Stacks> getStacks() {
return this.stacks;
}
/**
* @return totalCount
*/
public Integer getTotalCount() {
return this.totalCount;
}
public static final class Builder {
private Integer pageNumber;
private Integer pageSize;
private String requestId;
private java.util.List < Stacks> stacks;
private Integer totalCount;
/**
* <p>PageNumber.</p>
*/
public Builder pageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* <p>PageSize.</p>
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Stacks.</p>
*/
public Builder stacks(java.util.List < Stacks> stacks) {
this.stacks = stacks;
return this;
}
/**
* <p>TotalCount.</p>
*/
public Builder totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public ListStacksResponseBody build() {
return new ListStacksResponseBody(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);
}
}
}
public static class Stacks extends TeaModel {
@NameInMap("CreateTime")
private String createTime;
@NameInMap("DisableRollback")
private Boolean disableRollback;
@NameInMap("DriftDetectionTime")
private String driftDetectionTime;
@NameInMap("ParentStackId")
private String parentStackId;
@NameInMap("RegionId")
private String regionId;
@NameInMap("ResourceGroupId")
private String resourceGroupId;
@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("TimeoutInMinutes")
private Integer timeoutInMinutes;
@NameInMap("UpdateTime")
private String updateTime;
private Stacks(Builder builder) {
this.createTime = builder.createTime;
this.disableRollback = builder.disableRollback;
this.driftDetectionTime = builder.driftDetectionTime;
this.parentStackId = builder.parentStackId;
this.regionId = builder.regionId;
this.resourceGroupId = builder.resourceGroupId;
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.timeoutInMinutes = builder.timeoutInMinutes;
this.updateTime = builder.updateTime;
}
public static Builder builder() {
return new Builder();
}
public static Stacks create() {
return builder().build();
}
/**
* @return createTime
*/
public String getCreateTime() {
return this.createTime;
}
/**
* @return disableRollback
*/
public Boolean getDisableRollback() {
return this.disableRollback;
}
/**
* @return driftDetectionTime
*/
public String getDriftDetectionTime() {
return this.driftDetectionTime;
}
/**
* @return parentStackId
*/
public String getParentStackId() {
return this.parentStackId;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return resourceGroupId
*/
public String getResourceGroupId() {
return this.resourceGroupId;
}
/**
* @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 timeoutInMinutes
*/
public Integer getTimeoutInMinutes() {
return this.timeoutInMinutes;
}
/**
* @return updateTime
*/
public String getUpdateTime() {
return this.updateTime;
}
public static final class Builder {
private String createTime;
private Boolean disableRollback;
private String driftDetectionTime;
private String parentStackId;
private String regionId;
private String resourceGroupId;
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 Integer timeoutInMinutes;
private String updateTime;
/**
* <p>CreateTime.</p>
*/
public Builder createTime(String createTime) {
this.createTime = createTime;
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>ParentStackId.</p>
*/
public Builder parentStackId(String parentStackId) {
this.parentStackId = parentStackId;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.regionId = regionId;
return this;
}
/**
* <p>ResourceGroupId.</p>
*/
public Builder resourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
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>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 Stacks build() {
return new Stacks(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/ListTagKeysRequest.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 ListTagKeysRequest} extends {@link RequestModel}
*
* <p>ListTagKeysRequest</p>
*/
public class ListTagKeysRequest extends Request {
@Query
@NameInMap("NextToken")
private String nextToken;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("ResourceType")
private String resourceType;
private ListTagKeysRequest(Builder builder) {
super(builder);
this.nextToken = builder.nextToken;
this.regionId = builder.regionId;
this.resourceType = builder.resourceType;
}
public static Builder builder() {
return new Builder();
}
public static ListTagKeysRequest create() {
return builder().build();
}
/**
* @return nextToken
*/
public String getNextToken() {
return this.nextToken;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
public static final class Builder extends Request.Builder<Builder> {
private String nextToken;
private String regionId;
private String resourceType;
/**
* <p>NextToken.</p>
*/
public Builder nextToken(String nextToken) {
this.putQueryParameter("NextToken", nextToken);
this.nextToken = nextToken;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>ResourceType.</p>
*/
public Builder resourceType(String resourceType) {
this.putQueryParameter("ResourceType", resourceType);
this.resourceType = resourceType;
return this;
}
public ListTagKeysRequest build() {
return new ListTagKeysRequest(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/ListTagKeysResponse.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 ListTagKeysResponse} extends {@link TeaModel}
*
* <p>ListTagKeysResponse</p>
*/
public class ListTagKeysResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListTagKeysResponseBody body;
private ListTagKeysResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static ListTagKeysResponse 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 ListTagKeysResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private ListTagKeysResponseBody body;
private Builder() {
super();
}
private Builder(ListTagKeysResponse 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(ListTagKeysResponseBody body) {
this.body = body;
return this;
}
public ListTagKeysResponse build() {
return new ListTagKeysResponse(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/ListTagKeysResponseBody.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 ListTagKeysResponseBody} extends {@link TeaModel}
*
* <p>ListTagKeysResponseBody</p>
*/
public class ListTagKeysResponseBody extends TeaModel {
@NameInMap("Keys")
private java.util.List < String > keys;
@NameInMap("NextToken")
private String nextToken;
@NameInMap("RequestId")
private String requestId;
private ListTagKeysResponseBody(Builder builder) {
this.keys = builder.keys;
this.nextToken = builder.nextToken;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ListTagKeysResponseBody create() {
return builder().build();
}
/**
* @return keys
*/
public java.util.List < String > getKeys() {
return this.keys;
}
/**
* @return nextToken
*/
public String getNextToken() {
return this.nextToken;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private java.util.List < String > keys;
private String nextToken;
private String requestId;
/**
* <p>Keys.</p>
*/
public Builder keys(java.util.List < String > keys) {
this.keys = keys;
return this;
}
/**
* <p>NextToken.</p>
*/
public Builder nextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ListTagKeysResponseBody build() {
return new ListTagKeysResponseBody(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/ListTagResourcesRequest.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 ListTagResourcesRequest} extends {@link RequestModel}
*
* <p>ListTagResourcesRequest</p>
*/
public class ListTagResourcesRequest extends Request {
@Query
@NameInMap("NextToken")
private String nextToken;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("ResourceId")
private java.util.List < String > resourceId;
@Query
@NameInMap("ResourceType")
private String resourceType;
@Query
@NameInMap("Tag")
private java.util.List < Tag> tag;
private ListTagResourcesRequest(Builder builder) {
super(builder);
this.nextToken = builder.nextToken;
this.regionId = builder.regionId;
this.resourceId = builder.resourceId;
this.resourceType = builder.resourceType;
this.tag = builder.tag;
}
public static Builder builder() {
return new Builder();
}
public static ListTagResourcesRequest create() {
return builder().build();
}
/**
* @return nextToken
*/
public String getNextToken() {
return this.nextToken;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return resourceId
*/
public java.util.List < String > getResourceId() {
return this.resourceId;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
/**
* @return tag
*/
public java.util.List < Tag> getTag() {
return this.tag;
}
public static final class Builder extends Request.Builder<Builder> {
private String nextToken;
private String regionId;
private java.util.List < String > resourceId;
private String resourceType;
private java.util.List < Tag> tag;
/**
* <p>NextToken.</p>
*/
public Builder nextToken(String nextToken) {
this.putQueryParameter("NextToken", nextToken);
this.nextToken = nextToken;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>ResourceId.</p>
*/
public Builder resourceId(java.util.List < String > resourceId) {
this.putQueryParameter("ResourceId", resourceId);
this.resourceId = resourceId;
return this;
}
/**
* <p>ResourceType.</p>
*/
public Builder resourceType(String resourceType) {
this.putQueryParameter("ResourceType", resourceType);
this.resourceType = resourceType;
return this;
}
/**
* <p>Tag.</p>
*/
public Builder tag(java.util.List < Tag> tag) {
this.putQueryParameter("Tag", tag);
this.tag = tag;
return this;
}
public ListTagResourcesRequest build() {
return new ListTagResourcesRequest(this);
}
}
public static class Tag extends TeaModel {
@NameInMap("Key")
private String key;
@NameInMap("Value")
private String value;
private Tag(Builder builder) {
this.key = builder.key;
this.value = builder.value;
}
public static Builder builder() {
return new Builder();
}
public static Tag 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 Tag build() {
return new Tag(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/ListTagResourcesResponse.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 ListTagResourcesResponse} extends {@link TeaModel}
*
* <p>ListTagResourcesResponse</p>
*/
public class ListTagResourcesResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListTagResourcesResponseBody body;
private ListTagResourcesResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static ListTagResourcesResponse 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 ListTagResourcesResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private ListTagResourcesResponseBody body;
private Builder() {
super();
}
private Builder(ListTagResourcesResponse 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(ListTagResourcesResponseBody body) {
this.body = body;
return this;
}
public ListTagResourcesResponse build() {
return new ListTagResourcesResponse(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/ListTagResourcesResponseBody.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 ListTagResourcesResponseBody} extends {@link TeaModel}
*
* <p>ListTagResourcesResponseBody</p>
*/
public class ListTagResourcesResponseBody extends TeaModel {
@NameInMap("NextToken")
private String nextToken;
@NameInMap("RequestId")
private String requestId;
@NameInMap("TagResources")
private java.util.List < TagResources> tagResources;
private ListTagResourcesResponseBody(Builder builder) {
this.nextToken = builder.nextToken;
this.requestId = builder.requestId;
this.tagResources = builder.tagResources;
}
public static Builder builder() {
return new Builder();
}
public static ListTagResourcesResponseBody create() {
return builder().build();
}
/**
* @return nextToken
*/
public String getNextToken() {
return this.nextToken;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return tagResources
*/
public java.util.List < TagResources> getTagResources() {
return this.tagResources;
}
public static final class Builder {
private String nextToken;
private String requestId;
private java.util.List < TagResources> tagResources;
/**
* <p>NextToken.</p>
*/
public Builder nextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>TagResources.</p>
*/
public Builder tagResources(java.util.List < TagResources> tagResources) {
this.tagResources = tagResources;
return this;
}
public ListTagResourcesResponseBody build() {
return new ListTagResourcesResponseBody(this);
}
}
public static class TagResources extends TeaModel {
@NameInMap("ResourceId")
private String resourceId;
@NameInMap("ResourceType")
private String resourceType;
@NameInMap("TagKey")
private String tagKey;
@NameInMap("TagValue")
private String tagValue;
private TagResources(Builder builder) {
this.resourceId = builder.resourceId;
this.resourceType = builder.resourceType;
this.tagKey = builder.tagKey;
this.tagValue = builder.tagValue;
}
public static Builder builder() {
return new Builder();
}
public static TagResources create() {
return builder().build();
}
/**
* @return resourceId
*/
public String getResourceId() {
return this.resourceId;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
/**
* @return tagKey
*/
public String getTagKey() {
return this.tagKey;
}
/**
* @return tagValue
*/
public String getTagValue() {
return this.tagValue;
}
public static final class Builder {
private String resourceId;
private String resourceType;
private String tagKey;
private String tagValue;
/**
* <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;
}
/**
* <p>TagKey.</p>
*/
public Builder tagKey(String tagKey) {
this.tagKey = tagKey;
return this;
}
/**
* <p>TagValue.</p>
*/
public Builder tagValue(String tagValue) {
this.tagValue = tagValue;
return this;
}
public TagResources build() {
return new TagResources(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/ListTagValuesRequest.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 ListTagValuesRequest} extends {@link RequestModel}
*
* <p>ListTagValuesRequest</p>
*/
public class ListTagValuesRequest extends Request {
@Query
@NameInMap("Key")
private String key;
@Query
@NameInMap("NextToken")
private String nextToken;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("ResourceType")
private String resourceType;
private ListTagValuesRequest(Builder builder) {
super(builder);
this.key = builder.key;
this.nextToken = builder.nextToken;
this.regionId = builder.regionId;
this.resourceType = builder.resourceType;
}
public static Builder builder() {
return new Builder();
}
public static ListTagValuesRequest create() {
return builder().build();
}
/**
* @return key
*/
public String getKey() {
return this.key;
}
/**
* @return nextToken
*/
public String getNextToken() {
return this.nextToken;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
public static final class Builder extends Request.Builder<Builder> {
private String key;
private String nextToken;
private String regionId;
private String resourceType;
/**
* <p>Key.</p>
*/
public Builder key(String key) {
this.putQueryParameter("Key", key);
this.key = key;
return this;
}
/**
* <p>NextToken.</p>
*/
public Builder nextToken(String nextToken) {
this.putQueryParameter("NextToken", nextToken);
this.nextToken = nextToken;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>ResourceType.</p>
*/
public Builder resourceType(String resourceType) {
this.putQueryParameter("ResourceType", resourceType);
this.resourceType = resourceType;
return this;
}
public ListTagValuesRequest build() {
return new ListTagValuesRequest(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/ListTagValuesResponse.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 ListTagValuesResponse} extends {@link TeaModel}
*
* <p>ListTagValuesResponse</p>
*/
public class ListTagValuesResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListTagValuesResponseBody body;
private ListTagValuesResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static ListTagValuesResponse 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 ListTagValuesResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private ListTagValuesResponseBody body;
private Builder() {
super();
}
private Builder(ListTagValuesResponse 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(ListTagValuesResponseBody body) {
this.body = body;
return this;
}
public ListTagValuesResponse build() {
return new ListTagValuesResponse(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/ListTagValuesResponseBody.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 ListTagValuesResponseBody} extends {@link TeaModel}
*
* <p>ListTagValuesResponseBody</p>
*/
public class ListTagValuesResponseBody extends TeaModel {
@NameInMap("NextToken")
private String nextToken;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Values")
private java.util.List < String > values;
private ListTagValuesResponseBody(Builder builder) {
this.nextToken = builder.nextToken;
this.requestId = builder.requestId;
this.values = builder.values;
}
public static Builder builder() {
return new Builder();
}
public static ListTagValuesResponseBody create() {
return builder().build();
}
/**
* @return nextToken
*/
public String getNextToken() {
return this.nextToken;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return values
*/
public java.util.List < String > getValues() {
return this.values;
}
public static final class Builder {
private String nextToken;
private String requestId;
private java.util.List < String > values;
/**
* <p>NextToken.</p>
*/
public Builder nextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Values.</p>
*/
public Builder values(java.util.List < String > values) {
this.values = values;
return this;
}
public ListTagValuesResponseBody build() {
return new ListTagValuesResponseBody(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/ListTemplateScratchesRequest.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 ListTemplateScratchesRequest} extends {@link RequestModel}
*
* <p>ListTemplateScratchesRequest</p>
*/
public class ListTemplateScratchesRequest extends Request {
@Query
@NameInMap("PageNumber")
private Integer pageNumber;
@Query
@NameInMap("PageSize")
private Integer pageSize;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("Status")
private String status;
@Query
@NameInMap("TemplateScratchId")
private String templateScratchId;
@Query
@NameInMap("TemplateScratchType")
private String templateScratchType;
private ListTemplateScratchesRequest(Builder builder) {
super(builder);
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.regionId = builder.regionId;
this.status = builder.status;
this.templateScratchId = builder.templateScratchId;
this.templateScratchType = builder.templateScratchType;
}
public static Builder builder() {
return new Builder();
}
public static ListTemplateScratchesRequest create() {
return builder().build();
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return templateScratchId
*/
public String getTemplateScratchId() {
return this.templateScratchId;
}
/**
* @return templateScratchType
*/
public String getTemplateScratchType() {
return this.templateScratchType;
}
public static final class Builder extends Request.Builder<Builder> {
private Integer pageNumber;
private Integer pageSize;
private String regionId;
private String status;
private String templateScratchId;
private String templateScratchType;
/**
* <p>PageNumber.</p>
*/
public Builder pageNumber(Integer pageNumber) {
this.putQueryParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* <p>PageSize.</p>
*/
public Builder pageSize(Integer pageSize) {
this.putQueryParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>Status.</p>
*/
public Builder status(String status) {
this.putQueryParameter("Status", status);
this.status = status;
return this;
}
/**
* <p>TemplateScratchId.</p>
*/
public Builder templateScratchId(String templateScratchId) {
this.putQueryParameter("TemplateScratchId", templateScratchId);
this.templateScratchId = templateScratchId;
return this;
}
/**
* <p>TemplateScratchType.</p>
*/
public Builder templateScratchType(String templateScratchType) {
this.putQueryParameter("TemplateScratchType", templateScratchType);
this.templateScratchType = templateScratchType;
return this;
}
public ListTemplateScratchesRequest build() {
return new ListTemplateScratchesRequest(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/ListTemplateScratchesResponse.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 ListTemplateScratchesResponse} extends {@link TeaModel}
*
* <p>ListTemplateScratchesResponse</p>
*/
public class ListTemplateScratchesResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListTemplateScratchesResponseBody body;
private ListTemplateScratchesResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static ListTemplateScratchesResponse 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 ListTemplateScratchesResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private ListTemplateScratchesResponseBody body;
private Builder() {
super();
}
private Builder(ListTemplateScratchesResponse 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(ListTemplateScratchesResponseBody body) {
this.body = body;
return this;
}
public ListTemplateScratchesResponse build() {
return new ListTemplateScratchesResponse(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/ListTemplateScratchesResponseBody.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 ListTemplateScratchesResponseBody} extends {@link TeaModel}
*
* <p>ListTemplateScratchesResponseBody</p>
*/
public class ListTemplateScratchesResponseBody extends TeaModel {
@NameInMap("PageNumber")
private Integer pageNumber;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("RequestId")
private String requestId;
@NameInMap("TemplateScratches")
private java.util.List < TemplateScratches> templateScratches;
@NameInMap("TotalCount")
private Integer totalCount;
private ListTemplateScratchesResponseBody(Builder builder) {
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.requestId = builder.requestId;
this.templateScratches = builder.templateScratches;
this.totalCount = builder.totalCount;
}
public static Builder builder() {
return new Builder();
}
public static ListTemplateScratchesResponseBody create() {
return builder().build();
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return templateScratches
*/
public java.util.List < TemplateScratches> getTemplateScratches() {
return this.templateScratches;
}
/**
* @return totalCount
*/
public Integer getTotalCount() {
return this.totalCount;
}
public static final class Builder {
private Integer pageNumber;
private Integer pageSize;
private String requestId;
private java.util.List < TemplateScratches> templateScratches;
private Integer totalCount;
/**
* <p>PageNumber.</p>
*/
public Builder pageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* <p>PageSize.</p>
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>TemplateScratches.</p>
*/
public Builder templateScratches(java.util.List < TemplateScratches> templateScratches) {
this.templateScratches = templateScratches;
return this;
}
/**
* <p>TotalCount.</p>
*/
public Builder totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public ListTemplateScratchesResponseBody build() {
return new ListTemplateScratchesResponseBody(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);
}
}
}
public static class TemplateScratches extends TeaModel {
@NameInMap("CreateTime")
private String createTime;
@NameInMap("Description")
private String description;
@NameInMap("FailedCode")
private String failedCode;
@NameInMap("LogicalIdStrategy")
private String logicalIdStrategy;
@NameInMap("PreferenceParameters")
private java.util.List < PreferenceParameters> preferenceParameters;
@NameInMap("SourceResourceGroup")
private SourceResourceGroup sourceResourceGroup;
@NameInMap("SourceResources")
private java.util.List < SourceResources> sourceResources;
@NameInMap("SourceTag")
private SourceTag sourceTag;
@NameInMap("Status")
private String status;
@NameInMap("StatusReason")
private String statusReason;
@NameInMap("TemplateScratchId")
private String templateScratchId;
@NameInMap("TemplateScratchType")
private String templateScratchType;
@NameInMap("UpdateTime")
private String updateTime;
private TemplateScratches(Builder builder) {
this.createTime = builder.createTime;
this.description = builder.description;
this.failedCode = builder.failedCode;
this.logicalIdStrategy = builder.logicalIdStrategy;
this.preferenceParameters = builder.preferenceParameters;
this.sourceResourceGroup = builder.sourceResourceGroup;
this.sourceResources = builder.sourceResources;
this.sourceTag = builder.sourceTag;
this.status = builder.status;
this.statusReason = builder.statusReason;
this.templateScratchId = builder.templateScratchId;
this.templateScratchType = builder.templateScratchType;
this.updateTime = builder.updateTime;
}
public static Builder builder() {
return new Builder();
}
public static TemplateScratches create() {
return builder().build();
}
/**
* @return createTime
*/
public String getCreateTime() {
return this.createTime;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return failedCode
*/
public String getFailedCode() {
return this.failedCode;
}
/**
* @return logicalIdStrategy
*/
public String getLogicalIdStrategy() {
return this.logicalIdStrategy;
}
/**
* @return preferenceParameters
*/
public java.util.List < PreferenceParameters> getPreferenceParameters() {
return this.preferenceParameters;
}
/**
* @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 status
*/
public String getStatus() {
return this.status;
}
/**
* @return statusReason
*/
public String getStatusReason() {
return this.statusReason;
}
/**
* @return templateScratchId
*/
public String getTemplateScratchId() {
return this.templateScratchId;
}
/**
* @return templateScratchType
*/
public String getTemplateScratchType() {
return this.templateScratchType;
}
/**
* @return updateTime
*/
public String getUpdateTime() {
return this.updateTime;
}
public static final class Builder {
private String createTime;
private String description;
private String failedCode;
private String logicalIdStrategy;
private java.util.List < PreferenceParameters> preferenceParameters;
private SourceResourceGroup sourceResourceGroup;
private java.util.List < SourceResources> sourceResources;
private SourceTag sourceTag;
private String status;
private String statusReason;
private String templateScratchId;
private String templateScratchType;
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>FailedCode.</p>
*/
public Builder failedCode(String failedCode) {
this.failedCode = failedCode;
return this;
}
/**
* <p>LogicalIdStrategy.</p>
*/
public Builder logicalIdStrategy(String logicalIdStrategy) {
this.logicalIdStrategy = logicalIdStrategy;
return this;
}
/**
* <p>PreferenceParameters.</p>
*/
public Builder preferenceParameters(java.util.List < PreferenceParameters> preferenceParameters) {
this.preferenceParameters = preferenceParameters;
return this;
}
/**
* <p>SourceResourceGroup.</p>
*/
public Builder sourceResourceGroup(SourceResourceGroup sourceResourceGroup) {
this.sourceResourceGroup = sourceResourceGroup;
return this;
}
/**
* <p>SourceResources.</p>
*/
public Builder sourceResources(java.util.List < SourceResources> sourceResources) {
this.sourceResources = sourceResources;
return this;
}
/**
* <p>SourceTag.</p>
*/
public Builder sourceTag(SourceTag sourceTag) {
this.sourceTag = sourceTag;
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>TemplateScratchId.</p>
*/
public Builder templateScratchId(String templateScratchId) {
this.templateScratchId = templateScratchId;
return this;
}
/**
* <p>TemplateScratchType.</p>
*/
public Builder templateScratchType(String templateScratchType) {
this.templateScratchType = templateScratchType;
return this;
}
/**
* <p>UpdateTime.</p>
*/
public Builder updateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
public TemplateScratches build() {
return new TemplateScratches(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/ListTemplateVersionsRequest.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 ListTemplateVersionsRequest} extends {@link RequestModel}
*
* <p>ListTemplateVersionsRequest</p>
*/
public class ListTemplateVersionsRequest extends Request {
@Query
@NameInMap("MaxResults")
private Long maxResults;
@Query
@NameInMap("NextToken")
private String nextToken;
@Query
@NameInMap("TemplateId")
private String templateId;
private ListTemplateVersionsRequest(Builder builder) {
super(builder);
this.maxResults = builder.maxResults;
this.nextToken = builder.nextToken;
this.templateId = builder.templateId;
}
public static Builder builder() {
return new Builder();
}
public static ListTemplateVersionsRequest create() {
return builder().build();
}
/**
* @return maxResults
*/
public Long getMaxResults() {
return this.maxResults;
}
/**
* @return nextToken
*/
public String getNextToken() {
return this.nextToken;
}
/**
* @return templateId
*/
public String getTemplateId() {
return this.templateId;
}
public static final class Builder extends Request.Builder<Builder> {
private Long maxResults;
private String nextToken;
private String templateId;
/**
* <p>MaxResults.</p>
*/
public Builder maxResults(Long maxResults) {
this.putQueryParameter("MaxResults", maxResults);
this.maxResults = maxResults;
return this;
}
/**
* <p>NextToken.</p>
*/
public Builder nextToken(String nextToken) {
this.putQueryParameter("NextToken", nextToken);
this.nextToken = nextToken;
return this;
}
/**
* <p>TemplateId.</p>
*/
public Builder templateId(String templateId) {
this.putQueryParameter("TemplateId", templateId);
this.templateId = templateId;
return this;
}
public ListTemplateVersionsRequest build() {
return new ListTemplateVersionsRequest(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/ListTemplateVersionsResponse.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 ListTemplateVersionsResponse} extends {@link TeaModel}
*
* <p>ListTemplateVersionsResponse</p>
*/
public class ListTemplateVersionsResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListTemplateVersionsResponseBody body;
private ListTemplateVersionsResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static ListTemplateVersionsResponse 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 ListTemplateVersionsResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private ListTemplateVersionsResponseBody body;
private Builder() {
super();
}
private Builder(ListTemplateVersionsResponse 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(ListTemplateVersionsResponseBody body) {
this.body = body;
return this;
}
public ListTemplateVersionsResponse build() {
return new ListTemplateVersionsResponse(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/ListTemplateVersionsResponseBody.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 ListTemplateVersionsResponseBody} extends {@link TeaModel}
*
* <p>ListTemplateVersionsResponseBody</p>
*/
public class ListTemplateVersionsResponseBody extends TeaModel {
@NameInMap("NextToken")
private String nextToken;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Versions")
private java.util.List < Versions> versions;
private ListTemplateVersionsResponseBody(Builder builder) {
this.nextToken = builder.nextToken;
this.requestId = builder.requestId;
this.versions = builder.versions;
}
public static Builder builder() {
return new Builder();
}
public static ListTemplateVersionsResponseBody create() {
return builder().build();
}
/**
* @return nextToken
*/
public String getNextToken() {
return this.nextToken;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return versions
*/
public java.util.List < Versions> getVersions() {
return this.versions;
}
public static final class Builder {
private String nextToken;
private String requestId;
private java.util.List < Versions> versions;
/**
* <p>NextToken.</p>
*/
public Builder nextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Versions.</p>
*/
public Builder versions(java.util.List < Versions> versions) {
this.versions = versions;
return this;
}
public ListTemplateVersionsResponseBody build() {
return new ListTemplateVersionsResponseBody(this);
}
}
public static class Versions extends TeaModel {
@NameInMap("CreateTime")
private String createTime;
@NameInMap("Description")
private String description;
@NameInMap("TemplateId")
private String templateId;
@NameInMap("TemplateName")
private String templateName;
@NameInMap("TemplateVersion")
private String templateVersion;
@NameInMap("UpdateTime")
private String updateTime;
private Versions(Builder builder) {
this.createTime = builder.createTime;
this.description = builder.description;
this.templateId = builder.templateId;
this.templateName = builder.templateName;
this.templateVersion = builder.templateVersion;
this.updateTime = builder.updateTime;
}
public static Builder builder() {
return new Builder();
}
public static Versions create() {
return builder().build();
}
/**
* @return createTime
*/
public String getCreateTime() {
return this.createTime;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return templateId
*/
public String getTemplateId() {
return this.templateId;
}
/**
* @return templateName
*/
public String getTemplateName() {
return this.templateName;
}
/**
* @return templateVersion
*/
public String getTemplateVersion() {
return this.templateVersion;
}
/**
* @return updateTime
*/
public String getUpdateTime() {
return this.updateTime;
}
public static final class Builder {
private String createTime;
private String description;
private String templateId;
private String templateName;
private String templateVersion;
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>TemplateId.</p>
*/
public Builder templateId(String templateId) {
this.templateId = templateId;
return this;
}
/**
* <p>TemplateName.</p>
*/
public Builder templateName(String templateName) {
this.templateName = templateName;
return this;
}
/**
* <p>TemplateVersion.</p>
*/
public Builder templateVersion(String templateVersion) {
this.templateVersion = templateVersion;
return this;
}
/**
* <p>UpdateTime.</p>
*/
public Builder updateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
public Versions build() {
return new Versions(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/ListTemplatesRequest.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 ListTemplatesRequest} extends {@link RequestModel}
*
* <p>ListTemplatesRequest</p>
*/
public class ListTemplatesRequest extends Request {
@Query
@NameInMap("PageNumber")
private Long pageNumber;
@Query
@NameInMap("PageSize")
private Long pageSize;
@Query
@NameInMap("ResourceGroupId")
private String resourceGroupId;
@Query
@NameInMap("ShareType")
private String shareType;
@Query
@NameInMap("Tag")
private java.util.List < Tag> tag;
@Query
@NameInMap("TemplateName")
private String templateName;
private ListTemplatesRequest(Builder builder) {
super(builder);
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.resourceGroupId = builder.resourceGroupId;
this.shareType = builder.shareType;
this.tag = builder.tag;
this.templateName = builder.templateName;
}
public static Builder builder() {
return new Builder();
}
public static ListTemplatesRequest create() {
return builder().build();
}
/**
* @return pageNumber
*/
public Long getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return resourceGroupId
*/
public String getResourceGroupId() {
return this.resourceGroupId;
}
/**
* @return shareType
*/
public String getShareType() {
return this.shareType;
}
/**
* @return tag
*/
public java.util.List < Tag> getTag() {
return this.tag;
}
/**
* @return templateName
*/
public String getTemplateName() {
return this.templateName;
}
public static final class Builder extends Request.Builder<Builder> {
private Long pageNumber;
private Long pageSize;
private String resourceGroupId;
private String shareType;
private java.util.List < Tag> tag;
private String templateName;
/**
* <p>PageNumber.</p>
*/
public Builder pageNumber(Long pageNumber) {
this.putQueryParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* <p>PageSize.</p>
*/
public Builder pageSize(Long pageSize) {
this.putQueryParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* <p>ResourceGroupId.</p>
*/
public Builder resourceGroupId(String resourceGroupId) {
this.putQueryParameter("ResourceGroupId", resourceGroupId);
this.resourceGroupId = resourceGroupId;
return this;
}
/**
* <p>ShareType.</p>
*/
public Builder shareType(String shareType) {
this.putQueryParameter("ShareType", shareType);
this.shareType = shareType;
return this;
}
/**
* <p>Tag.</p>
*/
public Builder tag(java.util.List < Tag> tag) {
this.putQueryParameter("Tag", tag);
this.tag = tag;
return this;
}
/**
* <p>TemplateName.</p>
*/
public Builder templateName(String templateName) {
this.putQueryParameter("TemplateName", templateName);
this.templateName = templateName;
return this;
}
public ListTemplatesRequest build() {
return new ListTemplatesRequest(this);
}
}
public static class Tag extends TeaModel {
@NameInMap("Key")
private String key;
@NameInMap("Value")
private String value;
private Tag(Builder builder) {
this.key = builder.key;
this.value = builder.value;
}
public static Builder builder() {
return new Builder();
}
public static Tag 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 Tag build() {
return new Tag(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/ListTemplatesResponse.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 ListTemplatesResponse} extends {@link TeaModel}
*
* <p>ListTemplatesResponse</p>
*/
public class ListTemplatesResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListTemplatesResponseBody body;
private ListTemplatesResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static ListTemplatesResponse 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 ListTemplatesResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private ListTemplatesResponseBody body;
private Builder() {
super();
}
private Builder(ListTemplatesResponse 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(ListTemplatesResponseBody body) {
this.body = body;
return this;
}
public ListTemplatesResponse build() {
return new ListTemplatesResponse(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/ListTemplatesResponseBody.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 ListTemplatesResponseBody} extends {@link TeaModel}
*
* <p>ListTemplatesResponseBody</p>
*/
public class ListTemplatesResponseBody extends TeaModel {
@NameInMap("PageNumber")
private Integer pageNumber;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Templates")
private java.util.List < Templates> templates;
@NameInMap("TotalCount")
private Integer totalCount;
private ListTemplatesResponseBody(Builder builder) {
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.requestId = builder.requestId;
this.templates = builder.templates;
this.totalCount = builder.totalCount;
}
public static Builder builder() {
return new Builder();
}
public static ListTemplatesResponseBody create() {
return builder().build();
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return templates
*/
public java.util.List < Templates> getTemplates() {
return this.templates;
}
/**
* @return totalCount
*/
public Integer getTotalCount() {
return this.totalCount;
}
public static final class Builder {
private Integer pageNumber;
private Integer pageSize;
private String requestId;
private java.util.List < Templates> templates;
private Integer totalCount;
/**
* <p>PageNumber.</p>
*/
public Builder pageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* <p>PageSize.</p>
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Templates.</p>
*/
public Builder templates(java.util.List < Templates> templates) {
this.templates = templates;
return this;
}
/**
* <p>TotalCount.</p>
*/
public Builder totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public ListTemplatesResponseBody build() {
return new ListTemplatesResponseBody(this);
}
}
public static class Templates extends TeaModel {
@NameInMap("CreateTime")
private String createTime;
@NameInMap("Description")
private String description;
@NameInMap("OwnerId")
private String ownerId;
@NameInMap("ResourceGroupId")
private String resourceGroupId;
@NameInMap("ShareType")
private String shareType;
@NameInMap("TemplateARN")
private String templateARN;
@NameInMap("TemplateId")
private String templateId;
@NameInMap("TemplateName")
private String templateName;
@NameInMap("TemplateVersion")
private String templateVersion;
@NameInMap("UpdateTime")
private String updateTime;
private Templates(Builder builder) {
this.createTime = builder.createTime;
this.description = builder.description;
this.ownerId = builder.ownerId;
this.resourceGroupId = builder.resourceGroupId;
this.shareType = builder.shareType;
this.templateARN = builder.templateARN;
this.templateId = builder.templateId;
this.templateName = builder.templateName;
this.templateVersion = builder.templateVersion;
this.updateTime = builder.updateTime;
}
public static Builder builder() {
return new Builder();
}
public static Templates create() {
return builder().build();
}
/**
* @return createTime
*/
public String getCreateTime() {
return this.createTime;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return ownerId
*/
public String getOwnerId() {
return this.ownerId;
}
/**
* @return resourceGroupId
*/
public String getResourceGroupId() {
return this.resourceGroupId;
}
/**
* @return shareType
*/
public String getShareType() {
return this.shareType;
}
/**
* @return templateARN
*/
public String getTemplateARN() {
return this.templateARN;
}
/**
* @return templateId
*/
public String getTemplateId() {
return this.templateId;
}
/**
* @return templateName
*/
public String getTemplateName() {
return this.templateName;
}
/**
* @return templateVersion
*/
public String getTemplateVersion() {
return this.templateVersion;
}
/**
* @return updateTime
*/
public String getUpdateTime() {
return this.updateTime;
}
public static final class Builder {
private String createTime;
private String description;
private String ownerId;
private String resourceGroupId;
private String shareType;
private String templateARN;
private String templateId;
private String templateName;
private String templateVersion;
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>OwnerId.</p>
*/
public Builder ownerId(String ownerId) {
this.ownerId = ownerId;
return this;
}
/**
* <p>ResourceGroupId.</p>
*/
public Builder resourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
return this;
}
/**
* <p>ShareType.</p>
*/
public Builder shareType(String shareType) {
this.shareType = shareType;
return this;
}
/**
* <p>TemplateARN.</p>
*/
public Builder templateARN(String templateARN) {
this.templateARN = templateARN;
return this;
}
/**
* <p>TemplateId.</p>
*/
public Builder templateId(String templateId) {
this.templateId = templateId;
return this;
}
/**
* <p>TemplateName.</p>
*/
public Builder templateName(String templateName) {
this.templateName = templateName;
return this;
}
/**
* <p>TemplateVersion.</p>
*/
public Builder templateVersion(String templateVersion) {
this.templateVersion = templateVersion;
return this;
}
/**
* <p>UpdateTime.</p>
*/
public Builder updateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
public Templates build() {
return new Templates(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/MoveResourceGroupRequest.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 MoveResourceGroupRequest} extends {@link RequestModel}
*
* <p>MoveResourceGroupRequest</p>
*/
public class MoveResourceGroupRequest extends Request {
@Query
@NameInMap("NewResourceGroupId")
private String newResourceGroupId;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("ResourceId")
private String resourceId;
@Query
@NameInMap("ResourceType")
private String resourceType;
private MoveResourceGroupRequest(Builder builder) {
super(builder);
this.newResourceGroupId = builder.newResourceGroupId;
this.regionId = builder.regionId;
this.resourceId = builder.resourceId;
this.resourceType = builder.resourceType;
}
public static Builder builder() {
return new Builder();
}
public static MoveResourceGroupRequest create() {
return builder().build();
}
/**
* @return newResourceGroupId
*/
public String getNewResourceGroupId() {
return this.newResourceGroupId;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return resourceId
*/
public String getResourceId() {
return this.resourceId;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
public static final class Builder extends Request.Builder<Builder> {
private String newResourceGroupId;
private String regionId;
private String resourceId;
private String resourceType;
/**
* <p>NewResourceGroupId.</p>
*/
public Builder newResourceGroupId(String newResourceGroupId) {
this.putQueryParameter("NewResourceGroupId", newResourceGroupId);
this.newResourceGroupId = newResourceGroupId;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>ResourceId.</p>
*/
public Builder resourceId(String resourceId) {
this.putQueryParameter("ResourceId", resourceId);
this.resourceId = resourceId;
return this;
}
/**
* <p>ResourceType.</p>
*/
public Builder resourceType(String resourceType) {
this.putQueryParameter("ResourceType", resourceType);
this.resourceType = resourceType;
return this;
}
public MoveResourceGroupRequest build() {
return new MoveResourceGroupRequest(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/MoveResourceGroupResponse.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 MoveResourceGroupResponse} extends {@link TeaModel}
*
* <p>MoveResourceGroupResponse</p>
*/
public class MoveResourceGroupResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private MoveResourceGroupResponseBody body;
private MoveResourceGroupResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static MoveResourceGroupResponse 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 MoveResourceGroupResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private MoveResourceGroupResponseBody body;
private Builder() {
super();
}
private Builder(MoveResourceGroupResponse 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(MoveResourceGroupResponseBody body) {
this.body = body;
return this;
}
public MoveResourceGroupResponse build() {
return new MoveResourceGroupResponse(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/MoveResourceGroupResponseBody.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 MoveResourceGroupResponseBody} extends {@link TeaModel}
*
* <p>MoveResourceGroupResponseBody</p>
*/
public class MoveResourceGroupResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
private MoveResourceGroupResponseBody(Builder builder) {
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static MoveResourceGroupResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String requestId;
/**
* <p>Id of the request</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public MoveResourceGroupResponseBody build() {
return new MoveResourceGroupResponseBody(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/PreviewStackRequest.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 PreviewStackRequest} extends {@link RequestModel}
*
* <p>PreviewStackRequest</p>
*/
public class PreviewStackRequest extends Request {
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("DisableRollback")
private Boolean disableRollback;
@Query
@NameInMap("Parallelism")
private Long parallelism;
@Query
@NameInMap("Parameters")
private java.util.List < Parameters> parameters;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("StackName")
private String stackName;
@Query
@NameInMap("StackPolicyBody")
private String stackPolicyBody;
@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("TemplateScratchRegionId")
private String templateScratchRegionId;
@Query
@NameInMap("TemplateURL")
private String templateURL;
@Query
@NameInMap("TemplateVersion")
private String templateVersion;
@Query
@NameInMap("TimeoutInMinutes")
private Long timeoutInMinutes;
private PreviewStackRequest(Builder builder) {
super(builder);
this.clientToken = builder.clientToken;
this.disableRollback = builder.disableRollback;
this.parallelism = builder.parallelism;
this.parameters = builder.parameters;
this.regionId = builder.regionId;
this.stackName = builder.stackName;
this.stackPolicyBody = builder.stackPolicyBody;
this.stackPolicyURL = builder.stackPolicyURL;
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 PreviewStackRequest create() {
return builder().build();
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return disableRollback
*/
public Boolean getDisableRollback() {
return this.disableRollback;
}
/**
* @return parallelism
*/
public Long getParallelism() {
return this.parallelism;
}
/**
* @return parameters
*/
public java.util.List < Parameters> getParameters() {
return this.parameters;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @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 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 Boolean disableRollback;
private Long parallelism;
private java.util.List < Parameters> parameters;
private String regionId;
private String stackName;
private String stackPolicyBody;
private String stackPolicyURL;
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>DisableRollback.</p>
*/
public Builder disableRollback(Boolean disableRollback) {
this.putQueryParameter("DisableRollback", disableRollback);
this.disableRollback = disableRollback;
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>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
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>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 PreviewStackRequest build() {
return new PreviewStackRequest(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/PreviewStackResponse.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 PreviewStackResponse} extends {@link TeaModel}
*
* <p>PreviewStackResponse</p>
*/
public class PreviewStackResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private PreviewStackResponseBody body;
private PreviewStackResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static PreviewStackResponse 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 PreviewStackResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private PreviewStackResponseBody body;
private Builder() {
super();
}
private Builder(PreviewStackResponse 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(PreviewStackResponseBody body) {
this.body = body;
return this;
}
public PreviewStackResponse build() {
return new PreviewStackResponse(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/PreviewStackResponseBody.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 PreviewStackResponseBody} extends {@link TeaModel}
*
* <p>PreviewStackResponseBody</p>
*/
public class PreviewStackResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("Stack")
private Stack stack;
private PreviewStackResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.stack = builder.stack;
}
public static Builder builder() {
return new Builder();
}
public static PreviewStackResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return stack
*/
public Stack getStack() {
return this.stack;
}
public static final class Builder {
private String requestId;
private Stack stack;
/**
* <p>RequestId.</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Stack.</p>
*/
public Builder stack(Stack stack) {
this.stack = stack;
return this;
}
public PreviewStackResponseBody build() {
return new PreviewStackResponseBody(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 Resources extends TeaModel {
@NameInMap("Description")
private String description;
@NameInMap("LogicalResourceId")
private String logicalResourceId;
@NameInMap("Properties")
private java.util.Map < String, ? > properties;
@NameInMap("RequiredBy")
private java.util.List < String > requiredBy;
@NameInMap("ResourceType")
private String resourceType;
@NameInMap("Stack")
private java.util.Map < String, ? > stack;
private Resources(Builder builder) {
this.description = builder.description;
this.logicalResourceId = builder.logicalResourceId;
this.properties = builder.properties;
this.requiredBy = builder.requiredBy;
this.resourceType = builder.resourceType;
this.stack = builder.stack;
}
public static Builder builder() {
return new Builder();
}
public static Resources create() {
return builder().build();
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return logicalResourceId
*/
public String getLogicalResourceId() {
return this.logicalResourceId;
}
/**
* @return properties
*/
public java.util.Map < String, ? > getProperties() {
return this.properties;
}
/**
* @return requiredBy
*/
public java.util.List < String > getRequiredBy() {
return this.requiredBy;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
/**
* @return stack
*/
public java.util.Map < String, ? > getStack() {
return this.stack;
}
public static final class Builder {
private String description;
private String logicalResourceId;
private java.util.Map < String, ? > properties;
private java.util.List < String > requiredBy;
private String resourceType;
private java.util.Map < String, ? > stack;
/**
* <p>Description.</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>LogicalResourceId.</p>
*/
public Builder logicalResourceId(String logicalResourceId) {
this.logicalResourceId = logicalResourceId;
return this;
}
/**
* <p>Properties.</p>
*/
public Builder properties(java.util.Map < String, ? > properties) {
this.properties = properties;
return this;
}
/**
* <p>RequiredBy.</p>
*/
public Builder requiredBy(java.util.List < String > requiredBy) {
this.requiredBy = requiredBy;
return this;
}
/**
* <p>ResourceType.</p>
*/
public Builder resourceType(String resourceType) {
this.resourceType = resourceType;
return this;
}
/**
* <p>Stack.</p>
*/
public Builder stack(java.util.Map < String, ? > stack) {
this.stack = stack;
return this;
}
public Resources build() {
return new Resources(this);
}
}
}
public static class Stack extends TeaModel {
@NameInMap("Description")
private String description;
@NameInMap("DisableRollback")
private Boolean disableRollback;
@NameInMap("Log")
private Log log;
@NameInMap("Parameters")
private java.util.List < Parameters> parameters;
@NameInMap("RegionId")
private String regionId;
@NameInMap("Resources")
private java.util.List < Resources> resources;
@NameInMap("StackName")
private String stackName;
@NameInMap("StackPolicyBody")
private java.util.Map < String, ? > stackPolicyBody;
@NameInMap("TemplateDescription")
private String templateDescription;
@NameInMap("TimeoutInMinutes")
private Integer timeoutInMinutes;
private Stack(Builder builder) {
this.description = builder.description;
this.disableRollback = builder.disableRollback;
this.log = builder.log;
this.parameters = builder.parameters;
this.regionId = builder.regionId;
this.resources = builder.resources;
this.stackName = builder.stackName;
this.stackPolicyBody = builder.stackPolicyBody;
this.templateDescription = builder.templateDescription;
this.timeoutInMinutes = builder.timeoutInMinutes;
}
public static Builder builder() {
return new Builder();
}
public static Stack create() {
return builder().build();
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return disableRollback
*/
public Boolean getDisableRollback() {
return this.disableRollback;
}
/**
* @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 resources
*/
public java.util.List < Resources> getResources() {
return this.resources;
}
/**
* @return stackName
*/
public String getStackName() {
return this.stackName;
}
/**
* @return stackPolicyBody
*/
public java.util.Map < String, ? > getStackPolicyBody() {
return this.stackPolicyBody;
}
/**
* @return templateDescription
*/
public String getTemplateDescription() {
return this.templateDescription;
}
/**
* @return timeoutInMinutes
*/
public Integer getTimeoutInMinutes() {
return this.timeoutInMinutes;
}
public static final class Builder {
private String description;
private Boolean disableRollback;
private Log log;
private java.util.List < Parameters> parameters;
private String regionId;
private java.util.List < Resources> resources;
private String stackName;
private java.util.Map < String, ? > stackPolicyBody;
private String templateDescription;
private Integer timeoutInMinutes;
/**
* <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>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>Resources.</p>
*/
public Builder resources(java.util.List < Resources> resources) {
this.resources = resources;
return this;
}
/**
* <p>StackName.</p>
*/
public Builder stackName(String stackName) {
this.stackName = stackName;
return this;
}
/**
* <p>StackPolicyBody.</p>
*/
public Builder stackPolicyBody(java.util.Map < String, ? > stackPolicyBody) {
this.stackPolicyBody = stackPolicyBody;
return this;
}
/**
* <p>TemplateDescription.</p>
*/
public Builder templateDescription(String templateDescription) {
this.templateDescription = templateDescription;
return this;
}
/**
* <p>TimeoutInMinutes.</p>
*/
public Builder timeoutInMinutes(Integer timeoutInMinutes) {
this.timeoutInMinutes = timeoutInMinutes;
return this;
}
public Stack build() {
return new Stack(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/Request.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import darabonba.core.RequestModel;
public class Request extends RequestModel {
protected Request(Builder builder) {
super(builder);
}
}
|
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/Response.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ros20190910.models;
import darabonba.core.TeaModel;
public class Response extends TeaModel {
protected Response(Builder builder) {
}
public Builder toBuilder() {
return new Builder(this);
}
protected static class Builder {
protected Builder() {
}
protected Builder(Response response) {
}
}
}
|
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/SetDeletionProtectionRequest.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 SetDeletionProtectionRequest} extends {@link RequestModel}
*
* <p>SetDeletionProtectionRequest</p>
*/
public class SetDeletionProtectionRequest extends Request {
@Query
@NameInMap("DeletionProtection")
private String deletionProtection;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("StackId")
private String stackId;
private SetDeletionProtectionRequest(Builder builder) {
super(builder);
this.deletionProtection = builder.deletionProtection;
this.regionId = builder.regionId;
this.stackId = builder.stackId;
}
public static Builder builder() {
return new Builder();
}
public static SetDeletionProtectionRequest create() {
return builder().build();
}
/**
* @return deletionProtection
*/
public String getDeletionProtection() {
return this.deletionProtection;
}
/**
* @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 deletionProtection;
private String regionId;
private String stackId;
/**
* <p>DeletionProtection.</p>
*/
public Builder deletionProtection(String deletionProtection) {
this.putQueryParameter("DeletionProtection", deletionProtection);
this.deletionProtection = deletionProtection;
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 SetDeletionProtectionRequest build() {
return new SetDeletionProtectionRequest(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/SetDeletionProtectionResponse.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 SetDeletionProtectionResponse} extends {@link TeaModel}
*
* <p>SetDeletionProtectionResponse</p>
*/
public class SetDeletionProtectionResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private SetDeletionProtectionResponseBody body;
private SetDeletionProtectionResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static SetDeletionProtectionResponse 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 SetDeletionProtectionResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private SetDeletionProtectionResponseBody body;
private Builder() {
super();
}
private Builder(SetDeletionProtectionResponse 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(SetDeletionProtectionResponseBody body) {
this.body = body;
return this;
}
public SetDeletionProtectionResponse build() {
return new SetDeletionProtectionResponse(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/SetDeletionProtectionResponseBody.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 SetDeletionProtectionResponseBody} extends {@link TeaModel}
*
* <p>SetDeletionProtectionResponseBody</p>
*/
public class SetDeletionProtectionResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
private SetDeletionProtectionResponseBody(Builder builder) {
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static SetDeletionProtectionResponseBody 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 SetDeletionProtectionResponseBody build() {
return new SetDeletionProtectionResponseBody(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/SetStackPolicyRequest.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 SetStackPolicyRequest} extends {@link RequestModel}
*
* <p>SetStackPolicyRequest</p>
*/
public class SetStackPolicyRequest extends Request {
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("StackId")
private String stackId;
@Query
@NameInMap("StackPolicyBody")
private String stackPolicyBody;
@Query
@NameInMap("StackPolicyURL")
private String stackPolicyURL;
private SetStackPolicyRequest(Builder builder) {
super(builder);
this.regionId = builder.regionId;
this.stackId = builder.stackId;
this.stackPolicyBody = builder.stackPolicyBody;
this.stackPolicyURL = builder.stackPolicyURL;
}
public static Builder builder() {
return new Builder();
}
public static SetStackPolicyRequest create() {
return builder().build();
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return stackId
*/
public String getStackId() {
return this.stackId;
}
/**
* @return stackPolicyBody
*/
public String getStackPolicyBody() {
return this.stackPolicyBody;
}
/**
* @return stackPolicyURL
*/
public String getStackPolicyURL() {
return this.stackPolicyURL;
}
public static final class Builder extends Request.Builder<Builder> {
private String regionId;
private String stackId;
private String stackPolicyBody;
private String stackPolicyURL;
/**
* <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;
}
/**
* <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;
}
public SetStackPolicyRequest build() {
return new SetStackPolicyRequest(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/SetStackPolicyResponse.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 SetStackPolicyResponse} extends {@link TeaModel}
*
* <p>SetStackPolicyResponse</p>
*/
public class SetStackPolicyResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private SetStackPolicyResponseBody body;
private SetStackPolicyResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static SetStackPolicyResponse 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 SetStackPolicyResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private SetStackPolicyResponseBody body;
private Builder() {
super();
}
private Builder(SetStackPolicyResponse 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(SetStackPolicyResponseBody body) {
this.body = body;
return this;
}
public SetStackPolicyResponse build() {
return new SetStackPolicyResponse(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/SetStackPolicyResponseBody.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 SetStackPolicyResponseBody} extends {@link TeaModel}
*
* <p>SetStackPolicyResponseBody</p>
*/
public class SetStackPolicyResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
private SetStackPolicyResponseBody(Builder builder) {
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static SetStackPolicyResponseBody 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 SetStackPolicyResponseBody build() {
return new SetStackPolicyResponseBody(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/SetTemplatePermissionRequest.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 SetTemplatePermissionRequest} extends {@link RequestModel}
*
* <p>SetTemplatePermissionRequest</p>
*/
public class SetTemplatePermissionRequest extends Request {
@Query
@NameInMap("AccountIds")
private java.util.List < String > accountIds;
@Query
@NameInMap("ShareOption")
private String shareOption;
@Query
@NameInMap("TemplateId")
private String templateId;
@Query
@NameInMap("TemplateVersion")
private String templateVersion;
@Query
@NameInMap("VersionOption")
private String versionOption;
private SetTemplatePermissionRequest(Builder builder) {
super(builder);
this.accountIds = builder.accountIds;
this.shareOption = builder.shareOption;
this.templateId = builder.templateId;
this.templateVersion = builder.templateVersion;
this.versionOption = builder.versionOption;
}
public static Builder builder() {
return new Builder();
}
public static SetTemplatePermissionRequest create() {
return builder().build();
}
/**
* @return accountIds
*/
public java.util.List < String > getAccountIds() {
return this.accountIds;
}
/**
* @return shareOption
*/
public String getShareOption() {
return this.shareOption;
}
/**
* @return templateId
*/
public String getTemplateId() {
return this.templateId;
}
/**
* @return templateVersion
*/
public String getTemplateVersion() {
return this.templateVersion;
}
/**
* @return versionOption
*/
public String getVersionOption() {
return this.versionOption;
}
public static final class Builder extends Request.Builder<Builder> {
private java.util.List < String > accountIds;
private String shareOption;
private String templateId;
private String templateVersion;
private String versionOption;
/**
* <p>AccountIds.</p>
*/
public Builder accountIds(java.util.List < String > accountIds) {
this.putQueryParameter("AccountIds", accountIds);
this.accountIds = accountIds;
return this;
}
/**
* <p>ShareOption.</p>
*/
public Builder shareOption(String shareOption) {
this.putQueryParameter("ShareOption", shareOption);
this.shareOption = shareOption;
return this;
}
/**
* <p>TemplateId.</p>
*/
public Builder templateId(String templateId) {
this.putQueryParameter("TemplateId", templateId);
this.templateId = templateId;
return this;
}
/**
* <p>TemplateVersion.</p>
*/
public Builder templateVersion(String templateVersion) {
this.putQueryParameter("TemplateVersion", templateVersion);
this.templateVersion = templateVersion;
return this;
}
/**
* <p>VersionOption.</p>
*/
public Builder versionOption(String versionOption) {
this.putQueryParameter("VersionOption", versionOption);
this.versionOption = versionOption;
return this;
}
public SetTemplatePermissionRequest build() {
return new SetTemplatePermissionRequest(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/SetTemplatePermissionResponse.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 SetTemplatePermissionResponse} extends {@link TeaModel}
*
* <p>SetTemplatePermissionResponse</p>
*/
public class SetTemplatePermissionResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private SetTemplatePermissionResponseBody body;
private SetTemplatePermissionResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static SetTemplatePermissionResponse 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 SetTemplatePermissionResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private SetTemplatePermissionResponseBody body;
private Builder() {
super();
}
private Builder(SetTemplatePermissionResponse 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(SetTemplatePermissionResponseBody body) {
this.body = body;
return this;
}
public SetTemplatePermissionResponse build() {
return new SetTemplatePermissionResponse(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/SetTemplatePermissionResponseBody.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 SetTemplatePermissionResponseBody} extends {@link TeaModel}
*
* <p>SetTemplatePermissionResponseBody</p>
*/
public class SetTemplatePermissionResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
private SetTemplatePermissionResponseBody(Builder builder) {
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static SetTemplatePermissionResponseBody 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 SetTemplatePermissionResponseBody build() {
return new SetTemplatePermissionResponseBody(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/SignalResourceRequest.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 SignalResourceRequest} extends {@link RequestModel}
*
* <p>SignalResourceRequest</p>
*/
public class SignalResourceRequest 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;
@Query
@NameInMap("Status")
private String status;
@Query
@NameInMap("UniqueId")
private String uniqueId;
private SignalResourceRequest(Builder builder) {
super(builder);
this.clientToken = builder.clientToken;
this.logicalResourceId = builder.logicalResourceId;
this.regionId = builder.regionId;
this.stackId = builder.stackId;
this.status = builder.status;
this.uniqueId = builder.uniqueId;
}
public static Builder builder() {
return new Builder();
}
public static SignalResourceRequest 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;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return uniqueId
*/
public String getUniqueId() {
return this.uniqueId;
}
public static final class Builder extends Request.Builder<Builder> {
private String clientToken;
private String logicalResourceId;
private String regionId;
private String stackId;
private String status;
private String uniqueId;
/**
* <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;
}
/**
* <p>Status.</p>
*/
public Builder status(String status) {
this.putQueryParameter("Status", status);
this.status = status;
return this;
}
/**
* <p>UniqueId.</p>
*/
public Builder uniqueId(String uniqueId) {
this.putQueryParameter("UniqueId", uniqueId);
this.uniqueId = uniqueId;
return this;
}
public SignalResourceRequest build() {
return new SignalResourceRequest(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/SignalResourceResponse.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 SignalResourceResponse} extends {@link TeaModel}
*
* <p>SignalResourceResponse</p>
*/
public class SignalResourceResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private SignalResourceResponseBody body;
private SignalResourceResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static SignalResourceResponse 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 SignalResourceResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private SignalResourceResponseBody body;
private Builder() {
super();
}
private Builder(SignalResourceResponse 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(SignalResourceResponseBody body) {
this.body = body;
return this;
}
public SignalResourceResponse build() {
return new SignalResourceResponse(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/SignalResourceResponseBody.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 SignalResourceResponseBody} extends {@link TeaModel}
*
* <p>SignalResourceResponseBody</p>
*/
public class SignalResourceResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
private SignalResourceResponseBody(Builder builder) {
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static SignalResourceResponseBody 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 SignalResourceResponseBody build() {
return new SignalResourceResponseBody(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/StopStackGroupOperationRequest.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 StopStackGroupOperationRequest} extends {@link RequestModel}
*
* <p>StopStackGroupOperationRequest</p>
*/
public class StopStackGroupOperationRequest extends Request {
@Query
@NameInMap("OperationId")
private String operationId;
@Query
@NameInMap("RegionId")
private String regionId;
private StopStackGroupOperationRequest(Builder builder) {
super(builder);
this.operationId = builder.operationId;
this.regionId = builder.regionId;
}
public static Builder builder() {
return new Builder();
}
public static StopStackGroupOperationRequest 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 StopStackGroupOperationRequest build() {
return new StopStackGroupOperationRequest(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/StopStackGroupOperationResponse.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 StopStackGroupOperationResponse} extends {@link TeaModel}
*
* <p>StopStackGroupOperationResponse</p>
*/
public class StopStackGroupOperationResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private StopStackGroupOperationResponseBody body;
private StopStackGroupOperationResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static StopStackGroupOperationResponse 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 StopStackGroupOperationResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private StopStackGroupOperationResponseBody body;
private Builder() {
super();
}
private Builder(StopStackGroupOperationResponse 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(StopStackGroupOperationResponseBody body) {
this.body = body;
return this;
}
public StopStackGroupOperationResponse build() {
return new StopStackGroupOperationResponse(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/StopStackGroupOperationResponseBody.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 StopStackGroupOperationResponseBody} extends {@link TeaModel}
*
* <p>StopStackGroupOperationResponseBody</p>
*/
public class StopStackGroupOperationResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
private StopStackGroupOperationResponseBody(Builder builder) {
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static StopStackGroupOperationResponseBody 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 StopStackGroupOperationResponseBody build() {
return new StopStackGroupOperationResponseBody(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/TagResourcesRequest.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 TagResourcesRequest} extends {@link RequestModel}
*
* <p>TagResourcesRequest</p>
*/
public class TagResourcesRequest extends Request {
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("ResourceId")
private java.util.List < String > resourceId;
@Query
@NameInMap("ResourceType")
private String resourceType;
@Query
@NameInMap("Tag")
private java.util.List < Tag> tag;
private TagResourcesRequest(Builder builder) {
super(builder);
this.regionId = builder.regionId;
this.resourceId = builder.resourceId;
this.resourceType = builder.resourceType;
this.tag = builder.tag;
}
public static Builder builder() {
return new Builder();
}
public static TagResourcesRequest create() {
return builder().build();
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return resourceId
*/
public java.util.List < String > getResourceId() {
return this.resourceId;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
/**
* @return tag
*/
public java.util.List < Tag> getTag() {
return this.tag;
}
public static final class Builder extends Request.Builder<Builder> {
private String regionId;
private java.util.List < String > resourceId;
private String resourceType;
private java.util.List < Tag> tag;
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>ResourceId.</p>
*/
public Builder resourceId(java.util.List < String > resourceId) {
this.putQueryParameter("ResourceId", resourceId);
this.resourceId = resourceId;
return this;
}
/**
* <p>ResourceType.</p>
*/
public Builder resourceType(String resourceType) {
this.putQueryParameter("ResourceType", resourceType);
this.resourceType = resourceType;
return this;
}
/**
* <p>Tag.</p>
*/
public Builder tag(java.util.List < Tag> tag) {
this.putQueryParameter("Tag", tag);
this.tag = tag;
return this;
}
public TagResourcesRequest build() {
return new TagResourcesRequest(this);
}
}
public static class Tag extends TeaModel {
@NameInMap("Key")
private String key;
@NameInMap("Value")
private String value;
private Tag(Builder builder) {
this.key = builder.key;
this.value = builder.value;
}
public static Builder builder() {
return new Builder();
}
public static Tag 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 Tag build() {
return new Tag(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/TagResourcesResponse.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 TagResourcesResponse} extends {@link TeaModel}
*
* <p>TagResourcesResponse</p>
*/
public class TagResourcesResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private TagResourcesResponseBody body;
private TagResourcesResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static TagResourcesResponse 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 TagResourcesResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private TagResourcesResponseBody body;
private Builder() {
super();
}
private Builder(TagResourcesResponse 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(TagResourcesResponseBody body) {
this.body = body;
return this;
}
public TagResourcesResponse build() {
return new TagResourcesResponse(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/TagResourcesResponseBody.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 TagResourcesResponseBody} extends {@link TeaModel}
*
* <p>TagResourcesResponseBody</p>
*/
public class TagResourcesResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
private TagResourcesResponseBody(Builder builder) {
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static TagResourcesResponseBody 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 TagResourcesResponseBody build() {
return new TagResourcesResponseBody(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/UntagResourcesRequest.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 UntagResourcesRequest} extends {@link RequestModel}
*
* <p>UntagResourcesRequest</p>
*/
public class UntagResourcesRequest extends Request {
@Query
@NameInMap("All")
private Boolean all;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("ResourceId")
private java.util.List < String > resourceId;
@Query
@NameInMap("ResourceType")
private String resourceType;
@Query
@NameInMap("TagKey")
private java.util.List < String > tagKey;
private UntagResourcesRequest(Builder builder) {
super(builder);
this.all = builder.all;
this.regionId = builder.regionId;
this.resourceId = builder.resourceId;
this.resourceType = builder.resourceType;
this.tagKey = builder.tagKey;
}
public static Builder builder() {
return new Builder();
}
public static UntagResourcesRequest create() {
return builder().build();
}
/**
* @return all
*/
public Boolean getAll() {
return this.all;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return resourceId
*/
public java.util.List < String > getResourceId() {
return this.resourceId;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
/**
* @return tagKey
*/
public java.util.List < String > getTagKey() {
return this.tagKey;
}
public static final class Builder extends Request.Builder<Builder> {
private Boolean all;
private String regionId;
private java.util.List < String > resourceId;
private String resourceType;
private java.util.List < String > tagKey;
/**
* <p>All.</p>
*/
public Builder all(Boolean all) {
this.putQueryParameter("All", all);
this.all = all;
return this;
}
/**
* <p>RegionId.</p>
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* <p>ResourceId.</p>
*/
public Builder resourceId(java.util.List < String > resourceId) {
this.putQueryParameter("ResourceId", resourceId);
this.resourceId = resourceId;
return this;
}
/**
* <p>ResourceType.</p>
*/
public Builder resourceType(String resourceType) {
this.putQueryParameter("ResourceType", resourceType);
this.resourceType = resourceType;
return this;
}
/**
* <p>TagKey.</p>
*/
public Builder tagKey(java.util.List < String > tagKey) {
this.putQueryParameter("TagKey", tagKey);
this.tagKey = tagKey;
return this;
}
public UntagResourcesRequest build() {
return new UntagResourcesRequest(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/UntagResourcesResponse.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 UntagResourcesResponse} extends {@link TeaModel}
*
* <p>UntagResourcesResponse</p>
*/
public class UntagResourcesResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private UntagResourcesResponseBody body;
private UntagResourcesResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static UntagResourcesResponse 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 UntagResourcesResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private UntagResourcesResponseBody body;
private Builder() {
super();
}
private Builder(UntagResourcesResponse 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(UntagResourcesResponseBody body) {
this.body = body;
return this;
}
public UntagResourcesResponse build() {
return new UntagResourcesResponse(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/UntagResourcesResponseBody.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 UntagResourcesResponseBody} extends {@link TeaModel}
*
* <p>UntagResourcesResponseBody</p>
*/
public class UntagResourcesResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
private UntagResourcesResponseBody(Builder builder) {
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static UntagResourcesResponseBody 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 UntagResourcesResponseBody build() {
return new UntagResourcesResponseBody(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/UpdateStackGroupRequest.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 UpdateStackGroupRequest} extends {@link RequestModel}
*
* <p>UpdateStackGroupRequest</p>
*/
public class UpdateStackGroupRequest extends Request {
@Query
@NameInMap("AccountIds")
private java.util.List < String > accountIds;
@Query
@NameInMap("AdministrationRoleName")
private String administrationRoleName;
@Query
@NameInMap("AutoDeployment")
private AutoDeployment autoDeployment;
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("DeploymentTargets")
private DeploymentTargets deploymentTargets;
@Query
@NameInMap("Description")
private String description;
@Query
@NameInMap("ExecutionRoleName")
private String executionRoleName;
@Query
@NameInMap("OperationDescription")
private String operationDescription;
@Query
@NameInMap("OperationPreferences")
private java.util.Map < String, ? > operationPreferences;
@Query
@NameInMap("Parameters")
private java.util.List < Parameters> parameters;
@Query
@NameInMap("PermissionModel")
private String permissionModel;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("RegionIds")
private java.util.List < String > regionIds;
@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 UpdateStackGroupRequest(Builder builder) {
super(builder);
this.accountIds = builder.accountIds;
this.administrationRoleName = builder.administrationRoleName;
this.autoDeployment = builder.autoDeployment;
this.clientToken = builder.clientToken;
this.deploymentTargets = builder.deploymentTargets;
this.description = builder.description;
this.executionRoleName = builder.executionRoleName;
this.operationDescription = builder.operationDescription;
this.operationPreferences = builder.operationPreferences;
this.parameters = builder.parameters;
this.permissionModel = builder.permissionModel;
this.regionId = builder.regionId;
this.regionIds = builder.regionIds;
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 UpdateStackGroupRequest create() {
return builder().build();
}
/**
* @return accountIds
*/
public java.util.List < String > getAccountIds() {
return this.accountIds;
}
/**
* @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 deploymentTargets
*/
public DeploymentTargets getDeploymentTargets() {
return this.deploymentTargets;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return executionRoleName
*/
public String getExecutionRoleName() {
return this.executionRoleName;
}
/**
* @return operationDescription
*/
public String getOperationDescription() {
return this.operationDescription;
}
/**
* @return operationPreferences
*/
public java.util.Map < String, ? > getOperationPreferences() {
return this.operationPreferences;
}
/**
* @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 regionIds
*/
public java.util.List < String > getRegionIds() {
return this.regionIds;
}
/**
* @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 java.util.List < String > accountIds;
private String administrationRoleName;
private AutoDeployment autoDeployment;
private String clientToken;
private DeploymentTargets deploymentTargets;
private String description;
private String executionRoleName;
private String operationDescription;
private java.util.Map < String, ? > operationPreferences;
private java.util.List < Parameters> parameters;
private String permissionModel;
private String regionId;
private java.util.List < String > regionIds;
private String stackGroupName;
private String templateBody;
private String templateId;
private String templateURL;
private String templateVersion;
/**
* <p>AccountIds.</p>
*/
public Builder accountIds(java.util.List < String > accountIds) {
this.putQueryParameter("AccountIds", accountIds);
this.accountIds = accountIds;
return this;
}
/**
* <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>DeploymentTargets.</p>
*/
public Builder deploymentTargets(DeploymentTargets deploymentTargets) {
this.putQueryParameter("DeploymentTargets", deploymentTargets);
this.deploymentTargets = deploymentTargets;
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>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>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>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>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 UpdateStackGroupRequest build() {
return new UpdateStackGroupRequest(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 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 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/UpdateStackGroupResponse.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 UpdateStackGroupResponse} extends {@link TeaModel}
*
* <p>UpdateStackGroupResponse</p>
*/
public class UpdateStackGroupResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private UpdateStackGroupResponseBody body;
private UpdateStackGroupResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static UpdateStackGroupResponse 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 UpdateStackGroupResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private UpdateStackGroupResponseBody body;
private Builder() {
super();
}
private Builder(UpdateStackGroupResponse 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(UpdateStackGroupResponseBody body) {
this.body = body;
return this;
}
public UpdateStackGroupResponse build() {
return new UpdateStackGroupResponse(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/UpdateStackGroupResponseBody.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 UpdateStackGroupResponseBody} extends {@link TeaModel}
*
* <p>UpdateStackGroupResponseBody</p>
*/
public class UpdateStackGroupResponseBody extends TeaModel {
@NameInMap("OperationId")
private String operationId;
@NameInMap("RequestId")
private String requestId;
private UpdateStackGroupResponseBody(Builder builder) {
this.operationId = builder.operationId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static UpdateStackGroupResponseBody 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 UpdateStackGroupResponseBody build() {
return new UpdateStackGroupResponseBody(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/UpdateStackInstancesRequest.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 UpdateStackInstancesRequest} extends {@link RequestModel}
*
* <p>UpdateStackInstancesRequest</p>
*/
public class UpdateStackInstancesRequest 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("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 UpdateStackInstancesRequest(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.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 UpdateStackInstancesRequest 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 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 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>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 UpdateStackInstancesRequest build() {
return new UpdateStackInstancesRequest(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 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/UpdateStackInstancesResponse.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 UpdateStackInstancesResponse} extends {@link TeaModel}
*
* <p>UpdateStackInstancesResponse</p>
*/
public class UpdateStackInstancesResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private UpdateStackInstancesResponseBody body;
private UpdateStackInstancesResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static UpdateStackInstancesResponse 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 UpdateStackInstancesResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private UpdateStackInstancesResponseBody body;
private Builder() {
super();
}
private Builder(UpdateStackInstancesResponse 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(UpdateStackInstancesResponseBody body) {
this.body = body;
return this;
}
public UpdateStackInstancesResponse build() {
return new UpdateStackInstancesResponse(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/UpdateStackInstancesResponseBody.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 UpdateStackInstancesResponseBody} extends {@link TeaModel}
*
* <p>UpdateStackInstancesResponseBody</p>
*/
public class UpdateStackInstancesResponseBody extends TeaModel {
@NameInMap("OperationId")
private String operationId;
@NameInMap("RequestId")
private String requestId;
private UpdateStackInstancesResponseBody(Builder builder) {
this.operationId = builder.operationId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static UpdateStackInstancesResponseBody 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 UpdateStackInstancesResponseBody build() {
return new UpdateStackInstancesResponseBody(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/UpdateStackRequest.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 UpdateStackRequest} extends {@link RequestModel}
*
* <p>UpdateStackRequest</p>
*/
public class UpdateStackRequest extends Request {
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("DisableRollback")
private Boolean disableRollback;
@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("StackId")
private String stackId;
@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("Tags")
private java.util.List < Tags> tags;
@Query
@NameInMap("TemplateBody")
private String templateBody;
@Query
@NameInMap("TemplateId")
private String templateId;
@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 UpdateStackRequest(Builder builder) {
super(builder);
this.clientToken = builder.clientToken;
this.disableRollback = builder.disableRollback;
this.parallelism = builder.parallelism;
this.parameters = builder.parameters;
this.ramRoleName = builder.ramRoleName;
this.regionId = builder.regionId;
this.replacementOption = builder.replacementOption;
this.stackId = builder.stackId;
this.stackPolicyBody = builder.stackPolicyBody;
this.stackPolicyDuringUpdateBody = builder.stackPolicyDuringUpdateBody;
this.stackPolicyDuringUpdateURL = builder.stackPolicyDuringUpdateURL;
this.stackPolicyURL = builder.stackPolicyURL;
this.tags = builder.tags;
this.templateBody = builder.templateBody;
this.templateId = builder.templateId;
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 UpdateStackRequest create() {
return builder().build();
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return disableRollback
*/
public Boolean getDisableRollback() {
return this.disableRollback;
}
/**
* @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 stackId
*/
public String getStackId() {
return this.stackId;
}
/**
* @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 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 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 clientToken;
private Boolean disableRollback;
private Long parallelism;
private java.util.List < Parameters> parameters;
private String ramRoleName;
private String regionId;
private String replacementOption;
private String stackId;
private String stackPolicyBody;
private String stackPolicyDuringUpdateBody;
private String stackPolicyDuringUpdateURL;
private String stackPolicyURL;
private java.util.List < Tags> tags;
private String templateBody;
private String templateId;
private String templateURL;
private String templateVersion;
private Long timeoutInMinutes;
private Boolean usePreviousParameters;
/**
* <p>ClientToken.</p>
*/
public Builder clientToken(String clientToken) {
this.putQueryParameter("ClientToken", clientToken);
this.clientToken = clientToken;
return this;
}
/**
* <p>DisableRollback.</p>
*/
public Builder disableRollback(Boolean disableRollback) {
this.putQueryParameter("DisableRollback", disableRollback);
this.disableRollback = disableRollback;
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>StackId.</p>
*/
public Builder stackId(String stackId) {
this.putQueryParameter("StackId", stackId);
this.stackId = stackId;
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>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>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 UpdateStackRequest build() {
return new UpdateStackRequest(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/UpdateStackResponse.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 UpdateStackResponse} extends {@link TeaModel}
*
* <p>UpdateStackResponse</p>
*/
public class UpdateStackResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private UpdateStackResponseBody body;
private UpdateStackResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static UpdateStackResponse 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 UpdateStackResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private UpdateStackResponseBody body;
private Builder() {
super();
}
private Builder(UpdateStackResponse 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(UpdateStackResponseBody body) {
this.body = body;
return this;
}
public UpdateStackResponse build() {
return new UpdateStackResponse(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/UpdateStackResponseBody.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 UpdateStackResponseBody} extends {@link TeaModel}
*
* <p>UpdateStackResponseBody</p>
*/
public class UpdateStackResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("StackId")
private String stackId;
private UpdateStackResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.stackId = builder.stackId;
}
public static Builder builder() {
return new Builder();
}
public static UpdateStackResponseBody 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 UpdateStackResponseBody build() {
return new UpdateStackResponseBody(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/UpdateStackTemplateByResourcesRequest.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 UpdateStackTemplateByResourcesRequest} extends {@link RequestModel}
*
* <p>UpdateStackTemplateByResourcesRequest</p>
*/
public class UpdateStackTemplateByResourcesRequest extends Request {
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("DryRun")
private Boolean dryRun;
@Query
@NameInMap("LogicalResourceId")
private java.util.List < String > logicalResourceId;
@Query
@NameInMap("RegionId")
private String regionId;
@Query
@NameInMap("StackId")
private String stackId;
@Query
@NameInMap("TemplateFormat")
private String templateFormat;
private UpdateStackTemplateByResourcesRequest(Builder builder) {
super(builder);
this.clientToken = builder.clientToken;
this.dryRun = builder.dryRun;
this.logicalResourceId = builder.logicalResourceId;
this.regionId = builder.regionId;
this.stackId = builder.stackId;
this.templateFormat = builder.templateFormat;
}
public static Builder builder() {
return new Builder();
}
public static UpdateStackTemplateByResourcesRequest create() {
return builder().build();
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return dryRun
*/
public Boolean getDryRun() {
return this.dryRun;
}
/**
* @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;
}
/**
* @return templateFormat
*/
public String getTemplateFormat() {
return this.templateFormat;
}
public static final class Builder extends Request.Builder<Builder> {
private String clientToken;
private Boolean dryRun;
private java.util.List < String > logicalResourceId;
private String regionId;
private String stackId;
private String templateFormat;
/**
* <p>ClientToken.</p>
*/
public Builder clientToken(String clientToken) {
this.putQueryParameter("ClientToken", clientToken);
this.clientToken = clientToken;
return this;
}
/**
* <p>DryRun.</p>
*/
public Builder dryRun(Boolean dryRun) {
this.putQueryParameter("DryRun", dryRun);
this.dryRun = dryRun;
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;
}
/**
* <p>TemplateFormat.</p>
*/
public Builder templateFormat(String templateFormat) {
this.putQueryParameter("TemplateFormat", templateFormat);
this.templateFormat = templateFormat;
return this;
}
public UpdateStackTemplateByResourcesRequest build() {
return new UpdateStackTemplateByResourcesRequest(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/UpdateStackTemplateByResourcesResponse.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 UpdateStackTemplateByResourcesResponse} extends {@link TeaModel}
*
* <p>UpdateStackTemplateByResourcesResponse</p>
*/
public class UpdateStackTemplateByResourcesResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private UpdateStackTemplateByResourcesResponseBody body;
private UpdateStackTemplateByResourcesResponse(Builder builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static Builder builder() {
return new Builder();
}
public static UpdateStackTemplateByResourcesResponse 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 UpdateStackTemplateByResourcesResponseBody getBody() {
return this.body;
}
public static final class Builder extends Response.Builder {
private java.util.Map < String, String > headers;
private UpdateStackTemplateByResourcesResponseBody body;
private Builder() {
super();
}
private Builder(UpdateStackTemplateByResourcesResponse 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(UpdateStackTemplateByResourcesResponseBody body) {
this.body = body;
return this;
}
public UpdateStackTemplateByResourcesResponse build() {
return new UpdateStackTemplateByResourcesResponse(this);
}
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.