google-apis-admin_directory_v1 0.17.0 → 0.18.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 55a01193ce1792a608d73d9fff7cd4760cbb0bfd35caebe5c4a1551c778e4ab1
4
- data.tar.gz: 87cdb4420b14b73fcb592accd06c041fcb234db21d52c30e8da2c271aa3598e6
3
+ metadata.gz: c508f8e93f70f10cc3d1a3636bf075e74b0d18043601d8642b8ca4cdbe0cd892
4
+ data.tar.gz: 3db3798f90277d1f10229685dc0ede9bd6554a4355375990463527584d36bb85
5
5
  SHA512:
6
- metadata.gz: 7576317760c421fbea5cf3ba19209e9858606bfa656fe93b4e48fd8f6b6259c68bb4fe0043e104f2c6c14b149a755fb32303dd62474f84fb1eb39ea8be5d25e2
7
- data.tar.gz: 24d81874dd168fa7d1dbdbb9d457eaac192c01d2a16a176748659c71968ffc8253cf293a7f120bc471940f800a926f106838f7dbbeeb445ba506b07d9dbf4926
6
+ metadata.gz: ef713deb08e556377e2154565851e477f70e5a5ad4e8efda85551e5a45e61c679163c67110f18b4a536d83edf54d05661d9890bc6adcf9d5541751fef490e886
7
+ data.tar.gz: 20937db2d4b297b16539d78d94fda5f7782cfe4ea0f69e6b63e8364375bea00db4a6927247fd3d064df92921d7b461ea402aa491c4b54e9d22867271e7ea6717
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-admin_directory_v1
2
2
 
3
+ ### v0.18.0 (2021-12-08)
4
+
5
+ * Regenerated from discovery document revision 20211207
6
+
3
7
  ### v0.17.0 (2021-11-10)
4
8
 
5
9
  * Regenerated from discovery document revision 20211109
@@ -891,6 +891,16 @@ module Google
891
891
  # @return [String]
892
892
  attr_accessor :order_number
893
893
 
894
+ # The unique ID of the organizational unit. orgUnitPath is the human readable
895
+ # version of orgUnitId. While orgUnitPath may change by renaming an
896
+ # organizational unit within the path, orgUnitId is unchangeable for one
897
+ # organizational unit. This property can be [updated](/admin-sdk/directory/v1/
898
+ # guides/manage-chrome-devices#update_chrome_device) using the API, and this
899
+ # will be supported in the future.
900
+ # Corresponds to the JSON property `orgUnitId`
901
+ # @return [String]
902
+ attr_accessor :org_unit_id
903
+
894
904
  # The full parent path with the organizational unit's name associated with the
895
905
  # device. Path names are case insensitive. If the parent organizational unit is
896
906
  # the top-level organization, it is represented as a forward slash, `/`. This
@@ -994,6 +1004,7 @@ module Google
994
1004
  @model = args[:model] if args.key?(:model)
995
1005
  @notes = args[:notes] if args.key?(:notes)
996
1006
  @order_number = args[:order_number] if args.key?(:order_number)
1007
+ @org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
997
1008
  @org_unit_path = args[:org_unit_path] if args.key?(:org_unit_path)
998
1009
  @os_version = args[:os_version] if args.key?(:os_version)
999
1010
  @platform_version = args[:platform_version] if args.key?(:platform_version)
@@ -4390,18 +4401,29 @@ module Google
4390
4401
  include Google::Apis::Core::Hashable
4391
4402
 
4392
4403
  # Other language. User can provide own language name if there is no
4393
- # corresponding Google III language code. If this is set LanguageCode can't be
4394
- # set
4404
+ # corresponding ISO 639 language code. If this is set `languageCode` can't be
4405
+ # set.
4395
4406
  # Corresponds to the JSON property `customLanguage`
4396
4407
  # @return [String]
4397
4408
  attr_accessor :custom_language
4398
4409
 
4399
- # Language Code. Should be used for storing Google III LanguageCode string
4400
- # representation for language. Illegal values cause SchemaException.
4410
+ # Language Code. Should be used for storing ISO 639 LanguageCode string
4411
+ # representation for language. See the [Language Codes](/admin-sdk/directory/v1/
4412
+ # languages) page for the list of supported codes. Valid language codes outside
4413
+ # the supported set will be accepted by the API but may lead to unexpected
4414
+ # behavior. Illegal values cause SchemaException. If this is set `customLanguage`
4415
+ # can't be set.
4401
4416
  # Corresponds to the JSON property `languageCode`
4402
4417
  # @return [String]
4403
4418
  attr_accessor :language_code
4404
4419
 
4420
+ # Preference. Optional field, which if present, controls whether the specified `
4421
+ # languageCode` is stored as the user's preferred language. If `customLanguage`
4422
+ # is set, this can't be set. Allowed values are `preferred` and `not_preferred`.
4423
+ # Corresponds to the JSON property `preference`
4424
+ # @return [String]
4425
+ attr_accessor :preference
4426
+
4405
4427
  def initialize(**args)
4406
4428
  update!(**args)
4407
4429
  end
@@ -4410,6 +4432,7 @@ module Google
4410
4432
  def update!(**args)
4411
4433
  @custom_language = args[:custom_language] if args.key?(:custom_language)
4412
4434
  @language_code = args[:language_code] if args.key?(:language_code)
4435
+ @preference = args[:preference] if args.key?(:preference)
4413
4436
  end
4414
4437
  end
4415
4438
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AdminDirectoryV1
18
18
  # Version of the google-apis-admin_directory_v1 gem
19
- GEM_VERSION = "0.17.0"
19
+ GEM_VERSION = "0.18.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211109"
25
+ REVISION = "20211207"
26
26
  end
27
27
  end
28
28
  end
@@ -853,6 +853,7 @@ module Google
853
853
  property :model, as: 'model'
854
854
  property :notes, as: 'notes'
855
855
  property :order_number, as: 'orderNumber'
856
+ property :org_unit_id, as: 'orgUnitId'
856
857
  property :org_unit_path, as: 'orgUnitPath'
857
858
  property :os_version, as: 'osVersion'
858
859
  property :platform_version, as: 'platformVersion'
@@ -1707,6 +1708,7 @@ module Google
1707
1708
  class Representation < Google::Apis::Core::JsonRepresentation
1708
1709
  property :custom_language, as: 'customLanguage'
1709
1710
  property :language_code, as: 'languageCode'
1711
+ property :preference, as: 'preference'
1710
1712
  end
1711
1713
  end
1712
1714
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-admin_directory_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-15 00:00:00.000000000 Z
11
+ date: 2021-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-admin_directory_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-admin_directory_v1/v0.17.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-admin_directory_v1/v0.18.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-admin_directory_v1
63
63
  post_install_message:
64
64
  rdoc_options: []