com.aliyun.polardb20170801.models.DescribeDBClusterConnectivityRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polardb20170801 Show documentation
Show all versions of polardb20170801 Show documentation
Alibaba Cloud ApsaraDB for POLARDB (20170801) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.polardb20170801.models;
import com.aliyun.tea.*;
public class DescribeDBClusterConnectivityRequest extends TeaModel {
/**
* The cluster ID.
* This parameter is required.
*
* example:
* pc-xxxxxxxxxxxxx
*/
@NameInMap("DBClusterId")
public String DBClusterId;
@NameInMap("OwnerAccount")
public String ownerAccount;
@NameInMap("OwnerId")
public Long ownerId;
/**
* The ID of the resource group.
*
* example:
* rg-************
*/
@NameInMap("ResourceGroupId")
public String resourceGroupId;
@NameInMap("ResourceOwnerAccount")
public String resourceOwnerAccount;
@NameInMap("ResourceOwnerId")
public Long resourceOwnerId;
@NameInMap("SecurityToken")
public String securityToken;
/**
* The source IP address.
* This parameter is required.
*
* example:
* 192...1
*/
@NameInMap("SourceIpAddress")
public String sourceIpAddress;
public static DescribeDBClusterConnectivityRequest build(java.util.Map map) throws Exception {
DescribeDBClusterConnectivityRequest self = new DescribeDBClusterConnectivityRequest();
return TeaModel.build(map, self);
}
public DescribeDBClusterConnectivityRequest setDBClusterId(String DBClusterId) {
this.DBClusterId = DBClusterId;
return this;
}
public String getDBClusterId() {
return this.DBClusterId;
}
public DescribeDBClusterConnectivityRequest setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
return this;
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public DescribeDBClusterConnectivityRequest setOwnerId(Long ownerId) {
this.ownerId = ownerId;
return this;
}
public Long getOwnerId() {
return this.ownerId;
}
public DescribeDBClusterConnectivityRequest setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
return this;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public DescribeDBClusterConnectivityRequest setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
return this;
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public DescribeDBClusterConnectivityRequest setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
return this;
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public DescribeDBClusterConnectivityRequest setSecurityToken(String securityToken) {
this.securityToken = securityToken;
return this;
}
public String getSecurityToken() {
return this.securityToken;
}
public DescribeDBClusterConnectivityRequest setSourceIpAddress(String sourceIpAddress) {
this.sourceIpAddress = sourceIpAddress;
return this;
}
public String getSourceIpAddress() {
return this.sourceIpAddress;
}
}