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

com.antgroup.antchain.openapi.deps.models.OpsGroup 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 OpsGroup extends TeaModel {
    // 运维操作组当前状态。取值列表:
    //                     INITED:初始化完成;
    //                     EXECUTING:执行中;
    //                     SUCCESS:执行成功;
    //                     FAILED:执行失败;
    //                     CANCELED:已取消;
    //                     CONFIRM_WAITING:待确认
    //                 
    @NameInMap("status")
    public String status;

    // 包含在此运维操作组中的运维单元列表
    @NameInMap("units")
    public java.util.List units;

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

    public OpsGroup setStatus(String status) {
        this.status = status;
        return this;
    }
    public String getStatus() {
        return this.status;
    }

    public OpsGroup setUnits(java.util.List units) {
        this.units = units;
        return this;
    }
    public java.util.List getUnits() {
        return this.units;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy