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

com.aliyun.dataphin_public20230630.models.ListInstancesResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dataphin_public20230630.models;

import com.aliyun.tea.*;

public class ListInstancesResponseBody extends TeaModel {
    /**
     * example:
     * 

OK

*/ @NameInMap("Code") public String code; /** * example: *

200

*/ @NameInMap("HttpStatusCode") public Integer httpStatusCode; /** * example: *

successful

*/ @NameInMap("Message") public String message; @NameInMap("PageResult") public ListInstancesResponseBodyPageResult pageResult; /** * example: *

75DD06F8-1661-5A6E-B0A6-7E23133BDC60

*/ @NameInMap("RequestId") public String requestId; @NameInMap("Success") public Boolean success; public static ListInstancesResponseBody build(java.util.Map map) throws Exception { ListInstancesResponseBody self = new ListInstancesResponseBody(); return TeaModel.build(map, self); } public ListInstancesResponseBody setCode(String code) { this.code = code; return this; } public String getCode() { return this.code; } public ListInstancesResponseBody setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; return this; } public Integer getHttpStatusCode() { return this.httpStatusCode; } public ListInstancesResponseBody setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public ListInstancesResponseBody setPageResult(ListInstancesResponseBodyPageResult pageResult) { this.pageResult = pageResult; return this; } public ListInstancesResponseBodyPageResult getPageResult() { return this.pageResult; } public ListInstancesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public ListInstancesResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } public static class ListInstancesResponseBodyPageResultDataNodeInfoCreator extends TeaModel { /** * example: *

21313112

*/ @NameInMap("Id") public String id; @NameInMap("Name") public String name; public static ListInstancesResponseBodyPageResultDataNodeInfoCreator build(java.util.Map map) throws Exception { ListInstancesResponseBodyPageResultDataNodeInfoCreator self = new ListInstancesResponseBodyPageResultDataNodeInfoCreator(); return TeaModel.build(map, self); } public ListInstancesResponseBodyPageResultDataNodeInfoCreator setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public ListInstancesResponseBodyPageResultDataNodeInfoCreator setName(String name) { this.name = name; return this; } public String getName() { return this.name; } } public static class ListInstancesResponseBodyPageResultDataNodeInfoModifier extends TeaModel { /** * example: *

21313112

*/ @NameInMap("Id") public String id; @NameInMap("Name") public String name; public static ListInstancesResponseBodyPageResultDataNodeInfoModifier build(java.util.Map map) throws Exception { ListInstancesResponseBodyPageResultDataNodeInfoModifier self = new ListInstancesResponseBodyPageResultDataNodeInfoModifier(); return TeaModel.build(map, self); } public ListInstancesResponseBodyPageResultDataNodeInfoModifier setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public ListInstancesResponseBodyPageResultDataNodeInfoModifier setName(String name) { this.name = name; return this; } public String getName() { return this.name; } } public static class ListInstancesResponseBodyPageResultDataNodeInfoOwnerList extends TeaModel { /** * example: *

21313112

*/ @NameInMap("Id") public String id; @NameInMap("Name") public String name; public static ListInstancesResponseBodyPageResultDataNodeInfoOwnerList build(java.util.Map map) throws Exception { ListInstancesResponseBodyPageResultDataNodeInfoOwnerList self = new ListInstancesResponseBodyPageResultDataNodeInfoOwnerList(); return TeaModel.build(map, self); } public ListInstancesResponseBodyPageResultDataNodeInfoOwnerList setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public ListInstancesResponseBodyPageResultDataNodeInfoOwnerList setName(String name) { this.name = name; return this; } public String getName() { return this.name; } } public static class ListInstancesResponseBodyPageResultDataNodeInfo extends TeaModel { @NameInMap("BizUnitName") public String bizUnitName; /** * example: *

2024-05-30 16:47:13

*/ @NameInMap("CreateTime") public String createTime; @NameInMap("Creator") public ListInstancesResponseBodyPageResultDataNodeInfoCreator creator; @NameInMap("Description") public String description; /** * example: *

false

*/ @NameInMap("DryRun") public Boolean dryRun; /** * example: *

DATA_PROCES

*/ @NameInMap("From") public String from; /** * example: *

false

*/ @NameInMap("HasDev") public Boolean hasDev; /** * example: *

true

*/ @NameInMap("HasProd") public Boolean hasProd; /** * example: *

n_132331

*/ @NameInMap("Id") public String id; /** * example: *

2024-05-30 16:47:13

*/ @NameInMap("LastModifiedTime") public String lastModifiedTime; @NameInMap("Modifier") public ListInstancesResponseBodyPageResultDataNodeInfoModifier modifier; @NameInMap("Name") public String name; @NameInMap("OwnerList") public java.util.List ownerList; @NameInMap("PriorityList") public java.util.List priorityList; @NameInMap("ResourceGroupList") public java.util.List resourceGroupList; /** * example: *

false

*/ @NameInMap("SchedulePaused") public Boolean schedulePaused; @NameInMap("SchedulePeriodList") public java.util.List schedulePeriodList; /** * example: *

SHELL

*/ @NameInMap("SubDetailType") public String subDetailType; /** * example: *

DATA_PROCES

*/ @NameInMap("Type") public String type; public static ListInstancesResponseBodyPageResultDataNodeInfo build(java.util.Map map) throws Exception { ListInstancesResponseBodyPageResultDataNodeInfo self = new ListInstancesResponseBodyPageResultDataNodeInfo(); return TeaModel.build(map, self); } public ListInstancesResponseBodyPageResultDataNodeInfo setBizUnitName(String bizUnitName) { this.bizUnitName = bizUnitName; return this; } public String getBizUnitName() { return this.bizUnitName; } public ListInstancesResponseBodyPageResultDataNodeInfo setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public ListInstancesResponseBodyPageResultDataNodeInfo setCreator(ListInstancesResponseBodyPageResultDataNodeInfoCreator creator) { this.creator = creator; return this; } public ListInstancesResponseBodyPageResultDataNodeInfoCreator getCreator() { return this.creator; } public ListInstancesResponseBodyPageResultDataNodeInfo setDescription(String description) { this.description = description; return this; } public String getDescription() { return this.description; } public ListInstancesResponseBodyPageResultDataNodeInfo setDryRun(Boolean dryRun) { this.dryRun = dryRun; return this; } public Boolean getDryRun() { return this.dryRun; } public ListInstancesResponseBodyPageResultDataNodeInfo setFrom(String from) { this.from = from; return this; } public String getFrom() { return this.from; } public ListInstancesResponseBodyPageResultDataNodeInfo setHasDev(Boolean hasDev) { this.hasDev = hasDev; return this; } public Boolean getHasDev() { return this.hasDev; } public ListInstancesResponseBodyPageResultDataNodeInfo setHasProd(Boolean hasProd) { this.hasProd = hasProd; return this; } public Boolean getHasProd() { return this.hasProd; } public ListInstancesResponseBodyPageResultDataNodeInfo setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public ListInstancesResponseBodyPageResultDataNodeInfo setLastModifiedTime(String lastModifiedTime) { this.lastModifiedTime = lastModifiedTime; return this; } public String getLastModifiedTime() { return this.lastModifiedTime; } public ListInstancesResponseBodyPageResultDataNodeInfo setModifier(ListInstancesResponseBodyPageResultDataNodeInfoModifier modifier) { this.modifier = modifier; return this; } public ListInstancesResponseBodyPageResultDataNodeInfoModifier getModifier() { return this.modifier; } public ListInstancesResponseBodyPageResultDataNodeInfo setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public ListInstancesResponseBodyPageResultDataNodeInfo setOwnerList(java.util.List ownerList) { this.ownerList = ownerList; return this; } public java.util.List getOwnerList() { return this.ownerList; } public ListInstancesResponseBodyPageResultDataNodeInfo setPriorityList(java.util.List priorityList) { this.priorityList = priorityList; return this; } public java.util.List getPriorityList() { return this.priorityList; } public ListInstancesResponseBodyPageResultDataNodeInfo setResourceGroupList(java.util.List resourceGroupList) { this.resourceGroupList = resourceGroupList; return this; } public java.util.List getResourceGroupList() { return this.resourceGroupList; } public ListInstancesResponseBodyPageResultDataNodeInfo setSchedulePaused(Boolean schedulePaused) { this.schedulePaused = schedulePaused; return this; } public Boolean getSchedulePaused() { return this.schedulePaused; } public ListInstancesResponseBodyPageResultDataNodeInfo setSchedulePeriodList(java.util.List schedulePeriodList) { this.schedulePeriodList = schedulePeriodList; return this; } public java.util.List getSchedulePeriodList() { return this.schedulePeriodList; } public ListInstancesResponseBodyPageResultDataNodeInfo setSubDetailType(String subDetailType) { this.subDetailType = subDetailType; return this; } public String getSubDetailType() { return this.subDetailType; } public ListInstancesResponseBodyPageResultDataNodeInfo setType(String type) { this.type = type; return this; } public String getType() { return this.type; } } public static class ListInstancesResponseBodyPageResultData extends TeaModel { /** * example: *

2024-05-30

*/ @NameInMap("BizDate") public String bizDate; /** * example: *

2024-05-30 16:47:13

*/ @NameInMap("DueTime") public String dueTime; /** * example: *

60s

*/ @NameInMap("Duration") public String duration; /** * example: *

2024-05-30 16:47:13

*/ @NameInMap("EndExecuteTime") public Long endExecuteTime; /** * example: *

xx

*/ @NameInMap("ExtendInfo") public String extendInfo; /** * example: *

t_23231

*/ @NameInMap("Id") public String id; /** * example: *

1

*/ @NameInMap("Index") public Integer index; @NameInMap("NodeInfo") public ListInstancesResponseBodyPageResultDataNodeInfo nodeInfo; /** * example: *

2024-05-30 16:46:13

*/ @NameInMap("StartExecuteTime") public Long startExecuteTime; @NameInMap("StatusList") public java.util.List statusList; public static ListInstancesResponseBodyPageResultData build(java.util.Map map) throws Exception { ListInstancesResponseBodyPageResultData self = new ListInstancesResponseBodyPageResultData(); return TeaModel.build(map, self); } public ListInstancesResponseBodyPageResultData setBizDate(String bizDate) { this.bizDate = bizDate; return this; } public String getBizDate() { return this.bizDate; } public ListInstancesResponseBodyPageResultData setDueTime(String dueTime) { this.dueTime = dueTime; return this; } public String getDueTime() { return this.dueTime; } public ListInstancesResponseBodyPageResultData setDuration(String duration) { this.duration = duration; return this; } public String getDuration() { return this.duration; } public ListInstancesResponseBodyPageResultData setEndExecuteTime(Long endExecuteTime) { this.endExecuteTime = endExecuteTime; return this; } public Long getEndExecuteTime() { return this.endExecuteTime; } public ListInstancesResponseBodyPageResultData setExtendInfo(String extendInfo) { this.extendInfo = extendInfo; return this; } public String getExtendInfo() { return this.extendInfo; } public ListInstancesResponseBodyPageResultData setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public ListInstancesResponseBodyPageResultData setIndex(Integer index) { this.index = index; return this; } public Integer getIndex() { return this.index; } public ListInstancesResponseBodyPageResultData setNodeInfo(ListInstancesResponseBodyPageResultDataNodeInfo nodeInfo) { this.nodeInfo = nodeInfo; return this; } public ListInstancesResponseBodyPageResultDataNodeInfo getNodeInfo() { return this.nodeInfo; } public ListInstancesResponseBodyPageResultData setStartExecuteTime(Long startExecuteTime) { this.startExecuteTime = startExecuteTime; return this; } public Long getStartExecuteTime() { return this.startExecuteTime; } public ListInstancesResponseBodyPageResultData setStatusList(java.util.List statusList) { this.statusList = statusList; return this; } public java.util.List getStatusList() { return this.statusList; } } public static class ListInstancesResponseBodyPageResult extends TeaModel { @NameInMap("Data") public java.util.List data; /** * example: *

107

*/ @NameInMap("TotalCount") public Integer totalCount; public static ListInstancesResponseBodyPageResult build(java.util.Map map) throws Exception { ListInstancesResponseBodyPageResult self = new ListInstancesResponseBodyPageResult(); return TeaModel.build(map, self); } public ListInstancesResponseBodyPageResult setData(java.util.List data) { this.data = data; return this; } public java.util.List getData() { return this.data; } public ListInstancesResponseBodyPageResult setTotalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public Integer getTotalCount() { return this.totalCount; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy