google-apis-iam_v1 0.86.0 → 0.88.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/iam_v1/classes.rb +16 -14
- data/lib/google/apis/iam_v1/gem_version.rb +3 -3
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e5abb5c96b9dc1edb2e5165b2eb71b81795af9be232107edb054e58d31ef942f
|
|
4
|
+
data.tar.gz: e61bb9f08711c8da4fb2b32ac3214a0684453ee49bde66a1daa0215028831328
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b3949e0ee7f68ed59f01b67989c3e5bf6fb0097fab6b4a53cb3bbb802bfb442e2b85ff60d67b1ce5ee2974cd2f04351bb08804af0f22700480f87e44d1b5d503
|
|
7
|
+
data.tar.gz: 1d69ad1660180dfd86aedcbf08959dda9e4c9557498d32cfda0618c64ba3056479d56a322eb9f6ad30f06a5df636fed2c5fa5bba0ec45e8ec8c1618069ec6c32
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-iam_v1
|
|
2
2
|
|
|
3
|
+
### v0.88.0 (2026-07-12)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260702
|
|
6
|
+
|
|
7
|
+
### v0.87.0 (2026-06-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated using generator version 0.19.0
|
|
10
|
+
|
|
3
11
|
### v0.86.0 (2026-04-19)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260320
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/iam/) may provide guidance
|
|
|
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
|
|
|
@@ -2607,20 +2607,22 @@ module Google
|
|
|
2607
2607
|
end
|
|
2608
2608
|
|
|
2609
2609
|
# Represents a service account key. A service account has two sets of key-pairs:
|
|
2610
|
-
# user-managed
|
|
2611
|
-
#
|
|
2612
|
-
#
|
|
2613
|
-
#
|
|
2614
|
-
#
|
|
2615
|
-
#
|
|
2616
|
-
#
|
|
2617
|
-
#
|
|
2618
|
-
#
|
|
2619
|
-
#
|
|
2620
|
-
#
|
|
2621
|
-
#
|
|
2622
|
-
#
|
|
2623
|
-
#
|
|
2610
|
+
# user-managed and system-managed. System-managed keys are also called _Google-
|
|
2611
|
+
# owned and managed keys_. User-managed key-pairs can be created and deleted by
|
|
2612
|
+
# users. Users are responsible for rotating these keys periodically to ensure
|
|
2613
|
+
# security of their service accounts. Users retain the private key of these key-
|
|
2614
|
+
# pairs, and Google retains ONLY the public key. System-managed keys that are
|
|
2615
|
+
# actively used for signing are rotated regularly according to [security best
|
|
2616
|
+
# practices](https://docs.cloud.google.com/iam/docs/key-rotation#timing). The
|
|
2617
|
+
# rotation process is probabilistic, and usage of the new key will gradually
|
|
2618
|
+
# ramp up and down over the key's lifetime. If you cache the public key set for
|
|
2619
|
+
# a service account, we recommend that you update the cache every 15 minutes.
|
|
2620
|
+
# User-managed keys can be added and removed at any time, so it is important to
|
|
2621
|
+
# update the cache frequently. For Google-managed keys, Google will publish a
|
|
2622
|
+
# key at least 6 hours before it is first used for signing and will keep
|
|
2623
|
+
# publishing it for at least 6 hours after it was last used for signing. Public
|
|
2624
|
+
# keys for all service accounts are also published at the OAuth2 Service Account
|
|
2625
|
+
# API.
|
|
2624
2626
|
class ServiceAccountKey
|
|
2625
2627
|
include Google::Apis::Core::Hashable
|
|
2626
2628
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module IamV1
|
|
18
18
|
# Version of the google-apis-iam_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.88.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 = "20260702"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-iam_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.88.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iam_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v1/v0.88.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iam_v1
|
|
63
63
|
rdoc_options: []
|
|
64
64
|
require_paths:
|
|
@@ -67,7 +67,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
67
67
|
requirements:
|
|
68
68
|
- - ">="
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
|
-
version: '3.
|
|
70
|
+
version: '3.2'
|
|
71
71
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
|
73
73
|
- - ">="
|