google-cloud-network_management-v1 0.12.0 → 0.14.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fa79ee48e55f94de0ab2be066e4d7512327c58e2d54fbffbc88d181dd013cfdd
4
- data.tar.gz: b15ca12bf97c2219307c99527f4ff407128839f04e6b7f6a88f278fb19d4f2e4
3
+ metadata.gz: 2e26a3c567dc1e278e7e5820c23965860db98b9d9fb936ad8c904352c218acc1
4
+ data.tar.gz: edb4c211bd6ace2a28af685dbfc791ac1d9535a4ef9b6676fccdf60c068352f2
5
5
  SHA512:
6
- metadata.gz: e7d1fde518c68edb1a7199e1b2d48ec6a22bb39312110571bfc664de0be2916080065fb1d872770f94501fc15079ef560eca0f5def9949b6076ed8f47895a719
7
- data.tar.gz: a838af74aca2d160adeceda2ab3b6c313807b1862ee4b6f56afee1fa4c919067222f042eeb4c55bc470cb6bafb92ac6a1d105ef4d4f17b64e222bff7b0f9d926
6
+ metadata.gz: b5768f956237955d596fb5727c3e7d5e4758cf4b606d24401c34dd380c6583dbbe8feba4bacc48cfdea8eca248d6585c093d335245b0eed78fc5eb9ab0bd281d
7
+ data.tar.gz: 66125b71ccd3148b4fd32fe96226638815e5a17e2f53c040a1595a3b87c2926b5045fed6c11d20d6374e2005cd75f9d29d6c33c955dba0aade899fb88a76dbe5
@@ -0,0 +1,135 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2024 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "gapic/config"
20
+
21
+ module Google
22
+ module Cloud
23
+ module NetworkManagement
24
+ ##
25
+ # @example Loading just the REST part of this package, including all its services, and instantiating a REST client
26
+ #
27
+ # require "google/cloud/network_management/v1/rest"
28
+ # client = ::Google::Cloud::NetworkManagement::V1::ReachabilityService::Rest::Client.new
29
+ #
30
+ module V1
31
+ ##
32
+ # @private
33
+ # Initialize the mixin bindings configuration
34
+ #
35
+ def self.configure
36
+ @configure ||= begin
37
+ namespace = ["Google", "Cloud", "NetworkManagement"]
38
+ parent_config = while namespace.any?
39
+ parent_name = namespace.join "::"
40
+ parent_const = const_get parent_name
41
+ break parent_const.configure if parent_const.respond_to? :configure
42
+ namespace.pop
43
+ end
44
+
45
+ default_config = Configuration.new parent_config
46
+ default_config.bindings_override["google.cloud.location.Locations.GetLocation"] = [
47
+ Gapic::Rest::GrpcTranscoder::HttpBinding.create_with_validation(
48
+ uri_method: :get,
49
+ uri_template: "/v1/{name}",
50
+ matches: [
51
+ ["name", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
52
+ ],
53
+ body: nil
54
+ )
55
+ ]
56
+ default_config.bindings_override["google.cloud.location.Locations.ListLocations"] = [
57
+
58
+ Gapic::Rest::GrpcTranscoder::HttpBinding.create_with_validation(
59
+ uri_method: :get,
60
+ uri_template: "/v1/{name}/locations",
61
+ matches: [
62
+ ["name", %r{^projects/[^/]+/?$}, false]
63
+ ],
64
+ body: nil
65
+ )
66
+ ]
67
+ default_config.bindings_override["google.iam.v1.IAMPolicy.GetIamPolicy"] = [
68
+
69
+ Gapic::Rest::GrpcTranscoder::HttpBinding.create_with_validation(
70
+ uri_method: :get,
71
+ uri_template: "/v1/{resource}:getIamPolicy",
72
+ matches: [
73
+ ["resource", %r{^projects/[^/]+/locations/global/connectivityTests/[^/]+/?$}, false]
74
+ ],
75
+ body: nil
76
+ )
77
+ ]
78
+ default_config.bindings_override["google.iam.v1.IAMPolicy.SetIamPolicy"] = [
79
+
80
+ Gapic::Rest::GrpcTranscoder::HttpBinding.create_with_validation(
81
+ uri_method: :post,
82
+ uri_template: "/v1/{resource}:setIamPolicy",
83
+ matches: [
84
+ ["resource", %r{^projects/[^/]+/locations/global/connectivityTests/[^/]+/?$}, false]
85
+ ],
86
+ body: "*"
87
+ )
88
+ ]
89
+ default_config.bindings_override["google.iam.v1.IAMPolicy.TestIamPermissions"] = [
90
+
91
+ Gapic::Rest::GrpcTranscoder::HttpBinding.create_with_validation(
92
+ uri_method: :post,
93
+ uri_template: "/v1/{resource}:testIamPermissions",
94
+ matches: [
95
+ ["resource", %r{^projects/[^/]+/locations/global/connectivityTests/[^/]+/?$}, false]
96
+ ],
97
+ body: "*"
98
+ )
99
+ ]
100
+ default_config
101
+ end
102
+ yield @configure if block_given?
103
+ @configure
104
+ end
105
+
106
+ ##
107
+ # @private
108
+ # Configuration class for the google.cloud.networkmanagement.v1 package.
109
+ #
110
+ # This class contains common configuration for all services
111
+ # of the google.cloud.networkmanagement.v1 package.
112
+ #
113
+ # This configuration is for internal use of the client library classes,
114
+ # and it is not intended that the end-users will read or change it.
115
+ #
116
+ class Configuration
117
+ extend ::Gapic::Config
118
+
119
+ # @private
120
+ # Overrides for http bindings for the RPC of the mixins for this package.
121
+ # Services in this package should use these when creating clients for the mixin services.
122
+ # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}]
123
+ config_attr :bindings_override, {}, ::Hash, nil
124
+
125
+ # @private
126
+ def initialize parent_config = nil
127
+ @parent_config = parent_config unless parent_config.nil?
128
+
129
+ yield self if block_given?
130
+ end
131
+ end
132
+ end
133
+ end
134
+ end
135
+ end
@@ -18,6 +18,8 @@
18
18
 
19
19
  require "google/cloud/errors"
20
20
  require "google/cloud/networkmanagement/v1/reachability_pb"
21
+ require "google/cloud/location"
22
+ require "google/iam/v1"
21
23
 
22
24
  module Google
23
25
  module Cloud
@@ -172,6 +174,20 @@ module Google
172
174
  interceptors: @config.interceptors,
173
175
  channel_pool_config: @config.channel_pool
174
176
  )
177
+
178
+ @location_client = Google::Cloud::Location::Locations::Client.new do |config|
179
+ config.credentials = credentials
180
+ config.quota_project = @quota_project_id
181
+ config.endpoint = @reachability_service_stub.endpoint
182
+ config.universe_domain = @reachability_service_stub.universe_domain
183
+ end
184
+
185
+ @iam_policy_client = Google::Iam::V1::IAMPolicy::Client.new do |config|
186
+ config.credentials = credentials
187
+ config.quota_project = @quota_project_id
188
+ config.endpoint = @reachability_service_stub.endpoint
189
+ config.universe_domain = @reachability_service_stub.universe_domain
190
+ end
175
191
  end
176
192
 
177
193
  ##
@@ -181,6 +197,20 @@ module Google
181
197
  #
182
198
  attr_reader :operations_client
183
199
 
200
+ ##
201
+ # Get the associated client for mix-in of the Locations.
202
+ #
203
+ # @return [Google::Cloud::Location::Locations::Client]
204
+ #
205
+ attr_reader :location_client
206
+
207
+ ##
208
+ # Get the associated client for mix-in of the IAMPolicy.
209
+ #
210
+ # @return [Google::Iam::V1::IAMPolicy::Client]
211
+ #
212
+ attr_reader :iam_policy_client
213
+
184
214
  # Service calls
185
215
 
186
216
  ##
@@ -19,6 +19,8 @@
19
19
  require "google/cloud/errors"
20
20
  require "google/cloud/networkmanagement/v1/reachability_pb"
21
21
  require "google/cloud/network_management/v1/reachability_service/rest/service_stub"
22
+ require "google/cloud/location/rest"
23
+ require "google/iam/v1/rest"
22
24
 
23
25
  module Google
24
26
  module Cloud
@@ -165,6 +167,22 @@ module Google
165
167
  universe_domain: @config.universe_domain,
166
168
  credentials: credentials
167
169
  )
170
+
171
+ @location_client = Google::Cloud::Location::Locations::Rest::Client.new do |config|
172
+ config.credentials = credentials
173
+ config.quota_project = @quota_project_id
174
+ config.endpoint = @reachability_service_stub.endpoint
175
+ config.universe_domain = @reachability_service_stub.universe_domain
176
+ config.bindings_override = @config.bindings_override
177
+ end
178
+
179
+ @iam_policy_client = Google::Iam::V1::IAMPolicy::Rest::Client.new do |config|
180
+ config.credentials = credentials
181
+ config.quota_project = @quota_project_id
182
+ config.endpoint = @reachability_service_stub.endpoint
183
+ config.universe_domain = @reachability_service_stub.universe_domain
184
+ config.bindings_override = @config.bindings_override
185
+ end
168
186
  end
169
187
 
170
188
  ##
@@ -174,6 +192,20 @@ module Google
174
192
  #
