google-apis-admin_directory_v1 0.80.0 → 0.81.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: c14b2245c24e3dcaa67bd68c2c01611f18ec3b45c67424b2f35d20ee7f867300
4
- data.tar.gz: f6605e646463af90a941ca9fff9fa16b09c9ac6c5f1a16d096ccda040586e6f0
3
+ metadata.gz: e0786481f0d656df964dff4a10f091f21615d54867d025090dd65a6c43d8e05e
4
+ data.tar.gz: 3832a96741a347e24213b397a160411a3c11db4f9078ab09ac0b2255abd5a7fd
5
5
  SHA512:
6
- metadata.gz: '08d8d350fa2b327df03245aba43ec629492ae8b8cdff1ebf6a96ad4018b7d34a3051f0b9cf58eb7257841d0920a519d21156f3ac32633a311f3efe8706044a1b'
7
- data.tar.gz: 1851d89cdfa98738d0187a849da6b13ea4125df9051d5165ae24d2e7bad35d2c7fc2fa49ab73c1b83b19e9dea51ca8dce1aa9914ef6dfad463cf0f47ac126142
6
+ metadata.gz: c8f0ee5a09596e6dcfc42f920550dc65dfe0904696236972b8336eca4b44cfd11c606be988ab7e377f4ffd8c4a1992b75d4eaa91084285c0e8918def597c4430
7
+ data.tar.gz: ff4a8a7cadf37dbd190b021b2d193bad15cab18aa3099d5b5d6137ca2913f3a4c8ce61d3d2349c751b98906a8eddbe464ccda00a3d1b1a30f28619d001676ef3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-admin_directory_v1
2
2
 
3
+ ### v0.81.0 (2026-09-06)
4
+
5
+ * Regenerated from discovery document revision 20260902
6
+
3
7
  ### v0.80.0 (2026-08-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20260729
@@ -2525,6 +2525,26 @@ module Google
2525
2525
  end
2526
2526
  end
2527
2527
 
2528
+ # Details regarding the expiration of this role assignment. Used to
2529
+ # automatically revoke access when the time limit is reached.
2530
+ class ExpirationDetails
2531
+ include Google::Apis::Core::Hashable
2532
+
2533
+ # The specific timestamp when the role assignment expires.
2534
+ # Corresponds to the JSON property `expireTime`
2535
+ # @return [String]
2536
+ attr_accessor :expire_time
2537
+
2538
+ def initialize(**args)
2539
+ update!(**args)
2540
+ end
2541
+
2542
+ # Update properties of this object
2543
+ def update!(**args)
2544
+ @expire_time = args[:expire_time] if args.key?(:expire_time)
2545
+ end
2546
+ end
2547
+
2528
2548
  # External identifier used to link and identify this group across external
2529
2549
  # directory systems.
2530
2550
  class ExternalId
@@ -4146,6 +4166,12 @@ module Google
4146
4166
  # @return [String]
4147
4167
  attr_accessor :etag
4148
4168
 
4169
+ # Details regarding the expiration of this role assignment. Used to
4170
+ # automatically revoke access when the time limit is reached.
4171
+ # Corresponds to the JSON property `expirationDetails`
4172
+ # @return [Google::Apis::AdminDirectoryV1::ExpirationDetails]
4173
+ attr_accessor :expiration_details
4174
+
4149
4175
  # The type of the API resource. This is always `admin#directory#roleAssignment`.
4150
4176
  # Corresponds to the JSON property `kind`
4151
4177
  # @return [String]
@@ -4182,6 +4208,7 @@ module Google
4182
4208
  @assignee_type = args[:assignee_type] if args.key?(:assignee_type)
4183
4209
  @condition = args[:condition] if args.key?(:condition)
4184
4210
  @etag = args[:etag] if args.key?(:etag)
4211
+ @expiration_details = args[:expiration_details] if args.key?(:expiration_details)
4185
4212
  @kind = args[:kind] if args.key?(:kind)
4186
4213
  @org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
4187
4214
  @role_assignment_id = args[:role_assignment_id] if args.key?(:role_assignment_id)
@@ -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.80.0"
19
+ GEM_VERSION = "0.81.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260729"
25
+ REVISION = "20260902"
26
26
  end
27
27
  end
28
28
  end
@@ -382,6 +382,12 @@ module Google
382
382
  include Google::Apis::Core::JsonObjectSupport
383
383
  end
384
384
 
385
+ class ExpirationDetails
386
+ class Representation < Google::Apis::Core::JsonRepresentation; end
387
+
388
+ include Google::Apis::Core::JsonObjectSupport
389
+ end
390
+
385
391
  class ExternalId
386
392
  class Representation < Google::Apis::Core::JsonRepresentation; end
387
393
 
@@ -1453,6 +1459,13 @@ module Google
1453
1459
  end
1454
1460
  end
1455
1461
 
1462
+ class ExpirationDetails
1463
+ # @private
1464
+ class Representation < Google::Apis::Core::JsonRepresentation
1465
+ property :expire_time, as: 'expireTime'
1466
+ end
1467
+ end
1468
+
1456
1469
  class ExternalId
1457
1470
  # @private
1458
1471
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1839,6 +1852,8 @@ module Google
1839
1852
  property :assignee_type, as: 'assigneeType'
1840
1853
  property :condition, as: 'condition'
1841
1854
  property :etag, as: 'etag'
1855
+ property :expiration_details, as: 'expirationDetails', class: Google::Apis::AdminDirectoryV1::ExpirationDetails, decorator: Google::Apis::AdminDirectoryV1::ExpirationDetails::Representation
1856
+
1842
1857
  property :kind, as: 'kind'
1843
1858
  property :org_unit_id, as: 'orgUnitId'
1844
1859
  property :role_assignment_id, :numeric_string => true, as: 'roleAssignmentId'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-admin_directory_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.80.0
4
+ version: 0.81.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-admin_directory_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-admin_directory_v1/v0.80.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-admin_directory_v1/v0.81.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-admin_directory_v1
62
62
  rdoc_options: []
63
63
  require_paths: