![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.polardb20170801.models.DescribeDBClusterMonitorRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.polardb20170801.models;
import com.aliyun.tea.*;
public class DescribeDBClusterMonitorRequest extends TeaModel {
/**
* The cluster ID.
* This parameter is required.
*
* example:
* pc-****************
*/
@NameInMap("DBClusterId")
public String DBClusterId;
@NameInMap("OwnerAccount")
public String ownerAccount;
@NameInMap("OwnerId")
public Long ownerId;
@NameInMap("ResourceOwnerAccount")
public String resourceOwnerAccount;
@NameInMap("ResourceOwnerId")
public Long resourceOwnerId;
public static DescribeDBClusterMonitorRequest build(java.util.Map map) throws Exception {
DescribeDBClusterMonitorRequest self = new DescribeDBClusterMonitorRequest();
return TeaModel.build(map, self);
}
public DescribeDBClusterMonitorRequest setDBClusterId(String DBClusterId) {
this.DBClusterId = DBClusterId;
return this;
}
public String getDBClusterId() {
return this.DBClusterId;
}
public DescribeDBClusterMonitorRequest setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
return this;
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public DescribeDBClusterMonitorRequest setOwnerId(Long ownerId) {
this.ownerId = ownerId;
return this;
}
public Long getOwnerId() {
return this.ownerId;
}
public DescribeDBClusterMonitorRequest setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
return this;
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public DescribeDBClusterMonitorRequest setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
return this;
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy