com.aliyun.dataphin_public20230630.models.GetInstanceDownStreamRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dataphin_public20230630 Show documentation
Show all versions of dataphin_public20230630 Show documentation
Alibaba Cloud dataphin-public (20230630) SDK for Java
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 GetInstanceDownStreamRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("DownStreamDepth")
public Integer downStreamDepth;
/**
* example:
* PROD
*/
@NameInMap("Env")
public String env;
/**
* This parameter is required.
*/
@NameInMap("InstanceGet")
public GetInstanceDownStreamRequestInstanceGet instanceGet;
/**
* This parameter is required.
*
* example:
* 30001011
*/
@NameInMap("OpTenantId")
public Long opTenantId;
/**
* example:
* SUCCESS
*/
@NameInMap("RunStatus")
public String runStatus;
public static GetInstanceDownStreamRequest build(java.util.Map map) throws Exception {
GetInstanceDownStreamRequest self = new GetInstanceDownStreamRequest();
return TeaModel.build(map, self);
}
public GetInstanceDownStreamRequest setDownStreamDepth(Integer downStreamDepth) {
this.downStreamDepth = downStreamDepth;
return this;
}
public Integer getDownStreamDepth() {
return this.downStreamDepth;
}
public GetInstanceDownStreamRequest setEnv(String env) {
this.env = env;
return this;
}
public String getEnv() {
return this.env;
}
public GetInstanceDownStreamRequest setInstanceGet(GetInstanceDownStreamRequestInstanceGet instanceGet) {
this.instanceGet = instanceGet;
return this;
}
public GetInstanceDownStreamRequestInstanceGet getInstanceGet() {
return this.instanceGet;
}
public GetInstanceDownStreamRequest setOpTenantId(Long opTenantId) {
this.opTenantId = opTenantId;
return this;
}
public Long getOpTenantId() {
return this.opTenantId;
}
public GetInstanceDownStreamRequest setRunStatus(String runStatus) {
this.runStatus = runStatus;
return this;
}
public String getRunStatus() {
return this.runStatus;
}
public static class GetInstanceDownStreamRequestInstanceGet extends TeaModel {
/**
* This parameter is required.
*
* example:
* t_5929472_20210411_9577721
*/
@NameInMap("InstanceId")
public String instanceId;
/**
* This parameter is required.
*
* example:
* DATA_PROCESS
*/
@NameInMap("NodeType")
public String nodeType;
public static GetInstanceDownStreamRequestInstanceGet build(java.util.Map map) throws Exception {
GetInstanceDownStreamRequestInstanceGet self = new GetInstanceDownStreamRequestInstanceGet();
return TeaModel.build(map, self);
}
public GetInstanceDownStreamRequestInstanceGet setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
public GetInstanceDownStreamRequestInstanceGet setNodeType(String nodeType) {
this.nodeType = nodeType;
return this;
}
public String getNodeType() {
return this.nodeType;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy