All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dds20151201.models.DescribeParametersRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dds20151201.models;

import com.aliyun.tea.*;

public class DescribeParametersRequest extends TeaModel {
    /**
     * 

The role of the instance. Valid values:

*
*

* db: a shard node.

*

* cs: a Configserver node.

*

* mongos: a mongos node.

*/ @NameInMap("CharacterType") public String characterType; /** *

The instance ID.

*
*

> If you set this parameter to the ID of a sharded cluster instance, you must also specify the **NodeId** parameter.

*/ @NameInMap("DBInstanceId") public String DBInstanceId; /** *

The parameter that is available in the future.

*/ @NameInMap("ExtraParam") public String extraParam; /** *

The ID of the mongos or shard node in the specified sharded cluster instance.

*
*

> This parameter is valid only when you specify the **DBInstanceId** parameter to the ID of a sharded cluster instance.

*/ @NameInMap("NodeId") public String nodeId; @NameInMap("OwnerAccount") public String ownerAccount; @NameInMap("OwnerId") public Long ownerId; @NameInMap("ResourceOwnerAccount") public String resourceOwnerAccount; @NameInMap("ResourceOwnerId") public Long resourceOwnerId; @NameInMap("SecurityToken") public String securityToken; public static DescribeParametersRequest build(java.util.Map map) throws Exception { DescribeParametersRequest self = new DescribeParametersRequest(); return TeaModel.build(map, self); } public DescribeParametersRequest setCharacterType(String characterType) { this.characterType = characterType; return this; } public String getCharacterType() { return this.characterType; } public DescribeParametersRequest setDBInstanceId(String DBInstanceId) { this.DBInstanceId = DBInstanceId; return this; } public String getDBInstanceId() { return this.DBInstanceId; } public DescribeParametersRequest setExtraParam(String extraParam) { this.extraParam = extraParam; return this; } public String getExtraParam() { return this.extraParam; } public DescribeParametersRequest setNodeId(String nodeId) { this.nodeId = nodeId; return this; } public String getNodeId() { return this.nodeId; } public DescribeParametersRequest setOwnerAccount(String ownerAccount) { this.ownerAccount = ownerAccount; return this; } public String getOwnerAccount() { return this.ownerAccount; } public DescribeParametersRequest setOwnerId(Long ownerId) { this.ownerId = ownerId; return this; } public Long getOwnerId() { return this.ownerId; } public DescribeParametersRequest setResourceOwnerAccount(String resourceOwnerAccount) { this.resourceOwnerAccount = resourceOwnerAccount; return this; } public String getResourceOwnerAccount() { return this.resourceOwnerAccount; } public DescribeParametersRequest setResourceOwnerId(Long resourceOwnerId) { this.resourceOwnerId = resourceOwnerId; return this; } public Long getResourceOwnerId() { return this.resourceOwnerId; } public DescribeParametersRequest setSecurityToken(String securityToken) { this.securityToken = securityToken; return this; } public String getSecurityToken() { return this.securityToken; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy