google-apis-servicenetworking_v1 0.20.0 → 0.21.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: 725556be29f6455c9df66a946856b6255f69c6de3c6983e23be131361c6e4f46
|
4
|
+
data.tar.gz: be4c13853e3f0b03a99037ae885e9aab33a084e321c133aab746005a642ea461
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ca4137420b53573f9933644735a93baca1d000a44639b758e3fc709757268022294534699281615310ad5169592346e2777a7d2e316d49bc03a074b96da61a9
|
7
|
+
data.tar.gz: c45c9c9f7052c61726560dd88e99462d0dddaf010e32a7a478c9d98bf59bbc9345b3caff17fdd72a4fcd00028613630374ef3afee4855ea80adb2ec9f8b4758f
|
data/CHANGELOG.md
CHANGED
@@ -466,14 +466,15 @@ module Google
|
|
466
466
|
# @return [String]
|
467
467
|
attr_accessor :jwks_uri
|
468
468
|
|
469
|
-
# Defines the locations to extract the JWT.
|
470
|
-
#
|
471
|
-
#
|
472
|
-
#
|
473
|
-
#
|
474
|
-
#
|
475
|
-
#
|
476
|
-
#
|
469
|
+
# Defines the locations to extract the JWT. For now it is only used by the Cloud
|
470
|
+
# Endpoints to store the OpenAPI extension [x-google-jwt-locations] (https://
|
471
|
+
# cloud.google.com/endpoints/docs/openapi/openapi-extensions#x-google-jwt-
|
472
|
+
# locations) JWT locations can be one of HTTP headers, URL query parameters or
|
473
|
+
# cookies. The rule is that the first match wins. If not specified, default to
|
474
|
+
# use following 3 locations: 1) Authorization: Bearer 2) x-goog-iap-jwt-
|
475
|
+
# assertion 3) access_token query parameter Default locations can be specified
|
476
|
+
# as followings: jwt_locations: - header: Authorization value_prefix: "Bearer " -
|
477
|
+
# header: x-goog-iap-jwt-assertion - query: access_token
|
477
478
|
# Corresponds to the JSON property `jwtLocations`
|
478
479
|
# @return [Array<Google::Apis::ServicenetworkingV1::JwtLocation>]
|
479
480
|
attr_accessor :jwt_locations
|
@@ -2035,6 +2036,11 @@ module Google
|
|
2035
2036
|
class JwtLocation
|
2036
2037
|
include Google::Apis::Core::Hashable
|
2037
2038
|
|
2039
|
+
# Specifies cookie name to extract JWT token.
|
2040
|
+
# Corresponds to the JSON property `cookie`
|
2041
|
+
# @return [String]
|
2042
|
+
attr_accessor :cookie
|
2043
|
+
|
2038
2044
|
# Specifies HTTP header name to extract JWT token.
|
2039
2045
|
# Corresponds to the JSON property `header`
|
2040
2046
|
# @return [String]
|
@@ -2061,6 +2067,7 @@ module Google
|
|
2061
2067
|
|
2062
2068
|
# Update properties of this object
|
2063
2069
|
def update!(**args)
|
2070
|
+
@cookie = args[:cookie] if args.key?(:cookie)
|
2064
2071
|
@header = args[:header] if args.key?(:header)
|
2065
2072
|
@query = args[:query] if args.key?(:query)
|
2066
2073
|
@value_prefix = args[:value_prefix] if args.key?(:value_prefix)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServicenetworkingV1
|
18
18
|
# Version of the google-apis-servicenetworking_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.21.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 = "20220406"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1104,6 +1104,7 @@ module Google
|
|
1104
1104
|
class JwtLocation
|
1105
1105
|
# @private
|
1106
1106
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1107
|
+
property :cookie, as: 'cookie'
|
1107
1108
|
property :header, as: 'header'
|
1108
1109
|
property :query, as: 'query'
|
1109
1110
|
property :value_prefix, as: 'valuePrefix'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-servicenetworking_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.21.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-18 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-servicenetworking_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.21.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|