google-apis-sts_v1 0.9.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: bc1a33d3bef77837f7489fa0482f13a402862237d5a14d9fb3bb1b0479c86b95
4
- data.tar.gz: 7959f36278e1d68245a5f058e601dabf33f2d80eff27cba60e843add51c73948
3
+ metadata.gz: 67b6ac980a291a4baa675d886464814e980c96614a0cfd55331ddd1a4a0f3734
4
+ data.tar.gz: ad9cf7bb5b5ec77e182eb721e68970af7377cee07162d5f6a447f5f27376d4fa
5
5
  SHA512:
6
- metadata.gz: 9c2182cf3247484ad92e5d310fce79692d3c33e3714083face4b8c164f2d491f6441654d88ab267e357ccde3abdf6c019cb18c95526e10cbfadae9ee661e47e8
7
- data.tar.gz: 7a1affdfb7a457dfc396985c98fdd945b7ff76e34d26e3ad1aa4570637e9208b860705a1041ed4c036a0c048b0c78b8cc1a1318f0b524be4348c5cfd6f985fa1
6
+ metadata.gz: f9029389e49cbd1dbe4e46c9fc4f8f7ff410328a0e3f5df9013ef30c9293ce21ceb88407584e11ba34476a8dcfe598efb8f5cbea173fe1eedf60f61245fb720b
7
+ data.tar.gz: 033e572b461a96b3a3437f30323c6369fd1305319eb6615abcc9f2e5b77e826e4e7a6fb55fd3c6717b9e0523007548032fc2c9096a836f0af2372d66a0c64b75
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-sts_v1
2
2
 
3
+ ### v0.10.0 (2021-07-03)
4
+
5
+ * Regenerated from discovery document revision 20210625
6
+ * Regenerated using generator version 0.4.0
7
+
3
8
  ### v0.9.0 (2021-06-24)
4
9
 
5
10
  * Unspecified changes
@@ -63,15 +63,16 @@ module Google
63
63
  # by a workload identity pool provider, or a short-lived access token issued by
64
64
  # Google. If the token is an OIDC JWT, it must use the JWT format defined in [
65
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#
66
+ # must be either `urn:ietf:params:oauth:token-type:jwt` or `urn:ietf:params:
67
+ # oauth:token-type:id_token`. The following headers are required: - `kid`: The
68
+ # identifier of the signing key securing the JWT. - `alg`: The cryptographic
69
+ # algorithm securing the JWT. Must be `RS256` or `ES256`. The following payload
70
+ # fields are required. For more information, see [RFC 7523, Section 3](https://
71
+ # tools.ietf.org/html/rfc7523#section-3): - `iss`: The issuer of the token. The
72
+ # issuer must provide a discovery document at the URL `/.well-known/openid-
73
+ # configuration`, where `` is the value of this field. The document must be
74
+ # formatted according to section 4.2 of the [OIDC 1.0 Discovery specification](
75
+ # https://openid.net/specs/openid-connect-discovery-1_0.html#
75
76
  # ProviderConfigurationResponse). - `iat`: The issue time, in seconds, since the
76
77
  # Unix epoch. Must be in the past. - `exp`: The expiration time, in seconds,
77
78
  # since the Unix epoch. Must be less than 48 hours after `iat`. Shorter
@@ -129,8 +130,8 @@ module Google
129
130
 
130
131
  # Required. An identifier that indicates the type of the security token in the `
131
132
  # subject_token` parameter. Supported values are `urn:ietf:params:oauth:token-
132
- # type:jwt`, `urn:ietf:params:aws:token-type:aws4_request`, and `urn:ietf:params:
133
- # oauth:token-type:access_token`.
133
+ # type:jwt`, `urn:ietf:params:oauth:token-type:id_token`, `urn:ietf:params:aws:
134
+ # token-type:aws4_request`, and `urn:ietf:params:oauth:token-type:access_token`.
134
135
  # Corresponds to the JSON property `subjectTokenType`
135
136
  # @return [String]
136
137
  attr_accessor :subject_token_type
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module StsV1
18
18
  # Version of the google-apis-sts_v1 gem
19
- GEM_VERSION = "0.9.0"
19
+ GEM_VERSION = "0.10.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 = "20210613"
25
+ REVISION = "20210625"
26
26
  end
27
27
  end
28
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-sts_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.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-06-28 00:00:00.000000000 Z
11
+ date: 2021-07-05 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
@@ -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/master/generated/google-apis-sts_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-sts_v1/v0.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sts_v1/v0.10.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-sts_v1
63
63
  post_install_message:
64
64
  rdoc_options: []