Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaImportUserEventsRequest
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaImportUserEventsRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb
Overview
Request message for the ImportUserEvents request.
Instance Attribute Summary collapse
-
#bigquery_source ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBigQuerySource
BigQuery source import data from.
-
#error_config ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaImportErrorConfig
Configuration of destination for Import related errors.
-
#gcs_source ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaGcsSource
Cloud Storage location for input content.
-
#inline_source ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaImportUserEventsRequestInlineSource
The inline source for the input config for ImportUserEvents method.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaImportUserEventsRequest
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaImportUserEventsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaImportUserEventsRequest
Returns a new instance of GoogleCloudDiscoveryengineV1alphaImportUserEventsRequest.
2312 2313 2314 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2312 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bigquery_source ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBigQuerySource
BigQuery source import data from.
Corresponds to the JSON property bigquerySource
2295 2296 2297 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2295 def bigquery_source @bigquery_source end |
#error_config ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaImportErrorConfig
Configuration of destination for Import related errors.
Corresponds to the JSON property errorConfig
2300 2301 2302 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2300 def error_config @error_config end |
#gcs_source ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaGcsSource
Cloud Storage location for input content.
Corresponds to the JSON property gcsSource
2305 2306 2307 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2305 def gcs_source @gcs_source end |
#inline_source ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaImportUserEventsRequestInlineSource
The inline source for the input config for ImportUserEvents method.
Corresponds to the JSON property inlineSource
2310 2311 2312 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2310 def inline_source @inline_source end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2317 2318 2319 2320 2321 2322 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2317 def update!(**args) @bigquery_source = args[:bigquery_source] if args.key?(:bigquery_source) @error_config = args[:error_config] if args.key?(:error_config) @gcs_source = args[:gcs_source] if args.key?(:gcs_source) @inline_source = args[:inline_source] if args.key?(:inline_source) end |