public interface BatchCreatePartitionsRequestOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
getParent()
public abstract String getParent()Required. Reference to the table to where the partitions to be added, in the format of projects/{project}/catalogs/{catalogs}/databases/{database}/tables/{table}.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
| Returns | |
|---|---|
| Type | Description |
String |
The parent. |
getParentBytes()
public abstract ByteString getParentBytes()Required. Reference to the table to where the partitions to be added, in the format of projects/{project}/catalogs/{catalogs}/databases/{database}/tables/{table}.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
| Returns | |
|---|---|
| Type | Description |
ByteString |
The bytes for parent. |
getRequests(int index)
public abstract CreatePartitionRequest getRequests(int index)Required. Requests to add partitions to the table.
repeated .google.cloud.biglake.hive.v1beta.CreatePartitionRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
| Parameter | |
|---|---|
| Name | Description |
index |
int |
| Returns | |
|---|---|
| Type | Description |
CreatePartitionRequest |
|
getRequestsCount()
public abstract int getRequestsCount()Required. Requests to add partitions to the table.
repeated .google.cloud.biglake.hive.v1beta.CreatePartitionRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
| Returns | |
|---|---|
| Type | Description |
int |
|
getRequestsList()
public abstract List<CreatePartitionRequest> getRequestsList()Required. Requests to add partitions to the table.
repeated .google.cloud.biglake.hive.v1beta.CreatePartitionRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
| Returns | |
|---|---|
| Type | Description |
List<CreatePartitionRequest> |
|
getRequestsOrBuilder(int index)
public abstract CreatePartitionRequestOrBuilder getRequestsOrBuilder(int index)Required. Requests to add partitions to the table.
repeated .google.cloud.biglake.hive.v1beta.CreatePartitionRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
| Parameter | |
|---|---|
| Name | Description |
index |
int |
| Returns | |
|---|---|
| Type | Description |
CreatePartitionRequestOrBuilder |
|
getRequestsOrBuilderList()
public abstract List<? extends CreatePartitionRequestOrBuilder> getRequestsOrBuilderList()Required. Requests to add partitions to the table.
repeated .google.cloud.biglake.hive.v1beta.CreatePartitionRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
| Returns | |
|---|---|
| Type | Description |
List<? extends com.google.cloud.biglake.hive.v1beta.CreatePartitionRequestOrBuilder> |
|
getSkipExistingPartitions()
public abstract boolean getSkipExistingPartitions() Optional. Corresponds to the ifNotExists flag in the Hive Metastore APIs.
If the flag is set to false, the server will return ALREADY_EXISTS if any
partition already exists. If the flag is set to true, the server will skip
existing partitions and insert only the non-existing partitions.
A maximum of 900 partitions can be inserted in a batch.
bool skip_existing_partitions = 3 [(.google.api.field_behavior) = OPTIONAL];
| Returns | |
|---|---|
| Type | Description |
boolean |
The skipExistingPartitions. |