Class: Google::Apis::TranslateV3::GcsDestination

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

Overview

The Google Cloud Storage location for the output content.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GcsDestination

Returns a new instance of GcsDestination.



232
233
234
# File 'generated/google/apis/translate_v3/classes.rb', line 232

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

Instance Attribute Details

#output_uri_prefixString

Required. The bucket used in 'output_uri_prefix' must exist and there must be no files under 'output_uri_prefix'. 'output_uri_prefix' must end with "/" and start with "gs://". One 'output_uri_prefix' can only be used by one batch translation job at a time. Otherwise an INVALID_ARGUMENT (400) error is returned. Corresponds to the JSON property outputUriPrefix

Returns:

  • (String)


230
231
232
# File 'generated/google/apis/translate_v3/classes.rb', line 230

def output_uri_prefix
  @output_uri_prefix
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



237
238
239
# File 'generated/google/apis/translate_v3/classes.rb', line 237

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