Interface RelationDescriptorOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RelationDescriptor,RelationDescriptor.Builder
public interface RelationDescriptorOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsBigqueryLabels(String key)A set of BigQuery labels that should be applied to the relation.Map<String,String>getBigqueryLabels()Deprecated.intgetBigqueryLabelsCount()A set of BigQuery labels that should be applied to the relation.Map<String,String>getBigqueryLabelsMap()A set of BigQuery labels that should be applied to the relation.StringgetBigqueryLabelsOrDefault(String key, String defaultValue)A set of BigQuery labels that should be applied to the relation.StringgetBigqueryLabelsOrThrow(String key)A set of BigQuery labels that should be applied to the relation.RelationDescriptor.ColumnDescriptorgetColumns(int index)A list of descriptions of columns within the relation.intgetColumnsCount()A list of descriptions of columns within the relation.List<RelationDescriptor.ColumnDescriptor>getColumnsList()A list of descriptions of columns within the relation.RelationDescriptor.ColumnDescriptorOrBuildergetColumnsOrBuilder(int index)A list of descriptions of columns within the relation.List<? extends RelationDescriptor.ColumnDescriptorOrBuilder>getColumnsOrBuilderList()A list of descriptions of columns within the relation.StringgetDescription()A text description of the relation.com.google.protobuf.ByteStringgetDescriptionBytes()A text description of the relation.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDescription
String getDescription()
A text description of the relation.
string description = 1;- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
A text description of the relation.
string description = 1;- Returns:
- The bytes for description.
-
getColumnsList
List<RelationDescriptor.ColumnDescriptor> getColumnsList()
A list of descriptions of columns within the relation.
repeated .google.cloud.dataform.v1beta1.RelationDescriptor.ColumnDescriptor columns = 2;
-
getColumns
RelationDescriptor.ColumnDescriptor getColumns(int index)
A list of descriptions of columns within the relation.
repeated .google.cloud.dataform.v1beta1.RelationDescriptor.ColumnDescriptor columns = 2;
-
getColumnsCount
int getColumnsCount()
A list of descriptions of columns within the relation.
repeated .google.cloud.dataform.v1beta1.RelationDescriptor.ColumnDescriptor columns = 2;
-
getColumnsOrBuilderList
List<? extends RelationDescriptor.ColumnDescriptorOrBuilder> getColumnsOrBuilderList()
A list of descriptions of columns within the relation.
repeated .google.cloud.dataform.v1beta1.RelationDescriptor.ColumnDescriptor columns = 2;
-
getColumnsOrBuilder
RelationDescriptor.ColumnDescriptorOrBuilder getColumnsOrBuilder(int index)
A list of descriptions of columns within the relation.
repeated .google.cloud.dataform.v1beta1.RelationDescriptor.ColumnDescriptor columns = 2;
-
getBigqueryLabelsCount
int getBigqueryLabelsCount()
A set of BigQuery labels that should be applied to the relation.
map<string, string> bigquery_labels = 3;
-
containsBigqueryLabels
boolean containsBigqueryLabels(String key)
A set of BigQuery labels that should be applied to the relation.
map<string, string> bigquery_labels = 3;
-
getBigqueryLabels
@Deprecated Map<String,String> getBigqueryLabels()
Deprecated.UsegetBigqueryLabelsMap()instead.
-
getBigqueryLabelsMap
Map<String,String> getBigqueryLabelsMap()
A set of BigQuery labels that should be applied to the relation.
map<string, string> bigquery_labels = 3;
-
getBigqueryLabelsOrDefault
String getBigqueryLabelsOrDefault(String key, String defaultValue)
A set of BigQuery labels that should be applied to the relation.
map<string, string> bigquery_labels = 3;
-
-