Class: Google::Apis::TranslateV3::GlossaryConfig
- Inherits:
-
Object
- Object
- Google::Apis::TranslateV3::GlossaryConfig
- 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
Configures which glossary is used for a specific target language and defines options for applying that glossary.
Instance Attribute Summary collapse
-
#glossary ⇒ String
Required.
-
#ignore_case ⇒ Boolean
(also: #ignore_case?)
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GlossaryConfig
constructor
A new instance of GlossaryConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GlossaryConfig
Returns a new instance of GlossaryConfig.
1063 1064 1065 |
# File 'lib/google/apis/translate_v3/classes.rb', line 1063 def initialize(**args) update!(**args) end |
Instance Attribute Details
#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`
1054 1055 1056 |
# File 'lib/google/apis/translate_v3/classes.rb', line 1054 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
1060 1061 1062 |
# File 'lib/google/apis/translate_v3/classes.rb', line 1060 def ignore_case @ignore_case end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1068 1069 1070 1071 |
# File 'lib/google/apis/translate_v3/classes.rb', line 1068 def update!(**args) @glossary = args[:glossary] if args.key?(:glossary) @ignore_case = args[:ignore_case] if args.key?(:ignore_case) end |