Class: Google::Apis::RetailV2beta::GoogleCloudRetailV2betaBigQueryOutputResult
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2beta::GoogleCloudRetailV2betaBigQueryOutputResult
- 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
A BigQuery output result.
Instance Attribute Summary collapse
-
#dataset_id ⇒ String
The ID of a BigQuery Dataset.
-
#table_id ⇒ String
The ID of a BigQuery Table.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2betaBigQueryOutputResult
constructor
A new instance of GoogleCloudRetailV2betaBigQueryOutputResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2betaBigQueryOutputResult
Returns a new instance of GoogleCloudRetailV2betaBigQueryOutputResult.
2891 2892 2893 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 2891 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset_id ⇒ String
The ID of a BigQuery Dataset.
Corresponds to the JSON property datasetId
2884 2885 2886 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 2884 def dataset_id @dataset_id end |
#table_id ⇒ String
The ID of a BigQuery Table.
Corresponds to the JSON property tableId
2889 2890 2891 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 2889 def table_id @table_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2896 2897 2898 2899 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 2896 def update!(**args) @dataset_id = args[:dataset_id] if args.key?(:dataset_id) @table_id = args[:table_id] if args.key?(:table_id) end |