Class: Google::Apis::RetailV2::GoogleCloudRetailV2OutputConfig
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2::GoogleCloudRetailV2OutputConfig
- 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
The output configuration setting.
Instance Attribute Summary collapse
-
#bigquery_destination ⇒ Google::Apis::RetailV2::GoogleCloudRetailV2OutputConfigBigQueryDestination
The BigQuery output destination configuration.
-
#gcs_destination ⇒ Google::Apis::RetailV2::GoogleCloudRetailV2OutputConfigGcsDestination
The Google Cloud Storage output destination configuration.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2OutputConfig
constructor
A new instance of GoogleCloudRetailV2OutputConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2OutputConfig
Returns a new instance of GoogleCloudRetailV2OutputConfig.
2751 2752 2753 |
# File 'lib/google/apis/retail_v2/classes.rb', line 2751 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bigquery_destination ⇒ Google::Apis::RetailV2::GoogleCloudRetailV2OutputConfigBigQueryDestination
The BigQuery output destination configuration.
Corresponds to the JSON property bigqueryDestination
2744 2745 2746 |
# File 'lib/google/apis/retail_v2/classes.rb', line 2744 def bigquery_destination @bigquery_destination end |
#gcs_destination ⇒ Google::Apis::RetailV2::GoogleCloudRetailV2OutputConfigGcsDestination
The Google Cloud Storage output destination configuration.
Corresponds to the JSON property gcsDestination
2749 2750 2751 |
# File 'lib/google/apis/retail_v2/classes.rb', line 2749 def gcs_destination @gcs_destination end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2756 2757 2758 2759 |
# File 'lib/google/apis/retail_v2/classes.rb', line 2756 def update!(**args) @bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination) @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination) end |