class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1GcsDestination
Export destination of the data.Only gcs path is allowed in output_uri.
Attributes
mime_type[RW]
Required. The format of the gcs destination. Only “text/csv” and “application/ json” are supported. Corresponds to the JSON property `mimeType` @return [String]
output_uri[RW]
Required. The output uri of destination file. Corresponds to the JSON property `outputUri` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 162 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 167 def update!(**args) @mime_type = args[:mime_type] if args.key?(:mime_type) @output_uri = args[:output_uri] if args.key?(:output_uri) end