google-apis-serviceconsumermanagement_v1 0.17.0 → 0.18.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '08187df52e81c70643d64ba802db31940554e4632755b1d38b83d7a8f233b858'
|
4
|
+
data.tar.gz: 0b3091b2762f1de9ec1597838d8b44d777684c8b104637ad3fa0a31280cb7e03
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4bf6a4d2efa09d63d6f00e41254872d74680cdbed9fd026b4717572b4d4489477d92844f8056035dbc5f770c9246867eb2de73893d65c5294428e9ef3c841803
|
7
|
+
data.tar.gz: 689369fdee5a20b1c7f47f2807ebbd322b56f3826f80688a0f975e820eca4fcd998b87a5e345af3e7a1757411280d05ee966a0639a58c27df857c4f9709c0fe8
|
data/CHANGELOG.md
CHANGED
@@ -238,14 +238,15 @@ module Google
|
|
238
238
|
# @return [String]
|
239
239
|
attr_accessor :jwks_uri
|
240
240
|
|
241
|
-
# Defines the locations to extract the JWT.
|
242
|
-
#
|
243
|
-
#
|
244
|
-
#
|
245
|
-
#
|
246
|
-
#
|
247
|
-
#
|
248
|
-
#
|
241
|
+
# Defines the locations to extract the JWT. For now it is only used by the Cloud
|
242
|
+
# Endpoints to store the OpenAPI extension [x-google-jwt-locations] (https://
|
243
|
+
# cloud.google.com/endpoints/docs/openapi/openapi-extensions#x-google-jwt-
|
244
|
+
# locations) JWT locations can be one of HTTP headers, URL query parameters or
|
245
|
+
# cookies. The rule is that the first match wins. If not specified, default to
|
246
|
+
# use following 3 locations: 1) Authorization: Bearer 2) x-goog-iap-jwt-
|
247
|
+
# assertion 3) access_token query parameter Default locations can be specified
|
248
|
+
# as followings: jwt_locations: - header: Authorization value_prefix: "Bearer " -
|
249
|
+
# header: x-goog-iap-jwt-assertion - query: access_token
|
249
250
|
# Corresponds to the JSON property `jwtLocations`
|
250
251
|
# @return [Array<Google::Apis::ServiceconsumermanagementV1::JwtLocation>]
|
251
252
|
attr_accessor :jwt_locations
|
@@ -1409,6 +1410,11 @@ module Google
|
|
1409
1410
|
class JwtLocation
|
1410
1411
|
include Google::Apis::Core::Hashable
|
1411
1412
|
|
1413
|
+
# Specifies cookie name to extract JWT token.
|
1414
|
+
# Corresponds to the JSON property `cookie`
|
1415
|
+
# @return [String]
|
1416
|
+
attr_accessor :cookie
|
1417
|
+
|
1412
1418
|
# Specifies HTTP header name to extract JWT token.
|
1413
1419
|
# Corresponds to the JSON property `header`
|
1414
1420
|
# @return [String]
|
@@ -1435,6 +1441,7 @@ module Google
|
|
1435
1441
|
|
1436
1442
|
# Update properties of this object
|
1437
1443
|
def update!(**args)
|
1444
|
+
@cookie = args[:cookie] if args.key?(:cookie)
|
1438
1445
|
@header = args[:header] if args.key?(:header)
|
1439
1446
|
@query = args[:query] if args.key?(:query)
|
1440
1447
|
@value_prefix = args[:value_prefix] if args.key?(:value_prefix)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServiceconsumermanagementV1
|
18
18
|
# Version of the google-apis-serviceconsumermanagement_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.18.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220405"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -874,6 +874,7 @@ module Google
|
|
874
874
|
class JwtLocation
|
875
875
|
# @private
|
876
876
|
class Representation < Google::Apis::Core::JsonRepresentation
|
877
|
+
property :cookie, as: 'cookie'
|
877
878
|
property :header, as: 'header'
|
878
879
|
property :query, as: 'query'
|
879
880
|
property :value_prefix, as: 'valuePrefix'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-serviceconsumermanagement_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.18.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-
|
11
|
+
date: 2022-04-11 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-serviceconsumermanagement_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.18.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|