com.antgroup.antchain.openapi.deps.models.DeploymentZone 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 DeploymentZone extends TeaModel {
// id
@NameInMap("id")
@Validation(required = true)
public String id;
// 名称
@NameInMap("name")
@Validation(required = true)
public String name;
// 显示名
@NameInMap("display_name")
@Validation(required = true)
public String displayName;
// 描述
@NameInMap("description")
@Validation(required = true)
public String description;
// 环境 id
@NameInMap("workspace_id")
@Validation(required = true)
public String workspaceId;
// 工作空间组 id
@NameInMap("workspace_group_id")
@Validation(required = true)
public String workspaceGroupId;
// 状态
@NameInMap("status")
@Validation(required = true)
public String status;
// 主可用区 ID
@NameInMap("master_zone_id")
@Validation(required = true)
public String masterZoneId;
// 附属可用区 ID
@NameInMap("appended_zone_ids")
@Validation(required = true)
public java.util.List appendedZoneIds;
// 包含部署单元
@NameInMap("cells")
@Validation(required = true)
public java.util.List cells;
public static DeploymentZone build(java.util.Map map) throws Exception {
DeploymentZone self = new DeploymentZone();
return TeaModel.build(map, self);
}
public DeploymentZone setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public DeploymentZone setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public DeploymentZone setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
public DeploymentZone setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public DeploymentZone setWorkspaceId(String workspaceId) {
this.workspaceId = workspaceId;
return this;
}
public String getWorkspaceId() {
return this.workspaceId;
}
public DeploymentZone setWorkspaceGroupId(String workspaceGroupId) {
this.workspaceGroupId = workspaceGroupId;
return this;
}
public String getWorkspaceGroupId() {
return this.workspaceGroupId;
}
public DeploymentZone setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public DeploymentZone setMasterZoneId(String masterZoneId) {
this.masterZoneId = masterZoneId;
return this;
}
public String getMasterZoneId() {
return this.masterZoneId;
}
public DeploymentZone setAppendedZoneIds(java.util.List appendedZoneIds) {
this.appendedZoneIds = appendedZoneIds;
return this;
}
public java.util.List getAppendedZoneIds() {
return this.appendedZoneIds;
}
public DeploymentZone setCells(java.util.List cells) {
this.cells = cells;
return this;
}
public java.util.List getCells() {
return this.cells;
}
}
| | |