Class: Google::Apis::TranslateV3::GcsDestination
- Inherits:
-
Object
- Object
- Google::Apis::TranslateV3::GcsDestination
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/translate_v3/classes.rb,
lib/google/apis/translate_v3/representations.rb,
lib/google/apis/translate_v3/representations.rb
Overview
The Google Cloud Storage location for the output content.
Instance Attribute Summary collapse
-
#output_uri_prefix ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GcsDestination
constructor
A new instance of GcsDestination.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GcsDestination
Returns a new instance of GcsDestination.
440 441 442 |
# File 'lib/google/apis/translate_v3/classes.rb', line 440 def initialize(**args) update!(**args) end |
Instance Attribute Details
#output_uri_prefix ⇒ String
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
438 439 440 |
# File 'lib/google/apis/translate_v3/classes.rb', line 438 def output_uri_prefix @output_uri_prefix end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
445 446 447 |
# File 'lib/google/apis/translate_v3/classes.rb', line 445 def update!(**args) @output_uri_prefix = args[:output_uri_prefix] if args.key?(:output_uri_prefix) end |