Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaOutputResultBigQueryOutputResult
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaOutputResultBigQueryOutputResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/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) ⇒ GoogleCloudDiscoveryengineV1alphaOutputResultBigQueryOutputResult
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaOutputResultBigQueryOutputResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaOutputResultBigQueryOutputResult
Returns a new instance of GoogleCloudDiscoveryengineV1alphaOutputResultBigQueryOutputResult.
8799 8800 8801 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8799 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset_id ⇒ String
The ID of a BigQuery Dataset.
Corresponds to the JSON property datasetId
8792 8793 8794 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8792 def dataset_id @dataset_id end |
#table_id ⇒ String
The ID of a BigQuery Table.
Corresponds to the JSON property tableId
8797 8798 8799 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8797 def table_id @table_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8804 8805 8806 8807 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8804 def update!(**args) @dataset_id = args[:dataset_id] if args.key?(:dataset_id) @table_id = args[:table_id] if args.key?(:table_id) end |