com.aliyun.eas20210701.models.CreateResourceResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eas20210701 Show documentation
Show all versions of eas20210701 Show documentation
Alibaba Cloud eas (20210701) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eas20210701.models;
import com.aliyun.tea.*;
public class CreateResourceResponseBody extends TeaModel {
/**
* The ID of the cluster to which the resource group belongs.
*
* example:
* cn-shanghai
*/
@NameInMap("ClusterId")
public String clusterId;
/**
* The instance IDs.
*/
@NameInMap("InstanceIds")
public java.util.List instanceIds;
/**
* The user ID (UID) of the resource group owner.
*
* example:
* 14401087478****
*/
@NameInMap("OwnerUid")
public String ownerUid;
/**
* The request ID.
*
* example:
* 40325405-579C-4D82****
*/
@NameInMap("RequestId")
public String requestId;
/**
* The ID of the resource group.
*
* example:
* eas-r-h7lcw24dyqztwxxxxxx
*/
@NameInMap("ResourceId")
public String resourceId;
/**
* The name of the resource group.
*
* example:
* MyResource
*/
@NameInMap("ResourceName")
public String resourceName;
public static CreateResourceResponseBody build(java.util.Map map) throws Exception {
CreateResourceResponseBody self = new CreateResourceResponseBody();
return TeaModel.build(map, self);
}
public CreateResourceResponseBody setClusterId(String clusterId) {
this.clusterId = clusterId;
return this;
}
public String getClusterId() {
return this.clusterId;
}
public CreateResourceResponseBody setInstanceIds(java.util.List instanceIds) {
this.instanceIds = instanceIds;
return this;
}
public java.util.List getInstanceIds() {
return this.instanceIds;
}
public CreateResourceResponseBody setOwnerUid(String ownerUid) {
this.ownerUid = ownerUid;
return this;
}
public String getOwnerUid() {
return this.ownerUid;
}
public CreateResourceResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CreateResourceResponseBody setResourceId(String resourceId) {
this.resourceId = resourceId;
return this;
}
public String getResourceId() {
return this.resourceId;
}
public CreateResourceResponseBody setResourceName(String resourceName) {
this.resourceName = resourceName;
return this;
}
public String getResourceName() {
return this.resourceName;
}
}