Class: Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1OutputConfig

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

The configuration of output data.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatalabelingV1beta1OutputConfig

Returns a new instance of GoogleCloudDatalabelingV1beta1OutputConfig.



3909
3910
3911
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 3909

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

Instance Attribute Details

#gcs_destinationGoogle::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1GcsDestination

Export destination of the data.Only gcs path is allowed in output_uri. Corresponds to the JSON property gcsDestination



3902
3903
3904
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 3902

def gcs_destination
  @gcs_destination
end

#gcs_folder_destinationGoogle::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1GcsFolderDestination

Export folder destination of the data. Corresponds to the JSON property gcsFolderDestination



3907
3908
3909
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 3907

def gcs_folder_destination
  @gcs_folder_destination
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3914
3915
3916
3917
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 3914

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