175
193
  attr_reader :operations_client
176
194
 
195
+ ##
196
+ # Get the associated client for mix-in of the Locations.
197
+ #
198
+ # @return [Google::Cloud::Location::Locations::Rest::Client]
199
+ #
200
+ attr_reader :location_client
201
+
202
+ ##
203
+ # Get the associated client for mix-in of the IAMPolicy.
204
+ #
205
+ # @return [Google::Iam::V1::IAMPolicy::Rest::Client]
206
+ #
207
+ attr_reader :iam_policy_client
208
+
177
209
  # Service calls
178
210
 
179
211
  ##
@@ -856,6 +888,13 @@ module Google
856
888
  config_attr :quota_project, nil, ::String, nil
857
889
  config_attr :universe_domain, nil, ::String, nil
858
890
 
891
+ # @private
892
+ # Overrides for http bindings for the RPCs of this service
893
+ # are only used when this service is used as mixin, and only
894
+ # by the host service.
895
+ # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}]
896
+ config_attr :bindings_override, {}, ::Hash, nil
897
+
859
898
  # @private
860
899
  def initialize parent_config = nil
861
900
  @parent_config = parent_config unless parent_config.nil?
@@ -21,6 +21,7 @@ require "gapic/config"
21
21
  require "gapic/config/method"
22
22
 
23
23
  require "google/cloud/network_management/v1/version"
24
+ require "google/cloud/network_management/v1/bindings_override"
24
25
 
25
26
  require "google/cloud/network_management/v1/reachability_service/credentials"
26
27
  require "google/cloud/network_management/v1/reachability_service/paths"
@@ -17,6 +17,7 @@
17
17
  # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
18
 
19
19
  require "google/cloud/network_management/v1/reachability_service/rest"
20
+ require "google/cloud/network_management/v1/bindings_override"
20
21
  require "google/cloud/network_management/v1/version"
21
22
 
22
23
  module Google
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module NetworkManagement
23
23
  module V1
24
- VERSION = "0.12.0"
24
+ VERSION = "0.14.0"
25
25
  end
26
26
  end
27
27
  end
@@ -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\"\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"
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\"\xb8\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\x12\x1e\n\x16\x62ypass_firewall_checks\x18\x11 \x01(\x08\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
 
@@ -7,13 +7,15 @@ require 'google/protobuf'
7
7
  require 'google/api/annotations_pb'
8
8
  require 'google/api/client_pb'
9
9
  require 'google/api/field_behavior_pb'
10
+ require 'google/api/resource_pb'
10
11
  require 'google/cloud/networkmanagement/v1/connectivity_test_pb'
11
12
  require 'google/longrunning/operations_pb'
13
+ require 'google/protobuf/empty_pb'
12
14
  require 'google/protobuf/field_mask_pb'
13
15
  require 'google/protobuf/timestamp_pb'
14
16
 
15
17
 
16
- descriptor_data = "\n4google/cloud/networkmanagement/v1/reachability.proto\x12!google.cloud.networkmanagement.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x39google/cloud/networkmanagement/v1/connectivity_test.proto\x1a#google/longrunning/operations.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"|\n\x1cListConnectivityTestsRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"\x95\x01\n\x1dListConnectivityTestsResponse\x12\x46\n\tresources\x18\x01 \x03(\x0b\x32\x33.google.cloud.networkmanagement.v1.ConnectivityTest\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"/\n\x1aGetConnectivityTestRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\"\x96\x01\n\x1d\x43reateConnectivityTestRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x14\n\x07test_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12J\n\x08resource\x18\x03 \x01(\x0b\x32\x33.google.cloud.networkmanagement.v1.ConnectivityTestB\x03\xe0\x41\x02\"\xa1\x01\n\x1dUpdateConnectivityTestRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12J\n\x08resource\x18\x02 \x01(\x0b\x32\x33.google.cloud.networkmanagement.v1.ConnectivityTestB\x03\xe0\x41\x02\"2\n\x1d\x44\x65leteConnectivityTestRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\"1\n\x1cRerunConnectivityTestRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\"\xd6\x01\n\x11OperationMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0e\n\x06target\x18\x03 \x01(\t\x12\x0c\n\x04verb\x18\x04 \x01(\t\x12\x15\n\rstatus_detail\x18\x05 \x01(\t\x12\x18\n\x10\x63\x61ncel_requested\x18\x06 \x01(\x08\x12\x13\n\x0b\x61pi_version\x18\x07 \x01(\t2\x96\r\n\x13ReachabilityService\x12\xe7\x01\n\x15ListConnectivityTests\x12?.google.cloud.networkmanagement.v1.ListConnectivityTestsRequest\x1a@.google.cloud.networkmanagement.v1.ListConnectivityTestsResponse\"K\xda\x41\x06parent\x82\xd3\xe4\x93\x02<\x12:/v1/{parent=projects/*/locations/global}/connectivityTests\x12\xd4\x01\n\x13GetConnectivityTest\x12=.google.cloud.networkmanagement.v1.GetConnectivityTestRequest\x1a\x33.google.cloud.networkmanagement.v1.ConnectivityTest\"I\xda\x41\x04name\x82\xd3\xe4\x93\x02<\x12:/v1/{name=projects/*/locations/global/connectivityTests/*}\x12\xac\x02\n\x16\x43reateConnectivityTest\x12@.google.cloud.networkmanagement.v1.CreateConnectivityTestRequest\x1a\x1d.google.longrunning.Operation\"\xb0\x01\xca\x41G\n2google.cloud.networkmanagement.v1.ConnectivityTest\x12\x11OperationMetadata\xda\x41\x17parent,test_id,resource\x82\xd3\xe4\x93\x02\x46\":/v1/{parent=projects/*/locations/global}/connectivityTests:\x08resource\x12\xb2\x02\n\x16UpdateConnectivityTest\x12@.google.cloud.networkmanagement.v1.UpdateConnectivityTestRequest\x1a\x1d.google.longrunning.Operation\"\xb6\x01\xca\x41G\n2google.cloud.networkmanagement.v1.ConnectivityTest\x12\x11OperationMetadata\xda\x41\x14update_mask,resource\x82\xd3\xe4\x93\x02O2C/v1/{resource.name=projects/*/locations/global/connectivityTests/*}:\x08resource\x12\x8f\x02\n\x15RerunConnectivityTest\x12?.google.cloud.networkmanagement.v1.RerunConnectivityTestRequest\x1a\x1d.google.longrunning.Operation\"\x95\x01\xca\x41G\n2google.cloud.networkmanagement.v1.ConnectivityTest\x12\x11OperationMetadata\x82\xd3\xe4\x93\x02\x45\"@/v1/{name=projects/*/locations/global/connectivityTests/*}:rerun:\x01*\x12\xf1\x01\n\x16\x44\x65leteConnectivityTest\x12@.google.cloud.networkmanagement.v1.DeleteConnectivityTestRequest\x1a\x1d.google.longrunning.Operation\"v\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02<*:/v1/{name=projects/*/locations/global/connectivityTests/*}\x1aT\xca\x41 networkmanagement.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\x87\x02\n%com.google.cloud.networkmanagement.v1B\x18ReachabilityServiceProtoP\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"
18
+ descriptor_data = "\n4google/cloud/networkmanagement/v1/reachability.proto\x12!google.cloud.networkmanagement.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x39google/cloud/networkmanagement/v1/connectivity_test.proto\x1a#google/longrunning/operations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"|\n\x1cListConnectivityTestsRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"\x95\x01\n\x1dListConnectivityTestsResponse\x12\x46\n\tresources\x18\x01 \x03(\x0b\x32\x33.google.cloud.networkmanagement.v1.ConnectivityTest\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"/\n\x1aGetConnectivityTestRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\"\x96\x01\n\x1d\x43reateConnectivityTestRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x14\n\x07test_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12J\n\x08resource\x18\x03 \x01(\x0b\x32\x33.google.cloud.networkmanagement.v1.ConnectivityTestB\x03\xe0\x41\x02\"\xa1\x01\n\x1dUpdateConnectivityTestRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12J\n\x08resource\x18\x02 \x01(\x0b\x32\x33.google.cloud.networkmanagement.v1.ConnectivityTestB\x03\xe0\x41\x02\"2\n\x1d\x44\x65leteConnectivityTestRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\"1\n\x1cRerunConnectivityTestRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\"\xd6\x01\n\x11OperationMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0e\n\x06target\x18\x03 \x01(\t\x12\x0c\n\x04verb\x18\x04 \x01(\t\x12\x15\n\rstatus_detail\x18\x05 \x01(\t\x12\x18\n\x10\x63\x61ncel_requested\x18\x06 \x01(\x08\x12\x13\n\x0b\x61pi_version\x18\x07 \x01(\t2\x96\r\n\x13ReachabilityService\x12\xe7\x01\n\x15ListConnectivityTests\x12?.google.cloud.networkmanagement.v1.ListConnectivityTestsRequest\x1a@.google.cloud.networkmanagement.v1.ListConnectivityTestsResponse\"K\xda\x41\x06parent\x82\xd3\xe4\x93\x02<\x12:/v1/{parent=projects/*/locations/global}/connectivityTests\x12\xd4\x01\n\x13GetConnectivityTest\x12=.google.cloud.networkmanagement.v1.GetConnectivityTestRequest\x1a\x33.google.cloud.networkmanagement.v1.ConnectivityTest\"I\xda\x41\x04name\x82\xd3\xe4\x93\x02<\x12:/v1/{name=projects/*/locations/global/connectivityTests/*}\x12\xac\x02\n\x16\x43reateConnectivityTest\x12@.google.cloud.networkmanagement.v1.CreateConnectivityTestRequest\x1a\x1d.google.longrunning.Operation\"\xb0\x01\xca\x41G\n2google.cloud.networkmanagement.v1.ConnectivityTest\x12\x11OperationMetadata\xda\x41\x17parent,test_id,resource\x82\xd3\xe4\x93\x02\x46\":/v1/{parent=projects/*/locations/global}/connectivityTests:\x08resource\x12\xb2\x02\n\x16UpdateConnectivityTest\x12@.google.cloud.networkmanagement.v1.UpdateConnectivityTestRequest\x1a\x1d.google.longrunning.Operation\"\xb6\x01\xca\x41G\n2google.cloud.networkmanagement.v1.ConnectivityTest\x12\x11OperationMetadata\xda\x41\x14update_mask,resource\x82\xd3\xe4\x93\x02O2C/v1/{resource.name=projects/*/locations/global/connectivityTests/*}:\x08resource\x12\x8f\x02\n\x15RerunConnectivityTest\x12?.google.cloud.networkmanagement.v1.RerunConnectivityTestRequest\x1a\x1d.google.longrunning.Operation\"\x95\x01\xca\x41G\n2google.cloud.networkmanagement.v1.ConnectivityTest\x12\x11OperationMetadata\x82\xd3\xe4\x93\x02\x45\"@/v1/{name=projects/*/locations/global/connectivityTests/*}:rerun:\x01*\x12\xf1\x01\n\x16\x44\x65leteConnectivityTest\x12@.google.cloud.networkmanagement.v1.DeleteConnectivityTestRequest\x1a\x1d.google.longrunning.Operation\"v\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02<*:/v1/{name=projects/*/locations/global/connectivityTests/*}\x1aT\xca\x41 networkmanagement.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\x87\x02\n%com.google.cloud.networkmanagement.v1B\x18ReachabilityServiceProtoP\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"
17
19
 
18
20
  pool = Google::Protobuf::DescriptorPool.generated_pool
19
21
 
@@ -5,9 +5,10 @@
5
5
  require 'google/protobuf'
6
6
 
7
7
  require 'google/api/field_behavior_pb'
8
+ require 'google/api/field_info_pb'
8
9
 
9
10
 
10
- descriptor_data = "\n-google/cloud/networkmanagement/v1/trace.proto\x12!google.cloud.networkmanagement.v1\x1a\x1fgoogle/api/field_behavior.proto\"\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\"\x8f\x15\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\x12\x39\n\x03nat\x18\x19 \x01(\x0b\x32*.google.cloud.networkmanagement.v1.NatInfoH\x00\x12R\n\x10proxy_connection\x18\x1a \x01(\x0b\x32\x36.google.cloud.networkmanagement.v1.ProxyConnectionInfoH\x00\x12`\n\x1aload_balancer_backend_info\x18\x1b \x01(\x0b\x32:.google.cloud.networkmanagement.v1.LoadBalancerBackendInfoH\x00\x12N\n\x0estorage_bucket\x18\x1c \x01(\x0b\x32\x34.google.cloud.networkmanagement.v1.StorageBucketInfoH\x00\"\xfc\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!\n\x1d\x41NALYZE_LOAD_BALANCER_BACKEND\x10\x1c\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\"\xc8\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\"\xdb\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\x12\x12\n\x0eSTORAGE_BUCKET\x10\n\"\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\"\xef\x03\n\x07NatInfo\x12=\n\x04type\x18\x01 \x01(\x0e\x32/.google.cloud.networkmanagement.v1.NatInfo.Type\x12\x10\n\x08protocol\x18\x02 \x01(\t\x12\x13\n\x0bnetwork_uri\x18\x03 \x01(\t\x12\x15\n\rold_source_ip\x18\x04 \x01(\t\x12\x15\n\rnew_source_ip\x18\x05 \x01(\t\x12\x1a\n\x12old_destination_ip\x18\x06 \x01(\t\x12\x1a\n\x12new_destination_ip\x18\x07 \x01(\t\x12\x17\n\x0fold_source_port\x18\x08 \x01(\x05\x12\x17\n\x0fnew_source_port\x18\t \x01(\x05\x12\x1c\n\x14old_destination_port\x18\n \x01(\x05\x12\x1c\n\x14new_destination_port\x18\x0b \x01(\x05\x12\x12\n\nrouter_uri\x18\x0c \x01(\t\x12\x18\n\x10nat_gateway_name\x18\r \x01(\t\"|\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x18\n\x14INTERNAL_TO_EXTERNAL\x10\x01\x12\x18\n\x14\x45XTERNAL_TO_INTERNAL\x10\x02\x12\r\n\tCLOUD_NAT\x10\x03\x12\x1b\n\x17PRIVATE_SERVICE_CONNECT\x10\x04\"\xa4\x02\n\x13ProxyConnectionInfo\x12\x10\n\x08protocol\x18\x01 \x01(\t\x12\x15\n\rold_source_ip\x18\x02 \x01(\t\x12\x15\n\rnew_source_ip\x18\x03 \x01(\t\x12\x1a\n\x12old_destination_ip\x18\x04 \x01(\t\x12\x1a\n\x12new_destination_ip\x18\x05 \x01(\t\x12\x17\n\x0fold_source_port\x18\x06 \x01(\x05\x12\x17\n\x0fnew_source_port\x18\x07 \x01(\x05\x12\x1c\n\x14old_destination_port\x18\x08 \x01(\x05\x12\x1c\n\x14new_destination_port\x18\t \x01(\x05\x12\x12\n\nsubnet_uri\x18\n \x01(\t\x12\x13\n\x0bnetwork_uri\x18\x0b \x01(\t\"\xf2\x04\n\x17LoadBalancerBackendInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x14\n\x0cinstance_uri\x18\x02 \x01(\t\x12\x1b\n\x13\x62\x61\x63kend_service_uri\x18\x03 \x01(\t\x12\x1a\n\x12instance_group_uri\x18\x04 \x01(\t\x12\"\n\x1anetwork_endpoint_group_uri\x18\x05 \x01(\t\x12\x1a\n\x12\x62\x61\x63kend_bucket_uri\x18\x08 \x01(\t\x12\"\n\x1apsc_service_attachment_uri\x18\t \x01(\t\x12\x1d\n\x15psc_google_api_target\x18\n \x01(\t\x12\x18\n\x10health_check_uri\x18\x06 \x01(\t\x12\x8c\x01\n#health_check_firewalls_config_state\x18\x07 \x01(\x0e\x32Z.google.cloud.networkmanagement.v1.LoadBalancerBackendInfo.HealthCheckFirewallsConfigStateB\x03\xe0\x41\x03\"\xcd\x01\n\x1fHealthCheckFirewallsConfigState\x12\x33\n/HEALTH_CHECK_FIREWALLS_CONFIG_STATE_UNSPECIFIED\x10\x00\x12\x18\n\x14\x46IREWALLS_CONFIGURED\x10\x01\x12\"\n\x1e\x46IREWALLS_PARTIALLY_CONFIGURED\x10\x02\x12\x1c\n\x18\x46IREWALLS_NOT_CONFIGURED\x10\x03\x12\x19\n\x15\x46IREWALLS_UNSUPPORTED\x10\x04\"#\n\x11StorageBucketInfo\x12\x0e\n\x06\x62ucket\x18\x01 \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"
11
+ descriptor_data = "\n-google/cloud/networkmanagement/v1/trace.proto\x12!google.cloud.networkmanagement.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1bgoogle/api/field_info.proto\"\xa1\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\x12\x18\n\x10\x66orward_trace_id\x18\x04 \x01(\x05\"\xe0\x15\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\x12P\n\rload_balancer\x18\x10 \x01(\x0b\x32\x33.google.cloud.networkmanagement.v1.LoadBalancerInfoB\x02\x18\x01H\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\x12\x39\n\x03nat\x18\x19 \x01(\x0b\x32*.google.cloud.networkmanagement.v1.NatInfoH\x00\x12R\n\x10proxy_connection\x18\x1a \x01(\x0b\x32\x36.google.cloud.networkmanagement.v1.ProxyConnectionInfoH\x00\x12`\n\x1aload_balancer_backend_info\x18\x1b \x01(\x0b\x32:.google.cloud.networkmanagement.v1.LoadBalancerBackendInfoH\x00\x12N\n\x0estorage_bucket\x18\x1c \x01(\x0b\x32\x34.google.cloud.networkmanagement.v1.StorageBucketInfoH\x00\"\xc9\x06\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\x1d\n\x19START_FROM_STORAGE_BUCKET\x10\x1d\x12$\n START_FROM_PSC_PUBLISHED_SERVICE\x10\x1e\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!\n\x1d\x41NALYZE_LOAD_BALANCER_BACKEND\x10\x1c\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\x1a\x02\x08\x01\x12(\n ARRIVE_AT_EXTERNAL_LOAD_BALANCER\x10\x0b\x1a\x02\x08\x01\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\"\xed\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\"\xcb\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\x12$\n UNSUPPORTED_FIREWALL_POLICY_RULE\x10\x64\x12\x12\n\x0eTRACKING_STATE\x10\x65\"\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\"\xbf\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\"\xb1\x01\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\x12\x0e\n\nGOOGLE_API\x10\x04\x12\x12\n\x0eGOOGLE_API_PSC\x10\x05\x12\x15\n\x11GOOGLE_API_VPC_SC\x10\x06\"\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\"\xc2\x04\n\x10LoadBalancerInfo\x12`\n\x12load_balancer_type\x18\x01 \x01(\x0e\x32\x44.google.cloud.networkmanagement.v1.LoadBalancerInfo.LoadBalancerType\x12\x1c\n\x10health_check_uri\x18\x02 \x01(\tB\x02\x18\x01\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\"\xbf\x03\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\x12\x1c\n\nip_address\x18\x03 \x01(\tB\x08\xe2\x8c\xcf\xd7\x08\x02\x08\x04\"\xb4\x02\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\x12\x12\n\x0eSTORAGE_BUCKET\x10\n\x12\x13\n\x0fPRIVATE_NETWORK\x10\x0b\x12\x12\n\x0e\x43LOUD_FUNCTION\x10\x0c\x12\x16\n\x12\x41PP_ENGINE_VERSION\x10\r\x12\x16\n\x12\x43LOUD_RUN_REVISION\x10\x0e\"\xeb\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\x12\x1c\n\nip_address\x18\x03 \x01(\tB\x08\xe2\x8c\xcf\xd7\x08\x02\x08\x04\"\xe0\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\x12\n\nGKE_MASTER\x10\x04\x1a\x02\x08\x01\x12\"\n\x1eIMPORTED_CUSTOM_ROUTE_NEXT_HOP\x10\x05\x12\x1a\n\x12\x43LOUD_SQL_INSTANCE\x10\x06\x1a\x02\x08\x01\x12\x13\n\x0f\x41NOTHER_PROJECT\x10\x07\x12\x0b\n\x07NCC_HUB\x10\x08\x12\x14\n\x10ROUTER_APPLIANCE\x10\t\"\xb5\t\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\x1c\n\nip_address\x18\x04 \x01(\tB\x08\xe2\x8c\xcf\xd7\x08\x02\x08\x04\x12#\n\x1bprojects_missing_permission\x18\x03 \x03(\t\"\x8b\x08\n\x05\x43\x61use\x12\x15\n\x11\x43\x41USE_UNSPECIFIED\x10\x00\x12\x17\n\x0fUNKNOWN_NETWORK\x10\x01\x1a\x02\x08\x01\x12\x17\n\x0fUNKNOWN_PROJECT\x10\x03\x1a\x02\x08\x01\x12\x16\n\x0eNO_EXTERNAL_IP\x10\x07\x1a\x02\x08\x01\x12\x1e\n\x16UNINTENDED_DESTINATION\x10\x08\x1a\x02\x08\x01\x12!\n\x19SOURCE_ENDPOINT_NOT_FOUND\x10\x0b\x1a\x02\x08\x01\x12!\n\x19MISMATCHED_SOURCE_NETWORK\x10\x0c\x1a\x02\x08\x01\x12&\n\x1e\x44\x45STINATION_ENDPOINT_NOT_FOUND\x10\r\x1a\x02\x08\x01\x12&\n\x1eMISMATCHED_DESTINATION_NETWORK\x10\x0e\x1a\x02\x08\x01\x12\x0e\n\nUNKNOWN_IP\x10\x02\x12+\n\'SOURCE_IP_ADDRESS_NOT_IN_SOURCE_NETWORK\x10\x17\x12\x15\n\x11PERMISSION_DENIED\x10\x04\x12*\n&PERMISSION_DENIED_NO_CLOUD_NAT_CONFIGS\x10\x1c\x12-\n)PERMISSION_DENIED_NO_NEG_ENDPOINT_CONFIGS\x10\x1d\x12\x16\n\x12NO_SOURCE_LOCATION\x10\x05\x12\x14\n\x10INVALID_ARGUMENT\x10\x06\x12\x12\n\x0eTRACE_TOO_LONG\x10\t\x12\x12\n\x0eINTERNAL_ERROR\x10\n\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 \n\x1cVM_INSTANCE_CONFIG_NOT_FOUND\x10\x18\x12\x1c\n\x18NETWORK_CONFIG_NOT_FOUND\x10\x19\x12\x1d\n\x19\x46IREWALL_CONFIG_NOT_FOUND\x10\x1a\x12\x1a\n\x16ROUTE_CONFIG_NOT_FOUND\x10\x1b\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\x12\x1b\n\x17NON_ROUTABLE_IP_ADDRESS\x10\x16\x12+\n\'UNKNOWN_ISSUE_IN_GOOGLE_MANAGED_PROJECT\x10\x1e\x12-\n)UNSUPPORTED_GOOGLE_MANAGED_PROJECT_CONFIG\x10\x1f\"\xe3\x12\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\x12\x11\n\tsource_ip\x18\x03 \x01(\t\x12\x16\n\x0e\x64\x65stination_ip\x18\x04 \x01(\t\x12\x0e\n\x06region\x18\x05 \x01(\t\"\xc3\x11\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*\n&ROUTE_NEXT_HOP_IP_ADDRESS_NOT_RESOLVED\x10*\x12%\n!ROUTE_NEXT_HOP_RESOURCE_NOT_FOUND\x10+\x12)\n%ROUTE_NEXT_HOP_INSTANCE_WRONG_NETWORK\x10\x31\x12*\n&ROUTE_NEXT_HOP_INSTANCE_NON_PRIMARY_IP\x10\x32\x12.\n*ROUTE_NEXT_HOP_FORWARDING_RULE_IP_MISMATCH\x10\x33\x12-\n)ROUTE_NEXT_HOP_VPN_TUNNEL_NOT_ESTABLISHED\x10\x34\x12/\n+ROUTE_NEXT_HOP_FORWARDING_RULE_TYPE_INVALID\x10\x35\x12\x32\n.NO_ROUTE_FROM_INTERNET_TO_PRIVATE_IPV6_ADDRESS\x10,\x12&\n\"VPN_TUNNEL_LOCAL_SELECTOR_MISMATCH\x10-\x12\'\n#VPN_TUNNEL_REMOTE_SELECTOR_MISMATCH\x10.\x12\x1f\n\x1bPRIVATE_TRAFFIC_TO_INTERNET\x10\x07\x12$\n PRIVATE_GOOGLE_ACCESS_DISALLOWED\x10\x08\x12\x34\n0PRIVATE_GOOGLE_ACCESS_VIA_VPN_TUNNEL_UNSUPPORTED\x10/\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\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#\n\x1f\x46ORWARDING_RULE_REGION_MISMATCH\x10\x19\x12\x1f\n\x1bPSC_CONNECTION_NOT_ACCEPTED\x10\x1a\x12-\n)PSC_ENDPOINT_ACCESSED_FROM_PEERED_NETWORK\x10)\x12.\n*PSC_NEG_PRODUCER_ENDPOINT_NO_GLOBAL_ACCESS\x10\x30\x12\x33\n/PSC_NEG_PRODUCER_FORWARDING_RULE_MULTIPLE_PORTS\x10\x36\x12!\n\x1d\x43LOUD_SQL_PSC_NEG_UNSUPPORTED\x10:\x12-\n)NO_NAT_SUBNETS_FOR_PSC_SERVICE_ATTACHMENT\x10\x39\x12(\n$HYBRID_NEG_NON_DYNAMIC_ROUTE_MATCHED\x10\x37\x12.\n*HYBRID_NEG_NON_LOCAL_DYNAMIC_ROUTE_MATCHED\x10\x38\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\'\x12\x1a\n\x16\x43LOUD_NAT_NO_ADDRESSES\x10(\x12\x10\n\x0cROUTING_LOOP\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\"\xef\x03\n\x07NatInfo\x12=\n\x04type\x18\x01 \x01(\x0e\x32/.google.cloud.networkmanagement.v1.NatInfo.Type\x12\x10\n\x08protocol\x18\x02 \x01(\t\x12\x13\n\x0bnetwork_uri\x18\x03 \x01(\t\x12\x15\n\rold_source_ip\x18\x04 \x01(\t\x12\x15\n\rnew_source_ip\x18\x05 \x01(\t\x12\x1a\n\x12old_destination_ip\x18\x06 \x01(\t\x12\x1a\n\x12new_destination_ip\x18\x07 \x01(\t\x12\x17\n\x0fold_source_port\x18\x08 \x01(\x05\x12\x17\n\x0fnew_source_port\x18\t \x01(\x05\x12\x1c\n\x14old_destination_port\x18\n \x01(\x05\x12\x1c\n\x14new_destination_port\x18\x0b \x01(\x05\x12\x12\n\nrouter_uri\x18\x0c \x01(\t\x12\x18\n\x10nat_gateway_name\x18\r \x01(\t\"|\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x18\n\x14INTERNAL_TO_EXTERNAL\x10\x01\x12\x18\n\x14\x45XTERNAL_TO_INTERNAL\x10\x02\x12\r\n\tCLOUD_NAT\x10\x03\x12\x1b\n\x17PRIVATE_SERVICE_CONNECT\x10\x04\"\xa4\x02\n\x13ProxyConnectionInfo\x12\x10\n\x08protocol\x18\x01 \x01(\t\x12\x15\n\rold_source_ip\x18\x02 \x01(\t\x12\x15\n\rnew_source_ip\x18\x03 \x01(\t\x12\x1a\n\x12old_destination_ip\x18\x04 \x01(\t\x12\x1a\n\x12new_destination_ip\x18\x05 \x01(\t\x12\x17\n\x0fold_source_port\x18\x06 \x01(\x05\x12\x17\n\x0fnew_source_port\x18\x07 \x01(\x05\x12\x1c\n\x14old_destination_port\x18\x08 \x01(\x05\x12\x1c\n\x14new_destination_port\x18\t \x01(\x05\x12\x12\n\nsubnet_uri\x18\n \x01(\t\x12\x13\n\x0bnetwork_uri\x18\x0b \x01(\t\"\xf2\x04\n\x17LoadBalancerBackendInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x14\n\x0cinstance_uri\x18\x02 \x01(\t\x12\x1b\n\x13\x62\x61\x63kend_service_uri\x18\x03 \x01(\t\x12\x1a\n\x12instance_group_uri\x18\x04 \x01(\t\x12\"\n\x1anetwork_endpoint_group_uri\x18\x05 \x01(\t\x12\x1a\n\x12\x62\x61\x63kend_bucket_uri\x18\x08 \x01(\t\x12\"\n\x1apsc_service_attachment_uri\x18\t \x01(\t\x12\x1d\n\x15psc_google_api_target\x18\n \x01(\t\x12\x18\n\x10health_check_uri\x18\x06 \x01(\t\x12\x8c\x01\n#health_check_firewalls_config_state\x18\x07 \x01(\x0e\x32Z.google.cloud.networkmanagement.v1.LoadBalancerBackendInfo.HealthCheckFirewallsConfigStateB\x03\xe0\x41\x03\"\xcd\x01\n\x1fHealthCheckFirewallsConfigState\x12\x33\n/HEALTH_CHECK_FIREWALLS_CONFIG_STATE_UNSPECIFIED\x10\x00\x12\x18\n\x14\x46IREWALLS_CONFIGURED\x10\x01\x12\"\n\x1e\x46IREWALLS_PARTIALLY_CONFIGURED\x10\x02\x12\x1c\n\x18\x46IREWALLS_NOT_CONFIGURED\x10\x03\x12\x19\n\x15\x46IREWALLS_UNSUPPORTED\x10\x04\"#\n\x11StorageBucketInfo\x12\x0e\n\x06\x62ucket\x18\x01 \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"
11
12
 
