google-apis-servicenetworking_v1beta 0.16.0 → 0.17.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: ffbd4239247db166075d128610a9b509a2182f7f74b43085607f9a9b83cfd6fb
4
- data.tar.gz: 26027523f631e80ae4596a1fb650d5b8af86b0e086712e930609bbdce6dff581
3
+ metadata.gz: 6d0d1922e11735106d1f62688ab9400c4ffb365f96037a13241944fe2aa7989f
4
+ data.tar.gz: 43e3f5bd0653c4ff548ac9db60a31338790cdb0f126db1e349ac5e02dfc154b0
5
5
  SHA512:
6
- metadata.gz: 90e80bc40f8a88afce37ff7a478641a10169051e9b30c38671c72907c720b1a6454c3d115f43de6b084223fb6046b2bf2afddc2b876f61b4395b5966927e8444
7
- data.tar.gz: ed1bfe402cfa5ab3dffc28452cd35ba434b14c22b373ef2c6726a0fc16ba942180cb2dd0aa40df835f92f894619935cf1a2302ff6cbadac2b1085854cabafcb9
6
+ metadata.gz: f53e5f91c90449e924779353f0638327c5f299a6e0fa7f8464e6f3c5cf76f438094f5c7472df265d7e6238f354fee5d55a713c2ba724dbf141d31b1353026853
7
+ data.tar.gz: b8c970dec453fef88ac8dc1d4b9a44355c818dae49c1f95f3b2a32ff4e7d0827610ffdc494d9d421bd56d521b0342fb9e90e9529639b1bb1818b1a9210c7cbe9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-servicenetworking_v1beta
2
2
 
3
+ ### v0.17.0 (2022-04-12)
4
+
5
+ * Regenerated from discovery document revision 20220406
6
+ * Regenerated using generator version 0.4.1
7
+
3
8
  ### v0.16.0 (2021-12-16)
4
9
 
5
10
  * Regenerated from discovery document revision 20211210
@@ -314,14 +314,15 @@ module Google
314
314
  # @return [String]
315
315
  attr_accessor :jwks_uri
316
316
 
317
- # Defines the locations to extract the JWT. JWT locations can be either from
318
- # HTTP headers or URL query parameters. The rule is that the first match wins.
319
- # The checking order is: checking all headers first, then URL query parameters.
320
- # If not specified, default to use following 3 locations: 1) Authorization:
321
- # Bearer 2) x-goog-iap-jwt-assertion 3) access_token query parameter Default
322
- # locations can be specified as followings: jwt_locations: - header:
323
- # Authorization value_prefix: "Bearer " - header: x-goog-iap-jwt-assertion -
324
- # query: access_token
317
+ # Defines the locations to extract the JWT. For now it is only used by the Cloud
318
+ # Endpoints to store the OpenAPI extension [x-google-jwt-locations] (https://
319
+ # cloud.google.com/endpoints/docs/openapi/openapi-extensions#x-google-jwt-
320
+ # locations) JWT locations can be one of HTTP headers, URL query parameters or
321
+ # cookies. The rule is that the first match wins. If not specified, default to
322
+ # use following 3 locations: 1) Authorization: Bearer 2) x-goog-iap-jwt-
323
+ # assertion 3) access_token query parameter Default locations can be specified
324
+ # as followings: jwt_locations: - header: Authorization value_prefix: "Bearer " -
325
+ # header: x-goog-iap-jwt-assertion - query: access_token
325
326
  # Corresponds to the JSON property `jwtLocations`
326
327
  # @return [Array<Google::Apis::ServicenetworkingV1beta::JwtLocation>]
327
328
  attr_accessor :jwt_locations
@@ -1769,6 +1770,11 @@ module Google
1769
1770
  class JwtLocation
1770
1771
  include Google::Apis::Core::Hashable
1771
1772
 
1773
+ # Specifies cookie name to extract JWT token.
1774
+ # Corresponds to the JSON property `cookie`
1775
+ # @return [String]
1776
+ attr_accessor :cookie
1777
+
1772
1778
  # Specifies HTTP header name to extract JWT token.
1773
1779
  # Corresponds to the JSON property `header`
1774
1780
  # @return [String]
@@ -1795,6 +1801,7 @@ module Google
1795
1801
 
1796
1802
  # Update properties of this object
1797
1803
  def update!(**args)
1804
+ @cookie = args[:cookie] if args.key?(:cookie)
1798
1805
  @header = args[:header] if args.key?(:header)
1799
1806
  @query = args[:query] if args.key?(:query)
1800
1807
  @value_prefix = args[:value_prefix] if args.key?(:value_prefix)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicenetworkingV1beta
18
18
  # Version of the google-apis-servicenetworking_v1beta gem
19
- GEM_VERSION = "0.16.0"
19
+ GEM_VERSION = "0.17.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211210"
25
+ REVISION = "20220406"
26
26
  end
27
27
  end
28
28
  end
@@ -915,6 +915,7 @@ module Google
915
915
  class JwtLocation
916
916
  # @private
917
917
  class Representation < Google::Apis::Core::JsonRepresentation
918
+ property :cookie, as: 'cookie'
918
919
  property :header, as: 'header'
919
920
  property :query, as: 'query'
920
921
  property :value_prefix, as: 'valuePrefix'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicenetworking_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.17.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-01-10 00:00:00.000000000 Z
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_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.16.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.17.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1beta
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.4
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Service Networking API V1beta