Class: Google::Cloud::Bigquery::AnalyticsHub::V1::BigQueryConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Bigquery::AnalyticsHub::V1::BigQueryConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/bigquery/analyticshub/v1/pubsub.rb
Overview
Configuration for a BigQuery subscription.
Instance Attribute Summary collapse
-
#drop_unknown_fields ⇒ ::Boolean
Optional.
-
#service_account_email ⇒ ::String
Optional.
-
#table ⇒ ::String
Optional.
-
#use_table_schema ⇒ ::Boolean
Optional.
-
#use_topic_schema ⇒ ::Boolean
Optional.
-
#write_metadata ⇒ ::Boolean
Optional.
Instance Attribute Details
#drop_unknown_fields ⇒ ::Boolean
Returns Optional. When true and use_topic_schema is true, any fields that are a part of the topic schema that are not part of the BigQuery table schema are dropped when writing to BigQuery. Otherwise, the schemas must be kept in sync and any messages with extra fields are not written and remain in the subscription's backlog.
382 383 384 385 |
# File 'proto_docs/google/cloud/bigquery/analyticshub/v1/pubsub.rb', line 382 class BigQueryConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#service_account_email ⇒ ::String
Returns Optional. The service account to use to write to BigQuery. The subscription
creator or updater that specifies this field must have
iam.serviceAccounts.actAs permission on the service account. If not
specified, the Pub/Sub service
agent,
service-{project_number}@gcp-sa-pubsub.iam.gserviceaccount.com, is used.
382 383 384 385 |
# File 'proto_docs/google/cloud/bigquery/analyticshub/v1/pubsub.rb', line 382 class BigQueryConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#table ⇒ ::String
Returns Optional. The name of the table to which to write data, of the form {projectId}.{datasetId}.{tableId}.
382 383 384 385 |
# File 'proto_docs/google/cloud/bigquery/analyticshub/v1/pubsub.rb', line 382 class BigQueryConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#use_table_schema ⇒ ::Boolean
Returns Optional. When true, use the BigQuery table's schema as the columns to
write to in BigQuery. use_table_schema and use_topic_schema cannot be
enabled at the same time.
382 383 384 385 |
# File 'proto_docs/google/cloud/bigquery/analyticshub/v1/pubsub.rb', line 382 class BigQueryConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#use_topic_schema ⇒ ::Boolean
Returns Optional. When true, use the topic's schema as the columns to write to in
BigQuery, if it exists. use_topic_schema and use_table_schema cannot be
enabled at the same time.
382 383 384 385 |
# File 'proto_docs/google/cloud/bigquery/analyticshub/v1/pubsub.rb', line 382 class BigQueryConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#write_metadata ⇒ ::Boolean
Returns Optional. When true, write the subscription name, message_id, publish_time, attributes, and ordering_key to additional columns in the table. The subscription name, message_id, and publish_time fields are put in their own columns while all other message properties (other than data) are written to a JSON object in the attributes column.
382 383 384 385 |
# File 'proto_docs/google/cloud/bigquery/analyticshub/v1/pubsub.rb', line 382 class BigQueryConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |