google-apis-serviceusage_v1 0.17.0 → 0.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1bfdd6bda0067aa10d0babfe49f211f55689d38a05ae3d58d7e18c51b8402dda
|
|
4
|
+
data.tar.gz: 1996b5f61a83ce51f20730836b774e8604ba35c85f31186ead64dfd399b5bebc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cbe635aaea6ee3c429e0bdb3ca9a9ad7a7ed0fdb49480cd121404cfdf2eb015a4b0c697ac692c1789334b3a4967a6f8b78765f0b42f0af940c3bd9d0e16c10e4
|
|
7
|
+
data.tar.gz: 80d527ba7ffa96ff954ca1c55ac225a41e2808e0339ab78a86f11cfe4c81db63c0342cdb253259539e97fb9ea567c3593f089be035a5e5ab1b22f69fbfd9d084
|
data/CHANGELOG.md
CHANGED
|
@@ -211,14 +211,15 @@ module Google
|
|
|
211
211
|
# @return [String]
|
|
212
212
|
attr_accessor :jwks_uri
|
|
213
213
|
|
|
214
|
-
# Defines the locations to extract the JWT.
|
|
215
|
-
#
|
|
216
|
-
#
|
|
217
|
-
#
|
|
218
|
-
#
|
|
219
|
-
#
|
|
220
|
-
#
|
|
221
|
-
#
|
|
214
|
+
# Defines the locations to extract the JWT. For now it is only used by the Cloud
|
|
215
|
+
# Endpoints to store the OpenAPI extension [x-google-jwt-locations] (https://
|
|
216
|
+
# cloud.google.com/endpoints/docs/openapi/openapi-extensions#x-google-jwt-
|
|
217
|
+
# locations) JWT locations can be one of HTTP headers, URL query parameters or
|
|
218
|
+
# cookies. The rule is that the first match wins. If not specified, default to
|
|
219
|
+
# use following 3 locations: 1) Authorization: Bearer 2) x-goog-iap-jwt-
|
|
220
|
+
# assertion 3) access_token query parameter Default locations can be specified
|
|
221
|
+
# as followings: jwt_locations: - header: Authorization value_prefix: "Bearer " -
|
|
222
|
+
# header: x-goog-iap-jwt-assertion - query: access_token
|
|
222
223
|
# Corresponds to the JSON property `jwtLocations`
|
|
223
224
|
# @return [Array<Google::Apis::ServiceusageV1::JwtLocation>]
|
|
224
225
|
attr_accessor :jwt_locations
|
|
@@ -2297,6 +2298,11 @@ module Google
|
|
|
2297
2298
|
class JwtLocation
|
|
2298
2299
|
include Google::Apis::Core::Hashable
|
|
2299
2300
|
|
|
2301
|
+
# Specifies cookie name to extract JWT token.
|
|
2302
|
+
# Corresponds to the JSON property `cookie`
|
|
2303
|
+
# @return [String]
|
|
2304
|
+
attr_accessor :cookie
|
|
2305
|
+
|
|
2300
2306
|
# Specifies HTTP header name to extract JWT token.
|
|
2301
2307
|
# Corresponds to the JSON property `header`
|
|
2302
2308
|
# @return [String]
|
|
@@ -2323,6 +2329,7 @@ module Google
|
|
|
2323
2329
|
|
|
2324
2330
|
# Update properties of this object
|
|
2325
2331
|
def update!(**args)
|
|
2332
|
+
@cookie = args[:cookie] if args.key?(:cookie)
|
|
2326
2333
|
@header = args[:header] if args.key?(:header)
|
|
2327
2334
|
@query = args[:query] if args.key?(:query)
|
|
2328
2335
|
@value_prefix = args[:value_prefix] if args.key?(:value_prefix)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ServiceusageV1
|
|
18
18
|
# Version of the google-apis-serviceusage_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
|
|
@@ -1076,6 +1076,7 @@ module Google
|
|
|
1076
1076
|
class JwtLocation
|
|
1077
1077
|
# @private
|
|
1078
1078
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1079
|
+
property :cookie, as: 'cookie'
|
|
1079
1080
|
property :header, as: 'header'
|
|
1080
1081
|
property :query, as: 'query'
|
|
1081
1082
|
property :value_prefix, as: 'valuePrefix'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-serviceusage_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-serviceusage_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.18.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|