class Google::Apis::RetailV2::GoogleCloudRetailV2ProductInputConfig

The input config source for products.

Attributes

big_query_source[RW]

BigQuery source import data from. Corresponds to the JSON property `bigQuerySource` @return [Google::Apis::RetailV2::GoogleCloudRetailV2BigQuerySource]

gcs_source[RW]

Google Cloud Storage location for input content. format. Corresponds to the JSON property `gcsSource` @return [Google::Apis::RetailV2::GoogleCloudRetailV2GcsSource]

product_inline_source[RW]

The inline source for the input config for ImportProducts method. Corresponds to the JSON property `productInlineSource` @return [Google::Apis::RetailV2::GoogleCloudRetailV2ProductInlineSource]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/retail_v2/classes.rb, line 1935
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/retail_v2/classes.rb, line 1940
def update!(**args)
  @big_query_source = args[:big_query_source] if args.key?(:big_query_source)
  @gcs_source = args[:gcs_source] if args.key?(:gcs_source)
  @product_inline_source = args[:product_inline_source] if args.key?(:product_inline_source)
end