com.aliyun.hbase20170115.models.DescribeClusterModelRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbase20170115 Show documentation
Show all versions of hbase20170115 Show documentation
Alibaba Cloud ApsaraDB for Hbase (20170115) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.hbase20170115.models;
import com.aliyun.tea.*;
public class DescribeClusterModelRequest extends TeaModel {
@NameInMap("ClusterId")
public String clusterId;
@NameInMap("OwnerId")
public Long ownerId;
@NameInMap("RegionId")
public String regionId;
@NameInMap("ResourceOwnerAccount")
public String resourceOwnerAccount;
@NameInMap("ResourceOwnerId")
public Long resourceOwnerId;
@NameInMap("ZoneId")
public String zoneId;
public static DescribeClusterModelRequest build(java.util.Map map) throws Exception {
DescribeClusterModelRequest self = new DescribeClusterModelRequest();
return TeaModel.build(map, self);
}
public DescribeClusterModelRequest setClusterId(String clusterId) {
this.clusterId = clusterId;
return this;
}
public String getClusterId() {
return this.clusterId;
}
public DescribeClusterModelRequest setOwnerId(Long ownerId) {
this.ownerId = ownerId;
return this;
}
public Long getOwnerId() {
return this.ownerId;
}
public DescribeClusterModelRequest setRegionId(String regionId) {
this.regionId = regionId;
return this;
}
public String getRegionId() {
return this.regionId;
}
public DescribeClusterModelRequest setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
return this;
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public DescribeClusterModelRequest setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
return this;
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public DescribeClusterModelRequest setZoneId(String zoneId) {
this.zoneId = zoneId;
return this;
}
public String getZoneId() {
return this.zoneId;
}
}