Package com.google.privacy.dlp.v2
Interface BigQueryTableOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BigQueryTable,BigQueryTable.Builder
public interface BigQueryTableOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDatasetId()Dataset ID of the table.com.google.protobuf.ByteStringgetDatasetIdBytes()Dataset ID of the table.StringgetProjectId()The Google Cloud Platform project ID of the project containing the table.com.google.protobuf.ByteStringgetProjectIdBytes()The Google Cloud Platform project ID of the project containing the table.StringgetTableId()Name of the table.com.google.protobuf.ByteStringgetTableIdBytes()Name of the table.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getProjectId
String getProjectId()
The Google Cloud Platform project ID of the project containing the table. If omitted, project ID is inferred from the API call.
string project_id = 1;- Returns:
- The projectId.
-
getProjectIdBytes
com.google.protobuf.ByteString getProjectIdBytes()
The Google Cloud Platform project ID of the project containing the table. If omitted, project ID is inferred from the API call.
string project_id = 1;- Returns:
- The bytes for projectId.
-
getDatasetId
String getDatasetId()
Dataset ID of the table.
string dataset_id = 2;- Returns:
- The datasetId.
-
getDatasetIdBytes
com.google.protobuf.ByteString getDatasetIdBytes()
Dataset ID of the table.
string dataset_id = 2;- Returns:
- The bytes for datasetId.
-
getTableId
String getTableId()
Name of the table.
string table_id = 3;- Returns:
- The tableId.
-
getTableIdBytes
com.google.protobuf.ByteString getTableIdBytes()
Name of the table.
string table_id = 3;- Returns:
- The bytes for tableId.
-
-