google-apis-admin_directory_v1 0.78.0 → 0.79.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: 46dbe0ac63a4ad2764493ff1f17f3d327d7fa418837043e2d0136ddc6c8dca1c
|
|
4
|
+
data.tar.gz: 7ccc4b41549b5133866869f31eb62db33455d6b4c435bf568c1e0a1f56bf04e3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 70de808bcdfee1480767ac38bd0c6fe7082b2ca9286e6cb300bd95c0ef01b8a0e93f6db1a6ad4ca9455f5f2f215ace0136b378dc1e54614853c9e176fa179aba
|
|
7
|
+
data.tar.gz: b0187d406232b1738d914e49e4ea4359c8554c2cbc82680e9e0bd04087d48d5e4375f69c218a4501289253a5fc91989e416506eadf6c6be8a2a5b5b101de956e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-admin_directory_v1
|
|
2
2
|
|
|
3
|
+
### v0.79.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260531
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
3
8
|
### v0.78.0 (2026-05-31)
|
|
4
9
|
|
|
5
10
|
* 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
|
|
|
@@ -4591,6 +4591,11 @@ module Google
|
|
|
4591
4591
|
# @return [Array<String>]
|
|
4592
4592
|
attr_accessor :aliases
|
|
4593
4593
|
|
|
4594
|
+
# Output only. User's account archival time. (Read-only)
|
|
4595
|
+
# Corresponds to the JSON property `archivalTime`
|
|
4596
|
+
# @return [String]
|
|
4597
|
+
attr_accessor :archival_time
|
|
4598
|
+
|
|
4594
4599
|
# Indicates if user is archived.
|
|
4595
4600
|
# Corresponds to the JSON property `archived`
|
|
4596
4601
|
# @return [Boolean]
|
|
@@ -4869,6 +4874,11 @@ module Google
|
|
|
4869
4874
|
# @return [String]
|
|
4870
4875
|
attr_accessor :suspension_reason
|
|
4871
4876
|
|
|
4877
|
+
# Output only. User's account suspension time. (Read-only)
|
|
4878
|
+
# Corresponds to the JSON property `suspensionTime`
|
|
4879
|
+
# @return [String]
|
|
4880
|
+
attr_accessor :suspension_time
|
|
4881
|
+
|
|
4872
4882
|
# Output only. ETag of the user's photo (Read-only)
|
|
4873
4883
|
# Corresponds to the JSON property `thumbnailPhotoEtag`
|
|
4874
4884
|
# @return [String]
|
|
@@ -4894,6 +4904,7 @@ module Google
|
|
|
4894
4904
|
@addresses = args[:addresses] if args.key?(:addresses)
|
|
4895
4905
|
@agreed_to_terms = args[:agreed_to_terms] if args.key?(:agreed_to_terms)
|
|
4896
4906
|
@aliases = args[:aliases] if args.key?(:aliases)
|
|
4907
|
+
@archival_time = args[:archival_time] if args.key?(:archival_time)
|
|
4897
4908
|
@archived = args[:archived] if args.key?(:archived)
|
|
4898
4909
|
@change_password_at_next_login = args[:change_password_at_next_login] if args.key?(:change_password_at_next_login)
|
|
4899
4910
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
|
@@ -4936,6 +4947,7 @@ module Google
|
|
|
4936
4947
|
@ssh_public_keys = args[:ssh_public_keys] if args.key?(:ssh_public_keys)
|
|
4937
4948
|
@suspended = args[:suspended] if args.key?(:suspended)
|
|
4938
4949
|
@suspension_reason = args[:suspension_reason] if args.key?(:suspension_reason)
|
|
4950
|
+
@suspension_time = args[:suspension_time] if args.key?(:suspension_time)
|
|
4939
4951
|
@thumbnail_photo_etag = args[:thumbnail_photo_etag] if args.key?(:thumbnail_photo_etag)
|
|
4940
4952
|
@thumbnail_photo_url = args[:thumbnail_photo_url] if args.key?(:thumbnail_photo_url)
|
|
4941
4953
|
@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.79.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 = "20260531"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1940,6 +1940,7 @@ module Google
|
|
|
1940
1940
|
property :addresses, as: 'addresses'
|
|
1941
1941
|
property :agreed_to_terms, as: 'agreedToTerms'
|
|
1942
1942
|
collection :aliases, as: 'aliases'
|
|
1943
|
+
property :archival_time, as: 'archivalTime'
|
|
1943
1944
|
property :archived, as: 'archived'
|
|
1944
1945
|
property :change_password_at_next_login, as: 'changePasswordAtNextLogin'
|
|
1945
1946
|
property :creation_time, as: 'creationTime', type: DateTime
|
|
@@ -1987,6 +1988,7 @@ module Google
|
|
|
1987
1988
|
property :ssh_public_keys, as: 'sshPublicKeys'
|
|
1988
1989
|
property :suspended, as: 'suspended'
|
|
1989
1990
|
property :suspension_reason, as: 'suspensionReason'
|
|
1991
|
+
property :suspension_time, as: 'suspensionTime'
|
|
1990
1992
|
property :thumbnail_photo_etag, as: 'thumbnailPhotoEtag'
|
|
1991
1993
|
property :thumbnail_photo_url, as: 'thumbnailPhotoUrl'
|
|
1992
1994
|
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.79.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.79.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
|
- - ">="
|