com.aliyun.dingtalkyida_1_0.models.GetDbConfigResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkyida_1_0.models;
import com.aliyun.tea.*;
public class GetDbConfigResponseBody extends TeaModel {
/**
* example:
* {"dbName":"yida_exclusive_pg_db","exclusiveType":"DATABASE","maxActive":1600,"minIdle":160,"password":"xxx","sharding":true,"type":"POSTGRES","url":"pgm-bp17c85t9363an74194040.pg.rds.aliyuncs.com:0000","username":"yida_xxx"}
*/
@NameInMap("config")
public String config;
/**
* example:
* ding5d17e3add038d44535c2f4657eb6378f
*/
@NameInMap("corpId")
public String corpId;
/**
* example:
* 2022-02-23T14:46Z
*/
@NameInMap("createTimeGMT")
public String createTimeGMT;
/**
* example:
* 092824253426603595
*/
@NameInMap("creator")
public String creator;
/**
* example:
* ding5d17e3add038d44535c2f4657eb6378f
*/
@NameInMap("exclusive")
public String exclusive;
/**
* example:
* 600001
*/
@NameInMap("id")
public String id;
/**
* example:
* 2023-08-15T10:37Z
*/
@NameInMap("modifiedTimeGMT")
public String modifiedTimeGMT;
/**
* example:
* 5014533041684350
*/
@NameInMap("modifier")
public String modifier;
/**
* example:
* DATABASE
*/
@NameInMap("type")
public String type;
public static GetDbConfigResponseBody build(java.util.Map map) throws Exception {
GetDbConfigResponseBody self = new GetDbConfigResponseBody();
return TeaModel.build(map, self);
}
public GetDbConfigResponseBody setConfig(String config) {
this.config = config;
return this;
}
public String getConfig() {
return this.config;
}
public GetDbConfigResponseBody setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public GetDbConfigResponseBody setCreateTimeGMT(String createTimeGMT) {
this.createTimeGMT = createTimeGMT;
return this;
}
public String getCreateTimeGMT() {
return this.createTimeGMT;
}
public GetDbConfigResponseBody setCreator(String creator) {
this.creator = creator;
return this;
}
public String getCreator() {
return this.creator;
}
public GetDbConfigResponseBody setExclusive(String exclusive) {
this.exclusive = exclusive;
return this;
}
public String getExclusive() {
return this.exclusive;
}
public GetDbConfigResponseBody setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetDbConfigResponseBody setModifiedTimeGMT(String modifiedTimeGMT) {
this.modifiedTimeGMT = modifiedTimeGMT;
return this;
}
public String getModifiedTimeGMT() {
return this.modifiedTimeGMT;
}
public GetDbConfigResponseBody setModifier(String modifier) {
this.modifier = modifier;
return this;
}
public String getModifier() {
return this.modifier;
}
public GetDbConfigResponseBody setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}