Class: Google::Apis::TranslateV3::InputConfig
- Inherits:
-
Object
- Object
- Google::Apis::TranslateV3::InputConfig
- 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
Input configuration for BatchTranslateText request.
Instance Attribute Summary collapse
-
#gcs_source ⇒ Google::Apis::TranslateV3::GcsSource
The Google Cloud Storage location for the input content.
-
#mime_type ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InputConfig
constructor
A new instance of InputConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InputConfig
Returns a new instance of InputConfig.
678 679 680 |
# File 'lib/google/apis/translate_v3/classes.rb', line 678 def initialize(**args) update!(**args) end |
Instance Attribute Details
#gcs_source ⇒ Google::Apis::TranslateV3::GcsSource
The Google Cloud Storage location for the input content.
Corresponds to the JSON property gcsSource
669 670 671 |
# File 'lib/google/apis/translate_v3/classes.rb', line 669 def gcs_source @gcs_source end |
#mime_type ⇒ String
Optional. Can be "text/plain" or "text/html". For .tsv
, "text/html" is used
if mime_type is missing. For .html
, this field must be "text/html" or empty.
For .txt
, this field must be "text/plain" or empty.
Corresponds to the JSON property mimeType
676 677 678 |
# File 'lib/google/apis/translate_v3/classes.rb', line 676 def mime_type @mime_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
683 684 685 686 |
# File 'lib/google/apis/translate_v3/classes.rb', line 683 def update!(**args) @gcs_source = args[:gcs_source] if args.key?(:gcs_source) @mime_type = args[:mime_type] if args.key?(:mime_type) end |