Class: Google::Apis::RetailV2::GoogleCloudRetailV2UserEventInputConfig
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2::GoogleCloudRetailV2UserEventInputConfig
- 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 input config source for user events.
Instance Attribute Summary collapse
-
#big_query_source ⇒ Google::Apis::RetailV2::GoogleCloudRetailV2BigQuerySource
BigQuery source import data from.
-
#gcs_source ⇒ Google::Apis::RetailV2::GoogleCloudRetailV2GcsSource
Google Cloud Storage location for input content.
-
#user_event_inline_source ⇒ Google::Apis::RetailV2::GoogleCloudRetailV2UserEventInlineSource
The inline source for the input config for ImportUserEvents method.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2UserEventInputConfig
constructor
A new instance of GoogleCloudRetailV2UserEventInputConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2UserEventInputConfig
Returns a new instance of GoogleCloudRetailV2UserEventInputConfig.
6609 6610 6611 |
# File 'lib/google/apis/retail_v2/classes.rb', line 6609 def initialize(**args) update!(**args) end |
Instance Attribute Details
#big_query_source ⇒ Google::Apis::RetailV2::GoogleCloudRetailV2BigQuerySource
BigQuery source import data from.
Corresponds to the JSON property bigQuerySource
6597 6598 6599 |
# File 'lib/google/apis/retail_v2/classes.rb', line 6597 def big_query_source @big_query_source end |
#gcs_source ⇒ Google::Apis::RetailV2::GoogleCloudRetailV2GcsSource
Google Cloud Storage location for input content.
Corresponds to the JSON property gcsSource
6602 6603 6604 |
# File 'lib/google/apis/retail_v2/classes.rb', line 6602 def gcs_source @gcs_source end |
#user_event_inline_source ⇒ Google::Apis::RetailV2::GoogleCloudRetailV2UserEventInlineSource
The inline source for the input config for ImportUserEvents method.
Corresponds to the JSON property userEventInlineSource
6607 6608 6609 |
# File 'lib/google/apis/retail_v2/classes.rb', line 6607 def user_event_inline_source @user_event_inline_source end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6614 6615 6616 6617 6618 |
# File 'lib/google/apis/retail_v2/classes.rb', line 6614 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) @user_event_inline_source = args[:user_event_inline_source] if args.key?(:user_event_inline_source) end |