com.antgroup.antchain.openapi.rms.models.OpsmetaSchema Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-rms Show documentation
Show all versions of openapi-rms Show documentation
Ant Chain RMS SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.rms.models;
import com.aliyun.tea.*;
public class OpsmetaSchema extends TeaModel {
// envs
@NameInMap("envs")
@Validation(required = true)
public java.util.List envs;
// idc
@NameInMap("idc")
@Validation(required = true)
public OpsFilter idc;
// ldc
@NameInMap("ldc")
@Validation(required = true)
public OpsFilter ldc;
// server
@NameInMap("server")
@Validation(required = true)
public OpsFilter server;
public static OpsmetaSchema build(java.util.Map map) throws Exception {
OpsmetaSchema self = new OpsmetaSchema();
return TeaModel.build(map, self);
}
public OpsmetaSchema setEnvs(java.util.List envs) {
this.envs = envs;
return this;
}
public java.util.List getEnvs() {
return this.envs;
}
public OpsmetaSchema setIdc(OpsFilter idc) {
this.idc = idc;
return this;
}
public OpsFilter getIdc() {
return this.idc;
}
public OpsmetaSchema setLdc(OpsFilter ldc) {
this.ldc = ldc;
return this;
}
public OpsFilter getLdc() {
return this.ldc;
}
public OpsmetaSchema setServer(OpsFilter server) {
this.server = server;
return this;
}
public OpsFilter getServer() {
return this.server;
}
}