class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1ImportDataRequest
Request message for ImportData API.
Attributes
input_config[RW]
The configuration of input data, including data type, location, etc. Corresponds to the JSON property `inputConfig` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1InputConfig]
user_email_address[RW]
Email of the user who started the import task and should be notified by email. If empty no notification will be sent. Corresponds to the JSON property `userEmailAddress` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 2799 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 2804 def update!(**args) @input_config = args[:input_config] if args.key?(:input_config) @user_email_address = args[:user_email_address] if args.key?(:user_email_address) end