google-apis-iamcredentials_v1 0.6.0 → 0.10.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: 1a52a16b86c3d83706dfa7160008e40551f163f3d2c5f1c0e3c28eadc68bf3ca
4
- data.tar.gz: 57e71fe2c99c7805e1a3caca89af4f59eb6c04fc37a07cdc0ae39d8a9d33dc02
3
+ metadata.gz: d1b4bfd418a205a9bd63db215be1b1da55a5512bf22ab4fb44e49eda101a4112
4
+ data.tar.gz: af52dba1d6ba7e3e53c432dc29a5be2dfbe2cd75570b7492f439cb9f45570c6d
5
5
  SHA512:
6
- metadata.gz: 7075fd8851adddedaf92b68f692a9472572e7647d43c9864d1c24ad739a4fc52b2480065a8de5ff7a33b27aecc4fb93be4afb5632c6e26c5e7327ebcf7a434f7
7
- data.tar.gz: 792a9abf37a5d97aced7770c7e389e263bd1293f384b4e700f6dd6268f94fbd4695bc8760510865302db75f32ce202da3c6e67fca3dec93d9960f17483f87e61
6
+ metadata.gz: 897a62b9f796c75631d9cb0b814158f3eeefd955d412e2a116d837e33c70009741194f71d7a970fed930f07fdac09a9fb1de5277e4597b33197e0f44da44140f
7
+ data.tar.gz: 499697b8801e435d06374e3379020f983e935424d09b66b1e8acbc07244f09e826a4cb1e9c88286e16334637a302669c222b4e29360ab0e7ac30e7ab6e8a8531
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-iamcredentials_v1
2
2
 
3
+ ### v0.10.0 (2021-12-16)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.9.0 (2021-12-11)
8
+
9
+ * Regenerated from discovery document revision 20211203
10
+
11
+ ### v0.8.0 (2021-10-20)
12
+
13
+ * Unspecified changes
14
+
15
+ ### v0.7.0 (2021-08-21)
16
+
17
+ * Regenerated from discovery document revision 20210813
18
+
3
19
  ### v0.6.0 (2021-06-29)
4
20
 
5
21
  * Regenerated using generator version 0.4.0
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/iamcredentials_v1"
51
51
  client = Google::Apis::IamcredentialsV1::IAMCredentialsService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -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.6.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
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.6.0
4
+ version: 0.10.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-07-05 00:00:00.000000000 Z
11
+ date: 2022-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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.6.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.10.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:
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.2.17
78
+ rubygems_version: 3.3.4
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for IAM Service Account Credentials API V1