google-apis-networkservices_v1 0.25.0 → 0.27.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: 421c13be5eb68184a213607adc7a8805c5dc8fde8c9d58e084362544f84baf4c
|
4
|
+
data.tar.gz: 4a82492ba366b794329e042a123c0687b6f062ffde31ec412fa9e82efdf6e75b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a84843fbb2450cf06ddbd7fba3580aa1fe40002180c37a70b4ebe3e7508a200d65ca0843eb64c3c6f5269bdcde5d1f7223c7f848aba28765e3adc32146fa2945
|
7
|
+
data.tar.gz: cd5fafdb8ccef51e56267cd529421031b4740a1f1842c8142ed2f84475f54c72f4fc14891f18a627a2117a670e8c4a8ab476dec690959efdb6279e848b25a4f8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-networkservices_v1
|
2
2
|
|
3
|
+
### v0.27.0 (2023-06-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230619
|
6
|
+
|
7
|
+
### v0.26.0 (2023-05-28)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230510
|
10
|
+
|
3
11
|
### v0.25.0 (2023-04-30)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230424
|
@@ -441,10 +441,10 @@ module Google
|
|
441
441
|
class Gateway
|
442
442
|
include Google::Apis::Core::Hashable
|
443
443
|
|
444
|
-
# Optional. Zero or one IPv4
|
445
|
-
# traffic. When no address is provided, an IP from the subnetwork is
|
446
|
-
# This field only applies to gateways of type 'SECURE_WEB_GATEWAY'.
|
447
|
-
# type 'OPEN_MESH' listen on 0.0.0.0.
|
444
|
+
# Optional. Zero or one IPv4 or IPv6 address on which the Gateway will receive
|
445
|
+
# the traffic. When no address is provided, an IP from the subnetwork is
|
446
|
+
# allocated This field only applies to gateways of type 'SECURE_WEB_GATEWAY'.
|
447
|
+
# Gateways of type 'OPEN_MESH' listen on 0.0.0.0 for IPv4 and :: for IPv6.
|
448
448
|
# Corresponds to the JSON property `addresses`
|
449
449
|
# @return [Array<String>]
|
450
450
|
attr_accessor :addresses
|
@@ -495,7 +495,7 @@ module Google
|
|
495
495
|
# Required. One or more port numbers (1-65535), on which the Gateway will
|
496
496
|
# receive traffic. The proxy binds to the specified ports. Gateways of type '
|
497
497
|
# SECURE_WEB_GATEWAY' are limited to 1 port. Gateways of type 'OPEN_MESH' listen
|
498
|
-
# on 0.0.0.0 and support multiple ports.
|
498
|
+
# on 0.0.0.0 for IPv4 and :: for IPv6 and support multiple ports.
|
499
499
|
# Corresponds to the JSON property `ports`
|
500
500
|
# @return [Array<Fixnum>]
|
501
501
|
attr_accessor :ports
|
@@ -1832,6 +1832,11 @@ module Google
|
|
1832
1832
|
# @return [String]
|
1833
1833
|
attr_accessor :next_page_token
|
1834
1834
|
|
1835
|
+
# Locations that could not be reached.
|
1836
|
+
# Corresponds to the JSON property `unreachable`
|
1837
|
+
# @return [Array<String>]
|
1838
|
+
attr_accessor :unreachable
|
1839
|
+
|
1835
1840
|
def initialize(**args)
|
1836
1841
|
update!(**args)
|
1837
1842
|
end
|
@@ -1840,6 +1845,7 @@ module Google
|
|
1840
1845
|
def update!(**args)
|
1841
1846
|
@gateways = args[:gateways] if args.key?(:gateways)
|
1842
1847
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1848
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
1843
1849
|
end
|
1844
1850
|
end
|
1845
1851
|
|
@@ -2122,7 +2128,7 @@ module Google
|
|
2122
2128
|
# listen on the specified port of localhost (127.0.0.1) address. The SIDECAR
|
2123
2129
|
# proxy will expect all traffic to be redirected to this port regardless of its
|
2124
2130
|
# actual ip:port destination. If unset, a port '15001' is used as the
|
2125
|
-
# interception port. This
|
2131
|
+
# interception port. This is applicable only for sidecar proxy deployments.
|
2126
2132
|
# Corresponds to the JSON property `interceptionPort`
|
2127
2133
|
# @return [Fixnum]
|
2128
2134
|
attr_accessor :interception_port
|
@@ -2412,6 +2418,14 @@ module Google
|
|
2412
2418
|
# @return [String]
|
2413
2419
|
attr_accessor :service
|
2414
2420
|
|
2421
|
+
# Output only. The unique identifier of the Service Directory Service against
|
2422
|
+
# which the Service Binding resource is validated. This is populated when the
|
2423
|
+
# Service Binding resource is used in another resource (like Backend Service).
|
2424
|
+
# This is of the UUID4 format.
|
2425
|
+
# Corresponds to the JSON property `serviceId`
|
2426
|
+
# @return [String]
|
2427
|
+
attr_accessor :service_id
|
2428
|
+
|
2415
2429
|
# Output only. The timestamp when the resource was updated.
|
2416
2430
|
# Corresponds to the JSON property `updateTime`
|
2417
2431
|
# @return [String]
|
@@ -2428,6 +2442,7 @@ module Google
|
|
2428
2442
|
@labels = args[:labels] if args.key?(:labels)
|
2429
2443
|
@name = args[:name] if args.key?(:name)
|
2430
2444
|
@service = args[:service] if args.key?(:service)
|
2445
|
+
@service_id = args[:service_id] if args.key?(:service_id)
|
2431
2446
|
@update_time = args[:update_time] if args.key?(:update_time)
|
2432
2447
|
end
|
2433
2448
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkservicesV1
|
18
18
|
# Version of the google-apis-networkservices_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.27.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230619"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -876,6 +876,7 @@ module Google
|
|
876
876
|
collection :gateways, as: 'gateways', class: Google::Apis::NetworkservicesV1::Gateway, decorator: Google::Apis::NetworkservicesV1::Gateway::Representation
|
877
877
|
|
878
878
|
property :next_page_token, as: 'nextPageToken'
|
879
|
+
collection :unreachable, as: 'unreachable'
|
879
880
|
end
|
880
881
|
end
|
881
882
|
|
@@ -1020,6 +1021,7 @@ module Google
|
|
1020
1021
|
hash :labels, as: 'labels'
|
1021
1022
|
property :name, as: 'name'
|
1022
1023
|
property :service, as: 'service'
|
1024
|
+
property :service_id, as: 'serviceId'
|
1023
1025
|
property :update_time, as: 'updateTime'
|
1024
1026
|
end
|
1025
1027
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkservices_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.27.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: 2023-
|
11
|
+
date: 2023-06-25 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-networkservices_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.27.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|