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

com.antgroup.antchain.openapi.deps.models.SlbExecutionProgress 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 SlbExecutionProgress extends TeaModel {
    // 进度 ID
    @NameInMap("id")
    @Validation(required = true)
    public String id;

    // 进度名称
    @NameInMap("name")
    @Validation(required = true)
    public String name;

    // 状态
    @NameInMap("state")
    @Validation(required = true)
    public String state;

    // 挂载权重
    @NameInMap("mount_weights")
    @Validation(required = true)
    public java.util.List mountWeights;

    public static SlbExecutionProgress build(java.util.Map map) throws Exception {
        SlbExecutionProgress self = new SlbExecutionProgress();
        return TeaModel.build(map, self);
    }

    public SlbExecutionProgress setId(String id) {
        this.id = id;
        return this;
    }
    public String getId() {
        return this.id;
    }

    public SlbExecutionProgress setName(String name) {
        this.name = name;
        return this;
    }
    public String getName() {
        return this.name;
    }

    public SlbExecutionProgress setState(String state) {
        this.state = state;
        return this;
    }
    public String getState() {
        return this.state;
    }

    public SlbExecutionProgress 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