Class: Google::Apis::RetailV2beta::GoogleCloudRetailV2betaOutputConfigBigQueryDestination
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2beta::GoogleCloudRetailV2betaOutputConfigBigQueryDestination
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/retail_v2beta/classes.rb,
lib/google/apis/retail_v2beta/representations.rb,
lib/google/apis/retail_v2beta/representations.rb
Overview
The BigQuery output destination configuration.
Instance Attribute Summary collapse
-
#dataset_id ⇒ String
Required.
-
#table_id_prefix ⇒ String
Required.
-
#table_type ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2betaOutputConfigBigQueryDestination
constructor
A new instance of GoogleCloudRetailV2betaOutputConfigBigQueryDestination.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2betaOutputConfigBigQueryDestination
Returns a new instance of GoogleCloudRetailV2betaOutputConfigBigQueryDestination.
5003 5004 5005 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 5003 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset_id ⇒ String
Required. The ID of a BigQuery Dataset.
Corresponds to the JSON property datasetId
4989 4990 4991 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 4989 def dataset_id @dataset_id end |
#table_id_prefix ⇒ String
Required. The prefix of exported BigQuery tables.
Corresponds to the JSON property tableIdPrefix
4994 4995 4996 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 4994 def table_id_prefix @table_id_prefix end |
#table_type ⇒ String
Required. Describes the table type. The following values are supported: *
table
: A BigQuery native table. * view
: A virtual table defined by a SQL
query.
Corresponds to the JSON property tableType
5001 5002 5003 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 5001 def table_type @table_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5008 5009 5010 5011 5012 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 5008 def update!(**args) @dataset_id = args[:dataset_id] if args.key?(:dataset_id) @table_id_prefix = args[:table_id_prefix] if args.key?(:table_id_prefix) @table_type = args[:table_type] if args.key?(:table_type) end |