Class: Google::Apis::TranslateV3beta1::GcsDestination

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/translate_v3beta1/classes.rb,
lib/google/apis/translate_v3beta1/representations.rb,
lib/google/apis/translate_v3beta1/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.



468
469
470
# File 'lib/google/apis/translate_v3beta1/classes.rb', line 468

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

Instance Attribute Details

#output_uri_prefixString

Required. There must be no files under 'output_uri_prefix'. 'output_uri_prefix' must end with "/" and start with "gs://", otherwise an INVALID_ARGUMENT (400) error is returned. Corresponds to the JSON property outputUriPrefix

Returns:

  • (String)


466
467
468
# File 'lib/google/apis/translate_v3beta1/classes.rb', line 466

def output_uri_prefix
  @output_uri_prefix
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



473
474
475
# File 'lib/google/apis/translate_v3beta1/classes.rb', line 473

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