Class: Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1GcsDestination

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/datalabeling_v1beta1/classes.rb,
generated/google/apis/datalabeling_v1beta1/representations.rb,
generated/google/apis/datalabeling_v1beta1/representations.rb

Overview

Export destination of the data.Only gcs path is allowed in output_uri.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatalabelingV1alpha1GcsDestination

Returns a new instance of GoogleCloudDatalabelingV1alpha1GcsDestination.



162
163
164
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 162

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#mime_typeString

Required. The format of the gcs destination. Only "text/csv" and "application/ json" are supported. Corresponds to the JSON property mimeType

Returns:

  • (String)


155
156
157
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 155

def mime_type
  @mime_type
end

#output_uriString

Required. The output uri of destination file. Corresponds to the JSON property outputUri

Returns:

  • (String)


160
161
162
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 160

def output_uri
  @output_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



167
168
169
170
# File 'generated/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