google-apis-servicenetworking_v1beta 0.16.0 → 0.19.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: 7ee4fb97fd924454d4194d793e64c7b80f4c11d2bf7c78af443e10d14901c420
|
4
|
+
data.tar.gz: bed8bec851a17230864071d50a1853b3ee268f7d615b028c1521ebe455ccc8b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44d10f6690e5a49bc5effe21fbd7b893296047eec608d43a3e33e135b002a68fe5657ebe9dcd422454c0f76c66502e5d57fb1fbff8aa552ea667470afa5a4503
|
7
|
+
data.tar.gz: 856c44366f855e4b2a20a3f90bc21f6a51c55c8700ee95eb64f4cd7078077262c5110ed46fbaf8dd03ca3577f55c8684c12666116b339eac77a9159a0bf66c4d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-servicenetworking_v1beta
|
2
2
|
|
3
|
+
### v0.19.0 (2022-05-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220513
|
6
|
+
|
7
|
+
### v0.18.0 (2022-04-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220425
|
10
|
+
|
11
|
+
### v0.17.0 (2022-04-12)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220406
|
14
|
+
* Regenerated using generator version 0.4.1
|
15
|
+
|
3
16
|
### v0.16.0 (2021-12-16)
|
4
17
|
|
5
18
|
* 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.
|
318
|
-
#
|
319
|
-
#
|
320
|
-
#
|
321
|
-
#
|
322
|
-
#
|
323
|
-
#
|
324
|
-
#
|
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
|
@@ -752,6 +753,11 @@ module Google
|
|
752
753
|
# @return [Array<Google::Apis::ServicenetworkingV1beta::GoogleCloudServicenetworkingV1ConsumerConfigReservedRange>]
|
753
754
|
attr_accessor :reserved_ranges
|
754
755
|
|
756
|
+
# Output only. The IP ranges already in use by consumer or producer
|
757
|
+
# Corresponds to the JSON property `usedIpRanges`
|
758
|
+
# @return [Array<String>]
|
759
|
+
attr_accessor :used_ip_ranges
|
760
|
+
|
755
761
|
# Output only. Indicates whether the VPC Service Controls reference architecture
|
756
762
|
# is configured for the producer VPC host network.
|
757
763
|
# Corresponds to the JSON property `vpcScReferenceArchitectureEnabled`
|
@@ -775,6 +781,7 @@ module Google
|
|
775
781
|
@producer_import_subnet_routes_with_public_ip = args[:producer_import_subnet_routes_with_public_ip] if args.key?(:producer_import_subnet_routes_with_public_ip)
|
776
782
|
@producer_network = args[:producer_network] if args.key?(:producer_network)
|
777
783
|
@reserved_ranges = args[:reserved_ranges] if args.key?(:reserved_ranges)
|
784
|
+
@used_ip_ranges = args[:used_ip_ranges] if args.key?(:used_ip_ranges)
|
778
785
|
@vpc_sc_reference_architecture_enabled = args[:vpc_sc_reference_architecture_enabled] if args.key?(:vpc_sc_reference_architecture_enabled)
|
779
786
|
end
|
780
787
|
end
|
@@ -1769,6 +1776,11 @@ module Google
|
|
1769
1776
|
class JwtLocation
|
1770
1777
|
include Google::Apis::Core::Hashable
|
1771
1778
|
|
1779
|
+
# Specifies cookie name to extract JWT token.
|
1780
|
+
# Corresponds to the JSON property `cookie`
|
1781
|
+
# @return [String]
|
1782
|
+
attr_accessor :cookie
|
1783
|
+
|
1772
1784
|
# Specifies HTTP header name to extract JWT token.
|
1773
1785
|
# Corresponds to the JSON property `header`
|
1774
1786
|
# @return [String]
|
@@ -1795,6 +1807,7 @@ module Google
|
|
1795
1807
|
|
1796
1808
|
# Update properties of this object
|
1797
1809
|
def update!(**args)
|
1810
|
+
@cookie = args[:cookie] if args.key?(:cookie)
|
1798
1811
|
@header = args[:header] if args.key?(:header)
|
1799
1812
|
@query = args[:query] if args.key?(:query)
|
1800
1813
|
@value_prefix = args[:value_prefix] if args.key?(:value_prefix)
|
@@ -2207,6 +2220,15 @@ module Google
|
|
2207
2220
|
class MetricRule
|
2208
2221
|
include Google::Apis::Core::Hashable
|
2209
2222
|
|
2223
|
+
# Metrics to update when the selected methods are called. The key of the map is
|
2224
|
+
# the metric name, the value is the DynamicCostType to specify how to calculate
|
2225
|
+
# the cost from the request. The cost amount will be increased for the metric
|
2226
|
+
# against which the quota limits are defined. It is only implemented in CloudESF(
|
2227
|
+
# go/cloudesf)
|
2228
|
+
# Corresponds to the JSON property `dynamicMetricCosts`
|
2229
|
+
# @return [Hash<String,String>]
|
2230
|
+
attr_accessor :dynamic_metric_costs
|
2231
|
+
|
2210
2232
|
# Metrics to update when the selected methods are called, and the associated
|
2211
2233
|
# cost applied to each metric. The key of the map is the metric name, and the
|
2212
2234
|
# values are the amount increased for the metric against which the quota limits
|
@@ -2227,6 +2249,7 @@ module Google
|
|
2227
2249
|
|
2228
2250
|
# Update properties of this object
|
2229
2251
|
def update!(**args)
|
2252
|
+
@dynamic_metric_costs = args[:dynamic_metric_costs] if args.key?(:dynamic_metric_costs)
|
2230
2253
|
@metric_costs = args[:metric_costs] if args.key?(:metric_costs)
|
2231
2254
|
@selector = args[:selector] if args.key?(:selector)
|
2232
2255
|
end
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.19.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220513"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -692,6 +692,7 @@ module Google
|
|
692
692
|
property :producer_network, as: 'producerNetwork'
|
693
693
|
collection :reserved_ranges, as: 'reservedRanges', class: Google::Apis::ServicenetworkingV1beta::GoogleCloudServicenetworkingV1ConsumerConfigReservedRange, decorator: Google::Apis::ServicenetworkingV1beta::GoogleCloudServicenetworkingV1ConsumerConfigReservedRange::Representation
|
694
694
|
|
695
|
+
collection :used_ip_ranges, as: 'usedIpRanges'
|
695
696
|
property :vpc_sc_reference_architecture_enabled, as: 'vpcScReferenceArchitectureEnabled'
|
696
697
|
end
|
697
698
|
end
|
@@ -915,6 +916,7 @@ module Google
|
|
915
916
|
class JwtLocation
|
916
917
|
# @private
|
917
918
|
class Representation < Google::Apis::Core::JsonRepresentation
|
919
|
+
property :cookie, as: 'cookie'
|
918
920
|
property :header, as: 'header'
|
919
921
|
property :query, as: 'query'
|
920
922
|
property :value_prefix, as: 'valuePrefix'
|
@@ -1012,6 +1014,7 @@ module Google
|
|
1012
1014
|
class MetricRule
|
1013
1015
|
# @private
|
1014
1016
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1017
|
+
hash :dynamic_metric_costs, as: 'dynamicMetricCosts'
|
1015
1018
|
hash :metric_costs, as: 'metricCosts'
|
1016
1019
|
property :selector, as: 'selector'
|
1017
1020
|
end
|
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.
|
4
|
+
version: 0.19.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-05-23 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.19.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.
|
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
|