google-apis-iam_v1 0.36.0 → 0.72.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 +154 -0
- data/OVERVIEW.md +2 -2
- data/lib/google/apis/iam_v1/classes.rb +2190 -392
- data/lib/google/apis/iam_v1/gem_version.rb +3 -3
- data/lib/google/apis/iam_v1/representations.rb +802 -17
- data/lib/google/apis/iam_v1/service.rb +2759 -501
- data/lib/google/apis/iam_v1.rb +5 -3
- metadata +7 -10
data/lib/google/apis/iam_v1.rb
CHANGED
@@ -21,9 +21,11 @@ module Google
|
|
21
21
|
module Apis
|
22
22
|
# Identity and Access Management (IAM) API
|
23
23
|
#
|
24
|
-
# Manages identity and access control for Google Cloud
|
25
|
-
#
|
26
|
-
#
|
24
|
+
# Manages identity and access control for Google Cloud resources, including the
|
25
|
+
# creation of service accounts, which you can use to authenticate to Google and
|
26
|
+
# make API calls. Enabling this API also enables the IAM Service Account
|
27
|
+
# Credentials API (iamcredentials.googleapis.com). However, disabling this API
|
28
|
+
# doesn't disable the IAM Service Account Credentials API.
|
27
29
|
#
|
28
30
|
# @see https://cloud.google.com/iam/
|
29
31
|
module IamV1
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.72.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -16,7 +15,7 @@ dependencies:
|
|
16
15
|
requirements:
|
17
16
|
- - ">="
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
18
|
+
version: 0.15.0
|
20
19
|
- - "<"
|
21
20
|
- !ruby/object:Gem::Version
|
22
21
|
version: 2.a
|
@@ -26,7 +25,7 @@ dependencies:
|
|
26
25
|
requirements:
|
27
26
|
- - ">="
|
28
27
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
28
|
+
version: 0.15.0
|
30
29
|
- - "<"
|
31
30
|
- !ruby/object:Gem::Version
|
32
31
|
version: 2.a
|
@@ -59,9 +58,8 @@ licenses:
|
|
59
58
|
metadata:
|
60
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
61
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iam_v1/CHANGELOG.md
|
62
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v1/v0.72.0
|
63
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iam_v1
|
64
|
-
post_install_message:
|
65
63
|
rdoc_options: []
|
66
64
|
require_paths:
|
67
65
|
- lib
|
@@ -69,15 +67,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
69
67
|
requirements:
|
70
68
|
- - ">="
|
71
69
|
- !ruby/object:Gem::Version
|
72
|
-
version: '
|
70
|
+
version: '3.1'
|
73
71
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
74
72
|
requirements:
|
75
73
|
- - ">="
|
76
74
|
- !ruby/object:Gem::Version
|
77
75
|
version: '0'
|
78
76
|
requirements: []
|
79
|
-
rubygems_version: 3.
|
80
|
-
signing_key:
|
77
|
+
rubygems_version: 3.6.9
|
81
78
|
specification_version: 4
|
82
79
|
summary: Simple REST client for Identity and Access Management (IAM) API V1
|
83
80
|
test_files: []
|