Class: Google::Apis::RetailV2::GoogleCloudRetailV2alphaBigQueryOutputResult
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2::GoogleCloudRetailV2alphaBigQueryOutputResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/retail_v2/classes.rb,
lib/google/apis/retail_v2/representations.rb,
lib/google/apis/retail_v2/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) ⇒ GoogleCloudRetailV2alphaBigQueryOutputResult
constructor
A new instance of GoogleCloudRetailV2alphaBigQueryOutputResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2alphaBigQueryOutputResult
Returns a new instance of GoogleCloudRetailV2alphaBigQueryOutputResult.
6150 6151 6152 |
# File 'lib/google/apis/retail_v2/classes.rb', line 6150 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset_id ⇒ String
The ID of a BigQuery Dataset.
Corresponds to the JSON property datasetId
6143 6144 6145 |
# File 'lib/google/apis/retail_v2/classes.rb', line 6143 def dataset_id @dataset_id end |
#table_id ⇒ String
The ID of a BigQuery Table.
Corresponds to the JSON property tableId
6148 6149 6150 |
# File 'lib/google/apis/retail_v2/classes.rb', line 6148 def table_id @table_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6155 6156 6157 6158 |
# File 'lib/google/apis/retail_v2/classes.rb', line 6155 def update!(**args) @dataset_id = args[:dataset_id] if args.key?(:dataset_id) @table_id = args[:table_id] if args.key?(:table_id) end |