google-apis-admin_directory_v1 0.78.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
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-admin_directory_v1
|
|
2
2
|
|
|
3
|
+
### v0.80.0 (2026-08-02)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260729
|
|
6
|
+
|
|
7
|
+
### v0.79.0 (2026-06-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260531
|
|
10
|
+
* Regenerated using generator version 0.19.0
|
|
11
|
+
|
|
3
12
|
### v0.78.0 (2026-05-31)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20260522
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://developers.google.com/workspace/admin/) may
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -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)
|
|
@@ -4591,6 +4625,11 @@ module Google
|
|
|
4591
4625
|
# @return [Array<String>]
|
|
4592
4626
|
attr_accessor :aliases
|
|
4593
4627
|
|
|
4628
|
+
# Output only. User's account archival time. (Read-only)
|
|
4629
|
+
# Corresponds to the JSON property `archivalTime`
|
|
4630
|
+
# @return [String]
|
|
4631
|
+
attr_accessor :archival_time
|
|
4632
|
+
|
|
4594
4633
|
# Indicates if user is archived.
|
|
4595
4634
|
# Corresponds to the JSON property `archived`
|
|
4596
4635
|
# @return [Boolean]
|
|
@@ -4869,6 +4908,11 @@ module Google
|
|
|
4869
4908
|
# @return [String]
|
|
4870
4909
|
attr_accessor :suspension_reason
|
|
4871
4910
|
|
|
4911
|
+
# Output only. User's account suspension time. (Read-only)
|
|
4912
|
+
# Corresponds to the JSON property `suspensionTime`
|
|
4913
|
+
# @return [String]
|
|
4914
|
+
attr_accessor :suspension_time
|
|
4915
|
+
|
|
4872
4916
|
# Output only. ETag of the user's photo (Read-only)
|
|
4873
4917
|
# Corresponds to the JSON property `thumbnailPhotoEtag`
|
|
4874
4918
|
# @return [String]
|
|
@@ -4894,6 +4938,7 @@ module Google
|
|
|
4894
4938
|
@addresses = args[:addresses] if args.key?(:addresses)
|
|
4895
4939
|
@agreed_to_terms = args[:agreed_to_terms] if args.key?(:agreed_to_terms)
|
|
4896
4940
|
@aliases = args[:aliases] if args.key?(:aliases)
|
|
4941
|
+
@archival_time = args[:archival_time] if args.key?(:archival_time)
|
|
4897
4942
|
@archived = args[:archived] if args.key?(:archived)
|
|
4898
4943
|
@change_password_at_next_login = args[:change_password_at_next_login] if args.key?(:change_password_at_next_login)
|
|
4899
4944
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
|
@@ -4936,6 +4981,7 @@ module Google
|
|
|
4936
4981
|
@ssh_public_keys = args[:ssh_public_keys] if args.key?(:ssh_public_keys)
|
|
4937
4982
|
@suspended = args[:suspended] if args.key?(:suspended)
|
|
4938
4983
|
@suspension_reason = args[:suspension_reason] if args.key?(:suspension_reason)
|
|
4984
|
+
@suspension_time = args[:suspension_time] if args.key?(:suspension_time)
|
|
4939
4985
|
@thumbnail_photo_etag = args[:thumbnail_photo_etag] if args.key?(:thumbnail_photo_etag)
|
|
4940
4986
|
@thumbnail_photo_url = args[:thumbnail_photo_url] if args.key?(:thumbnail_photo_url)
|
|
4941
4987
|
@websites = args[:websites] if args.key?(:websites)
|
|
@@ -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
|
-
GENERATOR_VERSION = "0.
|
|
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'
|
|
@@ -1940,6 +1956,7 @@ module Google
|
|
|
1940
1956
|
property :addresses, as: 'addresses'
|
|
1941
1957
|
property :agreed_to_terms, as: 'agreedToTerms'
|
|
1942
1958
|
collection :aliases, as: 'aliases'
|
|
1959
|
+
property :archival_time, as: 'archivalTime'
|
|
1943
1960
|
property :archived, as: 'archived'
|
|
1944
1961
|
property :change_password_at_next_login, as: 'changePasswordAtNextLogin'
|
|
1945
1962
|
property :creation_time, as: 'creationTime', type: DateTime
|
|
@@ -1987,6 +2004,7 @@ module Google
|
|
|
1987
2004
|
property :ssh_public_keys, as: 'sshPublicKeys'
|
|
1988
2005
|
property :suspended, as: 'suspended'
|
|
1989
2006
|
property :suspension_reason, as: 'suspensionReason'
|
|
2007
|
+
property :suspension_time, as: 'suspensionTime'
|
|
1990
2008
|
property :thumbnail_photo_etag, as: 'thumbnailPhotoEtag'
|
|
1991
2009
|
property :thumbnail_photo_url, as: 'thumbnailPhotoUrl'
|
|
1992
2010
|
property :websites, as: 'websites'
|
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:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|