google-apis-admin_directory_v1 0.29.0 → 0.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 85324b7508d87d9bef3bff5568f15ac35ef130eaeb98009ae1e71daa9b97d4de
4
- data.tar.gz: 68f37026d49429504fba72c4aee9c60d97846cc86f982eea29b109e7b67aa569
3
+ metadata.gz: 8a733be50c796c40fa094852ca734acf102a5094b3c7125fe7ebd1e91f4d0385
4
+ data.tar.gz: 4b7577c6d7a77587c8f3bb18a5a5905eb9591e4b30a0a9ea52a7b09418a6cb87
5
5
  SHA512:
6
- metadata.gz: d72b0bd216cc7552df87af0392a55c6d1cbf62d949279e4f0d35362c218cfae2e749f850b74864f6c475502dd21c1b64927940adc0163e6ea0aae20c56824e10
7
- data.tar.gz: 27a1f94dae41ebc12c0fcbb0574b64b6d34bca41b6687f04cdf8a80c0d64c508959ac1d28a4004f37db0ce5005de1bc3331cde8d0170daf3ce64c428ccc6bfed
6
+ metadata.gz: 39bea2b3dbd1b5f16fa0bfb90bbe17daf83e80d1604749f79e31bef04e6523be4fbc4d111e522f1f86bfbce7f628998a80e081c95051ee31b0247c0b236c4162
7
+ data.tar.gz: 85aadd69b4f9b6eb37e1617682c371fbdd3c96d51243caf921d72248a524fcaca57be0da81f275cbb4654f7560a6e55fc8170245ecf1822f7b833ba67c80e979
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-admin_directory_v1
2
2
 
3
+ ### v0.30.0 (2022-08-11)
4
+
5
+ * Regenerated from discovery document revision 20220809
6
+
3
7
  ### v0.29.0 (2022-08-04)
4
8
 
5
9
  * Regenerated from discovery document revision 20220802
@@ -672,7 +672,10 @@ module Google
672
672
  # @return [String]
673
673
  attr_accessor :kind
674
674
 
675
- # Additional parameters controlling delivery channel behavior. Optional.
675
+ # Additional parameters controlling delivery channel behavior. Optional. For
676
+ # example, `params.ttl` specifies the time-to-live in seconds for the
677
+ # notification channel, where the default is 2 hours and the maximum TTL is 2
678
+ # days.
676
679
  # Corresponds to the JSON property `params`
677
680
  # @return [Hash<String,String>]
678
681
  attr_accessor :params
@@ -2283,6 +2286,50 @@ module Google
2283
2286
  end
2284
2287
  end
2285
2288
 
2289
+ # The Directory API manages aliases, which are alternative email addresses.
2290
+ class GroupAlias
2291
+ include Google::Apis::Core::Hashable
2292
+
2293
+ # The alias email address.
2294
+ # Corresponds to the JSON property `alias`
2295
+ # @return [String]
2296
+ attr_accessor :alias
2297
+
2298
+ # ETag of the resource.
2299
+ # Corresponds to the JSON property `etag`
2300
+ # @return [String]
2301
+ attr_accessor :etag
2302
+
2303
+ # The unique ID of the group.
2304
+ # Corresponds to the JSON property `id`
2305
+ # @return [String]
2306
+ attr_accessor :id
2307
+
2308
+ # The type of the API resource. For Alias resources, the value is `admin#
2309
+ # directory#alias`.
2310
+ # Corresponds to the JSON property `kind`
2311
+ # @return [String]
2312
+ attr_accessor :kind
2313
+
2314
+ # The primary email address of the group.
2315
+ # Corresponds to the JSON property `primaryEmail`
2316
+ # @return [String]
2317
+ attr_accessor :primary_email
2318
+
2319
+ def initialize(**args)
2320
+ update!(**args)
2321
+ end
2322
+
2323
+ # Update properties of this object
2324
+ def update!(**args)
2325
+ @alias = args[:alias] if args.key?(:alias)
2326
+ @etag = args[:etag] if args.key?(:etag)
2327
+ @id = args[:id] if args.key?(:id)
2328
+ @kind = args[:kind] if args.key?(:kind)
2329
+ @primary_email = args[:primary_email] if args.key?(:primary_email)
2330
+ end
2331
+ end
2332
+
2286
2333
  #
2287
2334
  class Groups
2288
2335
  include Google::Apis::Core::Hashable
@@ -3882,7 +3929,7 @@ module Google
3882
3929
  attr_accessor :gender
3883
3930
 
3884
3931
  # Stores the hash format of the `password` property. The following `hashFunction`
3885
- # values are allowed: * `MD5` - Accepts simple hex-encoded values. * `SHA1` -
3932
+ # values are allowed: * `MD5` - Accepts simple hex-encoded values. * `SHA-1` -
3886
3933
  # Accepts simple hex-encoded values. * `crypt` - Compliant with the [C crypt
