com.antgroup.antchain.openapi.deps.models.VServerGroupMountInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-deps Show documentation
Show all versions of openapi-deps Show documentation
Ant Chain deps SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;
import com.aliyun.tea.*;
public class VServerGroupMountInfo extends TeaModel {
// iaas id
@NameInMap("iaas_id")
@Validation(required = true)
public String iaasId;
// 名称
@NameInMap("name")
@Validation(required = true)
public String name;
// paas id
@NameInMap("paas_id")
@Validation(required = true)
public String paasId;
// 权重信息
@NameInMap("mount_weights")
@Validation(required = true)
public java.util.List mountWeights;
public static VServerGroupMountInfo build(java.util.Map map) throws Exception {
VServerGroupMountInfo self = new VServerGroupMountInfo();
return TeaModel.build(map, self);
}
public VServerGroupMountInfo setIaasId(String iaasId) {
this.iaasId = iaasId;
return this;
}
public String getIaasId() {
return this.iaasId;
}
public VServerGroupMountInfo setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public VServerGroupMountInfo setPaasId(String paasId) {
this.paasId = paasId;
return this;
}
public String getPaasId() {
return this.paasId;
}
public VServerGroupMountInfo setMountWeights(java.util.List mountWeights) {
this.mountWeights = mountWeights;
return this;
}
public java.util.List getMountWeights() {
return this.mountWeights;
}
}