com.antgroup.antchain.openapi.deps.models.GetDeploymentApplicationResponse 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 GetDeploymentApplicationResponse extends TeaModel {
@NameInMap("req_msg_id")
public String reqMsgId;
@NameInMap("result_code")
public String resultCode;
@NameInMap("result_msg")
public String resultMsg;
// 此应用下所有计算容器分组运维状态详情
@NameInMap("groups")
@Validation(required = true)
public java.util.List groups;
// 应用(服务)当前运维状态。取值列表:INITING:初始化中;INIT_FAILED:初始化失败;INITED:初始化完成;
// EXECUTING:执行中;SUCCESS:执行成功;FAILED:执行失败
//
@NameInMap("status")
@Validation(required = true)
public String status;
public static GetDeploymentApplicationResponse build(java.util.Map map) throws Exception {
GetDeploymentApplicationResponse self = new GetDeploymentApplicationResponse();
return TeaModel.build(map, self);
}
public GetDeploymentApplicationResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public GetDeploymentApplicationResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public GetDeploymentApplicationResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public GetDeploymentApplicationResponse setGroups(java.util.List groups) {
this.groups = groups;
return this;
}
public java.util.List getGroups() {
return this.groups;
}
public GetDeploymentApplicationResponse setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
}