google-apis-sts_v1beta 0.3.0 → 0.8.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: 1ebdc60907814ca8f4483f638ed4c0bdd5436e7a4e45dba1e65dde75c9ee8147
4
- data.tar.gz: 6bb66942c8d9495a0774287f47f7114f26f674112763155a87cfddba80a21d59
3
+ metadata.gz: e7051ef503eae9f2b08e79780b0ee270938d4ec9ab9eb966791c48b8046a96b1
4
+ data.tar.gz: 1b19ce0623e74a433c8bd2b82cd7147c3d195bfd400ae769aa93af6e3b2af2e5
5
5
  SHA512:
6
- metadata.gz: a3729e71b78de5569666c40a9592044136b3570a0524119a96e5a08aad6445a0c7fe31db4e5527c9234f88e9d95bfa654dee89d2364379ae155aec24607be073
7
- data.tar.gz: 70c9d44c5a2f11107286c6e1ad6c3492538f05837fdc950acbbade41e1d02b9caa2fc3abb3b066c01b247e1c372b5a3d390b69ee29dea3fbf778402223ea6443
6
+ metadata.gz: 4ff1c3d3d94fb0924e53f08c5bc192e45f5e4e288d6f1929a8cf051bb5b97ba1e8dfed3884529566825b385859686c38443bb7b2d1f18e17c2617e05c315727c
7
+ data.tar.gz: 1fdcb2882c42a2b6e53673868e90e4c49de413a3dcca6cc50822faff5bb981f8bab76d270eee232543b922e45f9cb6ebdf50cd7bac925ea1a69a0726adc4b750
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-sts_v1beta
2
2
 
3
+ ### v0.8.0 (2021-06-24)
4
+
5
+ * Regenerated using generator version 0.3.0
6
+
7
+ ### v0.7.0 (2021-05-27)
8
+
9
+ * Regenerated from discovery document revision 20210517
10
+
11
+ ### v0.6.0 (2021-05-20)
12
+
13
+ * Unspecified changes
14
+
15
+ ### v0.5.0 (2021-05-15)
16
+
17
+ * Regenerated from discovery document revision 20210508
18
+ * Regenerated using generator version 0.2.0
19
+
20
+ ### v0.4.0 (2021-03-04)
21
+
22
+ * Unspecified changes
23
+
3
24
  ### v0.3.0 (2021-02-12)
4
25
 
5
26
  * Regenerated from discovery document revision 20210206
@@ -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.3.0"
19
+ GEM_VERSION = "0.8.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.3.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210206"
25
+ REVISION = "20210517"
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.3.0
4
+ version: 0.8.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-15 00:00:00.000000000 Z
11
+ date: 2021-06-28 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.3'
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.3'
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.3.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sts_v1beta/v0.8.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: []
@@ -62,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
68
  requirements:
63
69
  - - ">="
64
70
  - !ruby/object:Gem::Version
65
- version: '2.4'
71
+ version: '2.5'
66
72
  required_rubygems_version: !ruby/object:Gem::Requirement
67
73
  requirements:
68
74
  - - ">="
69
75
  - !ruby/object:Gem::Version
70
76
  version: '0'
71
77
  requirements: []
72
- rubygems_version: 3.2.6
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