class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1ExportDataRequest

Request message for ExportData API.

Attributes

annotated_dataset[RW]

Required. Annotated dataset resource name. DataItem in Dataset and their annotations in specified annotated dataset will be exported. It's in format of projects/`project_id`/datasets/`dataset_id`/annotatedDatasets/ ` annotated_dataset_id` Corresponds to the JSON property `annotatedDataset` @return [String]

filter[RW]

Optional. Filter is not supported at this moment. Corresponds to the JSON property `filter` @return [String]

output_config[RW]

The configuration of output data. Corresponds to the JSON property `outputConfig` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1OutputConfig]

user_email_address[RW]

Email of the user who started the export 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 2245
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 2250
def update!(**args)
  @annotated_dataset = args[:annotated_dataset] if args.key?(:annotated_dataset)
  @filter = args[:filter] if args.key?(:filter)
  @output_config = args[:output_config] if args.key?(:output_config)
  @user_email_address = args[:user_email_address] if args.key?(:user_email_address)
end