Class: Google::Apis::TranslateV3::GcsSource
- Inherits:
-
Object
- Object
- Google::Apis::TranslateV3::GcsSource
- 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 input content.
Instance Attribute Summary collapse
-
#input_uri ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GcsSource
constructor
A new instance of GcsSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GcsSource
Returns a new instance of GcsSource.
251 252 253 |
# File 'lib/google/apis/translate_v3/classes.rb', line 251 def initialize(**args) update!(**args) end |
Instance Attribute Details
#input_uri ⇒ String
Required. Source data URI. For example, gs://my_bucket/my_object
.
Corresponds to the JSON property inputUri
249 250 251 |
# File 'lib/google/apis/translate_v3/classes.rb', line 249 def input_uri @input_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
256 257 258 |
# File 'lib/google/apis/translate_v3/classes.rb', line 256 def update!(**args) @input_uri = args[:input_uri] if args.key?(:input_uri) end |