com.aliyun.datalake20200710.models.DeletePartitionRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datalake20200710 Show documentation
Show all versions of datalake20200710 Show documentation
Alibaba Cloud DataLake (20200710) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.datalake20200710.models;
import com.aliyun.tea.*;
public class DeletePartitionRequest extends TeaModel {
@NameInMap("CatalogId")
public String catalogId;
@NameInMap("DatabaseName")
public String databaseName;
@NameInMap("IfExists")
public Boolean ifExists;
@NameInMap("PartitionValues")
public java.util.List partitionValues;
@NameInMap("TableName")
public String tableName;
public static DeletePartitionRequest build(java.util.Map map) throws Exception {
DeletePartitionRequest self = new DeletePartitionRequest();
return TeaModel.build(map, self);
}
public DeletePartitionRequest setCatalogId(String catalogId) {
this.catalogId = catalogId;
return this;
}
public String getCatalogId() {
return this.catalogId;
}
public DeletePartitionRequest setDatabaseName(String databaseName) {
this.databaseName = databaseName;
return this;
}
public String getDatabaseName() {
return this.databaseName;
}
public DeletePartitionRequest setIfExists(Boolean ifExists) {
this.ifExists = ifExists;
return this;
}
public Boolean getIfExists() {
return this.ifExists;
}
public DeletePartitionRequest setPartitionValues(java.util.List partitionValues) {
this.partitionValues = partitionValues;
return this;
}
public java.util.List getPartitionValues() {
return this.partitionValues;
}
public DeletePartitionRequest setTableName(String tableName) {
this.tableName = tableName;
return this;
}
public String getTableName() {
return this.tableName;
}
}