google-apis-iamcredentials_v1 0.5.0 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 618ea81d40e00d547b67a9e712f4f81ddf06f49a34eccd84fee14014dbdad26a
4
- data.tar.gz: 186dc06cc5fd8e6a51abfacb4172cf85444d1399012e7510566da458ea452e32
3
+ metadata.gz: '0597804cf838c8ae3b905508dc83837e2f2e9f3b35f76d49dedbeb868bff0285'
4
+ data.tar.gz: 5e13a97bf1a132f3bfee191b3ba2cb5fe73c0903cd713c87966a8106b18bc07d
5
5
  SHA512:
6
- metadata.gz: d70d6ec0483c64b2b130fe238f5ba1ece9905c9f32cd2c75ddbb1b99fca125b264b821f9b37663e7f1f9b495efb960ef850754efa9800a646c3eb711fb235d40
7
- data.tar.gz: ed7638b19eab935f33871c650623c199076592a5f1d4cc3af6f05a23b04489e0ff9a800b0049fd5a051a74d1ee87bc8ec1e3bb3cef7e4d8f8ba20e7f3e45005b
6
+ metadata.gz: 73c98b8594fd0f87727231e59ba381eaa9df450a3bf1ed96f0fada18daeff43dfe52bdd38dd4802becc447351eb4f40fa60fe993846962b166c4ec34dca33e41
7
+ data.tar.gz: 7ca507b6924cc9ef448333e43a89a89cbd3e15639ceabef941edc54506a7923efc97b3d7776ca968c5bb29c49eccc94c4d18d554ba5d0cfb5a6ce555b54595c7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-iamcredentials_v1
2
2
 
3
+ ### v0.9.0 (2021-12-11)
4
+
5
+ * Regenerated from discovery document revision 20211203
6
+
7
+ ### v0.8.0 (2021-10-20)
8
+
9
+ * Unspecified changes
10
+
11
+ ### v0.7.0 (2021-08-21)
12
+
13
+ * Regenerated from discovery document revision 20210813
14
+
15
+ ### v0.6.0 (2021-06-29)
16
+
17
+ * Regenerated using generator version 0.4.0
18
+
3
19
  ### v0.5.0 (2021-06-24)
4
20
 
5
21
  * Regenerated using generator version 0.3.0
data/OVERVIEW.md CHANGED
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Iamcredentials service in particular.)
67
67
 
@@ -26,14 +26,17 @@ module Google
26
26
  class GenerateAccessTokenRequest
27
27
  include Google::Apis::Core::Hashable
28
28
 
29
- # The sequence of service accounts in a delegation chain. Each service account
30
- # must be granted the `roles/iam.serviceAccountTokenCreator` role on its next
31
- # service account in the chain. The last service account in the chain must be
32
- # granted the `roles/iam.serviceAccountTokenCreator` role on the service account
33
- # that is specified in the `name` field of the request. The delegates must have
34
- # the following format: `projects/-/serviceAccounts/`ACCOUNT_EMAIL_OR_UNIQUEID``.
35
- # The `-` wildcard character is required; replacing it with a project ID is
36
- # invalid.
29
+ # The sequence of service accounts in a delegation chain. This field is required
30
+ # for [delegated requests](https://cloud.google.com/iam/help/credentials/
31
+ # delegated-request). For [direct requests](https://cloud.google.com/iam/help/
32
+ # credentials/direct-request), which are more common, do not specify this field.
33
+ # Each service account must be granted the `roles/iam.serviceAccountTokenCreator`
34
+ # role on its next service account in the chain. The last service account in
35
+ # the chain must be granted the `roles/iam.serviceAccountTokenCreator` role on
36
+ # the service account that is specified in the `name` field of the request. The
37
+ # delegates must have the following format: `projects/-/serviceAccounts/`
38
+ # ACCOUNT_EMAIL_OR_UNIQUEID``. The `-` wildcard character is required; replacing
39
+ # it with a project ID is invalid.
37
40
  # Corresponds to the JSON property `delegates`
38
41
  # @return [Array<String>]
39
42
  attr_accessor :delegates
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module IamcredentialsV1
18
18
  # Version of the google-apis-iamcredentials_v1 gem
19
- GEM_VERSION = "0.5.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210326"
25
+ REVISION = "20211203"
26
26
  end
27
27
  end
28
28
  end
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1'
32
32
 
33
- # See, edit, configure, and delete your Google Cloud Platform data
33
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
34
34
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
35
35
  end
36
36
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-iamcredentials_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-28 00:00:00.000000000 Z
11
+ date: 2021-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.3'
19
+ version: '0.4'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.3'
29
+ version: '0.4'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-iamcredentials_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-iamcredentials_v1/v0.5.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-iamcredentials_v1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iamcredentials_v1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-iamcredentials_v1/v0.9.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iamcredentials_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths: