class Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1ImportCatalogItemsRequest
Request message for Import methods.
Attributes
Configuration of destination for Import related errors. Corresponds to the JSON property `errorsConfig` @return [Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1ImportErrorsConfig]
The input config source. Corresponds to the JSON property `inputConfig` @return [Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1InputConfig]
Optional. Unique identifier provided by client, within the ancestor dataset scope. Ensures idempotency and used for request deduplication. Server- generated if unspecified. Up to 128 characters long. This is returned as google.longrunning.Operation.name in the response. Corresponds to the JSON property `requestId` @return [String]
Optional. Indicates which fields in the provided imported 'items' to update. If not set, will by default update all fields. Corresponds to the JSON property `updateMask` @return [String]
Public Class Methods
# File lib/google/apis/recommendationengine_v1beta1/classes.rb, line 645 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/recommendationengine_v1beta1/classes.rb, line 650 def update!(**args) @errors_config = args[:errors_config] if args.key?(:errors_config) @input_config = args[:input_config] if args.key?(:input_config) @request_id = args[:request_id] if args.key?(:request_id) @update_mask = args[:update_mask] if args.key?(:update_mask) end