com.aliyun.dataphin_public20230630.models.ListFilesRequest 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 ListFilesRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("ListQuery")
public ListFilesRequestListQuery listQuery;
/**
* This parameter is required.
*
* example:
* 30001011
*/
@NameInMap("OpTenantId")
public Long opTenantId;
public static ListFilesRequest build(java.util.Map map) throws Exception {
ListFilesRequest self = new ListFilesRequest();
return TeaModel.build(map, self);
}
public ListFilesRequest setListQuery(ListFilesRequestListQuery listQuery) {
this.listQuery = listQuery;
return this;
}
public ListFilesRequestListQuery getListQuery() {
return this.listQuery;
}
public ListFilesRequest setOpTenantId(Long opTenantId) {
this.opTenantId = opTenantId;
return this;
}
public Long getOpTenantId() {
return this.opTenantId;
}
public static class ListFilesRequestListQuery extends TeaModel {
/**
* This parameter is required.
*
* example:
* tempCode
*/
@NameInMap("Category")
public String category;
/**
* This parameter is required.
*
* example:
* /xx/x
*/
@NameInMap("Directory")
public String directory;
/**
* This parameter is required.
*
* example:
* DEV
*/
@NameInMap("Env")
public String env;
/**
* This parameter is required.
*
* example:
* 11112311
*/
@NameInMap("ProjectId")
public Long projectId;
/**
* This parameter is required.
*
* example:
* true
*/
@NameInMap("Recursive")
public Boolean recursive;
public static ListFilesRequestListQuery build(java.util.Map map) throws Exception {
ListFilesRequestListQuery self = new ListFilesRequestListQuery();
return TeaModel.build(map, self);
}
public ListFilesRequestListQuery setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public ListFilesRequestListQuery setDirectory(String directory) {
this.directory = directory;
return this;
}
public String getDirectory() {
return this.directory;
}
public ListFilesRequestListQuery setEnv(String env) {
this.env = env;
return this;
}
public String getEnv() {
return this.env;
}
public ListFilesRequestListQuery setProjectId(Long projectId) {
this.projectId = projectId;
return this;
}
public Long getProjectId() {
return this.projectId;
}
public ListFilesRequestListQuery setRecursive(Boolean recursive) {
this.recursive = recursive;
return this;
}
public Boolean getRecursive() {
return this.recursive;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy