Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaOutputResultBigQueryOutputResult

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_idString

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

Returns:

  • (String)


8792
8793
8794
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8792

def dataset_id
  @dataset_id
end

#table_idString

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

Returns:

  • (String)


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