com.aliyun.drds20171016.models.ModifyDrdsDBPasswdRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of drds20171016 Show documentation
Show all versions of drds20171016 Show documentation
Alibaba Cloud Distributed Relational Database Service (20171016) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.drds20171016.models;
import com.aliyun.tea.*;
public class ModifyDrdsDBPasswdRequest extends TeaModel {
@NameInMap("DbName")
public String dbName;
@NameInMap("DrdsInstanceId")
public String drdsInstanceId;
@NameInMap("NewPasswd")
public String newPasswd;
public static ModifyDrdsDBPasswdRequest build(java.util.Map map) throws Exception {
ModifyDrdsDBPasswdRequest self = new ModifyDrdsDBPasswdRequest();
return TeaModel.build(map, self);
}
public ModifyDrdsDBPasswdRequest setDbName(String dbName) {
this.dbName = dbName;
return this;
}
public String getDbName() {
return this.dbName;
}
public ModifyDrdsDBPasswdRequest setDrdsInstanceId(String drdsInstanceId) {
this.drdsInstanceId = drdsInstanceId;
return this;
}
public String getDrdsInstanceId() {
return this.drdsInstanceId;
}
public ModifyDrdsDBPasswdRequest setNewPasswd(String newPasswd) {
this.newPasswd = newPasswd;
return this;
}
public String getNewPasswd() {
return this.newPasswd;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy