Interface NameMappingKeyOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
NameMappingKey,NameMappingKey.Builder
public interface NameMappingKeyOrBuilder 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 source data warehouse).com.google.protobuf.ByteStringgetAttributeBytes()The attribute name (BigQuery column equivalent in the source data warehouse).StringgetDatabase()The database name (BigQuery project ID equivalent in the source data warehouse).com.google.protobuf.ByteStringgetDatabaseBytes()The database name (BigQuery project ID equivalent in the source data warehouse).StringgetRelation()The relation name (BigQuery table or view equivalent in the source data warehouse).com.google.protobuf.ByteStringgetRelationBytes()The relation name (BigQuery table or view equivalent in the source data warehouse).StringgetSchema()The schema name (BigQuery dataset equivalent in the source data warehouse).com.google.protobuf.ByteStringgetSchemaBytes()The schema name (BigQuery dataset equivalent in the source data warehouse).NameMappingKey.TypegetType()The type of object that is being mapped.intgetTypeValue()The type of object that is being mapped.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTypeValue
int getTypeValue()
The type of object that is being mapped.
.google.cloud.bigquery.migration.v2.NameMappingKey.Type type = 1;- Returns:
- The enum numeric value on the wire for type.
-
getType
NameMappingKey.Type getType()
The type of object that is being mapped.
.google.cloud.bigquery.migration.v2.NameMappingKey.Type type = 1;- Returns:
- The type.
-
getDatabase
String getDatabase()
The database name (BigQuery project ID equivalent in the source data warehouse).
string database = 2;- Returns:
- The database.
-
getDatabaseBytes
com.google.protobuf.ByteString getDatabaseBytes()
The database name (BigQuery project ID equivalent in the source data warehouse).
string database = 2;- Returns:
- The bytes for database.
-
getSchema
String getSchema()
The schema name (BigQuery dataset equivalent in the source data warehouse).
string schema = 3;- Returns:
- The schema.
-
getSchemaBytes
com.google.protobuf.ByteString getSchemaBytes()
The schema name (BigQuery dataset equivalent in the source data warehouse).
string schema = 3;- Returns:
- The bytes for schema.
-
getRelation
String getRelation()
The relation name (BigQuery table or view equivalent in the source data warehouse).
string relation = 4;- Returns:
- The relation.
-
getRelationBytes
com.google.protobuf.ByteString getRelationBytes()
The relation name (BigQuery table or view equivalent in the source data warehouse).
string relation = 4;- Returns:
- The bytes for relation.
-
getAttribute
String getAttribute()
The attribute name (BigQuery column equivalent in the source data warehouse).
string attribute = 5;- Returns:
- The attribute.
-
getAttributeBytes
com.google.protobuf.ByteString getAttributeBytes()
The attribute name (BigQuery column equivalent in the source data warehouse).
string attribute = 5;- Returns:
- The bytes for attribute.
-
-