Class: Google::Apis::RetailV2::GoogleCloudRetailV2OutputResult

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

Output result that stores the information about where the exported data is stored.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRetailV2OutputResult

Returns a new instance of GoogleCloudRetailV2OutputResult.



2668
2669
2670
# File 'lib/google/apis/retail_v2/classes.rb', line 2668

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

Instance Attribute Details

#bigquery_resultArray<Google::Apis::RetailV2::GoogleCloudRetailV2BigQueryOutputResult>

The BigQuery location where the result is stored. Corresponds to the JSON property bigqueryResult



2661
2662
2663
# File 'lib/google/apis/retail_v2/classes.rb', line 2661

def bigquery_result
  @bigquery_result
end

#gcs_resultArray<Google::Apis::RetailV2::GoogleCloudRetailV2GcsOutputResult>

The Google Cloud Storage location where the result is stored. Corresponds to the JSON property gcsResult



2666
2667
2668
# File 'lib/google/apis/retail_v2/classes.rb', line 2666

def gcs_result
  @gcs_result
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2673
2674
2675
2676
# File 'lib/google/apis/retail_v2/classes.rb', line 2673

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