google-cloud-network_management-v1 0.7.0 → 0.9.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 +4 -4
- data/lib/google/cloud/network_management/v1/reachability_service/client.rb +10 -1
- data/lib/google/cloud/network_management/v1/reachability_service/operations.rb +10 -1
- data/lib/google/cloud/network_management/v1/reachability_service/rest/client.rb +128 -0
- data/lib/google/cloud/network_management/v1/reachability_service/rest/operations.rb +75 -0
- data/lib/google/cloud/network_management/v1/version.rb +1 -1
- data/lib/google/cloud/networkmanagement/v1/connectivity_test_pb.rb +11 -1
- data/lib/google/cloud/networkmanagement/v1/trace_pb.rb +9 -1
- data/proto_docs/google/api/field_behavior.rb +14 -0
- data/proto_docs/google/cloud/networkmanagement/v1/connectivity_test.rb +189 -2
- data/proto_docs/google/cloud/networkmanagement/v1/trace.rb +361 -5
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 434d0004b03febf6619606d81f6bfb8bef3ca7c97111ca88005a5dbe637fdde4
|
4
|
+
data.tar.gz: 804a4946a1c07ab2c462b343ddf47e480d0cff68481ae29c8c984824042679ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca8a4e53289ddd815f1f558ce62b201dc8c5ed2c2a1cf31a6162f20622c335ebcdfd67862310dc8a137a41cef8c9bd68a3db0c2e4a485cc2d673aa2df696e8e0
|
7
|
+
data.tar.gz: '07876bb1be94798e37d59724bb50d6407b6dc6135f6af8b5d525057a7045f912f976a7e938d1f39df1c352ebb03b6532774b040c5d60aa80a7dfdd28b6ffdb4d'
|
@@ -153,7 +153,8 @@ module Google
|
|
153
153
|
credentials: credentials,
|
154
154
|
endpoint: @config.endpoint,
|
155
155
|
channel_args: @config.channel_args,
|
156
|
-
interceptors: @config.interceptors
|
156
|
+
interceptors: @config.interceptors,
|
157
|
+
channel_pool_config: @config.channel_pool
|
157
158
|
)
|
158
159
|
end
|
159
160
|
|
@@ -912,6 +913,14 @@ module Google
|
|
912
913
|
end
|
913
914
|
end
|
914
915
|
|
916
|
+
##
|
917
|
+
# Configuration for the channel pool
|
918
|
+
# @return [::Gapic::ServiceStub::ChannelPool::Configuration]
|
919
|
+
#
|
920
|
+
def channel_pool
|
921
|
+
@channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
|
922
|
+
end
|
923
|
+
|
915
924
|
##
|
916
925
|
# Configuration RPC class for the ReachabilityService API.
|
917
926
|
#
|
@@ -93,7 +93,8 @@ module Google
|
|
93
93
|
credentials: credentials,
|
94
94
|
endpoint: @config.endpoint,
|
95
95
|
channel_args: @config.channel_args,
|
96
|
-
interceptors: @config.interceptors
|
96
|
+
interceptors: @config.interceptors,
|
97
|
+
channel_pool_config: @config.channel_pool
|
97
98
|
)
|
98
99
|
|
99
100
|
# Used by an LRO wrapper for some methods of this service
|
@@ -701,6 +702,14 @@ module Google
|
|
701
702
|
end
|
702
703
|
end
|
703
704
|
|
705
|
+
##
|
706
|
+
# Configuration for the channel pool
|
707
|
+
# @return [::Gapic::ServiceStub::ChannelPool::Configuration]
|
708
|
+
#
|
709
|
+
def channel_pool
|
710
|
+
@channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
|
711
|
+
end
|
712
|
+
|
704
713
|
##
|
705
714
|
# Configuration RPC class for the Operations API.
|
706
715
|
#
|
@@ -210,6 +210,26 @@ module Google
|
|
210
210
|
# @return [::Google::Cloud::NetworkManagement::V1::ListConnectivityTestsResponse]
|
211
211
|
#
|
212
212
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
213
|
+
#
|
214
|
+
# @example Basic example
|
215
|
+
# require "google/cloud/network_management/v1"
|
216
|
+
#
|
217
|
+
# # Create a client object. The client can be reused for multiple calls.
|
218
|
+
# client = Google::Cloud::NetworkManagement::V1::ReachabilityService::Rest::Client.new
|
219
|
+
#
|
220
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
221
|
+
# request = Google::Cloud::NetworkManagement::V1::ListConnectivityTestsRequest.new
|
222
|
+
#
|
223
|
+
# # Call the list_connectivity_tests method.
|
224
|
+
# result = client.list_connectivity_tests request
|
225
|
+
#
|
226
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
227
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
228
|
+
# result.each do |item|
|
229
|
+
# # Each element is of type ::Google::Cloud::NetworkManagement::V1::ConnectivityTest.
|
230
|
+
# p item
|
231
|
+
# end
|
232
|
+
#
|
213
233
|
def list_connectivity_tests request, options = nil
|
214
234
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
215
235
|
|
@@ -273,6 +293,22 @@ module Google
|
|
273
293
|
# @return [::Google::Cloud::NetworkManagement::V1::ConnectivityTest]
|
274
294
|
#
|
275
295
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
296
|
+
#
|
297
|
+
# @example Basic example
|
298
|
+
# require "google/cloud/network_management/v1"
|
299
|
+
#
|
300
|
+
# # Create a client object. The client can be reused for multiple calls.
|
301
|
+
# client = Google::Cloud::NetworkManagement::V1::ReachabilityService::Rest::Client.new
|
302
|
+
#
|
303
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
304
|
+
# request = Google::Cloud::NetworkManagement::V1::GetConnectivityTestRequest.new
|
305
|
+
#
|
306
|
+
# # Call the get_connectivity_test method.
|
307
|
+
# result = client.get_connectivity_test request
|
308
|
+
#
|
309
|
+
# # The returned object is of type Google::Cloud::NetworkManagement::V1::ConnectivityTest.
|
310
|
+
# p result
|
311
|
+
#
|
276
312
|
def get_connectivity_test request, options = nil
|
277
313
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
278
314
|
|
@@ -359,6 +395,29 @@ module Google
|
|
359
395
|
# @return [::Gapic::Operation]
|
360
396
|
#
|
361
397
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
398
|
+
#
|
399
|
+
# @example Basic example
|
400
|
+
# require "google/cloud/network_management/v1"
|
401
|
+
#
|
402
|
+
# # Create a client object. The client can be reused for multiple calls.
|
403
|
+
# client = Google::Cloud::NetworkManagement::V1::ReachabilityService::Rest::Client.new
|
404
|
+
#
|
405
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
406
|
+
# request = Google::Cloud::NetworkManagement::V1::CreateConnectivityTestRequest.new
|
407
|
+
#
|
408
|
+
# # Call the create_connectivity_test method.
|
409
|
+
# result = client.create_connectivity_test request
|
410
|
+
#
|
411
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
412
|
+
# # check the status of an operation, cancel it, or wait for results.
|
413
|
+
# # Here is how to wait for a response.
|
414
|
+
# result.wait_until_done! timeout: 60
|
415
|
+
# if result.response?
|
416
|
+
# p result.response
|
417
|
+
# else
|
418
|
+
# puts "No response received."
|
419
|
+
# end
|
420
|
+
#
|
362
421
|
def create_connectivity_test request, options = nil
|
363
422
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
364
423
|
|
@@ -438,6 +497,29 @@ module Google
|
|
438
497
|
# @return [::Gapic::Operation]
|
439
498
|
#
|
440
499
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
500
|
+
#
|
501
|
+
# @example Basic example
|
502
|
+
# require "google/cloud/network_management/v1"
|
503
|
+
#
|
504
|
+
# # Create a client object. The client can be reused for multiple calls.
|
505
|
+
# client = Google::Cloud::NetworkManagement::V1::ReachabilityService::Rest::Client.new
|
506
|
+
#
|
507
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
508
|
+
# request = Google::Cloud::NetworkManagement::V1::UpdateConnectivityTestRequest.new
|
509
|
+
#
|
510
|
+
# # Call the update_connectivity_test method.
|
511
|
+
# result = client.update_connectivity_test request
|
512
|
+
#
|
513
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
514
|
+
# # check the status of an operation, cancel it, or wait for results.
|
515
|
+
# # Here is how to wait for a response.
|
516
|
+
# result.wait_until_done! timeout: 60
|
517
|
+
# if result.response?
|
518
|
+
# p result.response
|
519
|
+
# else
|
520
|
+
# puts "No response received."
|
521
|
+
# end
|
522
|
+
#
|
441
523
|
def update_connectivity_test request, options = nil
|
442
524
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
443
525
|
|
@@ -513,6 +595,29 @@ module Google
|
|
513
595
|
# @return [::Gapic::Operation]
|
514
596
|
#
|
515
597
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
598
|
+
#
|
599
|
+
# @example Basic example
|
600
|
+
# require "google/cloud/network_management/v1"
|
601
|
+
#
|
602
|
+
# # Create a client object. The client can be reused for multiple calls.
|
603
|
+
# client = Google::Cloud::NetworkManagement::V1::ReachabilityService::Rest::Client.new
|
604
|
+
#
|
605
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
606
|
+
# request = Google::Cloud::NetworkManagement::V1::RerunConnectivityTestRequest.new
|
607
|
+
#
|
608
|
+
# # Call the rerun_connectivity_test method.
|
609
|
+
# result = client.rerun_connectivity_test request
|
610
|
+
#
|
611
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
612
|
+
# # check the status of an operation, cancel it, or wait for results.
|
613
|
+
# # Here is how to wait for a response.
|
614
|
+
# result.wait_until_done! timeout: 60
|
615
|
+
# if result.response?
|
616
|
+
# p result.response
|
617
|
+
# else
|
618
|
+
# puts "No response received."
|
619
|
+
# end
|
620
|
+
#
|
516
621
|
def rerun_connectivity_test request, options = nil
|
517
622
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
518
623
|
|
@@ -577,6 +682,29 @@ module Google
|
|
577
682
|
# @return [::Gapic::Operation]
|
578
683
|
#
|
579
684
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
685
|
+
#
|
686
|
+
# @example Basic example
|
687
|
+
# require "google/cloud/network_management/v1"
|
688
|
+
#
|
689
|
+
# # Create a client object. The client can be reused for multiple calls.
|
690
|
+
# client = Google::Cloud::NetworkManagement::V1::ReachabilityService::Rest::Client.new
|
691
|
+
#
|
692
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
693
|
+
# request = Google::Cloud::NetworkManagement::V1::DeleteConnectivityTestRequest.new
|
694
|
+
#
|
695
|
+
# # Call the delete_connectivity_test method.
|
696
|
+
# result = client.delete_connectivity_test request
|
697
|
+
#
|
698
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
699
|
+
# # check the status of an operation, cancel it, or wait for results.
|
700
|
+
# # Here is how to wait for a response.
|
701
|
+
# result.wait_until_done! timeout: 60
|
702
|
+
# if result.response?
|
703
|
+
# p result.response
|
704
|
+
# else
|
705
|
+
# puts "No response received."
|
706
|
+
# end
|
707
|
+
#
|
580
708
|
def delete_connectivity_test request, options = nil
|
581
709
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
582
710
|
|
@@ -136,6 +136,26 @@ module Google
|
|
136
136
|
# @return [::Gapic::Operation]
|
137
137
|
#
|
138
138
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
139
|
+
#
|
140
|
+
# @example Basic example
|
141
|
+
# require "google/longrunning"
|
142
|
+
#
|
143
|
+
# # Create a client object. The client can be reused for multiple calls.
|
144
|
+
# client = Google::Longrunning::Operations::Rest::Client.new
|
145
|
+
#
|
146
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
147
|
+
# request = Google::Longrunning::ListOperationsRequest.new
|
148
|
+
#
|
149
|
+
# # Call the list_operations method.
|
150
|
+
# result = client.list_operations request
|
151
|
+
#
|
152
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
153
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
154
|
+
# result.each do |item|
|
155
|
+
# # Each element is of type ::Google::Longrunning::Operation.
|
156
|
+
# p item
|
157
|
+
# end
|
158
|
+
#
|
139
159
|
def list_operations request, options = nil
|
140
160
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
141
161
|
|
@@ -201,6 +221,29 @@ module Google
|
|
201
221
|
# @return [::Gapic::Operation]
|
202
222
|
#
|
203
223
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
224
|
+
#
|
225
|
+
# @example Basic example
|
226
|
+
# require "google/longrunning"
|
227
|
+
#
|
228
|
+
# # Create a client object. The client can be reused for multiple calls.
|
229
|
+
# client = Google::Longrunning::Operations::Rest::Client.new
|
230
|
+
#
|
231
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
232
|
+
# request = Google::Longrunning::GetOperationRequest.new
|
233
|
+
#
|
234
|
+
# # Call the get_operation method.
|
235
|
+
# result = client.get_operation request
|
236
|
+
#
|
237
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
238
|
+
# # check the status of an operation, cancel it, or wait for results.
|
239
|
+
# # Here is how to wait for a response.
|
240
|
+
# result.wait_until_done! timeout: 60
|
241
|
+
# if result.response?
|
242
|
+
# p result.response
|
243
|
+
# else
|
244
|
+
# puts "No response received."
|
245
|
+
# end
|
246
|
+
#
|
204
247
|
def get_operation request, options = nil
|
205
248
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
206
249
|
|
@@ -267,6 +310,22 @@ module Google
|
|
267
310
|
# @return [::Google::Protobuf::Empty]
|
268
311
|
#
|
269
312
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
313
|
+
#
|
314
|
+
# @example Basic example
|
315
|
+
# require "google/longrunning"
|
316
|
+
#
|
317
|
+
# # Create a client object. The client can be reused for multiple calls.
|
318
|
+
# client = Google::Longrunning::Operations::Rest::Client.new
|
319
|
+
#
|
320
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
321
|
+
# request = Google::Longrunning::DeleteOperationRequest.new
|
322
|
+
#
|
323
|
+
# # Call the delete_operation method.
|
324
|
+
# result = client.delete_operation request
|
325
|
+
#
|
326
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
327
|
+
# p result
|
328
|
+
#
|
270
329
|
def delete_operation request, options = nil
|
271
330
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
272
331
|
|
@@ -338,6 +397,22 @@ module Google
|
|
338
397
|
# @return [::Google::Protobuf::Empty]
|
339
398
|
#
|
340
399
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
400
|
+
#
|
401
|
+
# @example Basic example
|
402
|
+
# require "google/longrunning"
|
403
|
+
#
|
404
|
+
# # Create a client object. The client can be reused for multiple calls.
|
405
|
+
# client = Google::Longrunning::Operations::Rest::Client.new
|
406
|
+
#
|
407
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
408
|
+
# request = Google::Longrunning::CancelOperationRequest.new
|
409
|
+
#
|
410
|
+
# # Call the cancel_operation method.
|
411
|
+
# result = client.cancel_operation request
|
412
|
+
#
|
413
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
414
|
+
# p result
|
415
|
+
#
|
341
416
|
def cancel_operation request, options = nil
|
342
417
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
343
418
|
|
@@ -11,7 +11,7 @@ require 'google/protobuf/timestamp_pb'
|
|
11
11
|
require 'google/rpc/status_pb'
|
12
12
|
|
13
13
|
|
14
|
-
descriptor_data = "\n9google/cloud/networkmanagement/v1/connectivity_test.proto\x12!google.cloud.networkmanagement.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a-google/cloud/networkmanagement/v1/trace.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x17google/rpc/status.proto\"\
|
14
|
+
descriptor_data = "\n9google/cloud/networkmanagement/v1/connectivity_test.proto\x12!google.cloud.networkmanagement.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a-google/cloud/networkmanagement/v1/trace.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x17google/rpc/status.proto\"\x98\x06\n\x10\x43onnectivityTest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12@\n\x06source\x18\x03 \x01(\x0b\x32+.google.cloud.networkmanagement.v1.EndpointB\x03\xe0\x41\x02\x12\x45\n\x0b\x64\x65stination\x18\x04 \x01(\x0b\x32+.google.cloud.networkmanagement.v1.EndpointB\x03\xe0\x41\x02\x12\x10\n\x08protocol\x18\x05 \x01(\t\x12\x18\n\x10related_projects\x18\x06 \x03(\t\x12\x19\n\x0c\x64isplay_name\x18\x07 \x01(\tB\x03\xe0\x41\x03\x12O\n\x06labels\x18\x08 \x03(\x0b\x32?.google.cloud.networkmanagement.v1.ConnectivityTest.LabelsEntry\x12\x34\n\x0b\x63reate_time\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12Y\n\x14reachability_details\x18\x0c \x01(\x0b\x32\x36.google.cloud.networkmanagement.v1.ReachabilityDetailsB\x03\xe0\x41\x03\x12O\n\x0fprobing_details\x18\x0e \x01(\x0b\x32\x31.google.cloud.networkmanagement.v1.ProbingDetailsB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:t\xea\x41q\n1networkmanagement.googleapis.com/ConnectivityTest\x12<projects/{project}/locations/global/connectivityTests/{test}\"\x9a\t\n\x08\x45ndpoint\x12\x12\n\nip_address\x18\x01 \x01(\t\x12\x0c\n\x04port\x18\x02 \x01(\x05\x12\x10\n\x08instance\x18\x03 \x01(\t\x12\x17\n\x0f\x66orwarding_rule\x18\r \x01(\t\x12j\n\x16\x66orwarding_rule_target\x18\x0e \x01(\x0e\x32@.google.cloud.networkmanagement.v1.Endpoint.ForwardingRuleTargetB\x03\xe0\x41\x03H\x00\x88\x01\x01\x12\"\n\x10load_balancer_id\x18\x0f \x01(\tB\x03\xe0\x41\x03H\x01\x88\x01\x01\x12Y\n\x12load_balancer_type\x18\x10 \x01(\x0e\x32\x33.google.cloud.networkmanagement.v1.LoadBalancerTypeB\x03\xe0\x41\x03H\x02\x88\x01\x01\x12\x1a\n\x12gke_master_cluster\x18\x07 \x01(\t\x12\x1a\n\x12\x63loud_sql_instance\x18\x08 \x01(\t\x12Y\n\x0e\x63loud_function\x18\n \x01(\x0b\x32\x41.google.cloud.networkmanagement.v1.Endpoint.CloudFunctionEndpoint\x12`\n\x12\x61pp_engine_version\x18\x0b \x01(\x0b\x32\x44.google.cloud.networkmanagement.v1.Endpoint.AppEngineVersionEndpoint\x12`\n\x12\x63loud_run_revision\x18\x0c \x01(\x0b\x32\x44.google.cloud.networkmanagement.v1.Endpoint.CloudRunRevisionEndpoint\x12\x0f\n\x07network\x18\x04 \x01(\t\x12M\n\x0cnetwork_type\x18\x05 \x01(\x0e\x32\x37.google.cloud.networkmanagement.v1.Endpoint.NetworkType\x12\x12\n\nproject_id\x18\x06 \x01(\t\x1a$\n\x15\x43loudFunctionEndpoint\x12\x0b\n\x03uri\x18\x01 \x01(\t\x1a\'\n\x18\x41ppEngineVersionEndpoint\x12\x0b\n\x03uri\x18\x01 \x01(\t\x1a\'\n\x18\x43loudRunRevisionEndpoint\x12\x0b\n\x03uri\x18\x01 \x01(\t\"Q\n\x0bNetworkType\x12\x1c\n\x18NETWORK_TYPE_UNSPECIFIED\x10\x00\x12\x0f\n\x0bGCP_NETWORK\x10\x01\x12\x13\n\x0fNON_GCP_NETWORK\x10\x02\"y\n\x14\x46orwardingRuleTarget\x12&\n\"FORWARDING_RULE_TARGET_UNSPECIFIED\x10\x00\x12\x0c\n\x08INSTANCE\x10\x01\x12\x11\n\rLOAD_BALANCER\x10\x02\x12\x0f\n\x0bVPN_GATEWAY\x10\x03\x12\x07\n\x03PSC\x10\x04\x42\x19\n\x17_forwarding_rule_targetB\x13\n\x11_load_balancer_idB\x15\n\x13_load_balancer_type\"\xd5\x02\n\x13ReachabilityDetails\x12M\n\x06result\x18\x01 \x01(\x0e\x32=.google.cloud.networkmanagement.v1.ReachabilityDetails.Result\x12/\n\x0bverify_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12!\n\x05\x65rror\x18\x03 \x01(\x0b\x32\x12.google.rpc.Status\x12\x38\n\x06traces\x18\x05 \x03(\x0b\x32(.google.cloud.networkmanagement.v1.Trace\"a\n\x06Result\x12\x16\n\x12RESULT_UNSPECIFIED\x10\x00\x12\r\n\tREACHABLE\x10\x01\x12\x0f\n\x0bUNREACHABLE\x10\x02\x12\r\n\tAMBIGUOUS\x10\x04\x12\x10\n\x0cUNDETERMINED\x10\x05\"<\n\x11LatencyPercentile\x12\x0f\n\x07percent\x18\x01 \x01(\x05\x12\x16\n\x0elatency_micros\x18\x02 \x01(\x03\"h\n\x13LatencyDistribution\x12Q\n\x13latency_percentiles\x18\x01 \x03(\x0b\x32\x34.google.cloud.networkmanagement.v1.LatencyPercentile\"\xde\x06\n\x0eProbingDetails\x12O\n\x06result\x18\x01 \x01(\x0e\x32?.google.cloud.networkmanagement.v1.ProbingDetails.ProbingResult\x12/\n\x0bverify_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12!\n\x05\x65rror\x18\x03 \x01(\x0b\x32\x12.google.rpc.Status\x12X\n\x0b\x61\x62ort_cause\x18\x04 \x01(\x0e\x32\x43.google.cloud.networkmanagement.v1.ProbingDetails.ProbingAbortCause\x12\x18\n\x10sent_probe_count\x18\x05 \x01(\x05\x12\x1e\n\x16successful_probe_count\x18\x06 \x01(\x05\x12\x46\n\rendpoint_info\x18\x07 \x01(\x0b\x32/.google.cloud.networkmanagement.v1.EndpointInfo\x12O\n\x0fprobing_latency\x18\x08 \x01(\x0b\x32\x36.google.cloud.networkmanagement.v1.LatencyDistribution\x12\x63\n\x1b\x64\x65stination_egress_location\x18\t \x01(\x0b\x32>.google.cloud.networkmanagement.v1.ProbingDetails.EdgeLocation\x1a)\n\x0c\x45\x64geLocation\x12\x19\n\x11metropolitan_area\x18\x01 \x01(\t\"\x80\x01\n\rProbingResult\x12\x1e\n\x1aPROBING_RESULT_UNSPECIFIED\x10\x00\x12\r\n\tREACHABLE\x10\x01\x12\x0f\n\x0bUNREACHABLE\x10\x02\x12\x1d\n\x19REACHABILITY_INCONSISTENT\x10\x03\x12\x10\n\x0cUNDETERMINED\x10\x04\"g\n\x11ProbingAbortCause\x12#\n\x1fPROBING_ABORT_CAUSE_UNSPECIFIED\x10\x00\x12\x15\n\x11PERMISSION_DENIED\x10\x01\x12\x16\n\x12NO_SOURCE_LOCATION\x10\x02\x42\xfd\x01\n%com.google.cloud.networkmanagement.v1B\x0eTestOuterClassP\x01ZScloud.google.com/go/networkmanagement/apiv1/networkmanagementpb;networkmanagementpb\xaa\x02!Google.Cloud.NetworkManagement.V1\xca\x02!Google\\Cloud\\NetworkManagement\\V1\xea\x02$Google::Cloud::NetworkManagement::V1b\x06proto3"
|
15
15
|
|
16
16
|
pool = Google::Protobuf::DescriptorPool.generated_pool
|
17
17
|
|
@@ -46,9 +46,19 @@ module Google
|
|
46
46
|
module V1
|
47
47
|
ConnectivityTest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.ConnectivityTest").msgclass
|
48
48
|
Endpoint = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.Endpoint").msgclass
|
49
|
+
Endpoint::CloudFunctionEndpoint = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.Endpoint.CloudFunctionEndpoint").msgclass
|
50
|
+
Endpoint::AppEngineVersionEndpoint = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.Endpoint.AppEngineVersionEndpoint").msgclass
|
51
|
+
Endpoint::CloudRunRevisionEndpoint = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.Endpoint.CloudRunRevisionEndpoint").msgclass
|
49
52
|
Endpoint::NetworkType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.Endpoint.NetworkType").enummodule
|
53
|
+
Endpoint::ForwardingRuleTarget = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.Endpoint.ForwardingRuleTarget").enummodule
|
50
54
|
ReachabilityDetails = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.ReachabilityDetails").msgclass
|
51
55
|
ReachabilityDetails::Result = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.ReachabilityDetails.Result").enummodule
|
56
|
+
LatencyPercentile = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.LatencyPercentile").msgclass
|
57
|
+
LatencyDistribution = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.LatencyDistribution").msgclass
|
58
|
+
ProbingDetails = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.ProbingDetails").msgclass
|
59
|
+
ProbingDetails::EdgeLocation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.ProbingDetails.EdgeLocation").msgclass
|
60
|
+
ProbingDetails::ProbingResult = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.ProbingDetails.ProbingResult").enummodule
|
61
|
+
ProbingDetails::ProbingAbortCause = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.ProbingDetails.ProbingAbortCause").enummodule
|
52
62
|
end
|
53
63
|
end
|
54
64
|
end
|
@@ -5,7 +5,7 @@
|
|
5
5
|
require 'google/protobuf'
|
6
6
|
|
7
7
|
|
8
|
-
descriptor_data = "\n-google/cloud/networkmanagement/v1/trace.proto\x12!google.cloud.networkmanagement.v1\"\x87\x01\n\x05Trace\x12\x46\n\rendpoint_info\x18\x01 \x01(\x0b\x32/.google.cloud.networkmanagement.v1.EndpointInfo\x12\x36\n\x05steps\x18\x02 \x03(\x0b\x32\'.google.cloud.networkmanagement.v1.Step\"\xee\r\n\x04Step\x12\x13\n\x0b\x64\x65scription\x18\x01 \x01(\t\x12<\n\x05state\x18\x02 \x01(\x0e\x32-.google.cloud.networkmanagement.v1.Step.State\x12\x13\n\x0b\x63\x61uses_drop\x18\x03 \x01(\x08\x12\x12\n\nproject_id\x18\x04 \x01(\t\x12\x43\n\x08instance\x18\x05 \x01(\x0b\x32/.google.cloud.networkmanagement.v1.InstanceInfoH\x00\x12\x43\n\x08\x66irewall\x18\x06 \x01(\x0b\x32/.google.cloud.networkmanagement.v1.FirewallInfoH\x00\x12=\n\x05route\x18\x07 \x01(\x0b\x32,.google.cloud.networkmanagement.v1.RouteInfoH\x00\x12\x43\n\x08\x65ndpoint\x18\x08 \x01(\x0b\x32/.google.cloud.networkmanagement.v1.EndpointInfoH\x00\x12P\n\x0f\x66orwarding_rule\x18\t \x01(\x0b\x32\x35.google.cloud.networkmanagement.v1.ForwardingRuleInfoH\x00\x12H\n\x0bvpn_gateway\x18\n \x01(\x0b\x32\x31.google.cloud.networkmanagement.v1.VpnGatewayInfoH\x00\x12\x46\n\nvpn_tunnel\x18\x0b \x01(\x0b\x32\x30.google.cloud.networkmanagement.v1.VpnTunnelInfoH\x00\x12\x41\n\x07\x64\x65liver\x18\x0c \x01(\x0b\x32..google.cloud.networkmanagement.v1.DeliverInfoH\x00\x12\x41\n\x07\x66orward\x18\r \x01(\x0b\x32..google.cloud.networkmanagement.v1.ForwardInfoH\x00\x12=\n\x05\x61\x62ort\x18\x0e \x01(\x0b\x32,.google.cloud.networkmanagement.v1.AbortInfoH\x00\x12;\n\x04\x64rop\x18\x0f \x01(\x0b\x32+.google.cloud.networkmanagement.v1.DropInfoH\x00\x12L\n\rload_balancer\x18\x10 \x01(\x0b\x32\x33.google.cloud.networkmanagement.v1.LoadBalancerInfoH\x00\x12\x41\n\x07network\x18\x11 \x01(\x0b\x32..google.cloud.networkmanagement.v1.NetworkInfoH\x00\x12\x46\n\ngke_master\x18\x12 \x01(\x0b\x32\x30.google.cloud.networkmanagement.v1.GKEMasterInfoH\x00\x12U\n\x12\x63loud_sql_instance\x18\x13 \x01(\x0b\x32\x37.google.cloud.networkmanagement.v1.CloudSQLInstanceInfoH\x00\"\xb8\x04\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x17\n\x13START_FROM_INSTANCE\x10\x01\x12\x17\n\x13START_FROM_INTERNET\x10\x02\x12\x1e\n\x1aSTART_FROM_PRIVATE_NETWORK\x10\x03\x12\x19\n\x15START_FROM_GKE_MASTER\x10\x15\x12!\n\x1dSTART_FROM_CLOUD_SQL_INSTANCE\x10\x16\x12\x1f\n\x1b\x41PPLY_INGRESS_FIREWALL_RULE\x10\x04\x12\x1e\n\x1a\x41PPLY_EGRESS_FIREWALL_RULE\x10\x05\x12\x0f\n\x0b\x41PPLY_ROUTE\x10\x06\x12\x19\n\x15\x41PPLY_FORWARDING_RULE\x10\x07\x12\x15\n\x11SPOOFING_APPROVED\x10\x08\x12\x16\n\x12\x41RRIVE_AT_INSTANCE\x10\t\x12$\n ARRIVE_AT_INTERNAL_LOAD_BALANCER\x10\n\x12$\n ARRIVE_AT_EXTERNAL_LOAD_BALANCER\x10\x0b\x12\x19\n\x15\x41RRIVE_AT_VPN_GATEWAY\x10\x0c\x12\x18\n\x14\x41RRIVE_AT_VPN_TUNNEL\x10\r\x12\x07\n\x03NAT\x10\x0e\x12\x14\n\x10PROXY_CONNECTION\x10\x0f\x12\x0b\n\x07\x44\x45LIVER\x10\x10\x12\x08\n\x04\x44ROP\x10\x11\x12\x0b\n\x07\x46ORWARD\x10\x12\x12\t\n\x05\x41\x42ORT\x10\x13\x12\x1d\n\x19VIEWER_PERMISSION_MISSING\x10\x14\x42\x0b\n\tstep_info\"\xb6\x01\n\x0cInstanceInfo\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x11\n\tinterface\x18\x03 \x01(\t\x12\x13\n\x0bnetwork_uri\x18\x04 \x01(\t\x12\x13\n\x0binternal_ip\x18\x05 \x01(\t\x12\x13\n\x0b\x65xternal_ip\x18\x06 \x01(\t\x12\x14\n\x0cnetwork_tags\x18\x07 \x03(\t\x12\x1b\n\x0fservice_account\x18\x08 \x01(\tB\x02\x18\x01\"J\n\x0bNetworkInfo\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x18\n\x10matched_ip_range\x18\x04 \x01(\t\"\xb5\x03\n\x0c\x46irewallInfo\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x11\n\tdirection\x18\x03 \x01(\t\x12\x0e\n\x06\x61\x63tion\x18\x04 \x01(\t\x12\x10\n\x08priority\x18\x05 \x01(\x05\x12\x13\n\x0bnetwork_uri\x18\x06 \x01(\t\x12\x13\n\x0btarget_tags\x18\x07 \x03(\t\x12\x1f\n\x17target_service_accounts\x18\x08 \x03(\t\x12\x0e\n\x06policy\x18\t \x01(\t\x12\\\n\x12\x66irewall_rule_type\x18\n \x01(\x0e\x32@.google.cloud.networkmanagement.v1.FirewallInfo.FirewallRuleType\"\x93\x01\n\x10\x46irewallRuleType\x12\"\n\x1e\x46IREWALL_RULE_TYPE_UNSPECIFIED\x10\x00\x12%\n!HIERARCHICAL_FIREWALL_POLICY_RULE\x10\x01\x12\x15\n\x11VPC_FIREWALL_RULE\x10\x02\x12\x1d\n\x19IMPLIED_VPC_FIREWALL_RULE\x10\x03\"\xf7\x05\n\tRouteInfo\x12J\n\nroute_type\x18\x08 \x01(\x0e\x32\x36.google.cloud.networkmanagement.v1.RouteInfo.RouteType\x12O\n\rnext_hop_type\x18\t \x01(\x0e\x32\x38.google.cloud.networkmanagement.v1.RouteInfo.NextHopType\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x15\n\rdest_ip_range\x18\x03 \x01(\t\x12\x10\n\x08next_hop\x18\x04 \x01(\t\x12\x13\n\x0bnetwork_uri\x18\x05 \x01(\t\x12\x10\n\x08priority\x18\x06 \x01(\x05\x12\x15\n\rinstance_tags\x18\x07 \x03(\t\"\x89\x01\n\tRouteType\x12\x1a\n\x16ROUTE_TYPE_UNSPECIFIED\x10\x00\x12\n\n\x06SUBNET\x10\x01\x12\n\n\x06STATIC\x10\x02\x12\x0b\n\x07\x44YNAMIC\x10\x03\x12\x12\n\x0ePEERING_SUBNET\x10\x04\x12\x12\n\x0ePEERING_STATIC\x10\x05\x12\x13\n\x0fPEERING_DYNAMIC\x10\x06\"\xb6\x02\n\x0bNextHopType\x12\x1d\n\x19NEXT_HOP_TYPE_UNSPECIFIED\x10\x00\x12\x0f\n\x0bNEXT_HOP_IP\x10\x01\x12\x15\n\x11NEXT_HOP_INSTANCE\x10\x02\x12\x14\n\x10NEXT_HOP_NETWORK\x10\x03\x12\x14\n\x10NEXT_HOP_PEERING\x10\x04\x12\x19\n\x15NEXT_HOP_INTERCONNECT\x10\x05\x12\x17\n\x13NEXT_HOP_VPN_TUNNEL\x10\x06\x12\x18\n\x14NEXT_HOP_VPN_GATEWAY\x10\x07\x12\x1d\n\x19NEXT_HOP_INTERNET_GATEWAY\x10\x08\x12\x16\n\x12NEXT_HOP_BLACKHOLE\x10\t\x12\x10\n\x0cNEXT_HOP_ILB\x10\n\x12\x1d\n\x19NEXT_HOP_ROUTER_APPLIANCE\x10\x0b\"\x9f\x01\n\x12\x46orwardingRuleInfo\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x18\n\x10matched_protocol\x18\x03 \x01(\t\x12\x1a\n\x12matched_port_range\x18\x06 \x01(\t\x12\x0b\n\x03vip\x18\x04 \x01(\t\x12\x0e\n\x06target\x18\x05 \x01(\t\x12\x13\n\x0bnetwork_uri\x18\x07 \x01(\t\"\xa9\x04\n\x10LoadBalancerInfo\x12`\n\x12load_balancer_type\x18\x01 \x01(\x0e\x32\x44.google.cloud.networkmanagement.v1.LoadBalancerInfo.LoadBalancerType\x12\x18\n\x10health_check_uri\x18\x02 \x01(\t\x12H\n\x08\x62\x61\x63kends\x18\x03 \x03(\x0b\x32\x36.google.cloud.networkmanagement.v1.LoadBalancerBackend\x12U\n\x0c\x62\x61\x63kend_type\x18\x04 \x01(\x0e\x32?.google.cloud.networkmanagement.v1.LoadBalancerInfo.BackendType\x12\x13\n\x0b\x62\x61\x63kend_uri\x18\x05 \x01(\t\"\x8f\x01\n\x10LoadBalancerType\x12\"\n\x1eLOAD_BALANCER_TYPE_UNSPECIFIED\x10\x00\x12\x14\n\x10INTERNAL_TCP_UDP\x10\x01\x12\x13\n\x0fNETWORK_TCP_UDP\x10\x02\x12\x0e\n\nHTTP_PROXY\x10\x03\x12\r\n\tTCP_PROXY\x10\x04\x12\r\n\tSSL_PROXY\x10\x05\"Q\n\x0b\x42\x61\x63kendType\x12\x1c\n\x18\x42\x41\x43KEND_TYPE_UNSPECIFIED\x10\x00\x12\x13\n\x0f\x42\x41\x43KEND_SERVICE\x10\x01\x12\x0f\n\x0bTARGET_POOL\x10\x02\"\xf6\x02\n\x13LoadBalancerBackend\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12t\n\x1bhealth_check_firewall_state\x18\x03 \x01(\x0e\x32O.google.cloud.networkmanagement.v1.LoadBalancerBackend.HealthCheckFirewallState\x12,\n$health_check_allowing_firewall_rules\x18\x04 \x03(\t\x12,\n$health_check_blocking_firewall_rules\x18\x05 \x03(\t\"j\n\x18HealthCheckFirewallState\x12+\n\'HEALTH_CHECK_FIREWALL_STATE_UNSPECIFIED\x10\x00\x12\x0e\n\nCONFIGURED\x10\x01\x12\x11\n\rMISCONFIGURED\x10\x02\"\x84\x01\n\x0eVpnGatewayInfo\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x13\n\x0bnetwork_uri\x18\x03 \x01(\t\x12\x12\n\nip_address\x18\x04 \x01(\t\x12\x16\n\x0evpn_tunnel_uri\x18\x05 \x01(\t\x12\x0e\n\x06region\x18\x06 \x01(\t\"\xee\x02\n\rVpnTunnelInfo\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x16\n\x0esource_gateway\x18\x03 \x01(\t\x12\x16\n\x0eremote_gateway\x18\x04 \x01(\t\x12\x19\n\x11remote_gateway_ip\x18\x05 \x01(\t\x12\x19\n\x11source_gateway_ip\x18\x06 \x01(\t\x12\x13\n\x0bnetwork_uri\x18\x07 \x01(\t\x12\x0e\n\x06region\x18\x08 \x01(\t\x12R\n\x0crouting_type\x18\t \x01(\x0e\x32<.google.cloud.networkmanagement.v1.VpnTunnelInfo.RoutingType\"[\n\x0bRoutingType\x12\x1c\n\x18ROUTING_TYPE_UNSPECIFIED\x10\x00\x12\x0f\n\x0bROUTE_BASED\x10\x01\x12\x10\n\x0cPOLICY_BASED\x10\x02\x12\x0b\n\x07\x44YNAMIC\x10\x03\"\xb7\x01\n\x0c\x45ndpointInfo\x12\x11\n\tsource_ip\x18\x01 \x01(\t\x12\x16\n\x0e\x64\x65stination_ip\x18\x02 \x01(\t\x12\x10\n\x08protocol\x18\x03 \x01(\t\x12\x13\n\x0bsource_port\x18\x04 \x01(\x05\x12\x18\n\x10\x64\x65stination_port\x18\x05 \x01(\x05\x12\x1a\n\x12source_network_uri\x18\x06 \x01(\t\x12\x1f\n\x17\x64\x65stination_network_uri\x18\x07 \x01(\t\"\xe0\x01\n\x0b\x44\x65liverInfo\x12\x45\n\x06target\x18\x01 \x01(\x0e\x32\x35.google.cloud.networkmanagement.v1.DeliverInfo.Target\x12\x14\n\x0cresource_uri\x18\x02 \x01(\t\"t\n\x06Target\x12\x16\n\x12TARGET_UNSPECIFIED\x10\x00\x12\x0c\n\x08INSTANCE\x10\x01\x12\x0c\n\x08INTERNET\x10\x02\x12\x0e\n\nGOOGLE_API\x10\x03\x12\x0e\n\nGKE_MASTER\x10\x04\x12\x16\n\x12\x43LOUD_SQL_INSTANCE\x10\x05\"\x8d\x02\n\x0b\x46orwardInfo\x12\x45\n\x06target\x18\x01 \x01(\x0e\x32\x35.google.cloud.networkmanagement.v1.ForwardInfo.Target\x12\x14\n\x0cresource_uri\x18\x02 \x01(\t\"\xa0\x01\n\x06Target\x12\x16\n\x12TARGET_UNSPECIFIED\x10\x00\x12\x0f\n\x0bPEERING_VPC\x10\x01\x12\x0f\n\x0bVPN_GATEWAY\x10\x02\x12\x10\n\x0cINTERCONNECT\x10\x03\x12\x0e\n\nGKE_MASTER\x10\x04\x12\"\n\x1eIMPORTED_CUSTOM_ROUTE_NEXT_HOP\x10\x05\x12\x16\n\x12\x43LOUD_SQL_INSTANCE\x10\x06\"\x98\x04\n\tAbortInfo\x12\x41\n\x05\x63\x61use\x18\x01 \x01(\x0e\x32\x32.google.cloud.networkmanagement.v1.AbortInfo.Cause\x12\x14\n\x0cresource_uri\x18\x02 \x01(\t\x12#\n\x1bprojects_missing_permission\x18\x03 \x03(\t\"\x8c\x03\n\x05\x43\x61use\x12\x15\n\x11\x43\x41USE_UNSPECIFIED\x10\x00\x12\x13\n\x0fUNKNOWN_NETWORK\x10\x01\x12\x0e\n\nUNKNOWN_IP\x10\x02\x12\x13\n\x0fUNKNOWN_PROJECT\x10\x03\x12\x15\n\x11PERMISSION_DENIED\x10\x04\x12\x16\n\x12NO_SOURCE_LOCATION\x10\x05\x12\x14\n\x10INVALID_ARGUMENT\x10\x06\x12\x12\n\x0eNO_EXTERNAL_IP\x10\x07\x12\x1a\n\x16UNINTENDED_DESTINATION\x10\x08\x12\x12\n\x0eTRACE_TOO_LONG\x10\t\x12\x12\n\x0eINTERNAL_ERROR\x10\n\x12\x1d\n\x19SOURCE_ENDPOINT_NOT_FOUND\x10\x0b\x12\x1d\n\x19MISMATCHED_SOURCE_NETWORK\x10\x0c\x12\"\n\x1e\x44\x45STINATION_ENDPOINT_NOT_FOUND\x10\r\x12\"\n\x1eMISMATCHED_DESTINATION_NETWORK\x10\x0e\x12\x0f\n\x0bUNSUPPORTED\x10\x0f\"\x9a\x06\n\x08\x44ropInfo\x12@\n\x05\x63\x61use\x18\x01 \x01(\x0e\x32\x31.google.cloud.networkmanagement.v1.DropInfo.Cause\x12\x14\n\x0cresource_uri\x18\x02 \x01(\t\"\xb5\x05\n\x05\x43\x61use\x12\x15\n\x11\x43\x41USE_UNSPECIFIED\x10\x00\x12\x1c\n\x18UNKNOWN_EXTERNAL_ADDRESS\x10\x01\x12\x19\n\x15\x46OREIGN_IP_DISALLOWED\x10\x02\x12\x11\n\rFIREWALL_RULE\x10\x03\x12\x0c\n\x08NO_ROUTE\x10\x04\x12\x13\n\x0fROUTE_BLACKHOLE\x10\x05\x12\x17\n\x13ROUTE_WRONG_NETWORK\x10\x06\x12\x1f\n\x1bPRIVATE_TRAFFIC_TO_INTERNET\x10\x07\x12$\n PRIVATE_GOOGLE_ACCESS_DISALLOWED\x10\x08\x12\x17\n\x13NO_EXTERNAL_ADDRESS\x10\t\x12\x1c\n\x18UNKNOWN_INTERNAL_ADDRESS\x10\n\x12\x1c\n\x18\x46ORWARDING_RULE_MISMATCH\x10\x0b\x12 \n\x1c\x46ORWARDING_RULE_NO_INSTANCES\x10\x0c\x12\x38\n4FIREWALL_BLOCKING_LOAD_BALANCER_BACKEND_HEALTH_CHECK\x10\r\x12\x18\n\x14INSTANCE_NOT_RUNNING\x10\x0e\x12\x18\n\x14TRAFFIC_TYPE_BLOCKED\x10\x0f\x12\"\n\x1eGKE_MASTER_UNAUTHORIZED_ACCESS\x10\x10\x12*\n&CLOUD_SQL_INSTANCE_UNAUTHORIZED_ACCESS\x10\x11\x12\x1e\n\x1a\x44ROPPED_INSIDE_GKE_SERVICE\x10\x12\x12$\n DROPPED_INSIDE_CLOUD_SQL_SERVICE\x10\x13\x12%\n!GOOGLE_MANAGED_SERVICE_NO_PEERING\x10\x14\x12$\n CLOUD_SQL_INSTANCE_NO_IP_ADDRESS\x10\x15\"k\n\rGKEMasterInfo\x12\x13\n\x0b\x63luster_uri\x18\x02 \x01(\t\x12\x1b\n\x13\x63luster_network_uri\x18\x04 \x01(\t\x12\x13\n\x0binternal_ip\x18\x05 \x01(\t\x12\x13\n\x0b\x65xternal_ip\x18\x06 \x01(\t\"\x88\x01\n\x14\x43loudSQLInstanceInfo\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x13\n\x0bnetwork_uri\x18\x04 \x01(\t\x12\x13\n\x0binternal_ip\x18\x05 \x01(\t\x12\x13\n\x0b\x65xternal_ip\x18\x06 \x01(\t\x12\x0e\n\x06region\x18\x07 \x01(\tB\xf9\x01\n%com.google.cloud.networkmanagement.v1B\nTraceProtoP\x01ZScloud.google.com/go/networkmanagement/apiv1/networkmanagementpb;networkmanagementpb\xaa\x02!Google.Cloud.NetworkManagement.V1\xca\x02!Google\\Cloud\\NetworkManagement\\V1\xea\x02$Google::Cloud::NetworkManagement::V1b\x06proto3"
|
8
|
+
descriptor_data = "\n-google/cloud/networkmanagement/v1/trace.proto\x12!google.cloud.networkmanagement.v1\"\x87\x01\n\x05Trace\x12\x46\n\rendpoint_info\x18\x01 \x01(\x0b\x32/.google.cloud.networkmanagement.v1.EndpointInfo\x12\x36\n\x05steps\x18\x02 \x03(\x0b\x32\'.google.cloud.networkmanagement.v1.Step\"\xab\x12\n\x04Step\x12\x13\n\x0b\x64\x65scription\x18\x01 \x01(\t\x12<\n\x05state\x18\x02 \x01(\x0e\x32-.google.cloud.networkmanagement.v1.Step.State\x12\x13\n\x0b\x63\x61uses_drop\x18\x03 \x01(\x08\x12\x12\n\nproject_id\x18\x04 \x01(\t\x12\x43\n\x08instance\x18\x05 \x01(\x0b\x32/.google.cloud.networkmanagement.v1.InstanceInfoH\x00\x12\x43\n\x08\x66irewall\x18\x06 \x01(\x0b\x32/.google.cloud.networkmanagement.v1.FirewallInfoH\x00\x12=\n\x05route\x18\x07 \x01(\x0b\x32,.google.cloud.networkmanagement.v1.RouteInfoH\x00\x12\x43\n\x08\x65ndpoint\x18\x08 \x01(\x0b\x32/.google.cloud.networkmanagement.v1.EndpointInfoH\x00\x12N\n\x0egoogle_service\x18\x18 \x01(\x0b\x32\x34.google.cloud.networkmanagement.v1.GoogleServiceInfoH\x00\x12P\n\x0f\x66orwarding_rule\x18\t \x01(\x0b\x32\x35.google.cloud.networkmanagement.v1.ForwardingRuleInfoH\x00\x12H\n\x0bvpn_gateway\x18\n \x01(\x0b\x32\x31.google.cloud.networkmanagement.v1.VpnGatewayInfoH\x00\x12\x46\n\nvpn_tunnel\x18\x0b \x01(\x0b\x32\x30.google.cloud.networkmanagement.v1.VpnTunnelInfoH\x00\x12L\n\rvpc_connector\x18\x15 \x01(\x0b\x32\x33.google.cloud.networkmanagement.v1.VpcConnectorInfoH\x00\x12\x41\n\x07\x64\x65liver\x18\x0c \x01(\x0b\x32..google.cloud.networkmanagement.v1.DeliverInfoH\x00\x12\x41\n\x07\x66orward\x18\r \x01(\x0b\x32..google.cloud.networkmanagement.v1.ForwardInfoH\x00\x12=\n\x05\x61\x62ort\x18\x0e \x01(\x0b\x32,.google.cloud.networkmanagement.v1.AbortInfoH\x00\x12;\n\x04\x64rop\x18\x0f \x01(\x0b\x32+.google.cloud.networkmanagement.v1.DropInfoH\x00\x12L\n\rload_balancer\x18\x10 \x01(\x0b\x32\x33.google.cloud.networkmanagement.v1.LoadBalancerInfoH\x00\x12\x41\n\x07network\x18\x11 \x01(\x0b\x32..google.cloud.networkmanagement.v1.NetworkInfoH\x00\x12\x46\n\ngke_master\x18\x12 \x01(\x0b\x32\x30.google.cloud.networkmanagement.v1.GKEMasterInfoH\x00\x12U\n\x12\x63loud_sql_instance\x18\x13 \x01(\x0b\x32\x37.google.cloud.networkmanagement.v1.CloudSQLInstanceInfoH\x00\x12N\n\x0e\x63loud_function\x18\x14 \x01(\x0b\x32\x34.google.cloud.networkmanagement.v1.CloudFunctionInfoH\x00\x12U\n\x12\x61pp_engine_version\x18\x16 \x01(\x0b\x32\x37.google.cloud.networkmanagement.v1.AppEngineVersionInfoH\x00\x12U\n\x12\x63loud_run_revision\x18\x17 \x01(\x0b\x32\x37.google.cloud.networkmanagement.v1.CloudRunRevisionInfoH\x00\"\xd9\x05\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x17\n\x13START_FROM_INSTANCE\x10\x01\x12\x17\n\x13START_FROM_INTERNET\x10\x02\x12\x1d\n\x19START_FROM_GOOGLE_SERVICE\x10\x1b\x12\x1e\n\x1aSTART_FROM_PRIVATE_NETWORK\x10\x03\x12\x19\n\x15START_FROM_GKE_MASTER\x10\x15\x12!\n\x1dSTART_FROM_CLOUD_SQL_INSTANCE\x10\x16\x12\x1d\n\x19START_FROM_CLOUD_FUNCTION\x10\x17\x12!\n\x1dSTART_FROM_APP_ENGINE_VERSION\x10\x19\x12!\n\x1dSTART_FROM_CLOUD_RUN_REVISION\x10\x1a\x12\x1f\n\x1b\x41PPLY_INGRESS_FIREWALL_RULE\x10\x04\x12\x1e\n\x1a\x41PPLY_EGRESS_FIREWALL_RULE\x10\x05\x12\x0f\n\x0b\x41PPLY_ROUTE\x10\x06\x12\x19\n\x15\x41PPLY_FORWARDING_RULE\x10\x07\x12\x15\n\x11SPOOFING_APPROVED\x10\x08\x12\x16\n\x12\x41RRIVE_AT_INSTANCE\x10\t\x12$\n ARRIVE_AT_INTERNAL_LOAD_BALANCER\x10\n\x12$\n ARRIVE_AT_EXTERNAL_LOAD_BALANCER\x10\x0b\x12\x19\n\x15\x41RRIVE_AT_VPN_GATEWAY\x10\x0c\x12\x18\n\x14\x41RRIVE_AT_VPN_TUNNEL\x10\r\x12\x1b\n\x17\x41RRIVE_AT_VPC_CONNECTOR\x10\x18\x12\x07\n\x03NAT\x10\x0e\x12\x14\n\x10PROXY_CONNECTION\x10\x0f\x12\x0b\n\x07\x44\x45LIVER\x10\x10\x12\x08\n\x04\x44ROP\x10\x11\x12\x0b\n\x07\x46ORWARD\x10\x12\x12\t\n\x05\x41\x42ORT\x10\x13\x12\x1d\n\x19VIEWER_PERMISSION_MISSING\x10\x14\x42\x0b\n\tstep_info\"\xb6\x01\n\x0cInstanceInfo\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x11\n\tinterface\x18\x03 \x01(\t\x12\x13\n\x0bnetwork_uri\x18\x04 \x01(\t\x12\x13\n\x0binternal_ip\x18\x05 \x01(\t\x12\x13\n\x0b\x65xternal_ip\x18\x06 \x01(\t\x12\x14\n\x0cnetwork_tags\x18\x07 \x03(\t\x12\x1b\n\x0fservice_account\x18\x08 \x01(\tB\x02\x18\x01\"J\n\x0bNetworkInfo\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x18\n\x10matched_ip_range\x18\x04 \x01(\t\"\xb3\x04\n\x0c\x46irewallInfo\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x11\n\tdirection\x18\x03 \x01(\t\x12\x0e\n\x06\x61\x63tion\x18\x04 \x01(\t\x12\x10\n\x08priority\x18\x05 \x01(\x05\x12\x13\n\x0bnetwork_uri\x18\x06 \x01(\t\x12\x13\n\x0btarget_tags\x18\x07 \x03(\t\x12\x1f\n\x17target_service_accounts\x18\x08 \x03(\t\x12\x0e\n\x06policy\x18\t \x01(\t\x12\\\n\x12\x66irewall_rule_type\x18\n \x01(\x0e\x32@.google.cloud.networkmanagement.v1.FirewallInfo.FirewallRuleType\"\x91\x02\n\x10\x46irewallRuleType\x12\"\n\x1e\x46IREWALL_RULE_TYPE_UNSPECIFIED\x10\x00\x12%\n!HIERARCHICAL_FIREWALL_POLICY_RULE\x10\x01\x12\x15\n\x11VPC_FIREWALL_RULE\x10\x02\x12\x1d\n\x19IMPLIED_VPC_FIREWALL_RULE\x10\x03\x12/\n+SERVERLESS_VPC_ACCESS_MANAGED_FIREWALL_RULE\x10\x04\x12 \n\x1cNETWORK_FIREWALL_POLICY_RULE\x10\x05\x12)\n%NETWORK_REGIONAL_FIREWALL_POLICY_RULE\x10\x06\"\xe6\x08\n\tRouteInfo\x12J\n\nroute_type\x18\x08 \x01(\x0e\x32\x36.google.cloud.networkmanagement.v1.RouteInfo.RouteType\x12O\n\rnext_hop_type\x18\t \x01(\x0e\x32\x38.google.cloud.networkmanagement.v1.RouteInfo.NextHopType\x12L\n\x0broute_scope\x18\x0e \x01(\x0e\x32\x37.google.cloud.networkmanagement.v1.RouteInfo.RouteScope\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x15\n\rdest_ip_range\x18\x03 \x01(\t\x12\x10\n\x08next_hop\x18\x04 \x01(\t\x12\x13\n\x0bnetwork_uri\x18\x05 \x01(\t\x12\x10\n\x08priority\x18\x06 \x01(\x05\x12\x15\n\rinstance_tags\x18\x07 \x03(\t\x12\x14\n\x0csrc_ip_range\x18\n \x01(\t\x12\x18\n\x10\x64\x65st_port_ranges\x18\x0b \x03(\t\x12\x17\n\x0fsrc_port_ranges\x18\x0c \x03(\t\x12\x11\n\tprotocols\x18\r \x03(\t\x12\x18\n\x0bncc_hub_uri\x18\x0f \x01(\tH\x00\x88\x01\x01\x12\x1a\n\rncc_spoke_uri\x18\x10 \x01(\tH\x01\x88\x01\x01\"\x9b\x01\n\tRouteType\x12\x1a\n\x16ROUTE_TYPE_UNSPECIFIED\x10\x00\x12\n\n\x06SUBNET\x10\x01\x12\n\n\x06STATIC\x10\x02\x12\x0b\n\x07\x44YNAMIC\x10\x03\x12\x12\n\x0ePEERING_SUBNET\x10\x04\x12\x12\n\x0ePEERING_STATIC\x10\x05\x12\x13\n\x0fPEERING_DYNAMIC\x10\x06\x12\x10\n\x0cPOLICY_BASED\x10\x07\"\xcc\x02\n\x0bNextHopType\x12\x1d\n\x19NEXT_HOP_TYPE_UNSPECIFIED\x10\x00\x12\x0f\n\x0bNEXT_HOP_IP\x10\x01\x12\x15\n\x11NEXT_HOP_INSTANCE\x10\x02\x12\x14\n\x10NEXT_HOP_NETWORK\x10\x03\x12\x14\n\x10NEXT_HOP_PEERING\x10\x04\x12\x19\n\x15NEXT_HOP_INTERCONNECT\x10\x05\x12\x17\n\x13NEXT_HOP_VPN_TUNNEL\x10\x06\x12\x18\n\x14NEXT_HOP_VPN_GATEWAY\x10\x07\x12\x1d\n\x19NEXT_HOP_INTERNET_GATEWAY\x10\x08\x12\x16\n\x12NEXT_HOP_BLACKHOLE\x10\t\x12\x10\n\x0cNEXT_HOP_ILB\x10\n\x12\x1d\n\x19NEXT_HOP_ROUTER_APPLIANCE\x10\x0b\x12\x14\n\x10NEXT_HOP_NCC_HUB\x10\x0c\"C\n\nRouteScope\x12\x1b\n\x17ROUTE_SCOPE_UNSPECIFIED\x10\x00\x12\x0b\n\x07NETWORK\x10\x01\x12\x0b\n\x07NCC_HUB\x10\x02\x42\x0e\n\x0c_ncc_hub_uriB\x10\n\x0e_ncc_spoke_uri\"\x83\x02\n\x11GoogleServiceInfo\x12\x11\n\tsource_ip\x18\x01 \x01(\t\x12\x63\n\x13google_service_type\x18\x02 \x01(\x0e\x32\x46.google.cloud.networkmanagement.v1.GoogleServiceInfo.GoogleServiceType\"v\n\x11GoogleServiceType\x12#\n\x1fGOOGLE_SERVICE_TYPE_UNSPECIFIED\x10\x00\x12\x07\n\x03IAP\x10\x01\x12$\n GFE_PROXY_OR_HEALTH_CHECK_PROBER\x10\x02\x12\r\n\tCLOUD_DNS\x10\x03\"\x9f\x01\n\x12\x46orwardingRuleInfo\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x18\n\x10matched_protocol\x18\x03 \x01(\t\x12\x1a\n\x12matched_port_range\x18\x06 \x01(\t\x12\x0b\n\x03vip\x18\x04 \x01(\t\x12\x0e\n\x06target\x18\x05 \x01(\t\x12\x13\n\x0bnetwork_uri\x18\x07 \x01(\t\"\xbe\x04\n\x10LoadBalancerInfo\x12`\n\x12load_balancer_type\x18\x01 \x01(\x0e\x32\x44.google.cloud.networkmanagement.v1.LoadBalancerInfo.LoadBalancerType\x12\x18\n\x10health_check_uri\x18\x02 \x01(\t\x12H\n\x08\x62\x61\x63kends\x18\x03 \x03(\x0b\x32\x36.google.cloud.networkmanagement.v1.LoadBalancerBackend\x12U\n\x0c\x62\x61\x63kend_type\x18\x04 \x01(\x0e\x32?.google.cloud.networkmanagement.v1.LoadBalancerInfo.BackendType\x12\x13\n\x0b\x62\x61\x63kend_uri\x18\x05 \x01(\t\"\x8f\x01\n\x10LoadBalancerType\x12\"\n\x1eLOAD_BALANCER_TYPE_UNSPECIFIED\x10\x00\x12\x14\n\x10INTERNAL_TCP_UDP\x10\x01\x12\x13\n\x0fNETWORK_TCP_UDP\x10\x02\x12\x0e\n\nHTTP_PROXY\x10\x03\x12\r\n\tTCP_PROXY\x10\x04\x12\r\n\tSSL_PROXY\x10\x05\"f\n\x0b\x42\x61\x63kendType\x12\x1c\n\x18\x42\x41\x43KEND_TYPE_UNSPECIFIED\x10\x00\x12\x13\n\x0f\x42\x41\x43KEND_SERVICE\x10\x01\x12\x0f\n\x0bTARGET_POOL\x10\x02\x12\x13\n\x0fTARGET_INSTANCE\x10\x03\"\xf6\x02\n\x13LoadBalancerBackend\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12t\n\x1bhealth_check_firewall_state\x18\x03 \x01(\x0e\x32O.google.cloud.networkmanagement.v1.LoadBalancerBackend.HealthCheckFirewallState\x12,\n$health_check_allowing_firewall_rules\x18\x04 \x03(\t\x12,\n$health_check_blocking_firewall_rules\x18\x05 \x03(\t\"j\n\x18HealthCheckFirewallState\x12+\n\'HEALTH_CHECK_FIREWALL_STATE_UNSPECIFIED\x10\x00\x12\x0e\n\nCONFIGURED\x10\x01\x12\x11\n\rMISCONFIGURED\x10\x02\"\x84\x01\n\x0eVpnGatewayInfo\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x13\n\x0bnetwork_uri\x18\x03 \x01(\t\x12\x12\n\nip_address\x18\x04 \x01(\t\x12\x16\n\x0evpn_tunnel_uri\x18\x05 \x01(\t\x12\x0e\n\x06region\x18\x06 \x01(\t\"\xee\x02\n\rVpnTunnelInfo\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x16\n\x0esource_gateway\x18\x03 \x01(\t\x12\x16\n\x0eremote_gateway\x18\x04 \x01(\t\x12\x19\n\x11remote_gateway_ip\x18\x05 \x01(\t\x12\x19\n\x11source_gateway_ip\x18\x06 \x01(\t\x12\x13\n\x0bnetwork_uri\x18\x07 \x01(\t\x12\x0e\n\x06region\x18\x08 \x01(\t\x12R\n\x0crouting_type\x18\t \x01(\x0e\x32<.google.cloud.networkmanagement.v1.VpnTunnelInfo.RoutingType\"[\n\x0bRoutingType\x12\x1c\n\x18ROUTING_TYPE_UNSPECIFIED\x10\x00\x12\x0f\n\x0bROUTE_BASED\x10\x01\x12\x10\n\x0cPOLICY_BASED\x10\x02\x12\x0b\n\x07\x44YNAMIC\x10\x03\"\xd1\x01\n\x0c\x45ndpointInfo\x12\x11\n\tsource_ip\x18\x01 \x01(\t\x12\x16\n\x0e\x64\x65stination_ip\x18\x02 \x01(\t\x12\x10\n\x08protocol\x18\x03 \x01(\t\x12\x13\n\x0bsource_port\x18\x04 \x01(\x05\x12\x18\n\x10\x64\x65stination_port\x18\x05 \x01(\x05\x12\x1a\n\x12source_network_uri\x18\x06 \x01(\t\x12\x1f\n\x17\x64\x65stination_network_uri\x18\x07 \x01(\t\x12\x18\n\x10source_agent_uri\x18\x08 \x01(\t\"\xb4\x02\n\x0b\x44\x65liverInfo\x12\x45\n\x06target\x18\x01 \x01(\x0e\x32\x35.google.cloud.networkmanagement.v1.DeliverInfo.Target\x12\x14\n\x0cresource_uri\x18\x02 \x01(\t\"\xc7\x01\n\x06Target\x12\x16\n\x12TARGET_UNSPECIFIED\x10\x00\x12\x0c\n\x08INSTANCE\x10\x01\x12\x0c\n\x08INTERNET\x10\x02\x12\x0e\n\nGOOGLE_API\x10\x03\x12\x0e\n\nGKE_MASTER\x10\x04\x12\x16\n\x12\x43LOUD_SQL_INSTANCE\x10\x05\x12\x19\n\x15PSC_PUBLISHED_SERVICE\x10\x06\x12\x12\n\x0ePSC_GOOGLE_API\x10\x07\x12\x0e\n\nPSC_VPC_SC\x10\x08\x12\x12\n\x0eSERVERLESS_NEG\x10\t\"\xaf\x02\n\x0b\x46orwardInfo\x12\x45\n\x06target\x18\x01 \x01(\x0e\x32\x35.google.cloud.networkmanagement.v1.ForwardInfo.Target\x12\x14\n\x0cresource_uri\x18\x02 \x01(\t\"\xc2\x01\n\x06Target\x12\x16\n\x12TARGET_UNSPECIFIED\x10\x00\x12\x0f\n\x0bPEERING_VPC\x10\x01\x12\x0f\n\x0bVPN_GATEWAY\x10\x02\x12\x10\n\x0cINTERCONNECT\x10\x03\x12\x0e\n\nGKE_MASTER\x10\x04\x12\"\n\x1eIMPORTED_CUSTOM_ROUTE_NEXT_HOP\x10\x05\x12\x16\n\x12\x43LOUD_SQL_INSTANCE\x10\x06\x12\x13\n\x0f\x41NOTHER_PROJECT\x10\x07\x12\x0b\n\x07NCC_HUB\x10\x08\"\xfb\x05\n\tAbortInfo\x12\x41\n\x05\x63\x61use\x18\x01 \x01(\x0e\x32\x32.google.cloud.networkmanagement.v1.AbortInfo.Cause\x12\x14\n\x0cresource_uri\x18\x02 \x01(\t\x12#\n\x1bprojects_missing_permission\x18\x03 \x03(\t\"\xef\x04\n\x05\x43\x61use\x12\x15\n\x11\x43\x41USE_UNSPECIFIED\x10\x00\x12\x13\n\x0fUNKNOWN_NETWORK\x10\x01\x12\x0e\n\nUNKNOWN_IP\x10\x02\x12\x13\n\x0fUNKNOWN_PROJECT\x10\x03\x12\x15\n\x11PERMISSION_DENIED\x10\x04\x12\x16\n\x12NO_SOURCE_LOCATION\x10\x05\x12\x14\n\x10INVALID_ARGUMENT\x10\x06\x12\x12\n\x0eNO_EXTERNAL_IP\x10\x07\x12\x1a\n\x16UNINTENDED_DESTINATION\x10\x08\x12\x12\n\x0eTRACE_TOO_LONG\x10\t\x12\x12\n\x0eINTERNAL_ERROR\x10\n\x12\x1d\n\x19SOURCE_ENDPOINT_NOT_FOUND\x10\x0b\x12\x1d\n\x19MISMATCHED_SOURCE_NETWORK\x10\x0c\x12\"\n\x1e\x44\x45STINATION_ENDPOINT_NOT_FOUND\x10\r\x12\"\n\x1eMISMATCHED_DESTINATION_NETWORK\x10\x0e\x12\x0f\n\x0bUNSUPPORTED\x10\x0f\x12\x19\n\x15MISMATCHED_IP_VERSION\x10\x10\x12&\n\"GKE_KONNECTIVITY_PROXY_UNSUPPORTED\x10\x11\x12\x1d\n\x19RESOURCE_CONFIG_NOT_FOUND\x10\x12\x12\x31\n-GOOGLE_MANAGED_SERVICE_AMBIGUOUS_PSC_ENDPOINT\x10\x13\x12$\n SOURCE_PSC_CLOUD_SQL_UNSUPPORTED\x10\x14\x12&\n\"SOURCE_FORWARDING_RULE_UNSUPPORTED\x10\x15\"\xc5\x0b\n\x08\x44ropInfo\x12@\n\x05\x63\x61use\x18\x01 \x01(\x0e\x32\x31.google.cloud.networkmanagement.v1.DropInfo.Cause\x12\x14\n\x0cresource_uri\x18\x02 \x01(\t\"\xe0\n\n\x05\x43\x61use\x12\x15\n\x11\x43\x41USE_UNSPECIFIED\x10\x00\x12\x1c\n\x18UNKNOWN_EXTERNAL_ADDRESS\x10\x01\x12\x19\n\x15\x46OREIGN_IP_DISALLOWED\x10\x02\x12\x11\n\rFIREWALL_RULE\x10\x03\x12\x0c\n\x08NO_ROUTE\x10\x04\x12\x13\n\x0fROUTE_BLACKHOLE\x10\x05\x12\x17\n\x13ROUTE_WRONG_NETWORK\x10\x06\x12\x1f\n\x1bPRIVATE_TRAFFIC_TO_INTERNET\x10\x07\x12$\n PRIVATE_GOOGLE_ACCESS_DISALLOWED\x10\x08\x12\x17\n\x13NO_EXTERNAL_ADDRESS\x10\t\x12\x1c\n\x18UNKNOWN_INTERNAL_ADDRESS\x10\n\x12\x1c\n\x18\x46ORWARDING_RULE_MISMATCH\x10\x0b\x12#\n\x1f\x46ORWARDING_RULE_REGION_MISMATCH\x10\x19\x12 \n\x1c\x46ORWARDING_RULE_NO_INSTANCES\x10\x0c\x12\x38\n4FIREWALL_BLOCKING_LOAD_BALANCER_BACKEND_HEALTH_CHECK\x10\r\x12\x18\n\x14INSTANCE_NOT_RUNNING\x10\x0e\x12\x1b\n\x17GKE_CLUSTER_NOT_RUNNING\x10\x1b\x12\"\n\x1e\x43LOUD_SQL_INSTANCE_NOT_RUNNING\x10\x1c\x12\x18\n\x14TRAFFIC_TYPE_BLOCKED\x10\x0f\x12\"\n\x1eGKE_MASTER_UNAUTHORIZED_ACCESS\x10\x10\x12*\n&CLOUD_SQL_INSTANCE_UNAUTHORIZED_ACCESS\x10\x11\x12\x1e\n\x1a\x44ROPPED_INSIDE_GKE_SERVICE\x10\x12\x12$\n DROPPED_INSIDE_CLOUD_SQL_SERVICE\x10\x13\x12%\n!GOOGLE_MANAGED_SERVICE_NO_PEERING\x10\x14\x12*\n&GOOGLE_MANAGED_SERVICE_NO_PSC_ENDPOINT\x10&\x12\x1c\n\x18GKE_PSC_ENDPOINT_MISSING\x10$\x12$\n CLOUD_SQL_INSTANCE_NO_IP_ADDRESS\x10\x15\x12%\n!GKE_CONTROL_PLANE_REGION_MISMATCH\x10\x1e\x12\x33\n/PUBLIC_GKE_CONTROL_PLANE_TO_PRIVATE_DESTINATION\x10\x1f\x12\x1e\n\x1aGKE_CONTROL_PLANE_NO_ROUTE\x10 \x12:\n6CLOUD_SQL_INSTANCE_NOT_CONFIGURED_FOR_EXTERNAL_TRAFFIC\x10!\x12\x34\n0PUBLIC_CLOUD_SQL_INSTANCE_TO_PRIVATE_DESTINATION\x10\"\x12\x1f\n\x1b\x43LOUD_SQL_INSTANCE_NO_ROUTE\x10#\x12\x1d\n\x19\x43LOUD_FUNCTION_NOT_ACTIVE\x10\x16\x12\x19\n\x15VPC_CONNECTOR_NOT_SET\x10\x17\x12\x1d\n\x19VPC_CONNECTOR_NOT_RUNNING\x10\x18\x12\x1f\n\x1bPSC_CONNECTION_NOT_ACCEPTED\x10\x1a\x12 \n\x1c\x43LOUD_RUN_REVISION_NOT_READY\x10\x1d\x12\'\n#DROPPED_INSIDE_PSC_SERVICE_PRODUCER\x10%\x12%\n!LOAD_BALANCER_HAS_NO_PROXY_SUBNET\x10\'\"k\n\rGKEMasterInfo\x12\x13\n\x0b\x63luster_uri\x18\x02 \x01(\t\x12\x1b\n\x13\x63luster_network_uri\x18\x04 \x01(\t\x12\x13\n\x0binternal_ip\x18\x05 \x01(\t\x12\x13\n\x0b\x65xternal_ip\x18\x06 \x01(\t\"\x88\x01\n\x14\x43loudSQLInstanceInfo\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x13\n\x0bnetwork_uri\x18\x04 \x01(\t\x12\x13\n\x0binternal_ip\x18\x05 \x01(\t\x12\x13\n\x0b\x65xternal_ip\x18\x06 \x01(\t\x12\x0e\n\x06region\x18\x07 \x01(\t\"\\\n\x11\x43loudFunctionInfo\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x10\n\x08location\x18\x03 \x01(\t\x12\x12\n\nversion_id\x18\x04 \x01(\x03\"`\n\x14\x43loudRunRevisionInfo\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x10\n\x08location\x18\x04 \x01(\t\x12\x13\n\x0bservice_uri\x18\x05 \x01(\t\"_\n\x14\x41ppEngineVersionInfo\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x0f\n\x07runtime\x18\x03 \x01(\t\x12\x13\n\x0b\x65nvironment\x18\x04 \x01(\t\"G\n\x10VpcConnectorInfo\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x10\n\x08location\x18\x03 \x01(\t*\xf6\x02\n\x10LoadBalancerType\x12\"\n\x1eLOAD_BALANCER_TYPE_UNSPECIFIED\x10\x00\x12 \n\x1cHTTPS_ADVANCED_LOAD_BALANCER\x10\x01\x12\x17\n\x13HTTPS_LOAD_BALANCER\x10\x02\x12 \n\x1cREGIONAL_HTTPS_LOAD_BALANCER\x10\x03\x12 \n\x1cINTERNAL_HTTPS_LOAD_BALANCER\x10\x04\x12\x1b\n\x17SSL_PROXY_LOAD_BALANCER\x10\x05\x12\x1b\n\x17TCP_PROXY_LOAD_BALANCER\x10\x06\x12$\n INTERNAL_TCP_PROXY_LOAD_BALANCER\x10\x07\x12\x19\n\x15NETWORK_LOAD_BALANCER\x10\x08\x12 \n\x1cLEGACY_NETWORK_LOAD_BALANCER\x10\t\x12\"\n\x1eTCP_UDP_INTERNAL_LOAD_BALANCER\x10\nB\xf9\x01\n%com.google.cloud.networkmanagement.v1B\nTraceProtoP\x01ZScloud.google.com/go/networkmanagement/apiv1/networkmanagementpb;networkmanagementpb\xaa\x02!Google.Cloud.NetworkManagement.V1\xca\x02!Google\\Cloud\\NetworkManagement\\V1\xea\x02$Google::Cloud::NetworkManagement::V1b\x06proto3"
|
9
9
|
|
10
10
|
pool = Google::Protobuf::DescriptorPool.generated_pool
|
11
11
|
|
@@ -45,6 +45,9 @@ module Google
|
|
45
45
|
RouteInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.RouteInfo").msgclass
|
46
46
|
RouteInfo::RouteType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.RouteInfo.RouteType").enummodule
|
47
47
|
RouteInfo::NextHopType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.RouteInfo.NextHopType").enummodule
|
48
|
+
RouteInfo::RouteScope = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.RouteInfo.RouteScope").enummodule
|
49
|
+
GoogleServiceInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.GoogleServiceInfo").msgclass
|
50
|
+
GoogleServiceInfo::GoogleServiceType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.GoogleServiceInfo.GoogleServiceType").enummodule
|
48
51
|
ForwardingRuleInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.ForwardingRuleInfo").msgclass
|
49
52
|
LoadBalancerInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.LoadBalancerInfo").msgclass
|
50
53
|
LoadBalancerInfo::LoadBalancerType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.LoadBalancerInfo.LoadBalancerType").enummodule
|
@@ -65,6 +68,11 @@ module Google
|
|
65
68
|
DropInfo::Cause = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.DropInfo.Cause").enummodule
|
66
69
|
GKEMasterInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.GKEMasterInfo").msgclass
|
67
70
|
CloudSQLInstanceInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.CloudSQLInstanceInfo").msgclass
|
71
|
+
CloudFunctionInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.CloudFunctionInfo").msgclass
|
72
|
+
CloudRunRevisionInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.CloudRunRevisionInfo").msgclass
|
73
|
+
AppEngineVersionInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.AppEngineVersionInfo").msgclass
|
74
|
+
VpcConnectorInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.VpcConnectorInfo").msgclass
|
75
|
+
LoadBalancerType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkmanagement.v1.LoadBalancerType").enummodule
|
68
76
|
end
|
69
77
|
end
|
70
78
|
end
|
@@ -66,6 +66,20 @@ module Google
|
|
66
66
|
# a non-empty value will be returned. The user will not be aware of what
|
67
67
|
# non-empty value to expect.
|
68
68
|
NON_EMPTY_DEFAULT = 7
|
69
|
+
|
70
|
+
# Denotes that the field in a resource (a message annotated with
|
71
|
+
# google.api.resource) is used in the resource name to uniquely identify the
|
72
|
+
# resource. For AIP-compliant APIs, this should only be applied to the
|
73
|
+
# `name` field on the resource.
|
74
|
+
#
|
75
|
+
# This behavior should not be applied to references to other resources within
|
76
|
+
# the message.
|
77
|
+
#
|
78
|
+
# The identifier field of resources often have different field behavior
|
79
|
+
# depending on the request it is embedded in (e.g. for Create methods name
|
80
|
+
# is optional and unused, while for Update methods it is required). Instead
|
81
|
+
# of method-specific annotations, only `IDENTIFIER` is required.
|
82
|
+
IDENTIFIER = 8
|
69
83
|
end
|
70
84
|
end
|
71
85
|
end
|
@@ -25,7 +25,7 @@ module Google
|
|
25
25
|
# @!attribute [rw] name
|
26
26
|
# @return [::String]
|
27
27
|
# Required. Unique name of the resource using the form:
|
28
|
-
# `projects/{project_id}/locations/global/connectivityTests/{
|
28
|
+
# `projects/{project_id}/locations/global/connectivityTests/{test}`
|
29
29
|
# @!attribute [rw] description
|
30
30
|
# @return [::String]
|
31
31
|
# The user-supplied description of the Connectivity Test.
|
@@ -98,6 +98,12 @@ module Google
|
|
98
98
|
# Output only. The reachability details of this test from the latest run.
|
99
99
|
# The details are updated when creating a new test, updating an
|
100
100
|
# existing test, or triggering a one-time rerun of an existing test.
|
101
|
+
# @!attribute [r] probing_details
|
102
|
+
# @return [::Google::Cloud::NetworkManagement::V1::ProbingDetails]
|
103
|
+
# Output only. The probing details of this test from the latest run, present
|
104
|
+
# for applicable tests only. The details are updated when creating a new
|
105
|
+
# test, updating an existing test, or triggering a one-time rerun of an
|
106
|
+
# existing test.
|
101
107
|
class ConnectivityTest
|
102
108
|
include ::Google::Protobuf::MessageExts
|
103
109
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -117,7 +123,8 @@ module Google
|
|
117
123
|
# @return [::String]
|
118
124
|
# The IP address of the endpoint, which can be an external or internal IP.
|
119
125
|
# An IPv6 address is only allowed when the test's destination is a
|
120
|
-
# [global load balancer
|
126
|
+
# [global load balancer
|
127
|
+
# VIP](https://cloud.google.com/load-balancing/docs/load-balancing-overview).
|
121
128
|
# @!attribute [rw] port
|
122
129
|
# @return [::Integer]
|
123
130
|
# The IP protocol port of the endpoint.
|
@@ -133,6 +140,16 @@ module Google
|
|
133
140
|
# services to provide forwarding information in the control plane. Format:
|
134
141
|
# projects/\\{project}/global/forwardingRules/\\{id} or
|
135
142
|
# projects/\\{project}/regions/\\{region}/forwardingRules/\\{id}
|
143
|
+
# @!attribute [r] forwarding_rule_target
|
144
|
+
# @return [::Google::Cloud::NetworkManagement::V1::Endpoint::ForwardingRuleTarget]
|
145
|
+
# Output only. Specifies the type of the target of the forwarding rule.
|
146
|
+
# @!attribute [r] load_balancer_id
|
147
|
+
# @return [::String]
|
148
|
+
# Output only. ID of the load balancer the forwarding rule points to. Empty
|
149
|
+
# for forwarding rules not related to load balancers.
|
150
|
+
# @!attribute [r] load_balancer_type
|
151
|
+
# @return [::Google::Cloud::NetworkManagement::V1::LoadBalancerType]
|
152
|
+
# Output only. Type of the load balancer the forwarding rule points to.
|
136
153
|
# @!attribute [rw] gke_master_cluster
|
137
154
|
# @return [::String]
|
138
155
|
# A cluster URI for [Google Kubernetes Engine
|
@@ -140,6 +157,17 @@ module Google
|
|
140
157
|
# @!attribute [rw] cloud_sql_instance
|
141
158
|
# @return [::String]
|
142
159
|
# A [Cloud SQL](https://cloud.google.com/sql) instance URI.
|
160
|
+
# @!attribute [rw] cloud_function
|
161
|
+
# @return [::Google::Cloud::NetworkManagement::V1::Endpoint::CloudFunctionEndpoint]
|
162
|
+
# A [Cloud Function](https://cloud.google.com/functions).
|
163
|
+
# @!attribute [rw] app_engine_version
|
164
|
+
# @return [::Google::Cloud::NetworkManagement::V1::Endpoint::AppEngineVersionEndpoint]
|
165
|
+
# An [App Engine](https://cloud.google.com/appengine) [service
|
166
|
+
# version](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions).
|
167
|
+
# @!attribute [rw] cloud_run_revision
|
168
|
+
# @return [::Google::Cloud::NetworkManagement::V1::Endpoint::CloudRunRevisionEndpoint]
|
169
|
+
# A [Cloud Run](https://cloud.google.com/run)
|
170
|
+
# [revision](https://cloud.google.com/run/docs/reference/rest/v1/namespaces.revisions/get)
|
143
171
|
# @!attribute [rw] network
|
144
172
|
# @return [::String]
|
145
173
|
# A Compute Engine network URI.
|
@@ -163,6 +191,38 @@ module Google
|
|
163
191
|
include ::Google::Protobuf::MessageExts
|
164
192
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
165
193
|
|
194
|
+
# Wrapper for Cloud Function attributes.
|
195
|
+
# @!attribute [rw] uri
|
196
|
+
# @return [::String]
|
197
|
+
# A [Cloud Function](https://cloud.google.com/functions) name.
|
198
|
+
class CloudFunctionEndpoint
|
199
|
+
include ::Google::Protobuf::MessageExts
|
200
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
201
|
+
end
|
202
|
+
|
203
|
+
# Wrapper for the App Engine service version attributes.
|
204
|
+
# @!attribute [rw] uri
|
205
|
+
# @return [::String]
|
206
|
+
# An [App Engine](https://cloud.google.com/appengine) [service
|
207
|
+
# version](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions)
|
208
|
+
# name.
|
209
|
+
class AppEngineVersionEndpoint
|
210
|
+
include ::Google::Protobuf::MessageExts
|
211
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
212
|
+
end
|
213
|
+
|
214
|
+
# Wrapper for Cloud Run revision attributes.
|
215
|
+
# @!attribute [rw] uri
|
216
|
+
# @return [::String]
|
217
|
+
# A [Cloud Run](https://cloud.google.com/run)
|
218
|
+
# [revision](https://cloud.google.com/run/docs/reference/rest/v1/namespaces.revisions/get)
|
219
|
+
# URI. The format is:
|
220
|
+
# projects/\\{project}/locations/\\{location}/revisions/\\{revision}
|
221
|
+
class CloudRunRevisionEndpoint
|
222
|
+
include ::Google::Protobuf::MessageExts
|
223
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
224
|
+
end
|
225
|
+
|
166
226
|
# The type definition of an endpoint's network. Use one of the
|
167
227
|
# following choices:
|
168
228
|
module NetworkType
|
@@ -179,6 +239,25 @@ module Google
|
|
179
239
|
# provider.
|
180
240
|
NON_GCP_NETWORK = 2
|
181
241
|
end
|
242
|
+
|
243
|
+
# Type of the target of a forwarding rule.
|
244
|
+
module ForwardingRuleTarget
|
245
|
+
# Forwarding rule target is unknown.
|
246
|
+
FORWARDING_RULE_TARGET_UNSPECIFIED = 0
|
247
|
+
|
248
|
+
# Compute Engine instance for protocol forwarding.
|
249
|
+
INSTANCE = 1
|
250
|
+
|
251
|
+
# Load Balancer. The specific type can be found from [load_balancer_type]
|
252
|
+
# [google.cloud.networkmanagement.v1.Endpoint.load_balancer_type].
|
253
|
+
LOAD_BALANCER = 2
|
254
|
+
|
255
|
+
# Classic Cloud VPN Gateway.
|
256
|
+
VPN_GATEWAY = 3
|
257
|
+
|
258
|
+
# Forwarding Rule is a Private Service Connect endpoint.
|
259
|
+
PSC = 4
|
260
|
+
end
|
182
261
|
end
|
183
262
|
|
184
263
|
# Results of the configuration analysis from the last run of the test.
|
@@ -234,6 +313,114 @@ module Google
|
|
234
313
|
UNDETERMINED = 5
|
235
314
|
end
|
236
315
|
end
|
316
|
+
|
317
|
+
# Latency percentile rank and value.
|
318
|
+
# @!attribute [rw] percent
|
319
|
+
# @return [::Integer]
|
320
|
+
# Percentage of samples this data point applies to.
|
321
|
+
# @!attribute [rw] latency_micros
|
322
|
+
# @return [::Integer]
|
323
|
+
# percent-th percentile of latency observed, in microseconds.
|
324
|
+
# Fraction of percent/100 of samples have latency lower or
|
325
|
+
# equal to the value of this field.
|
326
|
+
class LatencyPercentile
|
327
|
+
include ::Google::Protobuf::MessageExts
|
328
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
329
|
+
end
|
330
|
+
|
331
|
+
# Describes measured latency distribution.
|
332
|
+
# @!attribute [rw] latency_percentiles
|
333
|
+
# @return [::Array<::Google::Cloud::NetworkManagement::V1::LatencyPercentile>]
|
334
|
+
# Representative latency percentiles.
|
335
|
+
class LatencyDistribution
|
336
|
+
include ::Google::Protobuf::MessageExts
|
337
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
338
|
+
end
|
339
|
+
|
340
|
+
# Results of active probing from the last run of the test.
|
341
|
+
# @!attribute [rw] result
|
342
|
+
# @return [::Google::Cloud::NetworkManagement::V1::ProbingDetails::ProbingResult]
|
343
|
+
# The overall result of active probing.
|
344
|
+
# @!attribute [rw] verify_time
|
345
|
+
# @return [::Google::Protobuf::Timestamp]
|
346
|
+
# The time that reachability was assessed through active probing.
|
347
|
+
# @!attribute [rw] error
|
348
|
+
# @return [::Google::Rpc::Status]
|
349
|
+
# Details about an internal failure or the cancellation of active probing.
|
350
|
+
# @!attribute [rw] abort_cause
|
351
|
+
# @return [::Google::Cloud::NetworkManagement::V1::ProbingDetails::ProbingAbortCause]
|
352
|
+
# The reason probing was aborted.
|
353
|
+
# @!attribute [rw] sent_probe_count
|
354
|
+
# @return [::Integer]
|
355
|
+
# Number of probes sent.
|
356
|
+
# @!attribute [rw] successful_probe_count
|
357
|
+
# @return [::Integer]
|
358
|
+
# Number of probes that reached the destination.
|
359
|
+
# @!attribute [rw] endpoint_info
|
360
|
+
# @return [::Google::Cloud::NetworkManagement::V1::EndpointInfo]
|
361
|
+
# The source and destination endpoints derived from the test input and used
|
362
|
+
# for active probing.
|
363
|
+
# @!attribute [rw] probing_latency
|
364
|
+
# @return [::Google::Cloud::NetworkManagement::V1::LatencyDistribution]
|
365
|
+
# Latency as measured by active probing in one direction:
|
366
|
+
# from the source to the destination endpoint.
|
367
|
+
# @!attribute [rw] destination_egress_location
|
368
|
+
# @return [::Google::Cloud::NetworkManagement::V1::ProbingDetails::EdgeLocation]
|
369
|
+
# The EdgeLocation from which a packet destined for/originating from the
|
370
|
+
# internet will egress/ingress the Google network.
|
371
|
+
# This will only be populated for a connectivity test which has an internet
|
372
|
+
# destination/source address.
|
373
|
+
# The absence of this field *must not* be used as an indication that the
|
374
|
+
# destination/source is part of the Google network.
|
375
|
+
class ProbingDetails
|
376
|
+
include ::Google::Protobuf::MessageExts
|
377
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
378
|
+
|
379
|
+
# Representation of a network edge location as per
|
380
|
+
# https://cloud.google.com/vpc/docs/edge-locations.
|
381
|
+
# @!attribute [rw] metropolitan_area
|
382
|
+
# @return [::String]
|
383
|
+
# Name of the metropolitan area.
|
384
|
+
class EdgeLocation
|
385
|
+
include ::Google::Protobuf::MessageExts
|
386
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
387
|
+
end
|
388
|
+
|
389
|
+
# Overall probing result of the test.
|
390
|
+
module ProbingResult
|
391
|
+
# No result was specified.
|
392
|
+
PROBING_RESULT_UNSPECIFIED = 0
|
393
|
+
|
394
|
+
# At least 95% of packets reached the destination.
|
395
|
+
REACHABLE = 1
|
396
|
+
|
397
|
+
# No packets reached the destination.
|
398
|
+
UNREACHABLE = 2
|
399
|
+
|
400
|
+
# Less than 95% of packets reached the destination.
|
401
|
+
REACHABILITY_INCONSISTENT = 3
|
402
|
+
|
403
|
+
# Reachability could not be determined. Possible reasons are:
|
404
|
+
# * The user lacks permission to access some of the network resources
|
405
|
+
# required to run the test.
|
406
|
+
# * No valid source endpoint could be derived from the request.
|
407
|
+
# * An internal error occurred.
|
408
|
+
UNDETERMINED = 4
|
409
|
+
end
|
410
|
+
|
411
|
+
# Abort cause types.
|
412
|
+
module ProbingAbortCause
|
413
|
+
# No reason was specified.
|
414
|
+
PROBING_ABORT_CAUSE_UNSPECIFIED = 0
|
415
|
+
|
416
|
+
# The user lacks permission to access some of the
|
417
|
+
# network resources required to run the test.
|
418
|
+
PERMISSION_DENIED = 1
|
419
|
+
|
420
|
+
# No valid source endpoint could be derived from the request.
|
421
|
+
NO_SOURCE_LOCATION = 2
|
422
|
+
end
|
423
|
+
end
|
237
424
|
end
|
238
425
|
end
|
239
426
|
end
|
@@ -80,6 +80,9 @@ module Google
|
|
80
80
|
# The endpoint information in an intermediate state may differ with the
|
81
81
|
# initial input, as it might be modified by state like NAT,
|
82
82
|
# or Connection Proxy.
|
83
|
+
# @!attribute [rw] google_service
|
84
|
+
# @return [::Google::Cloud::NetworkManagement::V1::GoogleServiceInfo]
|
85
|
+
# Display information of a Google service
|
83
86
|
# @!attribute [rw] forwarding_rule
|
84
87
|
# @return [::Google::Cloud::NetworkManagement::V1::ForwardingRuleInfo]
|
85
88
|
# Display information of a Compute Engine forwarding rule.
|
@@ -89,6 +92,9 @@ module Google
|
|
89
92
|
# @!attribute [rw] vpn_tunnel
|
90
93
|
# @return [::Google::Cloud::NetworkManagement::V1::VpnTunnelInfo]
|
91
94
|
# Display information of a Compute Engine VPN tunnel.
|
95
|
+
# @!attribute [rw] vpc_connector
|
96
|
+
# @return [::Google::Cloud::NetworkManagement::V1::VpcConnectorInfo]
|
97
|
+
# Display information of a VPC connector.
|
92
98
|
# @!attribute [rw] deliver
|
93
99
|
# @return [::Google::Cloud::NetworkManagement::V1::DeliverInfo]
|
94
100
|
# Display information of the final state "deliver" and reason.
|
@@ -113,6 +119,15 @@ module Google
|
|
113
119
|
# @!attribute [rw] cloud_sql_instance
|
114
120
|
# @return [::Google::Cloud::NetworkManagement::V1::CloudSQLInstanceInfo]
|
115
121
|
# Display information of a Cloud SQL instance.
|
122
|
+
# @!attribute [rw] cloud_function
|
123
|
+
# @return [::Google::Cloud::NetworkManagement::V1::CloudFunctionInfo]
|
124
|
+
# Display information of a Cloud Function.
|
125
|
+
# @!attribute [rw] app_engine_version
|
126
|
+
# @return [::Google::Cloud::NetworkManagement::V1::AppEngineVersionInfo]
|
127
|
+
# Display information of an App Engine service version.
|
128
|
+
# @!attribute [rw] cloud_run_revision
|
129
|
+
# @return [::Google::Cloud::NetworkManagement::V1::CloudRunRevisionInfo]
|
130
|
+
# Display information of a Cloud Run revision.
|
116
131
|
class Step
|
117
132
|
include ::Google::Protobuf::MessageExts
|
118
133
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -131,6 +146,12 @@ module Google
|
|
131
146
|
# The endpoint information is populated.
|
132
147
|
START_FROM_INTERNET = 2
|
133
148
|
|
149
|
+
# Initial state: packet originating from a Google service. Some Google
|
150
|
+
# services, such as health check probers or Identity Aware Proxy use
|
151
|
+
# special routes, outside VPC routing configuration to reach Compute Engine
|
152
|
+
# Instances.
|
153
|
+
START_FROM_GOOGLE_SERVICE = 27
|
154
|
+
|
134
155
|
# Initial state: packet originating from a VPC or on-premises network
|
135
156
|
# with internal source IP.
|
136
157
|
# If the source is a VPC network visible to the user, a NetworkInfo
|
@@ -145,6 +166,18 @@ module Google
|
|
145
166
|
# A CloudSQLInstanceInfo is populated with starting instance information.
|
146
167
|
START_FROM_CLOUD_SQL_INSTANCE = 22
|
147
168
|
|
169
|
+
# Initial state: packet originating from a Cloud Function.
|
170
|
+
# A CloudFunctionInfo is populated with starting function information.
|
171
|
+
START_FROM_CLOUD_FUNCTION = 23
|
172
|
+
|
173
|
+
# Initial state: packet originating from an App Engine service version.
|
174
|
+
# An AppEngineVersionInfo is populated with starting version information.
|
175
|
+
START_FROM_APP_ENGINE_VERSION = 25
|
176
|
+
|
177
|
+
# Initial state: packet originating from a Cloud Run revision.
|
178
|
+
# A CloudRunRevisionInfo is populated with starting revision information.
|
179
|
+
START_FROM_CLOUD_RUN_REVISION = 26
|
180
|
+
|
148
181
|
# Config checking state: verify ingress firewall rule.
|
149
182
|
APPLY_INGRESS_FIREWALL_RULE = 4
|
150
183
|
|
@@ -176,6 +209,9 @@ module Google
|
|
176
209
|
# Forwarding state: arriving at a Cloud VPN tunnel.
|
177
210
|
ARRIVE_AT_VPN_TUNNEL = 13
|
178
211
|
|
212
|
+
# Forwarding state: arriving at a VPC connector.
|
213
|
+
ARRIVE_AT_VPC_CONNECTOR = 24
|
214
|
+
|
179
215
|
# Transition state: packet header translated.
|
180
216
|
NAT = 14
|
181
217
|
|
@@ -307,6 +343,22 @@ module Google
|
|
307
343
|
# [Implied
|
308
344
|
# rules](https://cloud.google.com/vpc/docs/firewalls#default_firewall_rules).
|
309
345
|
IMPLIED_VPC_FIREWALL_RULE = 3
|
346
|
+
|
347
|
+
# Implicit firewall rules that are managed by serverless VPC access to
|
348
|
+
# allow ingress access. They are not visible in the Google Cloud console.
|
349
|
+
# For details, see [VPC connector's implicit
|
350
|
+
# rules](https://cloud.google.com/functions/docs/networking/connecting-vpc#restrict-access).
|
351
|
+
SERVERLESS_VPC_ACCESS_MANAGED_FIREWALL_RULE = 4
|
352
|
+
|
353
|
+
# Global network firewall policy rule.
|
354
|
+
# For details, see [Network firewall
|
355
|
+
# policies](https://cloud.google.com/vpc/docs/network-firewall-policies).
|
356
|
+
NETWORK_FIREWALL_POLICY_RULE = 5
|
357
|
+
|
358
|
+
# Regional network firewall policy rule.
|
359
|
+
# For details, see [Regional network firewall
|
360
|
+
# policies](https://cloud.google.com/firewall/docs/regional-firewall-policies).
|
361
|
+
NETWORK_REGIONAL_FIREWALL_POLICY_RULE = 6
|
310
362
|
end
|
311
363
|
end
|
312
364
|
|
@@ -317,15 +369,18 @@ module Google
|
|
317
369
|
# @!attribute [rw] next_hop_type
|
318
370
|
# @return [::Google::Cloud::NetworkManagement::V1::RouteInfo::NextHopType]
|
319
371
|
# Type of next hop.
|
372
|
+
# @!attribute [rw] route_scope
|
373
|
+
# @return [::Google::Cloud::NetworkManagement::V1::RouteInfo::RouteScope]
|
374
|
+
# Indicates where route is applicable.
|
320
375
|
# @!attribute [rw] display_name
|
321
376
|
# @return [::String]
|
322
|
-
# Name of a
|
377
|
+
# Name of a route.
|
323
378
|
# @!attribute [rw] uri
|
324
379
|
# @return [::String]
|
325
|
-
# URI of a
|
326
|
-
# Dynamic
|
380
|
+
# URI of a route.
|
381
|
+
# Dynamic, peering static and peering dynamic routes do not have an URI.
|
327
382
|
# Advertised route from Google Cloud VPC to on-premises network also does
|
328
|
-
# not have
|
383
|
+
# not have an URI.
|
329
384
|
# @!attribute [rw] dest_ip_range
|
330
385
|
# @return [::String]
|
331
386
|
# Destination IP range of the route.
|
@@ -334,13 +389,31 @@ module Google
|
|
334
389
|
# Next hop of the route.
|
335
390
|
# @!attribute [rw] network_uri
|
336
391
|
# @return [::String]
|
337
|
-
# URI of a Compute Engine network.
|
392
|
+
# URI of a Compute Engine network. NETWORK routes only.
|
338
393
|
# @!attribute [rw] priority
|
339
394
|
# @return [::Integer]
|
340
395
|
# Priority of the route.
|
341
396
|
# @!attribute [rw] instance_tags
|
342
397
|
# @return [::Array<::String>]
|
343
398
|
# Instance tags of the route.
|
399
|
+
# @!attribute [rw] src_ip_range
|
400
|
+
# @return [::String]
|
401
|
+
# Source IP address range of the route. Policy based routes only.
|
402
|
+
# @!attribute [rw] dest_port_ranges
|
403
|
+
# @return [::Array<::String>]
|
404
|
+
# Destination port ranges of the route. Policy based routes only.
|
405
|
+
# @!attribute [rw] src_port_ranges
|
406
|
+
# @return [::Array<::String>]
|
407
|
+
# Source port ranges of the route. Policy based routes only.
|
408
|
+
# @!attribute [rw] protocols
|
409
|
+
# @return [::Array<::String>]
|
410
|
+
# Protocols of the route. Policy based routes only.
|
411
|
+
# @!attribute [rw] ncc_hub_uri
|
412
|
+
# @return [::String]
|
413
|
+
# URI of a NCC Hub. NCC_HUB routes only.
|
414
|
+
# @!attribute [rw] ncc_spoke_uri
|
415
|
+
# @return [::String]
|
416
|
+
# URI of a NCC Spoke. NCC_HUB routes only.
|
344
417
|
class RouteInfo
|
345
418
|
include ::Google::Protobuf::MessageExts
|
346
419
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -368,6 +441,9 @@ module Google
|
|
368
441
|
|
369
442
|
# A dynamic route received from peering network.
|
370
443
|
PEERING_DYNAMIC = 6
|
444
|
+
|
445
|
+
# Policy based route.
|
446
|
+
POLICY_BASED = 7
|
371
447
|
end
|
372
448
|
|
373
449
|
# Type of next hop:
|
@@ -413,6 +489,59 @@ module Google
|
|
413
489
|
# [router appliance
|
414
490
|
# instance](https://cloud.google.com/network-connectivity/docs/network-connectivity-center/concepts/ra-overview).
|
415
491
|
NEXT_HOP_ROUTER_APPLIANCE = 11
|
492
|
+
|
493
|
+
# Next hop is an NCC hub.
|
494
|
+
NEXT_HOP_NCC_HUB = 12
|
495
|
+
end
|
496
|
+
|
497
|
+
# Indicates where routes are applicable.
|
498
|
+
module RouteScope
|
499
|
+
# Unspecified scope. Default value.
|
500
|
+
ROUTE_SCOPE_UNSPECIFIED = 0
|
501
|
+
|
502
|
+
# Route is applicable to packets in Network.
|
503
|
+
NETWORK = 1
|
504
|
+
|
505
|
+
# Route is applicable to packets using NCC Hub's routing table.
|
506
|
+
NCC_HUB = 2
|
507
|
+
end
|
508
|
+
end
|
509
|
+
|
510
|
+
# For display only. Details of a Google Service sending packets to a
|
511
|
+
# VPC network. Although the source IP might be a publicly routable address,
|
512
|
+
# some Google Services use special routes within Google production
|
513
|
+
# infrastructure to reach Compute Engine Instances.
|
514
|
+
# https://cloud.google.com/vpc/docs/routes#special_return_paths
|
515
|
+
# @!attribute [rw] source_ip
|
516
|
+
# @return [::String]
|
517
|
+
# Source IP address.
|
518
|
+
# @!attribute [rw] google_service_type
|
519
|
+
# @return [::Google::Cloud::NetworkManagement::V1::GoogleServiceInfo::GoogleServiceType]
|
520
|
+
# Recognized type of a Google Service.
|
521
|
+
class GoogleServiceInfo
|
522
|
+
include ::Google::Protobuf::MessageExts
|
523
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
524
|
+
|
525
|
+
# Recognized type of a Google Service.
|
526
|
+
module GoogleServiceType
|
527
|
+
# Unspecified Google Service. Includes most of Google APIs and services.
|
528
|
+
GOOGLE_SERVICE_TYPE_UNSPECIFIED = 0
|
529
|
+
|
530
|
+
# Identity aware proxy.
|
531
|
+
# https://cloud.google.com/iap/docs/using-tcp-forwarding
|
532
|
+
IAP = 1
|
533
|
+
|
534
|
+
# One of two services sharing IP ranges:
|
535
|
+
# * Load Balancer proxy
|
536
|
+
# * Centralized Health Check prober
|
537
|
+
# https://cloud.google.com/load-balancing/docs/firewall-rules
|
538
|
+
GFE_PROXY_OR_HEALTH_CHECK_PROBER = 2
|
539
|
+
|
540
|
+
# Connectivity from Cloud DNS to forwarding targets or alternate name
|
541
|
+
# servers that use private routing.
|
542
|
+
# https://cloud.google.com/dns/docs/zones/forwarding-zones#firewall-rules
|
543
|
+
# https://cloud.google.com/dns/docs/policies#firewall-rules
|
544
|
+
CLOUD_DNS = 3
|
416
545
|
end
|
417
546
|
end
|
418
547
|
|
@@ -494,6 +623,9 @@ module Google
|
|
494
623
|
|
495
624
|
# Target Pool as the load balancer's backend.
|
496
625
|
TARGET_POOL = 2
|
626
|
+
|
627
|
+
# Target Instance as the load balancer's backend.
|
628
|
+
TARGET_INSTANCE = 3
|
497
629
|
end
|
498
630
|
end
|
499
631
|
|
@@ -634,6 +766,9 @@ module Google
|
|
634
766
|
# @!attribute [rw] destination_network_uri
|
635
767
|
# @return [::String]
|
636
768
|
# URI of the network where this packet is sent to.
|
769
|
+
# @!attribute [rw] source_agent_uri
|
770
|
+
# @return [::String]
|
771
|
+
# URI of the source telemetry agent this packet originates from.
|
637
772
|
class EndpointInfo
|
638
773
|
include ::Google::Protobuf::MessageExts
|
639
774
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -669,6 +804,21 @@ module Google
|
|
669
804
|
|
670
805
|
# Target is a Cloud SQL instance.
|
671
806
|
CLOUD_SQL_INSTANCE = 5
|
807
|
+
|
808
|
+
# Target is a published service that uses [Private Service
|
809
|
+
# Connect](https://cloud.google.com/vpc/docs/configure-private-service-connect-services).
|
810
|
+
PSC_PUBLISHED_SERVICE = 6
|
811
|
+
|
812
|
+
# Target is all Google APIs that use [Private Service
|
813
|
+
# Connect](https://cloud.google.com/vpc/docs/configure-private-service-connect-apis).
|
814
|
+
PSC_GOOGLE_API = 7
|
815
|
+
|
816
|
+
# Target is a VPC-SC that uses [Private Service
|
817
|
+
# Connect](https://cloud.google.com/vpc/docs/configure-private-service-connect-apis).
|
818
|
+
PSC_VPC_SC = 8
|
819
|
+
|
820
|
+
# Target is a serverless network endpoint group.
|
821
|
+
SERVERLESS_NEG = 9
|
672
822
|
end
|
673
823
|
end
|
674
824
|
|
@@ -705,6 +855,12 @@ module Google
|
|
705
855
|
|
706
856
|
# Forwarded to a Cloud SQL instance.
|
707
857
|
CLOUD_SQL_INSTANCE = 6
|
858
|
+
|
859
|
+
# Forwarded to a VPC network in another project.
|
860
|
+
ANOTHER_PROJECT = 7
|
861
|
+
|
862
|
+
# Forwarded to an NCC Hub.
|
863
|
+
NCC_HUB = 8
|
708
864
|
end
|
709
865
|
end
|
710
866
|
|
@@ -788,6 +944,30 @@ module Google
|
|
788
944
|
|
789
945
|
# Aborted because the test scenario is not supported.
|
790
946
|
UNSUPPORTED = 15
|
947
|
+
|
948
|
+
# Aborted because the source and destination resources have no common IP
|
949
|
+
# version.
|
950
|
+
MISMATCHED_IP_VERSION = 16
|
951
|
+
|
952
|
+
# Aborted because the connection between the control plane and the node of
|
953
|
+
# the source cluster is initiated by the node and managed by the
|
954
|
+
# Konnectivity proxy.
|
955
|
+
GKE_KONNECTIVITY_PROXY_UNSUPPORTED = 17
|
956
|
+
|
957
|
+
# Aborted because expected resource configuration was missing.
|
958
|
+
RESOURCE_CONFIG_NOT_FOUND = 18
|
959
|
+
|
960
|
+
# Aborted because a PSC endpoint selection for the Google-managed service
|
961
|
+
# is ambiguous (several PSC endpoints satisfy test input).
|
962
|
+
GOOGLE_MANAGED_SERVICE_AMBIGUOUS_PSC_ENDPOINT = 19
|
963
|
+
|
964
|
+
# Aborted because tests with a PSC-based Cloud SQL instance as a source are
|
965
|
+
# not supported.
|
966
|
+
SOURCE_PSC_CLOUD_SQL_UNSUPPORTED = 20
|
967
|
+
|
968
|
+
# Aborted because tests with a forwarding rule as a source are not
|
969
|
+
# supported.
|
970
|
+
SOURCE_FORWARDING_RULE_UNSUPPORTED = 21
|
791
971
|
end
|
792
972
|
end
|
793
973
|
|
@@ -852,6 +1032,10 @@ module Google
|
|
852
1032
|
# Forwarding rule's protocol and ports do not match the packet header.
|
853
1033
|
FORWARDING_RULE_MISMATCH = 11
|
854
1034
|
|
1035
|
+
# Packet could be dropped because it was sent from a different region
|
1036
|
+
# to a regional forwarding without global access.
|
1037
|
+
FORWARDING_RULE_REGION_MISMATCH = 25
|
1038
|
+
|
855
1039
|
# Forwarding rule does not have backends configured.
|
856
1040
|
FORWARDING_RULE_NO_INSTANCES = 12
|
857
1041
|
|
@@ -865,6 +1049,12 @@ module Google
|
|
865
1049
|
# running state.
|
866
1050
|
INSTANCE_NOT_RUNNING = 14
|
867
1051
|
|
1052
|
+
# Packet sent from or to a GKE cluster that is not in running state.
|
1053
|
+
GKE_CLUSTER_NOT_RUNNING = 27
|
1054
|
+
|
1055
|
+
# Packet sent from or to a Cloud SQL instance that is not in running state.
|
1056
|
+
CLOUD_SQL_INSTANCE_NOT_RUNNING = 28
|
1057
|
+
|
868
1058
|
# The type of traffic is blocked and the user cannot configure a firewall
|
869
1059
|
# rule to enable it. See [Always blocked
|
870
1060
|
# traffic](https://cloud.google.com/vpc/docs/firewalls#blockedtraffic) for
|
@@ -893,9 +1083,67 @@ module Google
|
|
893
1083
|
# network and the Google Managed Services Network.
|
894
1084
|
GOOGLE_MANAGED_SERVICE_NO_PEERING = 20
|
895
1085
|
|
1086
|
+
# Packet was dropped because the Google-managed service uses Private
|
1087
|
+
# Service Connect (PSC), but the PSC endpoint is not found in the project.
|
1088
|
+
GOOGLE_MANAGED_SERVICE_NO_PSC_ENDPOINT = 38
|
1089
|
+
|
1090
|
+
# Packet was dropped because the GKE cluster uses Private Service Connect
|
1091
|
+
# (PSC), but the PSC endpoint is not found in the project.
|
1092
|
+
GKE_PSC_ENDPOINT_MISSING = 36
|
1093
|
+
|
896
1094
|
# Packet was dropped because the Cloud SQL instance has neither a private
|
897
1095
|
# nor a public IP address.
|
898
1096
|
CLOUD_SQL_INSTANCE_NO_IP_ADDRESS = 21
|
1097
|
+
|
1098
|
+
# Packet was dropped because a GKE cluster private endpoint is
|
1099
|
+
# unreachable from a region different from the cluster's region.
|
1100
|
+
GKE_CONTROL_PLANE_REGION_MISMATCH = 30
|
1101
|
+
|
1102
|
+
# Packet sent from a public GKE cluster control plane to a private
|
1103
|
+
# IP address.
|
1104
|
+
PUBLIC_GKE_CONTROL_PLANE_TO_PRIVATE_DESTINATION = 31
|
1105
|
+
|
1106
|
+
# Packet was dropped because there is no route from a GKE cluster
|
1107
|
+
# control plane to a destination network.
|
1108
|
+
GKE_CONTROL_PLANE_NO_ROUTE = 32
|
1109
|
+
|
1110
|
+
# Packet sent from a Cloud SQL instance to an external IP address is not
|
1111
|
+
# allowed. The Cloud SQL instance is not configured to send packets to
|
1112
|
+
# external IP addresses.
|
1113
|
+
CLOUD_SQL_INSTANCE_NOT_CONFIGURED_FOR_EXTERNAL_TRAFFIC = 33
|
1114
|
+
|
1115
|
+
# Packet sent from a Cloud SQL instance with only a public IP address to a
|
1116
|
+
# private IP address.
|
1117
|
+
PUBLIC_CLOUD_SQL_INSTANCE_TO_PRIVATE_DESTINATION = 34
|
1118
|
+
|
1119
|
+
# Packet was dropped because there is no route from a Cloud SQL
|
1120
|
+
# instance to a destination network.
|
1121
|
+
CLOUD_SQL_INSTANCE_NO_ROUTE = 35
|
1122
|
+
|
1123
|
+
# Packet could be dropped because the Cloud Function is not in an active
|
1124
|
+
# status.
|
1125
|
+
CLOUD_FUNCTION_NOT_ACTIVE = 22
|
1126
|
+
|
1127
|
+
# Packet could be dropped because no VPC connector is set.
|
1128
|
+
VPC_CONNECTOR_NOT_SET = 23
|
1129
|
+
|
1130
|
+
# Packet could be dropped because the VPC connector is not in a running
|
1131
|
+
# state.
|
1132
|
+
VPC_CONNECTOR_NOT_RUNNING = 24
|
1133
|
+
|
1134
|
+
# The Private Service Connect endpoint is in a project that is not approved
|
1135
|
+
# to connect to the service.
|
1136
|
+
PSC_CONNECTION_NOT_ACCEPTED = 26
|
1137
|
+
|
1138
|
+
# Packet sent from a Cloud Run revision that is not ready.
|
1139
|
+
CLOUD_RUN_REVISION_NOT_READY = 29
|
1140
|
+
|
1141
|
+
# Packet was dropped inside Private Service Connect service producer.
|
1142
|
+
DROPPED_INSIDE_PSC_SERVICE_PRODUCER = 37
|
1143
|
+
|
1144
|
+
# Packet sent to a load balancer, which requires a proxy-only subnet and
|
1145
|
+
# the subnet is not found.
|
1146
|
+
LOAD_BALANCER_HAS_NO_PROXY_SUBNET = 39
|
899
1147
|
end
|
900
1148
|
end
|
901
1149
|
|
@@ -942,6 +1190,114 @@ module Google
|
|
942
1190
|
include ::Google::Protobuf::MessageExts
|
943
1191
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
944
1192
|
end
|
1193
|
+
|
1194
|
+
# For display only. Metadata associated with a Cloud Function.
|
1195
|
+
# @!attribute [rw] display_name
|
1196
|
+
# @return [::String]
|
1197
|
+
# Name of a Cloud Function.
|
1198
|
+
# @!attribute [rw] uri
|
1199
|
+
# @return [::String]
|
1200
|
+
# URI of a Cloud Function.
|
1201
|
+
# @!attribute [rw] location
|
1202
|
+
# @return [::String]
|
1203
|
+
# Location in which the Cloud Function is deployed.
|
1204
|
+
# @!attribute [rw] version_id
|
1205
|
+
# @return [::Integer]
|
1206
|
+
# Latest successfully deployed version id of the Cloud Function.
|
1207
|
+
class CloudFunctionInfo
|
1208
|
+
include ::Google::Protobuf::MessageExts
|
1209
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1210
|
+
end
|
1211
|
+
|
1212
|
+
# For display only. Metadata associated with a Cloud Run revision.
|
1213
|
+
# @!attribute [rw] display_name
|
1214
|
+
# @return [::String]
|
1215
|
+
# Name of a Cloud Run revision.
|
1216
|
+
# @!attribute [rw] uri
|
1217
|
+
# @return [::String]
|
1218
|
+
# URI of a Cloud Run revision.
|
1219
|
+
# @!attribute [rw] location
|
1220
|
+
# @return [::String]
|
1221
|
+
# Location in which this revision is deployed.
|
1222
|
+
# @!attribute [rw] service_uri
|
1223
|
+
# @return [::String]
|
1224
|
+
# URI of Cloud Run service this revision belongs to.
|
1225
|
+
class CloudRunRevisionInfo
|
1226
|
+
include ::Google::Protobuf::MessageExts
|
1227
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1228
|
+
end
|
1229
|
+
|
1230
|
+
# For display only. Metadata associated with an App Engine version.
|
1231
|
+
# @!attribute [rw] display_name
|
1232
|
+
# @return [::String]
|
1233
|
+
# Name of an App Engine version.
|
1234
|
+
# @!attribute [rw] uri
|
1235
|
+
# @return [::String]
|
1236
|
+
# URI of an App Engine version.
|
1237
|
+
# @!attribute [rw] runtime
|
1238
|
+
# @return [::String]
|
1239
|
+
# Runtime of the App Engine version.
|
1240
|
+
# @!attribute [rw] environment
|
1241
|
+
# @return [::String]
|
1242
|
+
# App Engine execution environment for a version.
|
1243
|
+
class AppEngineVersionInfo
|
1244
|
+
include ::Google::Protobuf::MessageExts
|
1245
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1246
|
+
end
|
1247
|
+
|
1248
|
+
# For display only. Metadata associated with a VPC connector.
|
1249
|
+
# @!attribute [rw] display_name
|
1250
|
+
# @return [::String]
|
1251
|
+
# Name of a VPC connector.
|
1252
|
+
# @!attribute [rw] uri
|
1253
|
+
# @return [::String]
|
1254
|
+
# URI of a VPC connector.
|
1255
|
+
# @!attribute [rw] location
|
1256
|
+
# @return [::String]
|
1257
|
+
# Location in which the VPC connector is deployed.
|
1258
|
+
class VpcConnectorInfo
|
1259
|
+
include ::Google::Protobuf::MessageExts
|
1260
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1261
|
+
end
|
1262
|
+
|
1263
|
+
# Type of a load balancer. For more information, see [Summary of Google Cloud
|
1264
|
+
# load
|
1265
|
+
# balancers](https://cloud.google.com/load-balancing/docs/load-balancing-overview#summary-of-google-cloud-load-balancers).
|
1266
|
+
module LoadBalancerType
|
1267
|
+
# Forwarding rule points to a different target than a load balancer or a
|
1268
|
+
# load balancer type is unknown.
|
1269
|
+
LOAD_BALANCER_TYPE_UNSPECIFIED = 0
|
1270
|
+
|
1271
|
+
# Global external HTTP(S) load balancer.
|
1272
|
+
HTTPS_ADVANCED_LOAD_BALANCER = 1
|
1273
|
+
|
1274
|
+
# Global external HTTP(S) load balancer (classic)
|
1275
|
+
HTTPS_LOAD_BALANCER = 2
|
1276
|
+
|
1277
|
+
# Regional external HTTP(S) load balancer.
|
1278
|
+
REGIONAL_HTTPS_LOAD_BALANCER = 3
|
1279
|
+
|
1280
|
+
# Internal HTTP(S) load balancer.
|
1281
|
+
INTERNAL_HTTPS_LOAD_BALANCER = 4
|
1282
|
+
|
1283
|
+
# External SSL proxy load balancer.
|
1284
|
+
SSL_PROXY_LOAD_BALANCER = 5
|
1285
|
+
|
1286
|
+
# External TCP proxy load balancer.
|
1287
|
+
TCP_PROXY_LOAD_BALANCER = 6
|
1288
|
+
|
1289
|
+
# Internal regional TCP proxy load balancer.
|
1290
|
+
INTERNAL_TCP_PROXY_LOAD_BALANCER = 7
|
1291
|
+
|
1292
|
+
# External TCP/UDP Network load balancer.
|
1293
|
+
NETWORK_LOAD_BALANCER = 8
|
1294
|
+
|
1295
|
+
# Target-pool based external TCP/UDP Network load balancer.
|
1296
|
+
LEGACY_NETWORK_LOAD_BALANCER = 9
|
1297
|
+
|
1298
|
+
# Internal TCP/UDP load balancer.
|
1299
|
+
TCP_UDP_INTERNAL_LOAD_BALANCER = 10
|
1300
|
+
end
|
945
1301
|
end
|
946
1302
|
end
|
947
1303
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-network_management-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.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-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.20.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.20.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -221,7 +221,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
221
221
|
- !ruby/object:Gem::Version
|
222
222
|
version: '0'
|
223
223
|
requirements: []
|
224
|
-
rubygems_version: 3.4.
|
224
|
+
rubygems_version: 3.4.19
|
225
225
|
signing_key:
|
226
226
|
specification_version: 4
|
227
227
|
summary: The Network Management API provides a collection of network performance monitoring
|