Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaLanguageInfo

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaLanguageInfo

Returns a new instance of GoogleCloudDiscoveryengineV1alphaLanguageInfo.



10826
10827
10828
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 10826

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#languageString

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

Returns:

  • (String)


10806
10807
10808
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 10806

def language
  @language
end

#language_codeString

The language code for the DataStore. Corresponds to the JSON property languageCode

Returns:

  • (String)


10811
10812
10813
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 10811

def language_code
  @language_code
end

#normalized_language_codeString

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

Returns:

  • (String)


10818
10819
10820
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 10818

def normalized_language_code
  @normalized_language_code
end

#regionString

Output only. Region part of normalized_language_code, if present. E.g.: en-US -> US, zh-Hans-HK -> HK, en -> `. Corresponds to the JSON propertyregion`

Returns:

  • (String)


10824
10825
10826
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 10824

def region
  @region
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10831
10832
10833
10834
10835
10836
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 10831

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