google-apis-networkservices_v1beta1 0.52.0 → 0.53.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: 70972b1ec24d9808eb89363738fbebd7be9c47ee23942aa67f38ac8bb433c5c3
|
4
|
+
data.tar.gz: 360ce6f782068a40cb34b4b005547a92cdc7efb38e2c4c73de8a9013a5054234
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e5ebe17bad404945193956d87d35050172feee9a53e76482eb2666ef10058e1b247a8a36236a298f2de058cc1f7a4edc91d3440cc0c7a2bb71b9888337dce47
|
7
|
+
data.tar.gz: '08cc63a961ce2cd763ddebb52034c5c6a09dba9589368257369cf7c021744010a99e971dbe733eb4c8e5856cf7e822cadb68388156320ccd7588392f874ff9cc'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-networkservices_v1beta1
|
2
2
|
|
3
|
+
### v0.53.0 (2025-06-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250521
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
3
8
|
### v0.52.0 (2025-05-18)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20250508
|
@@ -249,6 +249,14 @@ module Google
|
|
249
249
|
# @return [String]
|
250
250
|
attr_accessor :name
|
251
251
|
|
252
|
+
# Optional. A URL referring to a SecurityPolicy resource. SecurityPolicy is used
|
253
|
+
# to enforce rate limiting policy on the inbound traffic at the identified
|
254
|
+
# backends. If this field is not set, rate limiting is disabled for this
|
255
|
+
# endpoint.
|
256
|
+
# Corresponds to the JSON property `securityPolicy`
|
257
|
+
# @return [String]
|
258
|
+
attr_accessor :security_policy
|
259
|
+
|
252
260
|
# Optional. A URL referring to ServerTlsPolicy resource. ServerTlsPolicy is used
|
253
261
|
# to determine the authentication policy to be applied to terminate the inbound
|
254
262
|
# traffic at the identified backends. If this field is not set, authentication
|
@@ -286,6 +294,7 @@ module Google
|
|
286
294
|
@endpoint_matcher = args[:endpoint_matcher] if args.key?(:endpoint_matcher)
|
287
295
|
@labels = args[:labels] if args.key?(:labels)
|
288
296
|
@name = args[:name] if args.key?(:name)
|
297
|
+
@security_policy = args[:security_policy] if args.key?(:security_policy)
|
289
298
|
@server_tls_policy = args[:server_tls_policy] if args.key?(:server_tls_policy)
|
290
299
|
@traffic_port_selector = args[:traffic_port_selector] if args.key?(:traffic_port_selector)
|
291
300
|
@type = args[:type] if args.key?(:type)
|
@@ -1752,7 +1761,8 @@ module Google
|
|
1752
1761
|
# Specifies the policy on how requests are shadowed to a separate mirrored
|
1753
1762
|
# destination service. The proxy does not wait for responses from the shadow
|
1754
1763
|
# service. Prior to sending traffic to the shadow service, the host/authority
|
1755
|
-
# header is suffixed with -shadow.
|
1764
|
+
# header is suffixed with -shadow. Mirroring is currently not supported for
|
1765
|
+
# Cloud Run destinations.
|
1756
1766
|
class HttpRouteRequestMirrorPolicy
|
1757
1767
|
include Google::Apis::Core::Hashable
|
1758
1768
|
|
@@ -1871,7 +1881,8 @@ module Google
|
|
1871
1881
|
# Specifies the policy on how requests are shadowed to a separate mirrored
|
1872
1882
|
# destination service. The proxy does not wait for responses from the shadow
|
1873
1883
|
# service. Prior to sending traffic to the shadow service, the host/authority
|
1874
|
-
# header is suffixed with -shadow.
|
1884
|
+
# header is suffixed with -shadow. Mirroring is currently not supported for
|
1885
|
+
# Cloud Run destinations.
|
1875
1886
|
# Corresponds to the JSON property `requestMirrorPolicy`
|
1876
1887
|
# @return [Google::Apis::NetworkservicesV1beta1::HttpRouteRequestMirrorPolicy]
|
1877
1888
|
attr_accessor :request_mirror_policy
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkservicesV1beta1
|
18
18
|
# Version of the google-apis-networkservices_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.53.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250521"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -636,6 +636,7 @@ module Google
|
|
636
636
|
|
637
637
|
hash :labels, as: 'labels'
|
638
638
|
property :name, as: 'name'
|
639
|
+
property :security_policy, as: 'securityPolicy'
|
639
640
|
property :server_tls_policy, as: 'serverTlsPolicy'
|
640
641
|
property :traffic_port_selector, as: 'trafficPortSelector', class: Google::Apis::NetworkservicesV1beta1::TrafficPortSelector, decorator: Google::Apis::NetworkservicesV1beta1::TrafficPortSelector::Representation
|
641
642
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkservices_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.53.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.53.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Network Services API V1beta1
|
79
79
|
test_files: []
|