12
13
  pool = Google::Protobuf::DescriptorPool.generated_pool
13
14
 
@@ -0,0 +1,65 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2024 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
20
+ module Google
21
+ module Api
22
+ # Rich semantic information of an API field beyond basic typing.
23
+ # @!attribute [rw] format
24
+ # @return [::Google::Api::FieldInfo::Format]
25
+ # The standard format of a field value. This does not explicitly configure
26
+ # any API consumer, just documents the API's format for the field it is
27
+ # applied to.
28
+ class FieldInfo
29
+ include ::Google::Protobuf::MessageExts
30
+ extend ::Google::Protobuf::MessageExts::ClassMethods
31
+
32
+ # The standard format of a field value. The supported formats are all backed
33
+ # by either an RFC defined by the IETF or a Google-defined AIP.
34
+ module Format
35
+ # Default, unspecified value.
36
+ FORMAT_UNSPECIFIED = 0
37
+
38
+ # Universally Unique Identifier, version 4, value as defined by
39
+ # https://datatracker.ietf.org/doc/html/rfc4122. The value may be
40
+ # normalized to entirely lowercase letters. For example, the value
41
+ # `F47AC10B-58CC-0372-8567-0E02B2C3D479` would be normalized to
42
+ # `f47ac10b-58cc-0372-8567-0e02b2c3d479`.
43
+ UUID4 = 1
44
+
45
+ # Internet Protocol v4 value as defined by [RFC
46
+ # 791](https://datatracker.ietf.org/doc/html/rfc791). The value may be
47
+ # condensed, with leading zeros in each octet stripped. For example,
48
+ # `001.022.233.040` would be condensed to `1.22.233.40`.
49
+ IPV4 = 2
50
+
51
+ # Internet Protocol v6 value as defined by [RFC
52
+ # 2460](https://datatracker.ietf.org/doc/html/rfc2460). The value may be
53
+ # normalized to entirely lowercase letters with zeros compressed, following
54
+ # [RFC 5952](https://datatracker.ietf.org/doc/html/rfc5952). For example,
55
+ # the value `2001:0DB8:0::0` would be normalized to `2001:db8::`.
56
+ IPV6 = 3
57
+
58
+ # An IP address in either v4 or v6 format as described by the individual
59
+ # values defined herein. See the comments on the IPV4 and IPV6 types for
60
+ # allowed normalizations of each.
61
+ IPV4_OR_IPV6 = 4
62
+ end
63
+ end
64
+ end
65
+ 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/{test}`
28
+ # `projects/{project_id}/locations/global/connectivityTests/{test_id}`
29
29
  # @!attribute [rw] description
30
30
  # @return [::String]
31
31
  # The user-supplied description of the Connectivity Test.
@@ -104,6 +104,10 @@ module Google
104
104
  # for applicable tests only. The details are updated when creating a new
105
105
  # test, updating an existing test, or triggering a one-time rerun of an
106
106
  # existing test.
107
+ # @!attribute [rw] bypass_firewall_checks
108
+ # @return [::Boolean]
109
+ # Whether the test should skip firewall checking.
110
+ # If not provided, we assume false.
107
111
  class ConnectivityTest
108
112
  include ::Google::Protobuf::MessageExts
109
113
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -122,9 +126,6 @@ module Google
122
126
  # @!attribute [rw] ip_address
123
127
  # @return [::String]
124
128
  # The IP address of the endpoint, which can be an external or internal IP.
125
- # An IPv6 address is only allowed when the test's destination is a
126
- # [global load balancer
127
- # VIP](https://cloud.google.com/load-balancing/docs/load-balancing-overview).
128
129
  # @!attribute [rw] port
129
130
  # @return [::Integer]
130
131
  # The IP protocol port of the endpoint.
@@ -300,7 +301,9 @@ module Google
300
301
  # The source and destination endpoints do not uniquely identify
301
302
  # the test location in the network, and the reachability result contains
302
303
  # multiple traces. For some traces, a packet could be delivered, and for
303
- # others, it would not be.
304
+ # others, it would not be. This result is also assigned to
305
+ # configuration analysis of return path if on its own it should be
306
+ # REACHABLE, but configuration analysis of forward path is AMBIGUOUS.
304
307
  AMBIGUOUS = 4
305
308
 
306
309
  # The configuration analysis did not complete. Possible reasons are:
@@ -46,6 +46,11 @@ module Google
46
46
  # The steps are ordered by the processing sequence within the simulated
47
47
  # network state machine. It is critical to preserve the order of the steps
48
48
  # and avoid reordering or sorting them.
49
+ # @!attribute [rw] forward_trace_id
50
+ # @return [::Integer]
51
+ # ID of trace. For forward traces, this ID is unique for each trace. For
52
+ # return traces, it matches ID of associated forward trace. A single forward
53
+ # trace can be associated with none, one or more than one return trace.
49
54
  class Trace
50
55
  include ::Google::Protobuf::MessageExts
51
56
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -108,8 +113,10 @@ module Google
108
113
  # @return [::Google::Cloud::NetworkManagement::V1::DropInfo]
109
114
  # Display information of the final state "drop" and reason.
110
115
  # @!attribute [rw] load_balancer
116
+ # @deprecated This field is deprecated and may be removed in the next major version update.
111
117
  # @return [::Google::Cloud::NetworkManagement::V1::LoadBalancerInfo]
112
- # Display information of the load balancers.
118
+ # Display information of the load balancers. Deprecated in favor of the
119
+ # `load_balancer_backend_info` field, not used in new tests.
113
120
  # @!attribute [rw] network
114
121
  # @return [::Google::Cloud::NetworkManagement::V1::NetworkInfo]
115
122
  # Display information of a Google Cloud network.
@@ -158,10 +165,8 @@ module Google
158
165
  # The endpoint information is populated.
159
166
  START_FROM_INTERNET = 2
160
167
 
161
- # Initial state: packet originating from a Google service. Some Google
162
- # services, such as health check probers or Identity Aware Proxy use
163
- # special routes, outside VPC routing configuration to reach Compute Engine
164
- # Instances.
168
+ # Initial state: packet originating from a Google service.
169
+ # The google_service information is populated.
165
170
  START_FROM_GOOGLE_SERVICE = 27
166
171
 
167
172
  # Initial state: packet originating from a VPC or on-premises network
@@ -190,6 +195,15 @@ module Google
190
195
  # A CloudRunRevisionInfo is populated with starting revision information.
191
196
  START_FROM_CLOUD_RUN_REVISION = 26
192
197
 
198
+ # Initial state: packet originating from a Storage Bucket. Used only for
199
+ # return traces.
200
+ # The storage_bucket information is populated.
201
+ START_FROM_STORAGE_BUCKET = 29
202
+
203
+ # Initial state: packet originating from a published service that uses
204
+ # Private Service Connect. Used only for return traces.
205
+ START_FROM_PSC_PUBLISHED_SERVICE = 30
206
+
193
207
  # Config checking state: verify ingress firewall rule.
194
208
  APPLY_INGRESS_FIREWALL_RULE = 4
195
209
 
@@ -314,7 +328,7 @@ module Google
314
328
  # Possible values: INGRESS, EGRESS
315
329
  # @!attribute [rw] action
316
330
  # @return [::String]
317
- # Possible values: ALLOW, DENY
331
+ # Possible values: ALLOW, DENY, APPLY_SECURITY_PROFILE_GROUP
318
332
  # @!attribute [rw] priority
319
333
  # @return [::Integer]
320
334
  # The priority of the firewall rule.
@@ -375,6 +389,18 @@ module Google
375
389
  # For details, see [Regional network firewall
376
390
  # policies](https://cloud.google.com/firewall/docs/regional-firewall-policies).
377
391
  NETWORK_REGIONAL_FIREWALL_POLICY_RULE = 6
392
+
393
+ # Firewall policy rule containing attributes not yet supported in
394
+ # Connectivity tests. Firewall analysis is skipped if such a rule can
395
+ # potentially be matched. Please see the [list of unsupported
396
+ # configurations](https://cloud.google.com/network-intelligence-center/docs/connectivity-tests/concepts/overview#unsupported-configs).
397
+ UNSUPPORTED_FIREWALL_POLICY_RULE = 100
398
+
399
+ # Tracking state for response traffic created when request traffic goes
400
+ # through allow firewall rule.
401
+ # For details, see [firewall rules
402
+ # specifications](https://cloud.google.com/firewall/docs/firewalls#specifications)
403
+ TRACKING_STATE = 101
378
404
  end
379
405
  end
380
406
 
@@ -540,7 +566,7 @@ module Google
540
566
 
541
567
  # Recognized type of a Google Service.
542
568
  module GoogleServiceType
543
- # Unspecified Google Service. Includes most of Google APIs and services.
569
+ # Unspecified Google Service.
544
570
  GOOGLE_SERVICE_TYPE_UNSPECIFIED = 0
545
571
 
546
572
  # Identity aware proxy.
@@ -558,6 +584,17 @@ module Google
558
584
  # https://cloud.google.com/dns/docs/zones/forwarding-zones#firewall-rules
559
585
  # https://cloud.google.com/dns/docs/policies#firewall-rules
560
586
  CLOUD_DNS = 3
587
+
588
+ # private.googleapis.com and restricted.googleapis.com
589
+ GOOGLE_API = 4
590
+
591
+ # Google API via Private Service Connect.
592
+ # https://cloud.google.com/vpc/docs/configure-private-service-connect-apis
593
+ GOOGLE_API_PSC = 5
594
+
595
+ # Google API via VPC Service Controls.
596
+ # https://cloud.google.com/vpc/docs/configure-private-service-connect-apis
597
+ GOOGLE_API_VPC_SC = 6
561
598
  end
562
599
  end
563
600
 
@@ -593,8 +630,11 @@ module Google
593
630
  # @return [::Google::Cloud::NetworkManagement::V1::LoadBalancerInfo::LoadBalancerType]
594
631
  # Type of the load balancer.
595
632
  # @!attribute [rw] health_check_uri
633
+ # @deprecated This field is deprecated and may be removed in the next major version update.
596
634
  # @return [::String]
597
- # URI of the health check for the load balancer.
635
+ # URI of the health check for the load balancer. Deprecated and no longer
636
+ # populated as different load balancer backends might have different health
637
+ # checks.
598
638
  # @!attribute [rw] backends
599
639
  # @return [::Array<::Google::Cloud::NetworkManagement::V1::LoadBalancerBackend>]
600
640
  # Information for the loadbalancer backends.
@@ -797,6 +837,9 @@ module Google
797
837
  # @!attribute [rw] resource_uri
798
838
  # @return [::String]
799
839
  # URI of the resource that the packet is delivered to.
840
+ # @!attribute [rw] ip_address
841
+ # @return [::String]
842
+ # IP address of the target (if applicable).
800
843
  class DeliverInfo
801
844
  include ::Google::Protobuf::MessageExts
802
845
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -838,6 +881,18 @@ module Google
838
881
 
839
882
  # Target is a Cloud Storage bucket.
840
883
  STORAGE_BUCKET = 10
884
+
885
+ # Target is a private network. Used only for return traces.
886
+ PRIVATE_NETWORK = 11
887
+
888
+ # Target is a Cloud Function. Used only for return traces.
889
+ CLOUD_FUNCTION = 12
890
+
891
+ # Target is a App Engine service version. Used only for return traces.
892
+ APP_ENGINE_VERSION = 13
893
+
894
+ # Target is a Cloud Run revision. Used only for return traces.
895
+ CLOUD_RUN_REVISION = 14
841
896
  end
842
897
  end
843
898
 
@@ -848,6 +903,9 @@ module Google
848
903
  # @!attribute [rw] resource_uri
849
904
  # @return [::String]
850
905
  # URI of the resource that the packet is forwarded to.
906
+ # @!attribute [rw] ip_address
907
+ # @return [::String]
908
+ # IP address of the target (if applicable).
851
909
  class ForwardInfo
852
910
  include ::Google::Protobuf::MessageExts
853
911
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -880,6 +938,9 @@ module Google
880
938
 
881
939
  # Forwarded to an NCC Hub.
882
940
  NCC_HUB = 8
941
+
942
+ # Forwarded to a router appliance.
943
+ ROUTER_APPLIANCE = 9
883
944
  end
884
945
  end
885
946
 
@@ -890,11 +951,13 @@ module Google
890
951
  # @!attribute [rw] resource_uri
891
952
  # @return [::String]
892
953
  # URI of the resource that caused the abort.
954
+ # @!attribute [rw] ip_address
955
+ # @return [::String]
956
+ # IP address that caused the abort.
893
957
  # @!attribute [rw] projects_missing_permission
894
958
  # @return [::Array<::String>]
895
- # List of project IDs that the user has specified in the request but does
896
- # not have permission to access network configs. Analysis is aborted in this
897
- # case with the PERMISSION_DENIED cause.
959
+ # List of project IDs the user specified in the request but lacks access to.
960
+ # In this case, analysis is aborted with the PERMISSION_DENIED cause.
898
961
  class AbortInfo
899
962
  include ::Google::Protobuf::MessageExts
900
963
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -904,63 +967,78 @@ module Google
904
967
  # Cause is unspecified.
905
968
  CAUSE_UNSPECIFIED = 0
906
969
 
907
- # Aborted due to unknown network.
908
- # The reachability analysis cannot proceed because the user does not have
909
- # access to the host project's network configurations, including firewall
910
- # rules and routes. This happens when the project is a service project and
911
- # the endpoints being traced are in the host project's network.
970
+ # Aborted due to unknown network. Deprecated, not used in the new tests.
912
971
  UNKNOWN_NETWORK = 1
913
972
 
914
- # Aborted because the IP address(es) are unknown.
915
- UNKNOWN_IP = 2
916
-
917
973
  # Aborted because no project information can be derived from the test
918
- # input.
974
+ # input. Deprecated, not used in the new tests.
919
975
  UNKNOWN_PROJECT = 3
920
976
 
921
- # Aborted because the user lacks the permission to access all or part of
922
- # the network configurations required to run the test.
923
- PERMISSION_DENIED = 4
924
-
925
- # Aborted because no valid source endpoint is derived from the input test
926
- # request.
927
- NO_SOURCE_LOCATION = 5
928
-
929
- # Aborted because the source and/or destination endpoint specified in
930
- # the test are invalid. The possible reasons that an endpoint is
931
- # invalid include: malformed IP address; nonexistent instance or
932
- # network URI; IP address not in the range of specified network URI; and
933
- # instance not owning the network interface in the specified network.
934
- INVALID_ARGUMENT = 6
935
-
936
977
  # Aborted because traffic is sent from a public IP to an instance without
937
- # an external IP.
978
+ # an external IP. Deprecated, not used in the new tests.
938
979
  NO_EXTERNAL_IP = 7
939
980
 
940
981
  # Aborted because none of the traces matches destination information
941
- # specified in the input test request.
982
+ # specified in the input test request. Deprecated, not used in the new
983
+ # tests.
942
984
  UNINTENDED_DESTINATION = 8
943
985
 
944
- # Aborted because the number of steps in the trace exceeding a certain
945
- # limit which may be caused by routing loop.
946
- TRACE_TOO_LONG = 9
947
-
948
- # Aborted due to internal server error.
949
- INTERNAL_ERROR = 10
950
-
951
- # Aborted because the source endpoint could not be found.
986
+ # Aborted because the source endpoint could not be found. Deprecated, not
987
+ # used in the new tests.
952
988
  SOURCE_ENDPOINT_NOT_FOUND = 11
953
989
 
954
990
  # Aborted because the source network does not match the source endpoint.
991
+ # Deprecated, not used in the new tests.
955
992
  MISMATCHED_SOURCE_NETWORK = 12
956
993
 
957
- # Aborted because the destination endpoint could not be found.
994
+ # Aborted because the destination endpoint could not be found. Deprecated,
995
+ # not used in the new tests.
958
996
  DESTINATION_ENDPOINT_NOT_FOUND = 13
959
997
 
960
998
  # Aborted because the destination network does not match the destination
961
- # endpoint.
999
+ # endpoint. Deprecated, not used in the new tests.
962
1000
  MISMATCHED_DESTINATION_NETWORK = 14
963
1001
 
1002
+ # Aborted because no endpoint with the packet's destination IP address is
1003
+ # found.
1004
+ UNKNOWN_IP = 2
1005
+
1006
+ # Aborted because the source IP address doesn't belong to any of the
1007
+ # subnets of the source VPC network.
1008
+ SOURCE_IP_ADDRESS_NOT_IN_SOURCE_NETWORK = 23
1009
+
1010
+ # Aborted because user lacks permission to access all or part of the
1011
+ # network configurations required to run the test.
1012
+ PERMISSION_DENIED = 4
1013
+
1014
+ # Aborted because user lacks permission to access Cloud NAT configs
1015
+ # required to run the test.
1016
+ PERMISSION_DENIED_NO_CLOUD_NAT_CONFIGS = 28
1017
+
1018
+ # Aborted because user lacks permission to access Network endpoint group
1019
+ # endpoint configs required to run the test.
1020
+ PERMISSION_DENIED_NO_NEG_ENDPOINT_CONFIGS = 29
1021
+
1022
+ # Aborted because no valid source or destination endpoint is derived from
1023
+ # the input test request.
1024
+ NO_SOURCE_LOCATION = 5
1025
+
1026
+ # Aborted because the source or destination endpoint specified in
1027
+ # the request is invalid. Some examples:
1028
+ # - The request might contain malformed resource URI, project ID, or IP
1029
+ # address.
1030
+ # - The request might contain inconsistent information (for example, the
1031
+ # request might include both the instance and the network, but the instance
1032
+ # might not have a NIC in that network).
1033
+ INVALID_ARGUMENT = 6
1034
+
1035
+ # Aborted because the number of steps in the trace exceeds a certain
1036
+ # limit. It might be caused by a routing loop.
1037
+ TRACE_TOO_LONG = 9
1038
+
1039
+ # Aborted due to internal server error.
1040
+ INTERNAL_ERROR = 10
1041
+
964
1042
  # Aborted because the test scenario is not supported.
965
1043
  UNSUPPORTED = 15
966
1044
 
@@ -976,6 +1054,18 @@ module Google
976
1054
  # Aborted because expected resource configuration was missing.
977
1055
  RESOURCE_CONFIG_NOT_FOUND = 18
978
1056
 
1057
+ # Aborted because expected VM instance configuration was missing.
1058
+ VM_INSTANCE_CONFIG_NOT_FOUND = 24
1059
+
1060
+ # Aborted because expected network configuration was missing.
1061
+ NETWORK_CONFIG_NOT_FOUND = 25
1062
+
1063
+ # Aborted because expected firewall configuration was missing.
1064
+ FIREWALL_CONFIG_NOT_FOUND = 26
1065
+
1066
+ # Aborted because expected route configuration was missing.
1067
+ ROUTE_CONFIG_NOT_FOUND = 27
1068
+
979
1069
  # Aborted because a PSC endpoint selection for the Google-managed service
980
1070
  # is ambiguous (several PSC endpoints satisfy test input).
981
1071
  GOOGLE_MANAGED_SERVICE_AMBIGUOUS_PSC_ENDPOINT = 19
@@ -987,6 +1077,17 @@ module Google
987
1077
  # Aborted because tests with a forwarding rule as a source are not
988
1078
  # supported.
989
1079
  SOURCE_FORWARDING_RULE_UNSUPPORTED = 21
1080
+
1081
+ # Aborted because one of the endpoints is a non-routable IP address
1082
+ # (loopback, link-local, etc).
1083
+ NON_ROUTABLE_IP_ADDRESS = 22
1084
+
1085
+ # Aborted due to an unknown issue in the Google-managed project.
1086
+ UNKNOWN_ISSUE_IN_GOOGLE_MANAGED_PROJECT = 30
1087
+
1088
+ # Aborted due to an unsupported configuration of the Google-managed
1089
+ # project.
1090
+ UNSUPPORTED_GOOGLE_MANAGED_PROJECT_CONFIG = 31
990
1091
  end
991
1092
  end
992
1093
 
@@ -997,6 +1098,15 @@ module Google
997
1098
  # @!attribute [rw] resource_uri
998
1099
  # @return [::String]
999
1100
  # URI of the resource that caused the drop.
1101
+ # @!attribute [rw] source_ip
1102
+ # @return [::String]
1103
+ # Source IP address of the dropped packet (if relevant).
1104
+ # @!attribute [rw] destination_ip
1105
+ # @return [::String]
1106
+ # Destination IP address of the dropped packet (if relevant).
1107
+ # @!attribute [rw] region
1108
+ # @return [::String]
1109
+ # Region of the dropped packet (if relevant).
1000
1110
  class DropInfo
1001
1111
  include ::Google::Protobuf::MessageExts
1002
1112
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1019,7 +1129,7 @@ module Google
1019
1129
  # tracking.
1020
1130
  FIREWALL_RULE = 3
1021
1131
 
1022
- # Dropped due to no routes.
1132
+ # Dropped due to no matching routes.
1023
1133
  NO_ROUTE = 4
1024
1134
 
1025
1135
  # Dropped due to invalid route. Route's next hop is a blackhole.
@@ -1027,16 +1137,53 @@ module Google
1027
1137
 
1028
1138
  # Packet is sent to a wrong (unintended) network. Example: you trace a
1029
1139
  # packet from VM1:Network1 to VM2:Network2, however, the route configured
1030
- # in Network1 sends the packet destined for VM2's IP addresss to Network3.
1140
+ # in Network1 sends the packet destined for VM2's IP address to Network3.
1031
1141
  ROUTE_WRONG_NETWORK = 6
1032
1142
 
1143
+ # Route's next hop IP address cannot be resolved to a GCP resource.
1144
+ ROUTE_NEXT_HOP_IP_ADDRESS_NOT_RESOLVED = 42
1145
+
1146
+ # Route's next hop resource is not found.
1147
+ ROUTE_NEXT_HOP_RESOURCE_NOT_FOUND = 43
1148
+
1149
+ # Route's next hop instance doesn't have a NIC in the route's network.
1150
+ ROUTE_NEXT_HOP_INSTANCE_WRONG_NETWORK = 49
1151
+
1152
+ # Route's next hop IP address is not a primary IP address of the next hop
1153
+ # instance.
1154
+ ROUTE_NEXT_HOP_INSTANCE_NON_PRIMARY_IP = 50
1155
+
1156
+ # Route's next hop forwarding rule doesn't match next hop IP address.
1157
+ ROUTE_NEXT_HOP_FORWARDING_RULE_IP_MISMATCH = 51
1158
+
1159
+ # Route's next hop VPN tunnel is down (does not have valid IKE SAs).
1160
+ ROUTE_NEXT_HOP_VPN_TUNNEL_NOT_ESTABLISHED = 52
1161
+
1162
+ # Route's next hop forwarding rule type is invalid (it's not a forwarding
1163
+ # rule of the internal passthrough load balancer).
1164
+ ROUTE_NEXT_HOP_FORWARDING_RULE_TYPE_INVALID = 53
1165
+
1166
+ # Packet is sent from the Internet to the private IPv6 address.
1167
+ NO_ROUTE_FROM_INTERNET_TO_PRIVATE_IPV6_ADDRESS = 44
1168
+
1169
+ # The packet does not match a policy-based VPN tunnel local selector.
1170
+ VPN_TUNNEL_LOCAL_SELECTOR_MISMATCH = 45
1171
+
1172
+ # The packet does not match a policy-based VPN tunnel remote selector.
1173
+ VPN_TUNNEL_REMOTE_SELECTOR_MISMATCH = 46
1174
+
1033
1175
  # Packet with internal destination address sent to the internet gateway.
1034
1176
  PRIVATE_TRAFFIC_TO_INTERNET = 7
1035
1177
 
1036
1178
  # Instance with only an internal IP address tries to access Google API and
1037
- # services, but private Google access is not enabled.
1179
+ # services, but private Google access is not enabled in the subnet.
1038
1180
  PRIVATE_GOOGLE_ACCESS_DISALLOWED = 8
1039
1181
 
1182
+ # Source endpoint tries to access Google API and services through the VPN
1183
+ # tunnel to another network, but Private Google Access needs to be enabled
1184
+ # in the source endpoint network.
1185
+ PRIVATE_GOOGLE_ACCESS_VIA_VPN_TUNNEL_UNSUPPORTED = 47
1186
+
1040
1187
  # Instance with only an internal IP address tries to access external hosts,
1041
1188
  # but Cloud NAT is not enabled in the subnet, unless special configurations
1042
1189
  # on a VM allow this connection.
@@ -1051,10 +1198,6 @@ module Google
1051
1198
  # Forwarding rule's protocol and ports do not match the packet header.
1052
1199
  FORWARDING_RULE_MISMATCH = 11
1053
1200
 
1054
- # Packet could be dropped because it was sent from a different region
1055
- # to a regional forwarding without global access.
1056
- FORWARDING_RULE_REGION_MISMATCH = 25
1057
-
1058
1201
  # Forwarding rule does not have backends configured.
1059
1202
  FORWARDING_RULE_NO_INSTANCES = 12
1060
1203
 
@@ -1150,10 +1293,46 @@ module Google
1150
1293
  # state.
1151
1294
  VPC_CONNECTOR_NOT_RUNNING = 24
1152
1295
 
1296
+ # Packet could be dropped because it was sent from a different region
1297
+ # to a regional forwarding without global access.
1298
+ FORWARDING_RULE_REGION_MISMATCH = 25
1299
+
1153
1300
  # The Private Service Connect endpoint is in a project that is not approved
1154
1301
  # to connect to the service.
1155
1302
  PSC_CONNECTION_NOT_ACCEPTED = 26
1156
1303
 
1304
+ # The packet is sent to the Private Service Connect endpoint over the
1305
+ # peering, but [it's not
1306
+ # supported](https://cloud.google.com/vpc/docs/configure-private-service-connect-services#on-premises).
1307
+ PSC_ENDPOINT_ACCESSED_FROM_PEERED_NETWORK = 41
1308
+
1309
+ # The packet is sent to the Private Service Connect backend (network
1310
+ # endpoint group), but the producer PSC forwarding rule does not have
1311
+ # global access enabled.
1312
+ PSC_NEG_PRODUCER_ENDPOINT_NO_GLOBAL_ACCESS = 48
1313
+
1314
+ # The packet is sent to the Private Service Connect backend (network
1315
+ # endpoint group), but the producer PSC forwarding rule has multiple ports
1316
+ # specified.
1317
+ PSC_NEG_PRODUCER_FORWARDING_RULE_MULTIPLE_PORTS = 54
1318
+
1319
+ # The packet is sent to the Private Service Connect backend (network
1320
+ # endpoint group) targeting a Cloud SQL service attachment, but this
1321
+ # configuration is not supported.
1322
+ CLOUD_SQL_PSC_NEG_UNSUPPORTED = 58
1323
+
1324
+ # No NAT subnets are defined for the PSC service attachment.
1325
+ NO_NAT_SUBNETS_FOR_PSC_SERVICE_ATTACHMENT = 57
1326
+
1327
+ # The packet sent from the hybrid NEG proxy matches a non-dynamic route,
1328
+ # but such a configuration is not supported.
1329
+ HYBRID_NEG_NON_DYNAMIC_ROUTE_MATCHED = 55
1330
+
1331
+ # The packet sent from the hybrid NEG proxy matches a dynamic route with a
1332
+ # next hop in a different region, but such a configuration is not
1333
+ # supported.
1334
+ HYBRID_NEG_NON_LOCAL_DYNAMIC_ROUTE_MATCHED = 56
1335
+
1157
1336
  # Packet sent from a Cloud Run revision that is not ready.
1158
1337
  CLOUD_RUN_REVISION_NOT_READY = 29
1159
1338
 
@@ -1163,6 +1342,12 @@ module Google
1163
1342
  # Packet sent to a load balancer, which requires a proxy-only subnet and
1164
1343
  # the subnet is not found.
1165
1344
  LOAD_BALANCER_HAS_NO_PROXY_SUBNET = 39
1345
+
1346
+ # Packet sent to Cloud Nat without active NAT IPs.
1347
+ CLOUD_NAT_NO_ADDRESSES = 40
1348
+
1349
+ # Packet is stuck in a routing loop.
1350
+ ROUTING_LOOP = 59
1166
1351
  end
1167
1352
  end
1168
1353
 
@@ -1420,11 +1605,11 @@ module Google
1420
1605
  # URI of the health check attached to this backend (if applicable).
1421
1606
  # @!attribute [r] health_check_firewalls_config_state
1422
1607
  # @return [::Google::Cloud::NetworkManagement::V1::LoadBalancerBackendInfo::HealthCheckFirewallsConfigState]
1423
- # Health check firewalls configuration state for the backend. This is a
1424
- # result of the static firewall analysis (verifying that health check traffic
1425
- # from required IP ranges to the backend is allowed or not). The backend
1426
- # might still be unhealthy even if these firewalls are configured. Please
1427
- # refer to the documentation for more information:
1608
+ # Output only. Health check firewalls configuration state for the backend.
1609
+ # This is a result of the static firewall analysis (verifying that health
1610
+ # check traffic from required IP ranges to the backend is allowed or not).
1611
+ # The backend might still be unhealthy even if these firewalls are
1612
+ # configured. Please refer to the documentation for more information:
1428
1613
  # https://cloud.google.com/load-balancing/docs/firewall-rules
1429
1614
  class LoadBalancerBackendInfo
1430
1615
  include ::Google::Protobuf::MessageExts
@@ -0,0 +1,75 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2024 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
20
+ module Google
21
+ module Type
22
+ # Represents a textual expression in the Common Expression Language (CEL)
23
+ # syntax. CEL is a C-like expression language. The syntax and semantics of CEL
24
+ # are documented at https://github.com/google/cel-spec.
25
+ #
26
+ # Example (Comparison):
27
+ #
28
+ # title: "Summary size limit"
29
+ # description: "Determines if a summary is less than 100 chars"
30
+ # expression: "document.summary.size() < 100"
31
+ #
32
+ # Example (Equality):
33
+ #
34
+ # title: "Requestor is owner"
35
+ # description: "Determines if requestor is the document owner"
36
+ # expression: "document.owner == request.auth.claims.email"
37
+ #
38
+ # Example (Logic):
39
+ #
40
+ # title: "Public documents"
41
+ # description: "Determine whether the document should be publicly visible"
42
+ # expression: "document.type != 'private' && document.type != 'internal'"
43
+ #
44
+ # Example (Data Manipulation):
45
+ #
46
+ # title: "Notification string"
47
+ # description: "Create a notification string with a timestamp."
48
+ # expression: "'New message received at ' + string(document.create_time)"
49
+ #
50
+ # The exact variables and functions that may be referenced within an expression
51
+ # are determined by the service that evaluates it. See the service
52
+ # documentation for additional information.
53
+ # @!attribute [rw] expression
54
+ # @return [::String]
55
+ # Textual representation of an expression in Common Expression Language
56
+ # syntax.
57
+ # @!attribute [rw] title
58
+ # @return [::String]
59
+ # Optional. Title for the expression, i.e. a short string describing
60
+ # its purpose. This can be used e.g. in UIs which allow to enter the
61
+ # expression.
62
+ # @!attribute [rw] description
63
+ # @return [::String]
64
+ # Optional. Description of the expression. This is a longer text which
65
+ # describes the expression, e.g. when hovered over it in a UI.
66
+ # @!attribute [rw] location
67
+ # @return [::String]
68
+ # Optional. String indicating the location of the expression for error
69
+ # reporting, e.g. a file name and a position in the file.
70
+ class Expr
71
+ include ::Google::Protobuf::MessageExts
72
+ extend ::Google::Protobuf::MessageExts::ClassMethods
73
+ end
74
+ end
75
+ 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.12.0
4
+ version: 0.14.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: 2024-03-14 00:00:00.000000000 Z
11
+ date: 2024-04-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -44,6 +44,46 @@ dependencies:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
46
  version: '1.0'
47
+ - !ruby/object:Gem::Dependency
48
+ name: google-cloud-location
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0.7'
54
+ - - "<"
55
+ - !ruby/object:Gem::Version
56
+ version: 2.a
57
+ type: :runtime
58
+ prerelease: false
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: '0.7'
64
+ - - "<"
65
+ - !ruby/object:Gem::Version
66
+ version: 2.a
67
+ - !ruby/object:Gem::Dependency
68
+ name: google-iam-v1
69
+ requirement: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: '0.7'
74
+ - - "<"
75
+ - !ruby/object:Gem::Version
76
+ version: 2.a
77
+ type: :runtime
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: '0.7'
84
+ - - "<"
85
+ - !ruby/object:Gem::Version
86
+ version: 2.a
47
87
  description: The Network Management API provides a collection of network performance
48
88
  monitoring and diagnostic capabilities. Note that google-cloud-network_management-v1
49
89
  is a version-specific client library. For most uses, we recommend installing the
@@ -60,6 +100,7 @@ files:
60
100
  - README.md
61
101
  - lib/google-cloud-network_management-v1.rb
62
102
  - lib/google/cloud/network_management/v1.rb
103
+ - lib/google/cloud/network_management/v1/bindings_override.rb
63
104
  - lib/google/cloud/network_management/v1/reachability_service.rb
64
105
  - lib/google/cloud/network_management/v1/reachability_service/client.rb
65
106
  - lib/google/cloud/network_management/v1/reachability_service/credentials.rb
@@ -78,6 +119,7 @@ files:
78
119
  - proto_docs/README.md
79
120
  - proto_docs/google/api/client.rb
80
121
  - proto_docs/google/api/field_behavior.rb
122
+ - proto_docs/google/api/field_info.rb
81
123
  - proto_docs/google/api/launch_stage.rb
82
124
  - proto_docs/google/api/resource.rb
83
125
  - proto_docs/google/cloud/networkmanagement/v1/connectivity_test.rb
@@ -90,6 +132,7 @@ files:
90
132
  - proto_docs/google/protobuf/field_mask.rb
91
133
  - proto_docs/google/protobuf/timestamp.rb
92
134
  - proto_docs/google/rpc/status.rb
135
+ - proto_docs/google/type/expr.rb
93
136
  homepage: https://github.com/googleapis/google-cloud-ruby
94
137
  licenses:
95
138
  - Apache-2.0