3887
3934
  # library](https://en.wikipedia.org/wiki/Crypt_%28C%29). Supports the DES, MD5 (
3888
3935
  # hash prefix `$1$`), SHA-256 (hash prefix `$5$`), and SHA-512 (hash prefix `$6$`
@@ -4276,6 +4323,50 @@ module Google
4276
4323
  end
4277
4324
  end
4278
4325
 
4326
+ # The Directory API manages aliases, which are alternative email addresses.
4327
+ class UserAlias
4328
+ include Google::Apis::Core::Hashable
4329
+
4330
+ # The alias email address.
4331
+ # Corresponds to the JSON property `alias`
4332
+ # @return [String]
4333
+ attr_accessor :alias
4334
+
4335
+ # ETag of the resource.
4336
+ # Corresponds to the JSON property `etag`
4337
+ # @return [String]
4338
+ attr_accessor :etag
4339
+
4340
+ # The unique ID for the user.
4341
+ # Corresponds to the JSON property `id`
4342
+ # @return [String]
4343
+ attr_accessor :id
4344
+
4345
+ # The type of the API resource. For Alias resources, the value is `admin#
4346
+ # directory#alias`.
4347
+ # Corresponds to the JSON property `kind`
4348
+ # @return [String]
4349
+ attr_accessor :kind
4350
+
4351
+ # The user's primary email address.
4352
+ # Corresponds to the JSON property `primaryEmail`
4353
+ # @return [String]
4354
+ attr_accessor :primary_email
4355
+
4356
+ def initialize(**args)
4357
+ update!(**args)
4358
+ end
4359
+
4360
+ # Update properties of this object
4361
+ def update!(**args)
4362
+ @alias = args[:alias] if args.key?(:alias)
4363
+ @etag = args[:etag] if args.key?(:etag)
4364
+ @id = args[:id] if args.key?(:id)
4365
+ @kind = args[:kind] if args.key?(:kind)
4366
+ @primary_email = args[:primary_email] if args.key?(:primary_email)
4367
+ end
4368
+ end
4369
+
4279
4370
  # JSON template for an email.
4280
4371
  class UserEmail
4281
4372
  include Google::Apis::Core::Hashable
@@ -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.29.0"
19
+ GEM_VERSION = "0.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220802"
25
+ REVISION = "20220809"
26
26
  end
27
27
  end
28
28
  end
@@ -334,6 +334,12 @@ module Google
334
334
  include Google::Apis::Core::JsonObjectSupport
335
335
  end
336
336
 
337
+ class GroupAlias
338
+ class Representation < Google::Apis::Core::JsonRepresentation; end
339
+
340
+ include Google::Apis::Core::JsonObjectSupport
341
+ end
342
+
337
343
  class Groups
338
344
  class Representation < Google::Apis::Core::JsonRepresentation; end
339
345
 
@@ -520,6 +526,12 @@ module Google
520
526
  include Google::Apis::Core::JsonObjectSupport
521
527
  end
522
528
 
529
+ class UserAlias
530
+ class Representation < Google::Apis::Core::JsonRepresentation; end
531
+
532
+ include Google::Apis::Core::JsonObjectSupport
533
+ end
534
+
523
535
  class UserEmail
524
536
  class Representation < Google::Apis::Core::JsonRepresentation; end
525
537
 
@@ -1236,6 +1248,17 @@ module Google
1236
1248
  end
1237
1249
  end
1238
1250
 
1251
+ class GroupAlias
1252
+ # @private
1253
+ class Representation < Google::Apis::Core::JsonRepresentation
1254
+ property :alias, as: 'alias'
1255
+ property :etag, as: 'etag'
1256
+ property :id, as: 'id'
1257
+ property :kind, as: 'kind'
1258
+ property :primary_email, as: 'primaryEmail'
1259
+ end
1260
+ end
1261
+
1239
1262
  class Groups
1240
1263
  # @private
1241
1264
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1675,6 +1698,17 @@ module Google
1675
1698
  end
1676
1699
  end
1677
1700
 
1701
+ class UserAlias
1702
+ # @private
1703
+ class Representation < Google::Apis::Core::JsonRepresentation
1704
+ property :alias, as: 'alias'
1705
+ property :etag, as: 'etag'
1706
+ property :id, as: 'id'
1707
+ property :kind, as: 'kind'
1708
+ property :primary_email, as: 'primaryEmail'
1709
+ end
1710
+ end
1711
+
1678
1712
  class UserEmail
1679
1713
  # @private
1680
1714
  class Representation < Google::Apis::Core::JsonRepresentation
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.29.0
4
+ version: 0.30.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: 2022-08-08 00:00:00.000000000 Z
11
+ date: 2022-08-15 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.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-admin_directory_v1/v0.30.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: []