google-apis-admin_directory_v1 0.79.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0786481f0d656df964dff4a10f091f21615d54867d025090dd65a6c43d8e05e
|
|
4
|
+
data.tar.gz: 3832a96741a347e24213b397a160411a3c11db4f9078ab09ac0b2255abd5a7fd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8f0ee5a09596e6dcfc42f920550dc65dfe0904696236972b8336eca4b44cfd11c606be988ab7e377f4ffd8c4a1992b75d4eaa91084285c0e8918def597c4430
|
|
7
|
+
data.tar.gz: ff4a8a7cadf37dbd190b021b2d193bad15cab18aa3099d5b5d6137ca2913f3a4c8ce61d3d2349c751b98906a8eddbe464ccda00a3d1b1a30f28619d001676ef3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
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
|
+
|
|
7
|
+
### v0.80.0 (2026-08-02)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260729
|
|
10
|
+
|
|
3
11
|
### v0.79.0 (2026-06-14)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260531
|
|
@@ -2525,6 +2525,52 @@ 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
|
+
|
|
2548
|
+
# External identifier used to link and identify this group across external
|
|
2549
|
+
# directory systems.
|
|
2550
|
+
class ExternalId
|
|
2551
|
+
include Google::Apis::Core::Hashable
|
|
2552
|
+
|
|
2553
|
+
# The unique identifier string assigned by the external provider.
|
|
2554
|
+
# Corresponds to the JSON property `id`
|
|
2555
|
+
# @return [String]
|
|
2556
|
+
attr_accessor :id
|
|
2557
|
+
|
|
2558
|
+
# The system or identity provider managing this ID.
|
|
2559
|
+
# Corresponds to the JSON property `namespace`
|
|
2560
|
+
# @return [String]
|
|
2561
|
+
attr_accessor :namespace
|
|
2562
|
+
|
|
2563
|
+
def initialize(**args)
|
|
2564
|
+
update!(**args)
|
|
2565
|
+
end
|
|
2566
|
+
|
|
2567
|
+
# Update properties of this object
|
|
2568
|
+
def update!(**args)
|
|
2569
|
+
@id = args[:id] if args.key?(:id)
|
|
2570
|
+
@namespace = args[:namespace] if args.key?(:namespace)
|
|
2571
|
+
end
|
|
2572
|
+
end
|
|
2573
|
+
|
|
2528
2574
|
# Info about failures
|
|
2529
2575
|
class FailureInfo
|
|
2530
2576
|
include Google::Apis::Core::Hashable
|
|
@@ -2743,6 +2789,13 @@ module Google
|
|
|
2743
2789
|
# @return [String]
|
|
2744
2790
|
attr_accessor :etag
|
|
2745
2791
|
|
|
2792
|
+
# Optional. The list of external IDs for the group, such as an immutable
|
|
2793
|
+
# identifier from an external identity provider or directory sync client. Each
|
|
2794
|
+
# entry contains a namespace and an ID value.
|
|
2795
|
+
# Corresponds to the JSON property `externalIds`
|
|
2796
|
+
# @return [Array<Google::Apis::AdminDirectoryV1::ExternalId>]
|
|
2797
|
+
attr_accessor :external_ids
|
|
2798
|
+
|
|
2746
2799
|
# Read-only. The unique ID of a group. A group `id` can be used as a group
|
|
2747
2800
|
# request URI's `groupKey`.
|
|
2748
2801
|
# Corresponds to the JSON property `id`
|
|
@@ -2781,6 +2834,7 @@ module Google
|
|
|
2781
2834
|
@direct_members_count = args[:direct_members_count] if args.key?(:direct_members_count)
|
|
2782
2835
|
@email = args[:email] if args.key?(:email)
|
|
2783
2836
|
@etag = args[:etag] if args.key?(:etag)
|
|
2837
|
+
@external_ids = args[:external_ids] if args.key?(:external_ids)
|
|
2784
2838
|
@id = args[:id] if args.key?(:id)
|
|
2785
2839
|
@kind = args[:kind] if args.key?(:kind)
|
|
2786
2840
|
@name = args[:name] if args.key?(:name)
|
|
@@ -4112,6 +4166,12 @@ module Google
|
|
|
4112
4166
|
# @return [String]
|
|
4113
4167
|
attr_accessor :etag
|
|
4114
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
|
+
|
|
4115
4175
|
# The type of the API resource. This is always `admin#directory#roleAssignment`.
|
|
4116
4176
|
# Corresponds to the JSON property `kind`
|
|
4117
4177
|
# @return [String]
|
|
@@ -4148,6 +4208,7 @@ module Google
|
|
|
4148
4208
|
@assignee_type = args[:assignee_type] if args.key?(:assignee_type)
|
|
4149
4209
|
@condition = args[:condition] if args.key?(:condition)
|
|
4150
4210
|
@etag = args[:etag] if args.key?(:etag)
|
|
4211
|
+
@expiration_details = args[:expiration_details] if args.key?(:expiration_details)
|
|
4151
4212
|
@kind = args[:kind] if args.key?(:kind)
|
|
4152
4213
|
@org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
|
|
4153
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.
|
|
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 = "
|
|
25
|
+
REVISION = "20260902"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -382,6 +382,18 @@ 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
|
+
|
|
391
|
+
class ExternalId
|
|
392
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
393
|
+
|
|
394
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
395
|
+
end
|
|
396
|
+
|
|
385
397
|
class FailureInfo
|
|
386
398
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
387
399
|
|
|
@@ -1447,6 +1459,21 @@ module Google
|
|
|
1447
1459
|
end
|
|
1448
1460
|
end
|
|
1449
1461
|
|
|
1462
|
+
class ExpirationDetails
|
|
1463
|
+
# @private
|
|
1464
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1465
|
+
property :expire_time, as: 'expireTime'
|
|
1466
|
+
end
|
|
1467
|
+
end
|
|
1468
|
+
|
|
1469
|
+
class ExternalId
|
|
1470
|
+
# @private
|
|
1471
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1472
|
+
property :id, as: 'id'
|
|
1473
|
+
property :namespace, as: 'namespace'
|
|
1474
|
+
end
|
|
1475
|
+
end
|
|
1476
|
+
|
|
1450
1477
|
class FailureInfo
|
|
1451
1478
|
# @private
|
|
1452
1479
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1509,6 +1536,8 @@ module Google
|
|
|
1509
1536
|
property :direct_members_count, :numeric_string => true, as: 'directMembersCount'
|
|
1510
1537
|
property :email, as: 'email'
|
|
1511
1538
|
property :etag, as: 'etag'
|
|
1539
|
+
collection :external_ids, as: 'externalIds', class: Google::Apis::AdminDirectoryV1::ExternalId, decorator: Google::Apis::AdminDirectoryV1::ExternalId::Representation
|
|
1540
|
+
|
|
1512
1541
|
property :id, as: 'id'
|
|
1513
1542
|
property :kind, as: 'kind'
|
|
1514
1543
|
property :name, as: 'name'
|
|
@@ -1823,6 +1852,8 @@ module Google
|
|
|
1823
1852
|
property :assignee_type, as: 'assigneeType'
|
|
1824
1853
|
property :condition, as: 'condition'
|
|
1825
1854
|
property :etag, as: 'etag'
|
|
1855
|
+
property :expiration_details, as: 'expirationDetails', class: Google::Apis::AdminDirectoryV1::ExpirationDetails, decorator: Google::Apis::AdminDirectoryV1::ExpirationDetails::Representation
|
|
1856
|
+
|
|
1826
1857
|
property :kind, as: 'kind'
|
|
1827
1858
|
property :org_unit_id, as: 'orgUnitId'
|
|
1828
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.
|
|
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.
|
|
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:
|