Class: Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1GcsDestination

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) ⇒ GoogleCloudDatalabelingV1beta1GcsDestination

Returns a new instance of GoogleCloudDatalabelingV1beta1GcsDestination.



2391
2392
2393
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 2391

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)


2384
2385
2386
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 2384

def mime_type
  @mime_type
end

#output_uriString

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

Returns:

  • (String)


2389
2390
2391
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 2389

def output_uri
  @output_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2396
2397
2398
2399
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 2396

def update!(**args)
  @mime_type = args[:mime_type] if args.key?(:mime_type)
  @output_uri = args[:output_uri] if args.key?(:output_uri)
end