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

com.aliyun.drds20171016.models.DescribeShardDBsRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class DescribeShardDBsRequest extends TeaModel {
    @NameInMap("DbName")
    public String dbName;

    @NameInMap("DrdsInstanceId")
    public String drdsInstanceId;

    public static DescribeShardDBsRequest build(java.util.Map map) throws Exception {
        DescribeShardDBsRequest self = new DescribeShardDBsRequest();
        return TeaModel.build(map, self);
    }

    public DescribeShardDBsRequest setDbName(String dbName) {
        this.dbName = dbName;
        return this;
    }
    public String getDbName() {
        return this.dbName;
    }

    public DescribeShardDBsRequest setDrdsInstanceId(String drdsInstanceId) {
        this.drdsInstanceId = drdsInstanceId;
        return this;
    }
    public String getDrdsInstanceId() {
        return this.drdsInstanceId;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy