Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaOutputResultBigQueryOutputResult

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb

Overview

A BigQuery output result.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaOutputResultBigQueryOutputResult

Returns a new instance of GoogleCloudDiscoveryengineV1alphaOutputResultBigQueryOutputResult.



10892
10893
10894
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 10892

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#dataset_idString

The ID of a BigQuery Dataset. Corresponds to the JSON property datasetId

Returns:

  • (String)


10885
10886
10887
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 10885

def dataset_id
  @dataset_id
end

#table_idString

The ID of a BigQuery Table. Corresponds to the JSON property tableId

Returns:

  • (String)


10890
10891
10892
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 10890

def table_id
  @table_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10897
10898
10899
10900
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 10897

def update!(**args)
  @dataset_id = args[:dataset_id] if args.key?(:dataset_id)
  @table_id = args[:table_id] if args.key?(:table_id)
end