google-apis-sts_v1beta 0.2.0 → 0.7.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: 729af7748c224b99e21b2f3a6268bb22fd1614a5450ad0ea028e9084de5bbe5a
4
- data.tar.gz: 3ad96951679567c4efa00987c178a041b6100597b485b9738ffcfc98173cb8d8
3
+ metadata.gz: 18372c1602e8bd6499d32cc31ab6e48d94f5b8c2530e4515e3c2ca7b41522d2a
4
+ data.tar.gz: ca746cd49ecea23a4c3b31d1d2e17d9f9bd01d09a4e2a552fa584eb5194bf471
5
5
  SHA512:
6
- metadata.gz: 54cd21f8bb0c4a06e1f9c2bcbfc1b3e580385544d6ef0c9463249f24f9f18689b8f62beeb3adea7e95533b0158af18da781d7b7d8bbee2ca1ad46220e7261db9
7
- data.tar.gz: fc46eb34c85d8cdda03632a157976ed2965c4404c7f18f0ed3ffcaeefd4208437179014f73fce8f41dc62a5650ec1251a3f1f263cc76efeae03dd2b440b7b7c8
6
+ metadata.gz: 3c3d81f70e4a2b4f04a68471dad4dfb772b2fa35877b16a3284c01c9784c153ca8090c26c5318bbe16ab574109fd342435f7706d63768744260b62481e543d8f
7
+ data.tar.gz: 6b2714df2a805c965dccfa8e02d01517012b72a1e35752f087d81327532e646312ccba40f56a188d1e8ae953a9db5091989fff3985a3174cb53f4500e7ac8f0b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-sts_v1beta
2
2
 
3
+ ### v0.7.0 (2021-05-27)
4
+
5
+ * Regenerated from discovery document revision 20210517
6
+
7
+ ### v0.6.0 (2021-05-20)
8
+
9
+ * Unspecified changes
10
+
11
+ ### v0.5.0 (2021-05-15)
12
+
13
+ * Regenerated from discovery document revision 20210508
14
+ * Regenerated using generator version 0.2.0
15
+
16
+ ### v0.4.0 (2021-03-04)
17
+
18
+ * Unspecified changes
19
+
20
+ ### v0.3.0 (2021-02-12)
21
+
22
+ * Regenerated from discovery document revision 20210206
23
+
3
24
  ### v0.2.0 (2021-01-23)
4
25
 
5
26
  * Regenerated from discovery document revision 20210116
@@ -59,28 +59,32 @@ module Google
59
59
  # @return [String]
60
60
  attr_accessor :scope
61
61
 
62
- # Required. The input token. This token is a either an external credential
63
- # issued by a workload identity pool provider, or a short-lived access token
64
- # issued by Google. If the token is an OIDC JWT, it must use the JWT format
65
- # defined in [RFC 7523](https://tools.ietf.org/html/rfc7523), and the `
66
- # subject_token_type` must be `urn:ietf:params:oauth:token-type:jwt`. The
67
- # following headers are required: - `kid`: The identifier of the signing key
68
- # securing the JWT. - `alg`: The cryptographic algorithm securing the JWT. Must
69
- # be `RS256`. The following payload fields are required. For more information,
70
- # see [RFC 7523, Section 3](https://tools.ietf.org/html/rfc7523#section-3): - `
71
- # iss`: The issuer of the token. The issuer must provide a discovery document at
72
- # the URL `/.well-known/openid-configuration`, where `` is the value of this
73
- # field. The document must be formatted according to section 4.2 of the [OIDC 1.
74
- # 0 Discovery specification](https://openid.net/specs/openid-connect-discovery-
75
- # 1_0.html#ProviderConfigurationResponse). - `iat`: The issue time, in seconds,
76
- # since the Unix epoch. Must be in the past. - `exp`: The expiration time, in
77
- # seconds, since the Unix epoch. Must be less than 48 hours after `iat`. Shorter
62
+ # Required. The input token. This token is either an external credential issued
63
+ # by a workload identity pool provider, or a short-lived access token issued by
64
+ # Google. If the token is an OIDC JWT, it must use the JWT format defined in [
65
+ # RFC 7523](https://tools.ietf.org/html/rfc7523), and the `subject_token_type`
66
+ # must be `urn:ietf:params:oauth:token-type:jwt`. The following headers are
67
+ # required: - `kid`: The identifier of the signing key securing the JWT. - `alg`:
68
+ # The cryptographic algorithm securing the JWT. Must be `RS256` or `ES256`. The
69
+ # following payload fields are required. For more information, see [RFC 7523,
70
+ # Section 3](https://tools.ietf.org/html/rfc7523#section-3): - `iss`: The issuer
71
+ # of the token. The issuer must provide a discovery document at the URL `/.well-
72
+ # known/openid-configuration`, where `` is the value of this field. The document
73
+ # must be formatted according to section 4.2 of the [OIDC 1.0 Discovery
74
+ # specification](https://openid.net/specs/openid-connect-discovery-1_0.html#
75
+ # ProviderConfigurationResponse). - `iat`: The issue time, in seconds, since the
76
+ # Unix epoch. Must be in the past. - `exp`: The expiration time, in seconds,
77
+ # since the Unix epoch. Must be less than 48 hours after `iat`. Shorter
78
78
  # expiration times are more secure. If possible, we recommend setting an
