Class: Google::Apis::TranslateV3::TranslateTextGlossaryConfig
- Inherits:
-
Object
- Object
- Google::Apis::TranslateV3::TranslateTextGlossaryConfig
- 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 more...
Overview
Configures which glossary is used for a specific target language and defines options for applying that glossary.
Instance Attribute Summary collapse
-
#contextual_translation_enabled ⇒ Boolean
(also: #contextual_translation_enabled?)
Optional.
-
#glossary ⇒ String
Required.
-
#ignore_case ⇒ Boolean
(also: #ignore_case?)
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TranslateTextGlossaryConfig
constructor
A new instance of TranslateTextGlossaryConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TranslateTextGlossaryConfig
Returns a new instance of TranslateTextGlossaryConfig.
2268 2269 2270 |
# File 'lib/google/apis/translate_v3/classes.rb', line 2268 def initialize(**args) update!(**args) end |
Instance Attribute Details
#contextual_translation_enabled ⇒ Boolean Also known as: contextual_translation_enabled?
Optional. If set to true, the glossary will be used for contextual translation.
Corresponds to the JSON property contextualTranslationEnabled
2251 2252 2253 |
# File 'lib/google/apis/translate_v3/classes.rb', line 2251 def contextual_translation_enabled @contextual_translation_enabled end |
#glossary ⇒ String
Required. The glossary
to be applied for this translation. The format
depends on the glossary: - User-provided custom glossary: projects/
project-
number-or-id/locations/
location-id/glossaries/
glossary-id`
Corresponds to the JSON property
glossary`
2259 2260 2261 |
# File 'lib/google/apis/translate_v3/classes.rb', line 2259 def glossary @glossary end |
#ignore_case ⇒ Boolean Also known as: ignore_case?
Optional. Indicates match is case insensitive. The default value is false
if
missing.
Corresponds to the JSON property ignoreCase
2265 2266 2267 |
# File 'lib/google/apis/translate_v3/classes.rb', line 2265 def ignore_case @ignore_case end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2273 2274 2275 2276 2277 |
# File 'lib/google/apis/translate_v3/classes.rb', line 2273 def update!(**args) @contextual_translation_enabled = args[:contextual_translation_enabled] if args.key?(:contextual_translation_enabled) @glossary = args[:glossary] if args.key?(:glossary) @ignore_case = args[:ignore_case] if args.key?(:ignore_case) end |