com.aliyun.datalake20200710.models.BatchUpdatePartitionsRequest 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 BatchUpdatePartitionsRequest extends TeaModel {
// CatalogId
@NameInMap("CatalogId")
public String catalogId;
// DatabaseName
@NameInMap("DatabaseName")
public String databaseName;
// PartitionInputs
@NameInMap("PartitionInputs")
public java.util.List partitionInputs;
// TableName
@NameInMap("TableName")
public String tableName;
public static BatchUpdatePartitionsRequest build(java.util.Map map) throws Exception {
BatchUpdatePartitionsRequest self = new BatchUpdatePartitionsRequest();
return TeaModel.build(map, self);
}
public BatchUpdatePartitionsRequest setCatalogId(String catalogId) {
this.catalogId = catalogId;
return this;
}
public String getCatalogId() {
return this.catalogId;
}
public BatchUpdatePartitionsRequest setDatabaseName(String databaseName) {
this.databaseName = databaseName;
return this;
}
public String getDatabaseName() {
return this.databaseName;
}
public BatchUpdatePartitionsRequest setPartitionInputs(java.util.List partitionInputs) {
this.partitionInputs = partitionInputs;
return this;
}
public java.util.List getPartitionInputs() {
return this.partitionInputs;
}
public BatchUpdatePartitionsRequest setTableName(String tableName) {
this.tableName = tableName;
return this;
}
public String getTableName() {
return this.tableName;
}
}