Interface DestinationDatasetOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DestinationDataset
,DestinationDataset.Builder
public interface DestinationDatasetOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsLabels(String key)
Optional.DestinationDatasetReference
getDatasetReference()
Required.DestinationDatasetReferenceOrBuilder
getDatasetReferenceOrBuilder()
Required.com.google.protobuf.StringValue
getDescription()
Optional.com.google.protobuf.StringValueOrBuilder
getDescriptionOrBuilder()
Optional.com.google.protobuf.StringValue
getFriendlyName()
Optional.com.google.protobuf.StringValueOrBuilder
getFriendlyNameOrBuilder()
Optional.Map<String,String>
getLabels()
Deprecated.int
getLabelsCount()
Optional.Map<String,String>
getLabelsMap()
Optional.String
getLabelsOrDefault(String key, String defaultValue)
Optional.String
getLabelsOrThrow(String key)
Optional.String
getLocation()
Required.com.google.protobuf.ByteString
getLocationBytes()
Required.boolean
hasDatasetReference()
Required.boolean
hasDescription()
Optional.boolean
hasFriendlyName()
Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasDatasetReference
boolean hasDatasetReference()
Required. A reference that identifies the destination dataset.
.google.cloud.bigquery.analyticshub.v1.DestinationDatasetReference dataset_reference = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the datasetReference field is set.
-
getDatasetReference
DestinationDatasetReference getDatasetReference()
Required. A reference that identifies the destination dataset.
.google.cloud.bigquery.analyticshub.v1.DestinationDatasetReference dataset_reference = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The datasetReference.
-
getDatasetReferenceOrBuilder
DestinationDatasetReferenceOrBuilder getDatasetReferenceOrBuilder()
Required. A reference that identifies the destination dataset.
.google.cloud.bigquery.analyticshub.v1.DestinationDatasetReference dataset_reference = 1 [(.google.api.field_behavior) = REQUIRED];
-
hasFriendlyName
boolean hasFriendlyName()
Optional. A descriptive name for the dataset.
.google.protobuf.StringValue friendly_name = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- Whether the friendlyName field is set.
-
getFriendlyName
com.google.protobuf.StringValue getFriendlyName()
Optional. A descriptive name for the dataset.
.google.protobuf.StringValue friendly_name = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The friendlyName.
-
getFriendlyNameOrBuilder
com.google.protobuf.StringValueOrBuilder getFriendlyNameOrBuilder()
Optional. A descriptive name for the dataset.
.google.protobuf.StringValue friendly_name = 2 [(.google.api.field_behavior) = OPTIONAL];
-
hasDescription
boolean hasDescription()
Optional. A user-friendly description of the dataset.
.google.protobuf.StringValue description = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- Whether the description field is set.
-
getDescription
com.google.protobuf.StringValue getDescription()
Optional. A user-friendly description of the dataset.
.google.protobuf.StringValue description = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The description.
-
getDescriptionOrBuilder
com.google.protobuf.StringValueOrBuilder getDescriptionOrBuilder()
Optional. A user-friendly description of the dataset.
.google.protobuf.StringValue description = 3 [(.google.api.field_behavior) = OPTIONAL];
-
getLabelsCount
int getLabelsCount()
Optional. The labels associated with this dataset. You can use these to organize and group your datasets. You can set this property when inserting or updating a dataset. See https://cloud.google.com/resource-manager/docs/creating-managing-labels for more information.
map<string, string> labels = 4 [(.google.api.field_behavior) = OPTIONAL];
-
containsLabels
boolean containsLabels(String key)
Optional. The labels associated with this dataset. You can use these to organize and group your datasets. You can set this property when inserting or updating a dataset. See https://cloud.google.com/resource-manager/docs/creating-managing-labels for more information.
map<string, string> labels = 4 [(.google.api.field_behavior) = OPTIONAL];
-
getLabels
@Deprecated Map<String,String> getLabels()
Deprecated.UsegetLabelsMap()
instead.
-
getLabelsMap
Map<String,String> getLabelsMap()
Optional. The labels associated with this dataset. You can use these to organize and group your datasets. You can set this property when inserting or updating a dataset. See https://cloud.google.com/resource-manager/docs/creating-managing-labels for more information.
map<string, string> labels = 4 [(.google.api.field_behavior) = OPTIONAL];
-
getLabelsOrDefault
String getLabelsOrDefault(String key, String defaultValue)
Optional. The labels associated with this dataset. You can use these to organize and group your datasets. You can set this property when inserting or updating a dataset. See https://cloud.google.com/resource-manager/docs/creating-managing-labels for more information.
map<string, string> labels = 4 [(.google.api.field_behavior) = OPTIONAL];
-
getLabelsOrThrow
String getLabelsOrThrow(String key)
Optional. The labels associated with this dataset. You can use these to organize and group your datasets. You can set this property when inserting or updating a dataset. See https://cloud.google.com/resource-manager/docs/creating-managing-labels for more information.
map<string, string> labels = 4 [(.google.api.field_behavior) = OPTIONAL];
-
getLocation
String getLocation()
Required. The geographic location where the dataset should reside. See https://cloud.google.com/bigquery/docs/locations for supported locations.
string location = 5 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The location.
-
getLocationBytes
com.google.protobuf.ByteString getLocationBytes()
Required. The geographic location where the dataset should reside. See https://cloud.google.com/bigquery/docs/locations for supported locations.
string location = 5 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for location.
-
-