79
79
  # expiration time less than 6 hours. - `sub`: The identity asserted in the JWT. -
80
- # `aud`: Configured by the mapper policy. The default value is the service
81
- # account's unique ID. Example header: ``` ` "alg": "RS256", "kid": "us-east-11"
82
- # ` ``` Example payload: ``` ` "iss": "https://accounts.google.com", "iat":
83
- # 1517963104, "exp": 1517966704, "aud": "113475438248934895348", "sub": "
80
+ # `aud`: For workload identity pools, this must be a value specified in the
81
+ # allowed audiences for the workload identity pool provider, or one of the
82
+ # audiences allowed by default if no audiences were specified. See https://cloud.
83
+ # google.com/iam/docs/reference/rest/v1/projects.locations.workloadIdentityPools.
84
+ # providers#oidc Example header: ``` ` "alg": "RS256", "kid": "us-east-11" ` ```
85
+ # Example payload: ``` ` "iss": "https://accounts.google.com", "iat": 1517963104,
86
+ # "exp": 1517966704, "aud": "//iam.googleapis.com/projects/1234567890123/
87
+ # locations/global/workloadIdentityPools/my-pool/providers/my-provider", "sub": "
84
88
  # 113475438248934895348", "my_claims": ` "additional_claim": "value" ` ` ``` If `
85
89
  # subject_token` is for AWS, it must be a serialized `GetCallerIdentity` token.
86
90
  # This token contains the same information as a request to the AWS [`
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module StsV1beta
18
18
  # Version of the google-apis-sts_v1beta gem
19
- GEM_VERSION = "0.2.0"
19
+ GEM_VERSION = "0.7.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.2"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210116"
25
+ REVISION = "20210517"
26
26
  end
27
27
  end
28
28
  end
@@ -52,7 +52,10 @@ module Google
52
52
 
53
53
  # Exchanges a credential for a Google OAuth 2.0 access token. The token asserts
54
54
  # an external identity within a workload identity pool, or it applies a
55
- # Credential Access Boundary to a Google access token.
55
+ # Credential Access Boundary to a Google access token. When you call this method,
56
+ # do not send the `Authorization` HTTP header in the request. This method does
57
+ # not require the `Authorization` header, and using the header can cause the
58
+ # request to fail.
56
59
  # @param [Google::Apis::StsV1beta::GoogleIdentityStsV1betaExchangeTokenRequest] google_identity_sts_v1beta_exchange_token_request_object
57
60
  # @param [String] fields
58
61
  # Selector specifying which fields to include in a partial response.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-sts_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.7.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-02-08 00:00:00.000000000 Z
11
+ date: 2021-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-sts_v1beta/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-sts_v1beta/v0.2.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sts_v1beta/v0.7.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-sts_v1beta
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
63
  - - ">="
64
64
  - !ruby/object:Gem::Version
65
- version: '2.4'
65
+ version: '2.5'
66
66
  required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - ">="
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.6
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Security Token Service API V1beta