Interface CreateTableRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateTableRequest
,CreateTableRequest.Builder
public interface CreateTableRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getParent()
Required.com.google.protobuf.ByteString
getParentBytes()
Required.Table
getTable()
Required.String
getTableId()
Required.com.google.protobuf.ByteString
getTableIdBytes()
Required.TableOrBuilder
getTableOrBuilder()
Required.boolean
hasTable()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Required. The parent resource where this table will be created. Format: projects/{project_id_or_number}/locations/{location_id}/catalogs/{catalog_id}/databases/{database_id}
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The parent resource where this table will be created. Format: projects/{project_id_or_number}/locations/{location_id}/catalogs/{catalog_id}/databases/{database_id}
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for parent.
-
hasTable
boolean hasTable()
Required. The table to create. The `name` field does not need to be provided for the table creation.
.google.cloud.bigquery.biglake.v1.Table table = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the table field is set.
-
getTable
Table getTable()
Required. The table to create. The `name` field does not need to be provided for the table creation.
.google.cloud.bigquery.biglake.v1.Table table = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The table.
-
getTableOrBuilder
TableOrBuilder getTableOrBuilder()
Required. The table to create. The `name` field does not need to be provided for the table creation.
.google.cloud.bigquery.biglake.v1.Table table = 2 [(.google.api.field_behavior) = REQUIRED];
-
getTableId
String getTableId()
Required. The ID to use for the table, which will become the final component of the table's resource name.
string table_id = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The tableId.
-
getTableIdBytes
com.google.protobuf.ByteString getTableIdBytes()
Required. The ID to use for the table, which will become the final component of the table's resource name.
string table_id = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for tableId.
-
-