com.aliyun.sdk.service.dataphin_public20230630.models.GetBatchTaskUdfLineagesRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-dataphin_public20230630 Show documentation
Show all versions of alibabacloud-dataphin_public20230630 Show documentation
Alibaba Cloud dataphin-public (20230630) Async SDK for Java
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 GetBatchTaskUdfLineagesRequest} extends {@link RequestModel}
*
* GetBatchTaskUdfLineagesRequest
*/
public class GetBatchTaskUdfLineagesRequest extends Request {
@com.aliyun.core.annotation.Host
@com.aliyun.core.annotation.NameInMap("RegionId")
private String regionId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("FileId")
@com.aliyun.core.annotation.Validation(required = true)
private Long fileId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("OpTenantId")
@com.aliyun.core.annotation.Validation(required = true)
private Long opTenantId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("ProjectId")
@com.aliyun.core.annotation.Validation(required = true)
private Long projectId;
private GetBatchTaskUdfLineagesRequest(Builder builder) {
super(builder);
this.regionId = builder.regionId;
this.fileId = builder.fileId;
this.opTenantId = builder.opTenantId;
this.projectId = builder.projectId;
}
public static Builder builder() {
return new Builder();
}
public static GetBatchTaskUdfLineagesRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return fileId
*/
public Long getFileId() {
return this.fileId;
}
/**
* @return opTenantId
*/
public Long getOpTenantId() {
return this.opTenantId;
}
/**
* @return projectId
*/
public Long getProjectId() {
return this.projectId;
}
public static final class Builder extends Request.Builder {
private String regionId;
private Long fileId;
private Long opTenantId;
private Long projectId;
private Builder() {
super();
}
private Builder(GetBatchTaskUdfLineagesRequest request) {
super(request);
this.regionId = request.regionId;
this.fileId = request.fileId;
this.opTenantId = request.opTenantId;
this.projectId = request.projectId;
}
/**
* RegionId.
*/
public Builder regionId(String regionId) {
this.putHostParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* This parameter is required.
*
* example:
* 12113111
*/
public Builder fileId(Long fileId) {
this.putQueryParameter("FileId", fileId);
this.fileId = fileId;
return this;
}
/**
* This parameter is required.
*
* example:
* 30001011
*/
public Builder opTenantId(Long opTenantId) {
this.putQueryParameter("OpTenantId", opTenantId);
this.opTenantId = opTenantId;
return this;
}
/**
* This parameter is required.
*
* example:
* 131211211
*/
public Builder projectId(Long projectId) {
this.putQueryParameter("ProjectId", projectId);
this.projectId = projectId;
return this;
}
@Override
public GetBatchTaskUdfLineagesRequest build() {
return new GetBatchTaskUdfLineagesRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy