google-apis-admin_directory_v1 0.79.0 → 0.80.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: c14b2245c24e3dcaa67bd68c2c01611f18ec3b45c67424b2f35d20ee7f867300
|
|
4
|
+
data.tar.gz: f6605e646463af90a941ca9fff9fa16b09c9ac6c5f1a16d096ccda040586e6f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '08d8d350fa2b327df03245aba43ec629492ae8b8cdff1ebf6a96ad4018b7d34a3051f0b9cf58eb7257841d0920a519d21156f3ac32633a311f3efe8706044a1b'
|
|
7
|
+
data.tar.gz: 1851d89cdfa98738d0187a849da6b13ea4125df9051d5165ae24d2e7bad35d2c7fc2fa49ab73c1b83b19e9dea51ca8dce1aa9914ef6dfad463cf0f47ac126142
|
data/CHANGELOG.md
CHANGED
|
@@ -2525,6 +2525,32 @@ module Google
|
|
|
2525
2525
|
end
|
|
2526
2526
|
end
|
|
2527
2527
|
|
|
2528
|
+
# External identifier used to link and identify this group across external
|
|
2529
|
+
# directory systems.
|
|
2530
|
+
class ExternalId
|
|
2531
|
+
include Google::Apis::Core::Hashable
|
|
2532
|
+
|
|
2533
|
+
# The unique identifier string assigned by the external provider.
|
|
2534
|
+
# Corresponds to the JSON property `id`
|
|
2535
|
+
# @return [String]
|
|
2536
|
+
attr_accessor :id
|
|
2537
|
+
|
|
2538
|
+
# The system or identity provider managing this ID.
|
|
2539
|
+
# Corresponds to the JSON property `namespace`
|
|
2540
|
+
# @return [String]
|
|
2541
|
+
attr_accessor :namespace
|
|
2542
|
+
|
|
2543
|
+
def initialize(**args)
|
|
2544
|
+
update!(**args)
|
|
2545
|
+
end
|
|
2546
|
+
|
|
2547
|
+
# Update properties of this object
|
|
2548
|
+
def update!(**args)
|
|
2549
|
+
@id = args[:id] if args.key?(:id)
|
|
2550
|
+
@namespace = args[:namespace] if args.key?(:namespace)
|
|
2551
|
+
end
|
|
2552
|
+
end
|
|
2553
|
+
|
|
2528
2554
|
# Info about failures
|
|
2529
2555
|
class FailureInfo
|
|
2530
2556
|
include Google::Apis::Core::Hashable
|
|
@@ -2743,6 +2769,13 @@ module Google
|
|
|
2743
2769
|
# @return [String]
|
|
2744
2770
|
attr_accessor :etag
|
|
2745
2771
|
|
|
2772
|
+
# Optional. The list of external IDs for the group, such as an immutable
|
|
2773
|
+
# identifier from an external identity provider or directory sync client. Each
|
|
2774
|
+
# entry contains a namespace and an ID value.
|
|
2775
|
+
# Corresponds to the JSON property `externalIds`
|
|
2776
|
+
# @return [Array<Google::Apis::AdminDirectoryV1::ExternalId>]
|
|
2777
|
+
attr_accessor :external_ids
|
|
2778
|
+
|
|
2746
2779
|
# Read-only. The unique ID of a group. A group `id` can be used as a group
|
|
2747
2780
|
# request URI's `groupKey`.
|
|
2748
2781
|
# Corresponds to the JSON property `id`
|
|
@@ -2781,6 +2814,7 @@ module Google
|
|
|
2781
2814
|
@direct_members_count = args[:direct_members_count] if args.key?(:direct_members_count)
|
|
2782
2815
|
@email = args[:email] if args.key?(:email)
|
|
2783
2816
|
@etag = args[:etag] if args.key?(:etag)
|
|
2817
|
+
@external_ids = args[:external_ids] if args.key?(:external_ids)
|
|
2784
2818
|
@id = args[:id] if args.key?(:id)
|
|
2785
2819
|
@kind = args[:kind] if args.key?(:kind)
|
|
2786
2820
|
@name = args[:name] if args.key?(:name)
|
|
@@ -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.80.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 = "20260729"
|
|
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 ExternalId
|
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
387
|
+
|
|
388
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
389
|
+
end
|
|
390
|
+
|
|
385
391
|
class FailureInfo
|
|
386
392
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
387
393
|
|
|
@@ -1447,6 +1453,14 @@ module Google
|
|
|
1447
1453
|
end
|
|
1448
1454
|
end
|
|
1449
1455
|
|
|
1456
|
+
class ExternalId
|
|
1457
|
+
# @private
|
|
1458
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1459
|
+
property :id, as: 'id'
|
|
1460
|
+
property :namespace, as: 'namespace'
|
|
1461
|
+
end
|
|
1462
|
+
end
|
|
1463
|
+
|
|
1450
1464
|
class FailureInfo
|
|
1451
1465
|
# @private
|
|
1452
1466
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1509,6 +1523,8 @@ module Google
|
|
|
1509
1523
|
property :direct_members_count, :numeric_string => true, as: 'directMembersCount'
|
|
1510
1524
|
property :email, as: 'email'
|
|
1511
1525
|
property :etag, as: 'etag'
|
|
1526
|
+
collection :external_ids, as: 'externalIds', class: Google::Apis::AdminDirectoryV1::ExternalId, decorator: Google::Apis::AdminDirectoryV1::ExternalId::Representation
|
|
1527
|
+
|
|
1512
1528
|
property :id, as: 'id'
|
|
1513
1529
|
property :kind, as: 'kind'
|
|
1514
1530
|
property :name, as: 'name'
|
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.80.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.80.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:
|