
com.google.cloud.bigquery.migration.v2.NameMappingKeyOrBuilder Maven / Gradle / Ivy
/*
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/bigquery/migration/v2/translation_config.proto
package com.google.cloud.bigquery.migration.v2;
public interface NameMappingKeyOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.bigquery.migration.v2.NameMappingKey)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The type of object that is being mapped.
*
*
* .google.cloud.bigquery.migration.v2.NameMappingKey.Type type = 1;
*
* @return The enum numeric value on the wire for type.
*/
int getTypeValue();
/**
*
*
*
* The type of object that is being mapped.
*
*
* .google.cloud.bigquery.migration.v2.NameMappingKey.Type type = 1;
*
* @return The type.
*/
com.google.cloud.bigquery.migration.v2.NameMappingKey.Type getType();
/**
*
*
*
* The database name (BigQuery project ID equivalent in the source data
* warehouse).
*
*
* string database = 2;
*
* @return The database.
*/
java.lang.String getDatabase();
/**
*
*
*
* The database name (BigQuery project ID equivalent in the source data
* warehouse).
*
*
* string database = 2;
*
* @return The bytes for database.
*/
com.google.protobuf.ByteString getDatabaseBytes();
/**
*
*
*
* The schema name (BigQuery dataset equivalent in the source data warehouse).
*
*
* string schema = 3;
*
* @return The schema.
*/
java.lang.String getSchema();
/**
*
*
*
* The schema name (BigQuery dataset equivalent in the source data warehouse).
*
*
* string schema = 3;
*
* @return The bytes for schema.
*/
com.google.protobuf.ByteString getSchemaBytes();
/**
*
*
*
* The relation name (BigQuery table or view equivalent in the source data
* warehouse).
*
*
* string relation = 4;
*
* @return The relation.
*/
java.lang.String getRelation();
/**
*
*
*
* The relation name (BigQuery table or view equivalent in the source data
* warehouse).
*
*
* string relation = 4;
*
* @return The bytes for relation.
*/
com.google.protobuf.ByteString getRelationBytes();
/**
*
*
*
* The attribute name (BigQuery column equivalent in the source data
* warehouse).
*
*
* string attribute = 5;
*
* @return The attribute.
*/
java.lang.String getAttribute();
/**
*
*
*
* The attribute name (BigQuery column equivalent in the source data
* warehouse).
*
*
* string attribute = 5;
*
* @return The bytes for attribute.
*/
com.google.protobuf.ByteString getAttributeBytes();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy