Interface NameMappingValueOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
NameMappingValue,NameMappingValue.Builder
public interface NameMappingValueOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAttribute()The attribute name (BigQuery column equivalent in the target data warehouse).com.google.protobuf.ByteStringgetAttributeBytes()The attribute name (BigQuery column equivalent in the target data warehouse).StringgetDatabase()The database name (BigQuery project ID equivalent in the target data warehouse).com.google.protobuf.ByteStringgetDatabaseBytes()The database name (BigQuery project ID equivalent in the target data warehouse).StringgetRelation()The relation name (BigQuery table or view equivalent in the target data warehouse).com.google.protobuf.ByteStringgetRelationBytes()The relation name (BigQuery table or view equivalent in the target data warehouse).StringgetSchema()The schema name (BigQuery dataset equivalent in the target data warehouse).com.google.protobuf.ByteStringgetSchemaBytes()The schema name (BigQuery dataset equivalent in the target data warehouse).-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDatabase
String getDatabase()
The database name (BigQuery project ID equivalent in the target data warehouse).
string database = 1;- Returns:
- The database.
-
getDatabaseBytes
com.google.protobuf.ByteString getDatabaseBytes()
The database name (BigQuery project ID equivalent in the target data warehouse).
string database = 1;- Returns:
- The bytes for database.
-
getSchema
String getSchema()
The schema name (BigQuery dataset equivalent in the target data warehouse).
string schema = 2;- Returns:
- The schema.
-
getSchemaBytes
com.google.protobuf.ByteString getSchemaBytes()
The schema name (BigQuery dataset equivalent in the target data warehouse).
string schema = 2;- Returns:
- The bytes for schema.
-
getRelation
String getRelation()
The relation name (BigQuery table or view equivalent in the target data warehouse).
string relation = 3;- Returns:
- The relation.
-
getRelationBytes
com.google.protobuf.ByteString getRelationBytes()
The relation name (BigQuery table or view equivalent in the target data warehouse).
string relation = 3;- Returns:
- The bytes for relation.
-
getAttribute
String getAttribute()
The attribute name (BigQuery column equivalent in the target data warehouse).
string attribute = 4;- Returns:
- The attribute.
-
getAttributeBytes
com.google.protobuf.ByteString getAttributeBytes()
The attribute name (BigQuery column equivalent in the target data warehouse).
string attribute = 4;- Returns:
- The bytes for attribute.
-
-