google-apis-sts_v1 0.26.0 → 0.28.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: 7d30badf4fa212e56d7a159fc50e1ce28b6bb71328dede34e80b6108a43eb130
4
- data.tar.gz: e456e593a732581bc0d799519d85374386671ba56f7beda5b283c4dbb56e6271
3
+ metadata.gz: caba7964ba372885dc1ba10060e6496436e132d46c7b1fe7b27590358057b82e
4
+ data.tar.gz: a6648ef900a4c3349c4911e266cbbcf289581c42070232d7d0afb8dcc1618461
5
5
  SHA512:
6
- metadata.gz: 37fb3b75e2da44b66f16f52fe270f8f5b19d6ece0124f8358d94dcd8b0e92ef02ea7816de64f4b4ed1b5be9a04fea00b0621b7c4f21e75cce0d284d15a9b12e7
7
- data.tar.gz: 3db63d86ce9210d2757b27d1d36fc8c3bdf5bebfbba540a17a6abfe4c715e749b1c4cc8bdeff7671a3dcbe28ca10459899afe2ddd46da022c0c46410247f8f77
6
+ metadata.gz: 81d813b9c28a77da8ff6f1a295da5adb48e9bed414a81fc64dc0e825add0302315a16086f308c592e431915c232947866a700ffd748329b723bad128d3064f0c
7
+ data.tar.gz: c828141663c1be8460abd65c1ba31eb15084834173ccfb8b284b8cba554801b9f9e971391925198e2835c119a97cd6fec0f50a6871c01c32ebfeea22b252894b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-sts_v1
2
2
 
3
+ ### v0.28.0 (2023-02-05)
4
+
5
+ * Regenerated from discovery document revision 20230129
6
+
7
+ ### v0.27.0 (2023-01-29)
8
+
9
+ * Regenerated from discovery document revision 20230121
10
+ * Regenerated using generator version 0.11.1
11
+
3
12
  ### v0.26.0 (2022-12-09)
4
13
 
5
14
  * Regenerated from discovery document revision 20221204
@@ -60,22 +60,22 @@ module Google
60
60
  # kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-
61
61
  # project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:`emailid``: An
62
62
  # email address that represents a Google group. For example, `admins@example.com`
63
- # . * `deleted:user:`emailid`?uid=`uniqueid``: An email address (plus unique
64
- # identifier) representing a user that has been recently deleted. For example, `
65
- # alice@example.com?uid=123456789012345678901`. If the user is recovered, this
66
- # value reverts to `user:`emailid`` and the recovered user retains the role in
67
- # the binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email
68
- # address (plus unique identifier) representing a service account that has been
69
- # recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
63
+ # . * `domain:`domain``: The G Suite domain (primary) that represents all the
64
+ # users of that domain. For example, `google.com` or `example.com`. * `deleted:
65
+ # user:`emailid`?uid=`uniqueid``: An email address (plus unique identifier)
66
+ # representing a user that has been recently deleted. For example, `alice@
67
+ # example.com?uid=123456789012345678901`. If the user is recovered, this value
68
+ # reverts to `user:`emailid`` and the recovered user retains the role in the
69
+ # binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email address
70
+ # (plus unique identifier) representing a service account that has been recently
71
+ # deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
70
72
  # 123456789012345678901`. If the service account is undeleted, this value
71
73
  # reverts to `serviceAccount:`emailid`` and the undeleted service account
72
74
  # retains the role in the binding. * `deleted:group:`emailid`?uid=`uniqueid``:
73
75
  # An email address (plus unique identifier) representing a Google group that has
74
76
  # been recently deleted. For example, `admins@example.com?uid=
75
77
  # 123456789012345678901`. If the group is recovered, this value reverts to `
76
- # group:`emailid`` and the recovered group retains the role in the binding. * `
77
- # domain:`domain``: The G Suite domain (primary) that represents all the users
78
- # of that domain. For example, `google.com` or `example.com`.
78
+ # group:`emailid`` and the recovered group retains the role in the binding.
79
79
  # Corresponds to the JSON property `members`
80
80
  # @return [Array<String>]
81
81
  attr_accessor :members
@@ -274,6 +274,12 @@ module Google
274
274
  # @return [Fixnum]
275
275
  attr_accessor :expires_in
276
276
 
277
+ # Google issued ID token in response to the OAuth token exchange request for ID
278
+ # token flow.
279
+ # Corresponds to the JSON property `id_token`
280
+ # @return [String]
281
+ attr_accessor :id_token
282
+
277
283
  # A refresh token, issued by Google, in response to the OAuth token exchange
278
284
  # request for refresh token flow
279
285
  # Corresponds to the JSON property `refresh_token`
@@ -286,8 +292,7 @@ module Google
286
292
  attr_accessor :scope
287
293
 
288
294
  # The type of token. Field reserved for RFC compliance. See https://www.rfc-
289
- # editor.org/rfc/rfc6749#section-5.1 Note: No token_type is returned for current
290
- # implementation
295
+ # editor.org/rfc/rfc6749#section-5.1
291
296
  # Corresponds to the JSON property `token_type`
292
297
  # @return [String]
293
298
  attr_accessor :token_type
@@ -300,6 +305,7 @@ module Google
300
305
  def update!(**args)
301
306
  @access_token = args[:access_token] if args.key?(:access_token)
302
307
  @expires_in = args[:expires_in] if args.key?(:expires_in)
308
+ @id_token = args[:id_token] if args.key?(:id_token)
303
309
  @refresh_token = args[:refresh_token] if args.key?(:refresh_token)
304
310
  @scope = args[:scope] if args.key?(:scope)
305
311
  @token_type = args[:token_type] if args.key?(: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.26.0"
19
+ GEM_VERSION = "0.28.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221204"
25
+ REVISION = "20230129"
26
26
  end
27
27
  end
28
28
  end
@@ -152,6 +152,7 @@ module Google
152
152
  class Representation < Google::Apis::Core::JsonRepresentation
153
153
  property :access_token, as: 'access_token'
154
154
  property :expires_in, as: 'expires_in'
155
+ property :id_token, as: 'id_token'
155
156
  property :refresh_token, as: 'refresh_token'
156
157
  property :scope, as: 'scope'
157
158
  property :token_type, as: 'token_type'
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.26.0
4
+ version: 0.28.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: 2022-12-12 00:00:00.000000000 Z
11
+ date: 2023-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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/main/generated/google-apis-sts_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-sts_v1/v0.26.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sts_v1/v0.28.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sts_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -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.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Security Token Service API V1