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

com.antgroup.antchain.openapi.deps.models.VServerGroupMountInfo Maven / Gradle / Ivy

There is a newer version: 3.2.40
Show newest version
// 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy