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

com.aliyun.sdk.service.dataphin_public20230630.models.GetInstanceDownStreamResponseBody Maven / Gradle / Ivy

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

import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * 
 * {@link GetInstanceDownStreamResponseBody} extends {@link TeaModel}
 *
 * 

GetInstanceDownStreamResponseBody

*/ public class GetInstanceDownStreamResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Code") private String code; @com.aliyun.core.annotation.NameInMap("HttpStatusCode") private Integer httpStatusCode; @com.aliyun.core.annotation.NameInMap("InstanceRelationList") private java.util.List instanceRelationList; @com.aliyun.core.annotation.NameInMap("Message") private String message; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("Success") private Boolean success; private GetInstanceDownStreamResponseBody(Builder builder) { this.code = builder.code; this.httpStatusCode = builder.httpStatusCode; this.instanceRelationList = builder.instanceRelationList; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static GetInstanceDownStreamResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return httpStatusCode */ public Integer getHttpStatusCode() { return this.httpStatusCode; } /** * @return instanceRelationList */ public java.util.List getInstanceRelationList() { return this.instanceRelationList; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Integer httpStatusCode; private java.util.List instanceRelationList; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * HttpStatusCode. */ public Builder httpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; return this; } /** * InstanceRelationList. */ public Builder instanceRelationList(java.util.List instanceRelationList) { this.instanceRelationList = instanceRelationList; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public GetInstanceDownStreamResponseBody build() { return new GetInstanceDownStreamResponseBody(this); } } /** * * {@link GetInstanceDownStreamResponseBody} extends {@link TeaModel} * *

GetInstanceDownStreamResponseBody

*/ public static class FieldInstanceList extends TeaModel { @com.aliyun.core.annotation.NameInMap("FieldInstanceId") private String fieldInstanceId; @com.aliyun.core.annotation.NameInMap("RunStatus") private String runStatus; @com.aliyun.core.annotation.NameInMap("SelectStatus") private String selectStatus; private FieldInstanceList(Builder builder) { this.fieldInstanceId = builder.fieldInstanceId; this.runStatus = builder.runStatus; this.selectStatus = builder.selectStatus; } public static Builder builder() { return new Builder(); } public static FieldInstanceList create() { return builder().build(); } /** * @return fieldInstanceId */ public String getFieldInstanceId() { return this.fieldInstanceId; } /** * @return runStatus */ public String getRunStatus() { return this.runStatus; } /** * @return selectStatus */ public String getSelectStatus() { return this.selectStatus; } public static final class Builder { private String fieldInstanceId; private String runStatus; private String selectStatus; /** * FieldInstanceId. */ public Builder fieldInstanceId(String fieldInstanceId) { this.fieldInstanceId = fieldInstanceId; return this; } /** * RunStatus. */ public Builder runStatus(String runStatus) { this.runStatus = runStatus; return this; } /** * SelectStatus. */ public Builder selectStatus(String selectStatus) { this.selectStatus = selectStatus; return this; } public FieldInstanceList build() { return new FieldInstanceList(this); } } } /** * * {@link GetInstanceDownStreamResponseBody} extends {@link TeaModel} * *

GetInstanceDownStreamResponseBody

*/ public static class InstanceInfo extends TeaModel { @com.aliyun.core.annotation.NameInMap("Id") private String id; @com.aliyun.core.annotation.NameInMap("Name") private String name; @com.aliyun.core.annotation.NameInMap("Type") private String type; private InstanceInfo(Builder builder) { this.id = builder.id; this.name = builder.name; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static InstanceInfo create() { return builder().build(); } /** * @return id */ public String getId() { return this.id; } /** * @return name */ public String getName() { return this.name; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String id; private String name; private String type; /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public InstanceInfo build() { return new InstanceInfo(this); } } } /** * * {@link GetInstanceDownStreamResponseBody} extends {@link TeaModel} * *

GetInstanceDownStreamResponseBody

*/ public static class InstanceRelationList extends TeaModel { @com.aliyun.core.annotation.NameInMap("DownStreamDepth") private Integer downStreamDepth; @com.aliyun.core.annotation.NameInMap("ExtendInfo") private String extendInfo; @com.aliyun.core.annotation.NameInMap("FieldInstanceList") private java.util.List fieldInstanceList; @com.aliyun.core.annotation.NameInMap("InstanceInfo") private InstanceInfo instanceInfo; @com.aliyun.core.annotation.NameInMap("RunStatus") private String runStatus; @com.aliyun.core.annotation.NameInMap("SelectStatus") private String selectStatus; @com.aliyun.core.annotation.NameInMap("SelectStatusCause") private String selectStatusCause; private InstanceRelationList(Builder builder) { this.downStreamDepth = builder.downStreamDepth; this.extendInfo = builder.extendInfo; this.fieldInstanceList = builder.fieldInstanceList; this.instanceInfo = builder.instanceInfo; this.runStatus = builder.runStatus; this.selectStatus = builder.selectStatus; this.selectStatusCause = builder.selectStatusCause; } public static Builder builder() { return new Builder(); } public static InstanceRelationList create() { return builder().build(); } /** * @return downStreamDepth */ public Integer getDownStreamDepth() { return this.downStreamDepth; } /** * @return extendInfo */ public String getExtendInfo() { return this.extendInfo; } /** * @return fieldInstanceList */ public java.util.List getFieldInstanceList() { return this.fieldInstanceList; } /** * @return instanceInfo */ public InstanceInfo getInstanceInfo() { return this.instanceInfo; } /** * @return runStatus */ public String getRunStatus() { return this.runStatus; } /** * @return selectStatus */ public String getSelectStatus() { return this.selectStatus; } /** * @return selectStatusCause */ public String getSelectStatusCause() { return this.selectStatusCause; } public static final class Builder { private Integer downStreamDepth; private String extendInfo; private java.util.List fieldInstanceList; private InstanceInfo instanceInfo; private String runStatus; private String selectStatus; private String selectStatusCause; /** * DownStreamDepth. */ public Builder downStreamDepth(Integer downStreamDepth) { this.downStreamDepth = downStreamDepth; return this; } /** * ExtendInfo. */ public Builder extendInfo(String extendInfo) { this.extendInfo = extendInfo; return this; } /** * FieldInstanceList. */ public Builder fieldInstanceList(java.util.List fieldInstanceList) { this.fieldInstanceList = fieldInstanceList; return this; } /** * InstanceInfo. */ public Builder instanceInfo(InstanceInfo instanceInfo) { this.instanceInfo = instanceInfo; return this; } /** * RunStatus. */ public Builder runStatus(String runStatus) { this.runStatus = runStatus; return this; } /** * SelectStatus. */ public Builder selectStatus(String selectStatus) { this.selectStatus = selectStatus; return this; } /** * SelectStatusCause. */ public Builder selectStatusCause(String selectStatusCause) { this.selectStatusCause = selectStatusCause; return this; } public InstanceRelationList build() { return new InstanceRelationList(this); } } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy