Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaLanguageInfo
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaLanguageInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb
Overview
Language info for DataStore.
Instance Attribute Summary collapse
-
#language ⇒ String
Output only.
-
#language_code ⇒ String
The language code for the DataStore.
-
#normalized_language_code ⇒ String
Output only.
-
#region ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaLanguageInfo
constructor
A new instance of GoogleCloudDiscoveryengineV1betaLanguageInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaLanguageInfo
Returns a new instance of GoogleCloudDiscoveryengineV1betaLanguageInfo.
17318 17319 17320 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 17318 def initialize(**args) update!(**args) end |
Instance Attribute Details
#language ⇒ String
Output only. Language part of normalized_language_code. E.g.: en-US
-> en
,
zh-Hans-HK
-> zh
, en
-> en
.
Corresponds to the JSON property language
17298 17299 17300 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 17298 def language @language end |
#language_code ⇒ String
The language code for the DataStore.
Corresponds to the JSON property languageCode
17303 17304 17305 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 17303 def language_code @language_code end |
#normalized_language_code ⇒ String
Output only. This is the normalized form of language_code. E.g.: language_code
of en-GB
, en_GB
, en-UK
or en-gb
will have normalized_language_code of
en-GB
.
Corresponds to the JSON property normalizedLanguageCode
17310 17311 17312 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 17310 def normalized_language_code @normalized_language_code end |
#region ⇒ String
Output only. Region part of normalized_language_code, if present. E.g.: en-US
-> US
, zh-Hans-HK
-> HK
, en
-> `.
Corresponds to the JSON property
region`
17316 17317 17318 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 17316 def region @region end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17323 17324 17325 17326 17327 17328 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 17323 def update!(**args) @language = args[:language] if args.key?(:language) @language_code = args[:language_code] if args.key?(:language_code) @normalized_language_code = args[:normalized_language_code] if args.key?(:normalized_language_code) @region = args[:region] if args.key?(:region) end |