google-cloud-network_management-v1 2.0.0 → 2.0.1
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: 26c9ce51ac33c184753413a2071edbb9175874e2741670acf47b453a62aec573
|
4
|
+
data.tar.gz: 8a7c37a0eef968a0353d9172776b8accfd809881d9260e55abbd3cc78c798e7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a2e3de708364a2bb2b2dc7c2eb0eea3d9392078cfae9dd4d54a07334aa2cde9d9108371600abfd8ad7927eee489c2e51ffc101cb2c395942d008564bc51c571
|
7
|
+
data.tar.gz: 1039236a8be4a245832414e37836bd48b3cc7e3d21c0ff0213daa9bfb91f77b8e8b6441bccde2a93da49173d8170432c862cd036f4ecc60f5d8a2b97a9b5f873
|
@@ -221,6 +221,12 @@ module Google
|
|
221
221
|
# Pythonic which are included in `protobuf>=5.29.x`. This feature will be
|
222
222
|
# enabled by default 1 month after launching the feature in preview
|
223
223
|
# packages.
|
224
|
+
# @!attribute [rw] unversioned_package_disabled
|
225
|
+
# @return [::Boolean]
|
226
|
+
# Disables generation of an unversioned Python package for this client
|
227
|
+
# library. This means that the module names will need to be versioned in
|
228
|
+
# import statements. For example `import google.cloud.library_v2` instead
|
229
|
+
# of `import google.cloud.library`.
|
224
230
|
class ExperimentalFeatures
|
225
231
|
include ::Google::Protobuf::MessageExts
|
226
232
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -34,46 +34,22 @@ module Google
|
|
34
34
|
# @return [::Google::Cloud::NetworkManagement::V1::Endpoint]
|
35
35
|
# Required. Source specification of the Connectivity Test.
|
36
36
|
#
|
37
|
-
# You can use a combination of source IP address,
|
38
|
-
#
|
39
|
-
# the source location.
|
37
|
+
# You can use a combination of source IP address, URI of a supported
|
38
|
+
# endpoint, project ID, or VPC network to identify the source location.
|
40
39
|
#
|
41
|
-
#
|
42
|
-
#
|
43
|
-
#
|
44
|
-
# network. Otherwise, specify the VM instance, which already contains its
|
45
|
-
# internal IP address and VPC network information.
|
46
|
-
#
|
47
|
-
# If the source of the test is within an on-premises network, then you must
|
48
|
-
# provide the destination VPC network.
|
49
|
-
#
|
50
|
-
# If the source endpoint is a Compute Engine VM instance with multiple
|
51
|
-
# network interfaces, the instance itself is not sufficient to identify the
|
52
|
-
# endpoint. So, you must also specify the source IP address or VPC network.
|
53
|
-
#
|
54
|
-
# A reachability analysis proceeds even if the source location is
|
55
|
-
# ambiguous. However, the test result may include endpoints that you don't
|
56
|
-
# intend to test.
|
40
|
+
# Reachability analysis might proceed even if the source location is
|
41
|
+
# ambiguous. However, the test result might include endpoints or use a source
|
42
|
+
# that you don't intend to test.
|
57
43
|
# @!attribute [rw] destination
|
58
44
|
# @return [::Google::Cloud::NetworkManagement::V1::Endpoint]
|
59
45
|
# Required. Destination specification of the Connectivity Test.
|
60
46
|
#
|
61
|
-
# You can use a combination of destination IP address,
|
62
|
-
#
|
63
|
-
# location.
|
64
|
-
#
|
65
|
-
# Even if the destination IP address is not unique, the source IP
|
66
|
-
# location is unique. Usually, the analysis can infer the destination
|
67
|
-
# endpoint from route information.
|
68
|
-
#
|
69
|
-
# If the destination you specify is a VM instance and the instance has
|
70
|
-
# multiple network interfaces, then you must also specify either
|
71
|
-
# a destination IP address or VPC network to identify the destination
|
72
|
-
# interface.
|
47
|
+
# You can use a combination of destination IP address, URI of a supported
|
48
|
+
# endpoint, project ID, or VPC network to identify the destination location.
|
73
49
|
#
|
74
|
-
#
|
75
|
-
# ambiguous. However, the result
|
76
|
-
# intend to test.
|
50
|
+
# Reachability analysis proceeds even if the destination location is
|
51
|
+
# ambiguous. However, the test result might include endpoints or use a
|
52
|
+
# destination that you don't intend to test.
|
77
53
|
# @!attribute [rw] protocol
|
78
54
|
# @return [::String]
|
79
55
|
# IP Protocol of the test. When not provided, "TCP" is assumed.
|
@@ -116,8 +92,7 @@ module Google
|
|
116
92
|
# test.
|
117
93
|
# @!attribute [rw] bypass_firewall_checks
|
118
94
|
# @return [::Boolean]
|
119
|
-
# Whether the
|
120
|
-
# If not provided, we assume false.
|
95
|
+
# Whether the analysis should skip firewall checking. Default value is false.
|
121
96
|
class ConnectivityTest
|
122
97
|
include ::Google::Protobuf::MessageExts
|
123
98
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -148,7 +123,8 @@ module Google
|
|
148
123
|
# A forwarding rule and its corresponding IP address represent the frontend
|
149
124
|
# configuration of a Google Cloud load balancer. Forwarding rules are also
|
150
125
|
# used for protocol forwarding, Private Service Connect and other network
|
151
|
-
# services to provide forwarding information in the control plane.
|
126
|
+
# services to provide forwarding information in the control plane. Applicable
|
127
|
+
# only to destination endpoint. Format:
|
152
128
|
# projects/\\{project}/global/forwardingRules/\\{id} or
|
153
129
|
# projects/\\{project}/regions/\\{region}/forwardingRules/\\{id}
|
154
130
|
# @!attribute [r] forwarding_rule_target
|
@@ -176,26 +152,29 @@ module Google
|
|
176
152
|
# A [Cloud SQL](https://cloud.google.com/sql) instance URI.
|
177
153
|
# @!attribute [rw] redis_instance
|
178
154
|
# @return [::String]
|
179
|
-
# A [Redis Instance](https://cloud.google.com/memorystore/docs/redis)
|
180
|
-
#
|
155
|
+
# A [Redis Instance](https://cloud.google.com/memorystore/docs/redis) URI.
|
156
|
+
# Applicable only to destination endpoint.
|
181
157
|
# @!attribute [rw] redis_cluster
|
182
158
|
# @return [::String]
|
183
|
-
# A [Redis Cluster](https://cloud.google.com/memorystore/docs/cluster)
|
184
|
-
#
|
159
|
+
# A [Redis Cluster](https://cloud.google.com/memorystore/docs/cluster) URI.
|
160
|
+
# Applicable only to destination endpoint.
|
185
161
|
# @!attribute [rw] cloud_function
|
186
162
|
# @return [::Google::Cloud::NetworkManagement::V1::Endpoint::CloudFunctionEndpoint]
|
187
|
-
# A [Cloud Function](https://cloud.google.com/functions).
|
163
|
+
# A [Cloud Function](https://cloud.google.com/functions). Applicable only to
|
164
|
+
# source endpoint.
|
188
165
|
# @!attribute [rw] app_engine_version
|
189
166
|
# @return [::Google::Cloud::NetworkManagement::V1::Endpoint::AppEngineVersionEndpoint]
|
190
167
|
# An [App Engine](https://cloud.google.com/appengine) [service
|
191
168
|
# version](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions).
|
169
|
+
# Applicable only to source endpoint.
|
192
170
|
# @!attribute [rw] cloud_run_revision
|
193
171
|
# @return [::Google::Cloud::NetworkManagement::V1::Endpoint::CloudRunRevisionEndpoint]
|
194
172
|
# A [Cloud Run](https://cloud.google.com/run)
|
195
173
|
# [revision](https://cloud.google.com/run/docs/reference/rest/v1/namespaces.revisions/get)
|
174
|
+
# Applicable only to source endpoint.
|
196
175
|
# @!attribute [rw] network
|
197
176
|
# @return [::String]
|
198
|
-
# A
|
177
|
+
# A VPC network URI.
|
199
178
|
# @!attribute [rw] network_type
|
200
179
|
# @return [::Google::Cloud::NetworkManagement::V1::Endpoint::NetworkType]
|
201
180
|
# Type of the network where the endpoint is located.
|
@@ -204,9 +183,9 @@ module Google
|
|
204
183
|
# @!attribute [rw] project_id
|
205
184
|
# @return [::String]
|
206
185
|
# Project ID where the endpoint is located.
|
207
|
-
# The
|
186
|
+
# The project ID can be derived from the URI if you provide a endpoint or
|
208
187
|
# network URI.
|
209
|
-
# The following are two cases where you
|
188
|
+
# The following are two cases where you may need to provide the project ID:
|
210
189
|
# 1. Only the IP address is specified, and the IP address is within a Google
|
211
190
|
# Cloud project.
|
212
191
|
# 2. When you are using Shared VPC and the IP address that you provide is
|
@@ -260,8 +239,8 @@ module Google
|
|
260
239
|
GCP_NETWORK = 1
|
261
240
|
|
262
241
|
# A network hosted outside of Google Cloud.
|
263
|
-
# This can be an on-premises network, or a network
|
264
|
-
# provider.
|
242
|
+
# This can be an on-premises network, an internet resource or a network
|
243
|
+
# hosted by another cloud provider.
|
265
244
|
NON_GCP_NETWORK = 2
|
266
245
|
end
|
267
246
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-network_management-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-18 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: gapic-common
|
@@ -164,7 +164,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
164
164
|
- !ruby/object:Gem::Version
|
165
165
|
version: '0'
|
166
166
|
requirements: []
|
167
|
-
rubygems_version: 3.6.
|
167
|
+
rubygems_version: 3.6.5
|
168
168
|
specification_version: 4
|
169
169
|
summary: The Network Management API provides a collection of network performance monitoring
|
170
170
|
and diagnostic capabilities.
|