com.aliyun.dataphin_public20230630.models.GetNodeUpDownStreamRequest 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 GetNodeUpDownStreamRequest extends TeaModel {
/**
* example:
* 1
*/
@NameInMap("DownStreamDepth")
public Integer downStreamDepth;
/**
* example:
* DEV
*/
@NameInMap("Env")
public String env;
/**
* This parameter is required.
*/
@NameInMap("NodeId")
public GetNodeUpDownStreamRequestNodeId nodeId;
/**
* This parameter is required.
*
* example:
* 30001011
*/
@NameInMap("OpTenantId")
public Long opTenantId;
/**
* example:
* 113123
*/
@NameInMap("ProjectId")
public Long projectId;
/**
* example:
* 1
*/
@NameInMap("UpStreamDepth")
public Integer upStreamDepth;
public static GetNodeUpDownStreamRequest build(java.util.Map map) throws Exception {
GetNodeUpDownStreamRequest self = new GetNodeUpDownStreamRequest();
return TeaModel.build(map, self);
}
public GetNodeUpDownStreamRequest setDownStreamDepth(Integer downStreamDepth) {
this.downStreamDepth = downStreamDepth;
return this;
}
public Integer getDownStreamDepth() {
return this.downStreamDepth;
}
public GetNodeUpDownStreamRequest setEnv(String env) {
this.env = env;
return this;
}
public String getEnv() {
return this.env;
}
public GetNodeUpDownStreamRequest setNodeId(GetNodeUpDownStreamRequestNodeId nodeId) {
this.nodeId = nodeId;
return this;
}
public GetNodeUpDownStreamRequestNodeId getNodeId() {
return this.nodeId;
}
public GetNodeUpDownStreamRequest setOpTenantId(Long opTenantId) {
this.opTenantId = opTenantId;
return this;
}
public Long getOpTenantId() {
return this.opTenantId;
}
public GetNodeUpDownStreamRequest setProjectId(Long projectId) {
this.projectId = projectId;
return this;
}
public Long getProjectId() {
return this.projectId;
}
public GetNodeUpDownStreamRequest setUpStreamDepth(Integer upStreamDepth) {
this.upStreamDepth = upStreamDepth;
return this;
}
public Integer getUpStreamDepth() {
return this.upStreamDepth;
}
public static class GetNodeUpDownStreamRequestNodeId extends TeaModel {
/**
* example:
* 12
*/
@NameInMap("FieldIdList")
public String fieldIdList;
/**
* This parameter is required.
*
* example:
* 11313
*/
@NameInMap("Id")
public String id;
public static GetNodeUpDownStreamRequestNodeId build(java.util.Map map) throws Exception {
GetNodeUpDownStreamRequestNodeId self = new GetNodeUpDownStreamRequestNodeId();
return TeaModel.build(map, self);
}
public GetNodeUpDownStreamRequestNodeId setFieldIdList(String fieldIdList) {
this.fieldIdList = fieldIdList;
return this;
}
public String getFieldIdList() {
return this.fieldIdList;
}
public GetNodeUpDownStreamRequestNodeId setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy