Class: Google::Apis::RetailV2beta::GoogleCloudRetailV2alphaBigQueryOutputResult

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRetailV2alphaBigQueryOutputResult

Returns a new instance of GoogleCloudRetailV2alphaBigQueryOutputResult.



1237
1238
1239
# File 'lib/google/apis/retail_v2beta/classes.rb', line 1237

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)


1230
1231
1232
# File 'lib/google/apis/retail_v2beta/classes.rb', line 1230

def dataset_id
  @dataset_id
end

#table_idString

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

Returns:

  • (String)


1235
1236
1237
# File 'lib/google/apis/retail_v2beta/classes.rb', line 1235

def table_id
  @table_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1242
1243
1244
1245
# File 'lib/google/apis/retail_v2beta/classes.rb', line 1242

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