google-apis-sts_v1beta 0.4.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: d6c25a41c8879fc699201ab86dbc042e6732ab7ce062500da0af34b02bc7d8d1
4
- data.tar.gz: e4a9ffd9a67762892561e5748ae47d96a5bb0930cbd557a2788a847c3e11032f
3
+ metadata.gz: c1974bbc9cd7c3fa05f6aba7e16a3408c69974b80d64f89516b4f40e71925c7f
4
+ data.tar.gz: f96b0a49e6c21884c787187b39e043c1c8bff169809fd09047242a29b300c881
5
5
  SHA512:
6
- metadata.gz: 2e9fa013616606f99438b4f958c8691aeebb760688b4ae8e7c65e2830468686de27cffceb6a68d2076f39c2c0088e7cf2eda4fcbf6b62130d9e9bb017fc70476
7
- data.tar.gz: 3a54e2deecf51c0d10b7a4dae7f5c81447245cd4e252d2d48abdf9245d11f89945b58f42f9f58e6ab9af3b07136d79124b382d14f9b2a2003318aedbec0ae6f8
6
+ metadata.gz: a47adf1e1e4b08c2086baf68dd3eaed5beffa283f41ee39363192111cfd9730beb0a928dde75e86a85198e4ba72fb21e8932f95e1fb7c1bd26d098978ede568c
7
+ data.tar.gz: e40807531e68604e2304721c3b2ba0272a13ed1d2be374ef101d78417adc0c2c3c538335b71d2a19812d2ea336282bbc66016ae462e91acc877220598b71d817
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Release history for google-apis-sts_v1beta
2
2
 
3
+ ### v0.9.0 (2021-07-03)
4
+
5
+ * Regenerated from discovery document revision 20210625
6
+ * Regenerated using generator version 0.4.0
7
+
8
+ ### v0.8.0 (2021-06-24)
9
+
10
+ * Regenerated using generator version 0.3.0
11
+
12
+ ### v0.7.0 (2021-05-27)
13
+
14
+ * Regenerated from discovery document revision 20210517
15
+
16
+ ### v0.6.0 (2021-05-20)
17
+
18
+ * Unspecified changes
19
+
20
+ ### v0.5.0 (2021-05-15)
21
+
22
+ * Regenerated from discovery document revision 20210508
23
+ * Regenerated using generator version 0.2.0
24
+
3
25
  ### v0.4.0 (2021-03-04)
4
26
 
5
27
  * Unspecified changes
@@ -59,28 +59,33 @@ 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 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#
76
+ # ProviderConfigurationResponse). - `iat`: The issue time, in seconds, since the
77
+ # Unix epoch. Must be in the past. - `exp`: The expiration time, in seconds,
78
+ # since the Unix epoch. Must be less than 48 hours after `iat`. Shorter
78
79
  # expiration times are more secure. If possible, we recommend setting an
79
80
  # 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": "
81
+ # `aud`: For workload identity pools, this must be a value specified in the
82
+ # allowed audiences for the workload identity pool provider, or one of the
83
+ # audiences allowed by default if no audiences were specified. See https://cloud.
84
+ # google.com/iam/docs/reference/rest/v1/projects.locations.workloadIdentityPools.
85
+ # providers#oidc Example header: ``` ` "alg": "RS256", "kid": "us-east-11" ` ```
86
+ # Example payload: ``` ` "iss": "https://accounts.google.com", "iat": 1517963104,
87
+ # "exp": 1517966704, "aud": "//iam.googleapis.com/projects/1234567890123/
88
+ # locations/global/workloadIdentityPools/my-pool/providers/my-provider", "sub": "
84
89
  # 113475438248934895348", "my_claims": ` "additional_claim": "value" ` ` ``` If `
85
90
  # subject_token` is for AWS, it must be a serialized `GetCallerIdentity` token.
86
91
  # This token contains the same information as a request to the AWS [`
@@ -125,8 +130,8 @@ module Google
125
130
 
126
131
  # Required. An identifier that indicates the type of the security token in the `
127
132
  # subject_token` parameter. Supported values are `urn:ietf:params:oauth:token-
128
- # type:jwt`, `urn:ietf:params:aws:token-type:aws4_request`, and `urn:ietf:params:
129
- # 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`.
130
135
  # Corresponds to the JSON property `subjectTokenType`
131
136
  # @return [String]
132
137
  attr_accessor :subject_token_type
@@ -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.4.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.1.2"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210206"
25
+ REVISION = "20210625"
26
26
  end
27
27
  end
28
28
  end
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-sts_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.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-03-08 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
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: '0.4'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0.4'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '0.1'
32
+ version: 2.a
27
33
  description: This is the simple REST client for Security Token Service API V1beta.
28
34
  Simple REST clients are Ruby client libraries that provide access to Google services
29
35
  via their HTTP REST API endpoints. These libraries are generated and updated automatically
@@ -52,7 +58,7 @@ licenses:
52
58
  metadata:
53
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
60
  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.4.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sts_v1beta/v0.9.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-sts_v1beta
57
63
  post_install_message:
58
64
  rdoc_options: []
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
75
  - !ruby/object:Gem::Version
70
76
  version: '0'
71
77
  requirements: []
72
- rubygems_version: 3.2.13
78
+ rubygems_version: 3.2.17
73
79
  signing_key:
74
80
  specification_version: 4
75
81
  summary: Simple REST client for Security Token Service API V1beta