google-cloud-network_connectivity-v1beta 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/google/cloud/network_connectivity/v1beta/transport_manager/client.rb +98 -1
- data/lib/google/cloud/network_connectivity/v1beta/transport_manager/paths.rb +17 -0
- data/lib/google/cloud/network_connectivity/v1beta/version.rb +1 -1
- data/lib/google/cloud/networkconnectivity/v1beta/hub_pb.rb +2 -1
- data/lib/google/cloud/networkconnectivity/v1beta/transport_manager_pb.rb +4 -1
- data/lib/google/cloud/networkconnectivity/v1beta/transport_manager_services_pb.rb +2 -0
- data/proto_docs/google/cloud/networkconnectivity/v1beta/hub.rb +65 -0
- data/proto_docs/google/cloud/networkconnectivity/v1beta/transport_manager.rb +70 -10
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 78d663a2b09ddf01b2dc67f7b0e888ab3f3322f9a4fc582541f1ed7f19753d3a
|
|
4
|
+
data.tar.gz: 778dd113ae84bda87cb69089ac8875521b2991d2420dd0add63da405d4a910e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 772307710c1ad4be195bf554c0149930b613cbaa09e4d6e1bfe36cddc1046c06d6364ec8426902458f0f06498c104d02d1e2c5170a473cbaaff8a534917e37b8
|
|
7
|
+
data.tar.gz: 1aa1e0afcd282f74edf8c9ef209742d0662a9b4fd6e4e6c06f617f199dce2956f52736f54502343b9770fe3847afc85cb68c637dd2c63c5e1f07d00d4063d3ef
|
|
@@ -425,6 +425,93 @@ module Google
|
|
|
425
425
|
raise ::Google::Cloud::Error.from_error(e)
|
|
426
426
|
end
|
|
427
427
|
|
|
428
|
+
##
|
|
429
|
+
# Gets details of a single RemoteTransportProfile given an activation key.
|
|
430
|
+
#
|
|
431
|
+
# @overload parse_from_activation_key(request, options = nil)
|
|
432
|
+
# Pass arguments to `parse_from_activation_key` via a request object, either of type
|
|
433
|
+
# {::Google::Cloud::NetworkConnectivity::V1beta::ParseFromActivationKeyRequest} or an equivalent Hash.
|
|
434
|
+
#
|
|
435
|
+
# @param request [::Google::Cloud::NetworkConnectivity::V1beta::ParseFromActivationKeyRequest, ::Hash]
|
|
436
|
+
# A request object representing the call parameters. Required. To specify no
|
|
437
|
+
# parameters, or to keep all the default parameter values, pass an empty Hash.
|
|
438
|
+
# @param options [::Gapic::CallOptions, ::Hash]
|
|
439
|
+
# Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
|
|
440
|
+
#
|
|
441
|
+
# @overload parse_from_activation_key(parent: nil, activation_key: nil)
|
|
442
|
+
# Pass arguments to `parse_from_activation_key` via keyword arguments. Note that at
|
|
443
|
+
# least one keyword argument is required. To specify no parameters, or to keep all
|
|
444
|
+
# the default parameter values, pass an empty Hash as a request object (see above).
|
|
445
|
+
#
|
|
446
|
+
# @param parent [::String]
|
|
447
|
+
# Required. Parent value for ParseFromActivationKeyRequest.
|
|
448
|
+
# @param activation_key [::String]
|
|
449
|
+
# Required. The activation key to get the RemoteTransportProfile for.
|
|
450
|
+
#
|
|
451
|
+
# @yield [response, operation] Access the result along with the RPC operation
|
|
452
|
+
# @yieldparam response [::Google::Cloud::NetworkConnectivity::V1beta::ParseFromActivationKeyResponse]
|
|
453
|
+
# @yieldparam operation [::GRPC::ActiveCall::Operation]
|
|
454
|
+
#
|
|
455
|
+
# @return [::Google::Cloud::NetworkConnectivity::V1beta::ParseFromActivationKeyResponse]
|
|
456
|
+
#
|
|
457
|
+
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
|
458
|
+
#
|
|
459
|
+
# @example Basic example
|
|
460
|
+
# require "google/cloud/network_connectivity/v1beta"
|
|
461
|
+
#
|
|
462
|
+
# # Create a client object. The client can be reused for multiple calls.
|
|
463
|
+
# client = Google::Cloud::NetworkConnectivity::V1beta::TransportManager::Client.new
|
|
464
|
+
#
|
|
465
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
|
466
|
+
# request = Google::Cloud::NetworkConnectivity::V1beta::ParseFromActivationKeyRequest.new
|
|
467
|
+
#
|
|
468
|
+
# # Call the parse_from_activation_key method.
|
|
469
|
+
# result = client.parse_from_activation_key request
|
|
470
|
+
#
|
|
471
|
+
# # The returned object is of type Google::Cloud::NetworkConnectivity::V1beta::ParseFromActivationKeyResponse.
|
|
472
|
+
# p result
|
|
473
|
+
#
|
|
474
|
+
def parse_from_activation_key request, options = nil
|
|
475
|
+
raise ::ArgumentError, "request must be provided" if request.nil?
|
|
476
|
+
|
|
477
|
+
request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::NetworkConnectivity::V1beta::ParseFromActivationKeyRequest
|
|
478
|
+
|
|
479
|
+
# Converts hash and nil to an options object
|
|
480
|
+
options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
|
|
481
|
+
|
|
482
|
+
# Customize the options with defaults
|
|
483
|
+
metadata = @config.rpcs.parse_from_activation_key.metadata.to_h
|
|
484
|
+
|
|
485
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
486
|
+
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
487
|
+
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
488
|
+
gapic_version: ::Google::Cloud::NetworkConnectivity::V1beta::VERSION
|
|
489
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
490
|
+
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
491
|
+
|
|
492
|
+
header_params = {}
|
|
493
|
+
if request.parent
|
|
494
|
+
header_params["parent"] = request.parent
|
|
495
|
+
end
|
|
496
|
+
|
|
497
|
+
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
|
498
|
+
metadata[:"x-goog-request-params"] ||= request_params_header
|
|
499
|
+
|
|
500
|
+
options.apply_defaults timeout: @config.rpcs.parse_from_activation_key.timeout,
|
|
501
|
+
metadata: metadata,
|
|
502
|
+
retry_policy: @config.rpcs.parse_from_activation_key.retry_policy
|
|
503
|
+
|
|
504
|
+
options.apply_defaults timeout: @config.timeout,
|
|
505
|
+
metadata: @config.metadata,
|
|
506
|
+
retry_policy: @config.retry_policy
|
|
507
|
+
|
|
508
|
+
@transport_manager_stub.call_rpc :parse_from_activation_key, request, options: options do |response, operation|
|
|
509
|
+
yield response, operation if block_given?
|
|
510
|
+
end
|
|
511
|
+
rescue ::GRPC::BadStatus => e
|
|
512
|
+
raise ::Google::Cloud::Error.from_error(e)
|
|
513
|
+
end
|
|
514
|
+
|
|
428
515
|
##
|
|
429
516
|
# Lists Transports in a given project and location.
|
|
430
517
|
#
|
|
@@ -623,13 +710,16 @@ module Google
|
|
|
623
710
|
# @param options [::Gapic::CallOptions, ::Hash]
|
|
624
711
|
# Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
|
|
625
712
|
#
|
|
626
|
-
# @overload get_status(name: nil)
|
|
713
|
+
# @overload get_status(name: nil, skip_cache: nil)
|
|
627
714
|
# Pass arguments to `get_status` via keyword arguments. Note that at
|
|
628
715
|
# least one keyword argument is required. To specify no parameters, or to keep all
|
|
629
716
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
|
630
717
|
#
|
|
631
718
|
# @param name [::String]
|
|
632
719
|
# Required. Name of the resource.
|
|
720
|
+
# @param skip_cache [::Boolean]
|
|
721
|
+
# Optional. If set to true, the response will bypass any caches and return
|
|
722
|
+
# the freshest possible data.
|
|
633
723
|
#
|
|
634
724
|
# @yield [response, operation] Access the result along with the RPC operation
|
|
635
725
|
# @yieldparam response [::Google::Cloud::NetworkConnectivity::V1beta::GetStatusResponse]
|
|
@@ -1226,6 +1316,11 @@ module Google
|
|
|
1226
1316
|
#
|
|
1227
1317
|
attr_reader :get_remote_transport_profile
|
|
1228
1318
|
##
|
|
1319
|
+
# RPC-specific configuration for `parse_from_activation_key`
|
|
1320
|
+
# @return [::Gapic::Config::Method]
|
|
1321
|
+
#
|
|
1322
|
+
attr_reader :parse_from_activation_key
|
|
1323
|
+
##
|
|
1229
1324
|
# RPC-specific configuration for `list_transports`
|
|
1230
1325
|
# @return [::Gapic::Config::Method]
|
|
1231
1326
|
#
|
|
@@ -1262,6 +1357,8 @@ module Google
|
|
|
1262
1357
|
@list_remote_transport_profiles = ::Gapic::Config::Method.new list_remote_transport_profiles_config
|
|
1263
1358
|
get_remote_transport_profile_config = parent_rpcs.get_remote_transport_profile if parent_rpcs.respond_to? :get_remote_transport_profile
|
|
1264
1359
|
@get_remote_transport_profile = ::Gapic::Config::Method.new get_remote_transport_profile_config
|
|
1360
|
+
parse_from_activation_key_config = parent_rpcs.parse_from_activation_key if parent_rpcs.respond_to? :parse_from_activation_key
|
|
1361
|
+
@parse_from_activation_key = ::Gapic::Config::Method.new parse_from_activation_key_config
|
|
1265
1362
|
list_transports_config = parent_rpcs.list_transports if parent_rpcs.respond_to? :list_transports
|
|
1266
1363
|
@list_transports = ::Gapic::Config::Method.new list_transports_config
|
|
1267
1364
|
get_transport_config = parent_rpcs.get_transport if parent_rpcs.respond_to? :get_transport
|
|
@@ -24,6 +24,23 @@ module Google
|
|
|
24
24
|
module TransportManager
|
|
25
25
|
# Path helper methods for the TransportManager API.
|
|
26
26
|
module Paths
|
|
27
|
+
##
|
|
28
|
+
# Create a fully-qualified Hub resource string.
|
|
29
|
+
#
|
|
30
|
+
# The resource will be in the following format:
|
|
31
|
+
#
|
|
32
|
+
# `projects/{project}/locations/global/hubs/{hub}`
|
|
33
|
+
#
|
|
34
|
+
# @param project [String]
|
|
35
|
+
# @param hub [String]
|
|
36
|
+
#
|
|
37
|
+
# @return [::String]
|
|
38
|
+
def hub_path project:, hub:
|
|
39
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
|
40
|
+
|
|
41
|
+
"projects/#{project}/locations/global/hubs/#{hub}"
|
|
42
|
+
end
|
|
43
|
+
|
|
27
44
|
##
|
|
28
45
|
# Create a fully-qualified Location resource string.
|
|
29
46
|
#
|
|
@@ -16,7 +16,7 @@ require 'google/protobuf/field_mask_pb'
|
|
|
16
16
|
require 'google/protobuf/timestamp_pb'
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
descriptor_data = "\n1google/cloud/networkconnectivity/v1beta/hub.proto\x12\'google.cloud.networkconnectivity.v1beta\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1bgoogle/api/field_info.proto\x1a\x19google/api/resource.proto\x1a\x34google/cloud/networkconnectivity/v1beta/common.proto\x1a#google/longrunning/operations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xe1\x06\n\x03Hub\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12H\n\x06labels\x18\x04 \x03(\x0b\x32\x38.google.cloud.networkconnectivity.v1beta.Hub.LabelsEntry\x12\x18\n\x0b\x64\x65scription\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x16\n\tunique_id\x18\x08 \x01(\tB\x03\xe0\x41\x03\x12\x42\n\x05state\x18\t \x01(\x0e\x32..google.cloud.networkconnectivity.v1beta.StateB\x03\xe0\x41\x03\x12N\n\x0crouting_vpcs\x18\n \x03(\x0b\x32\x33.google.cloud.networkconnectivity.v1beta.RoutingVPCB\x03\xe0\x41\x03\x12\x19\n\x0croute_tables\x18\x0b \x03(\tB\x03\xe0\x41\x03\x12Q\n\rspoke_summary\x18\x0c \x01(\x0b\x32\x35.google.cloud.networkconnectivity.v1beta.SpokeSummaryB\x03\xe0\x41\x03\x12M\n\x0bpolicy_mode\x18\r \x01(\x0e\x32\x33.google.cloud.networkconnectivity.v1beta.PolicyModeB\x03\xe0\x41\x01\x12U\n\x0fpreset_topology\x18\x0e \x01(\x0e\x32\x37.google.cloud.networkconnectivity.v1beta.PresetTopologyB\x03\xe0\x41\x01\x12\x1c\n\nexport_psc\x18\x0f \x01(\x08\x42\x03\xe0\x41\x01H\x00\x88\x01\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:[\xea\x41X\n&networkconnectivity.googleapis.com/Hub\x12.projects/{project}/locations/global/hubs/{hub}B\r\n\x0b_export_psc\"\x7f\n\nRoutingVPC\x12\x30\n\x03uri\x18\x01 \x01(\tB#\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12?\n2required_for_new_site_to_site_data_transfer_spokes\x18\x02 \x01(\x08\x42\x03\xe0\x41\x03\"\xb5\r\n\x05Spoke\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12J\n\x06labels\x18\x04 \x03(\x0b\x32:.google.cloud.networkconnectivity.v1beta.Spoke.LabelsEntry\x12\x18\n\x0b\x64\x65scription\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12;\n\x03hub\x18\x06 \x01(\tB.\xe0\x41\x05\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\x12?\n\x05group\x18\x17 \x01(\tB0\xe0\x41\x01\xfa\x41*\n(networkconnectivity.googleapis.com/Group\x12Z\n\x12linked_vpn_tunnels\x18\x11 \x01(\x0b\x32\x39.google.cloud.networkconnectivity.v1beta.LinkedVpnTunnelsB\x03\xe0\x41\x01\x12t\n\x1flinked_interconnect_attachments\x18\x12 \x01(\x0b\x32\x46.google.cloud.networkconnectivity.v1beta.LinkedInterconnectAttachmentsB\x03\xe0\x41\x01\x12w\n!linked_router_appliance_instances\x18\x13 \x01(\x0b\x32G.google.cloud.networkconnectivity.v1beta.LinkedRouterApplianceInstancesB\x03\xe0\x41\x01\x12Z\n\x12linked_vpc_network\x18\x14 \x01(\x0b\x32\x39.google.cloud.networkconnectivity.v1beta.LinkedVpcNetworkB\x03\xe0\x41\x01\x12\x46\n\x07gateway\x18\x18 \x01(\x0b\x32\x30.google.cloud.networkconnectivity.v1beta.GatewayB\x03\xe0\x41\x01\x12k\n\x1blinked_producer_vpc_network\x18\x1a \x01(\x0b\x32\x41.google.cloud.networkconnectivity.v1beta.LinkedProducerVpcNetworkB\x03\xe0\x41\x01\x12\x16\n\tunique_id\x18\x0b \x01(\tB\x03\xe0\x41\x03\x12\x42\n\x05state\x18\x0f \x01(\x0e\x32..google.cloud.networkconnectivity.v1beta.StateB\x03\xe0\x41\x03\x12P\n\x07reasons\x18\x15 \x03(\x0b\x32:.google.cloud.networkconnectivity.v1beta.Spoke.StateReasonB\x03\xe0\x41\x03\x12K\n\nspoke_type\x18\x16 \x01(\x0e\x32\x32.google.cloud.networkconnectivity.v1beta.SpokeTypeB\x03\xe0\x41\x03\x12\x11\n\x04\x65tag\x18\x1b \x01(\tB\x03\xe0\x41\x01\x12\'\n\x1a\x66ield_paths_pending_update\x18\x1c \x03(\tB\x03\xe0\x41\x01\x1a\x9f\x02\n\x0bStateReason\x12M\n\x04\x63ode\x18\x01 \x01(\x0e\x32?.google.cloud.networkconnectivity.v1beta.Spoke.StateReason.Code\x12\x0f\n\x07message\x18\x02 \x01(\t\x12\x14\n\x0cuser_details\x18\x03 \x01(\t\"\x99\x01\n\x04\x43ode\x12\x14\n\x10\x43ODE_UNSPECIFIED\x10\x00\x12\x12\n\x0ePENDING_REVIEW\x10\x01\x12\x0c\n\x08REJECTED\x10\x02\x12\n\n\x06PAUSED\x10\x03\x12\n\n\x06\x46\x41ILED\x10\x04\x12\x19\n\x15UPDATE_PENDING_REVIEW\x10\x05\x12\x13\n\x0fUPDATE_REJECTED\x10\x06\x12\x11\n\rUPDATE_FAILED\x10\x07\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:e\xea\x41\x62\n(networkconnectivity.googleapis.com/Spoke\x12\x36projects/{project}/locations/{location}/spokes/{spoke}\"\xf4\x03\n\nRouteTable\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x06labels\x18\x04 \x03(\x0b\x32?.google.cloud.networkconnectivity.v1beta.RouteTable.LabelsEntry\x12\x13\n\x0b\x64\x65scription\x18\x05 \x01(\t\x12\x10\n\x03uid\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12\x42\n\x05state\x18\x07 \x01(\x0e\x32..google.cloud.networkconnectivity.v1beta.StateB\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:|\xea\x41y\n-networkconnectivity.googleapis.com/RouteTable\x12Hprojects/{project}/locations/global/hubs/{hub}/routeTables/{route_table}\"\xc7\t\n\x05Route\x12\x11\n\x04name\x18\x03 \x01(\tB\x03\xe0\x41\x05\x12\x34\n\x0b\x63reate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x15\n\rip_cidr_range\x18\x01 \x01(\t\x12\x45\n\x04type\x18\n \x01(\x0e\x32\x32.google.cloud.networkconnectivity.v1beta.RouteTypeB\x03\xe0\x41\x03\x12]\n\x14next_hop_vpc_network\x18\x02 \x01(\x0b\x32:.google.cloud.networkconnectivity.v1beta.NextHopVpcNetworkB\x03\xe0\x41\x05\x12J\n\x06labels\x18\x06 \x03(\x0b\x32:.google.cloud.networkconnectivity.v1beta.Route.LabelsEntry\x12\x13\n\x0b\x64\x65scription\x18\x07 \x01(\t\x12\x10\n\x03uid\x18\x08 \x01(\tB\x03\xe0\x41\x03\x12\x42\n\x05state\x18\t \x01(\x0e\x32..google.cloud.networkconnectivity.v1beta.StateB\x03\xe0\x41\x03\x12?\n\x05spoke\x18\x0b \x01(\tB0\xe0\x41\x05\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12\x15\n\x08location\x18\x0c \x01(\tB\x03\xe0\x41\x03\x12\x15\n\x08priority\x18\r \x01(\x03\x42\x03\xe0\x41\x03\x12[\n\x13next_hop_vpn_tunnel\x18\x0e \x01(\x0b\x32\x39.google.cloud.networkconnectivity.v1beta.NextHopVPNTunnelB\x03\xe0\x41\x05\x12x\n\"next_hop_router_appliance_instance\x18\x0f \x01(\x0b\x32G.google.cloud.networkconnectivity.v1beta.NextHopRouterApplianceInstanceB\x03\xe0\x41\x05\x12u\n next_hop_interconnect_attachment\x18\x10 \x01(\x0b\x32\x46.google.cloud.networkconnectivity.v1beta.NextHopInterconnectAttachmentB\x03\xe0\x41\x05\x12R\n\x0enext_hop_spoke\x18\x12 \x01(\x0b\x32\x35.google.cloud.networkconnectivity.v1beta.NextHopSpokeB\x03\xe0\x41\x05\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:\x8a\x01\xea\x41\x86\x01\n+networkconnectivity.googleapis.com/HubRoute\x12Wprojects/{project}/locations/global/hubs/{hub}/routeTables/{route_table}/routes/{route}\"\xff\x04\n\x05Group\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x06labels\x18\x04 \x03(\x0b\x32:.google.cloud.networkconnectivity.v1beta.Group.LabelsEntryB\x03\xe0\x41\x01\x12\x18\n\x0b\x64\x65scription\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x10\n\x03uid\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12\x42\n\x05state\x18\x07 \x01(\x0e\x32..google.cloud.networkconnectivity.v1beta.StateB\x03\xe0\x41\x03\x12M\n\x0b\x61uto_accept\x18\x08 \x01(\x0b\x32\x33.google.cloud.networkconnectivity.v1beta.AutoAcceptB\x03\xe0\x41\x01\x12J\n\x0broute_table\x18\t \x01(\tB5\xe0\x41\x03\xfa\x41/\n-networkconnectivity.googleapis.com/RouteTable\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:l\xea\x41i\n(networkconnectivity.googleapis.com/Group\x12=projects/{project}/locations/global/hubs/{hub}/groups/{group}\"/\n\nAutoAccept\x12!\n\x14\x61uto_accept_projects\x18\x01 \x03(\tB\x03\xe0\x41\x01\"\x95\x01\n\x0fListHubsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\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\"|\n\x10ListHubsResponse\x12:\n\x04hubs\x18\x01 \x03(\x0b\x32,.google.cloud.networkconnectivity.v1beta.Hub\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"M\n\rGetHubRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\"\xbb\x01\n\x10\x43reateHubRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x13\n\x06hub_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12>\n\x03hub\x18\x03 \x01(\x0b\x32,.google.cloud.networkconnectivity.v1beta.HubB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xa1\x01\n\x10UpdateHubRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12>\n\x03hub\x18\x02 \x01(\x0b\x32,.google.cloud.networkconnectivity.v1beta.HubB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"i\n\x10\x44\x65leteHubRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\xcf\x02\n\x14ListHubSpokesRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\x12\x17\n\x0fspoke_locations\x18\x02 \x03(\t\x12\x11\n\tpage_size\x18\x03 \x01(\x05\x12\x12\n\npage_token\x18\x04 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x05 \x01(\t\x12\x10\n\x08order_by\x18\x06 \x01(\t\x12U\n\x04view\x18\x07 \x01(\x0e\x32G.google.cloud.networkconnectivity.v1beta.ListHubSpokesRequest.SpokeView\"@\n\tSpokeView\x12\x1a\n\x16SPOKE_VIEW_UNSPECIFIED\x10\x00\x12\t\n\x05\x42\x41SIC\x10\x01\x12\x0c\n\x08\x44\x45TAILED\x10\x02\"\x85\x01\n\x15ListHubSpokesResponse\x12>\n\x06spokes\x18\x01 \x03(\x0b\x32..google.cloud.networkconnectivity.v1beta.Spoke\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\xc9\x01\n\x15QueryHubStatusRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08group_by\x18\x06 \x01(\tB\x03\xe0\x41\x01\"\x86\x01\n\x16QueryHubStatusResponse\x12S\n\x12hub_status_entries\x18\x01 \x03(\x0b\x32\x37.google.cloud.networkconnectivity.v1beta.HubStatusEntry\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x90\x01\n\x0eHubStatusEntry\x12\r\n\x05\x63ount\x18\x01 \x01(\x05\x12\x10\n\x08group_by\x18\x02 \x01(\t\x12]\n\x16psc_propagation_status\x18\x03 \x01(\x0b\x32=.google.cloud.networkconnectivity.v1beta.PscPropagationStatus\"\xd6\x03\n\x14PscPropagationStatus\x12\x14\n\x0csource_spoke\x18\x01 \x01(\t\x12\x14\n\x0csource_group\x18\x02 \x01(\t\x12\x1e\n\x16source_forwarding_rule\x18\x03 \x01(\t\x12\x14\n\x0ctarget_spoke\x18\x04 \x01(\t\x12\x14\n\x0ctarget_group\x18\x05 \x01(\t\x12P\n\x04\x63ode\x18\x06 \x01(\x0e\x32\x42.google.cloud.networkconnectivity.v1beta.PscPropagationStatus.Code\x12\x0f\n\x07message\x18\x07 \x01(\t\"\xe2\x01\n\x04\x43ode\x12\x14\n\x10\x43ODE_UNSPECIFIED\x10\x00\x12\t\n\x05READY\x10\x01\x12\x0f\n\x0bPROPAGATING\x10\x02\x12\x37\n3ERROR_PRODUCER_PROPAGATED_CONNECTION_LIMIT_EXCEEDED\x10\x03\x12)\n%ERROR_PRODUCER_NAT_IP_SPACE_EXHAUSTED\x10\x04\x12!\n\x1d\x45RROR_PRODUCER_QUOTA_EXCEEDED\x10\x05\x12!\n\x1d\x45RROR_CONSUMER_QUOTA_EXCEEDED\x10\x06\"\x97\x01\n\x11ListSpokesRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\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\"\x82\x01\n\x12ListSpokesResponse\x12>\n\x06spokes\x18\x01 \x03(\x0b\x32..google.cloud.networkconnectivity.v1beta.Spoke\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"Q\n\x0fGetSpokeRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\"\xc3\x01\n\x12\x43reateSpokeRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x15\n\x08spoke_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x42\n\x05spoke\x18\x03 \x01(\x0b\x32..google.cloud.networkconnectivity.v1beta.SpokeB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xa7\x01\n\x12UpdateSpokeRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12\x42\n\x05spoke\x18\x02 \x01(\x0b\x32..google.cloud.networkconnectivity.v1beta.SpokeB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"m\n\x12\x44\x65leteSpokeRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\xb3\x01\n\x15\x41\x63\x63\x65ptHubSpokeRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\x12\x43\n\tspoke_uri\x18\x02 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"W\n\x16\x41\x63\x63\x65ptHubSpokeResponse\x12=\n\x05spoke\x18\x01 \x01(\x0b\x32..google.cloud.networkconnectivity.v1beta.Spoke\"\xc9\x01\n\x15RejectHubSpokeRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\x12\x43\n\tspoke_uri\x18\x02 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x14\n\x07\x64\x65tails\x18\x04 \x01(\tB\x03\xe0\x41\x01\"W\n\x16RejectHubSpokeResponse\x12=\n\x05spoke\x18\x01 \x01(\x0b\x32..google.cloud.networkconnectivity.v1beta.Spoke\"\xd7\x01\n\x18\x41\x63\x63\x65ptSpokeUpdateRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\x12\x43\n\tspoke_uri\x18\x02 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12\x17\n\nspoke_etag\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x04 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"Z\n\x19\x41\x63\x63\x65ptSpokeUpdateResponse\x12=\n\x05spoke\x18\x01 \x01(\x0b\x32..google.cloud.networkconnectivity.v1beta.Spoke\"\xed\x01\n\x18RejectSpokeUpdateRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\x12\x43\n\tspoke_uri\x18\x02 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12\x17\n\nspoke_etag\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x14\n\x07\x64\x65tails\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1f\n\nrequest_id\x18\x05 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"Z\n\x19RejectSpokeUpdateResponse\x12=\n\x05spoke\x18\x01 \x01(\x0b\x32..google.cloud.networkconnectivity.v1beta.Spoke\"[\n\x14GetRouteTableRequest\x12\x43\n\x04name\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-networkconnectivity.googleapis.com/RouteTable\"T\n\x0fGetRouteRequest\x12\x41\n\x04name\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+networkconnectivity.googleapis.com/HubRoute\"\xa3\x01\n\x11ListRoutesRequest\x12\x45\n\x06parent\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-networkconnectivity.googleapis.com/RouteTable\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\"\x82\x01\n\x12ListRoutesResponse\x12>\n\x06routes\x18\x01 \x03(\x0b\x32..google.cloud.networkconnectivity.v1beta.Route\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\xa1\x01\n\x16ListRouteTablesRequest\x12>\n\x06parent\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\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\"\x92\x01\n\x17ListRouteTablesResponse\x12I\n\x0croute_tables\x18\x01 \x03(\x0b\x32\x33.google.cloud.networkconnectivity.v1beta.RouteTable\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\x9c\x01\n\x11ListGroupsRequest\x12>\n\x06parent\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\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\"\x82\x01\n\x12ListGroupsResponse\x12>\n\x06groups\x18\x01 \x03(\x0b\x32..google.cloud.networkconnectivity.v1beta.Group\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\xcc\x01\n\x10LinkedVpnTunnels\x12\x33\n\x04uris\x18\x01 \x03(\tB%\xfa\x41\"\n compute.googleapis.com/VpnTunnel\x12\"\n\x1asite_to_site_data_transfer\x18\x02 \x01(\x08\x12;\n\x0bvpc_network\x18\x03 \x01(\tB&\xe0\x41\x03\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\"\n\x15include_import_ranges\x18\x05 \x03(\tB\x03\xe0\x41\x01\"\xe6\x01\n\x1dLinkedInterconnectAttachments\x12@\n\x04uris\x18\x01 \x03(\tB2\xfa\x41/\n-compute.googleapis.com/InterconnectAttachment\x12\"\n\x1asite_to_site_data_transfer\x18\x02 \x01(\x08\x12;\n\x0bvpc_network\x18\x03 \x01(\tB&\xe0\x41\x03\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\"\n\x15include_import_ranges\x18\x05 \x03(\tB\x03\xe0\x41\x01\"\xfa\x01\n\x1eLinkedRouterApplianceInstances\x12S\n\tinstances\x18\x01 \x03(\x0b\x32@.google.cloud.networkconnectivity.v1beta.RouterApplianceInstance\x12\"\n\x1asite_to_site_data_transfer\x18\x02 \x01(\x08\x12;\n\x0bvpc_network\x18\x03 \x01(\tB&\xe0\x41\x03\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\"\n\x15include_import_ranges\x18\x05 \x03(\tB\x03\xe0\x41\x01\"\xb8\x02\n\x10LinkedVpcNetwork\x12\x33\n\x03uri\x18\x01 \x01(\tB&\xe0\x41\x02\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\"\n\x15\x65xclude_export_ranges\x18\x02 \x03(\tB\x03\xe0\x41\x01\x12\"\n\x15include_export_ranges\x18\x03 \x03(\tB\x03\xe0\x41\x01\x12+\n\x1eproposed_include_export_ranges\x18\x05 \x03(\tB\x03\xe0\x41\x03\x12+\n\x1eproposed_exclude_export_ranges\x18\x06 \x03(\tB\x03\xe0\x41\x03\x12M\n\x13producer_vpc_spokes\x18\x04 \x03(\tB0\xe0\x41\x03\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\"\xd9\x03\n\x07Gateway\x12g\n\x15ip_range_reservations\x18\x07 \x03(\x0b\x32\x43.google.cloud.networkconnectivity.v1beta.Gateway.IpRangeReservationB\x03\xe0\x41\x01\x12W\n\x08\x63\x61pacity\x18\n \x01(\x0e\x32@.google.cloud.networkconnectivity.v1beta.Gateway.GatewayCapacityB\x03\xe0\x41\x01\x12\x1a\n\rcloud_routers\x18\r \x03(\tB\x03\xe0\x41\x03\x12L\n\x0esac_attachment\x18\x0e \x01(\tB4\xe0\x41\x03\xfa\x41.\n,networksecurity.googleapis.com/SACAttachment\x1a+\n\x12IpRangeReservation\x12\x15\n\x08ip_range\x18\x01 \x01(\tB\x03\xe0\x41\x02\"u\n\x0fGatewayCapacity\x12 \n\x1cGATEWAY_CAPACITY_UNSPECIFIED\x10\x00\x12\x13\n\x0f\x43\x41PACITY_1_GBPS\x10\x05\x12\x14\n\x10\x43\x41PACITY_10_GBPS\x10\x01\x12\x15\n\x11\x43\x41PACITY_100_GBPS\x10\x04\"\xd3\x06\n\x16GatewayAdvertisedRoute\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12[\n\x06labels\x18\x04 \x03(\x0b\x32K.google.cloud.networkconnectivity.v1beta.GatewayAdvertisedRoute.LabelsEntry\x12\x13\n\x0b\x64\x65scription\x18\x05 \x01(\t\x12\x16\n\tunique_id\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12\x42\n\x05state\x18\x07 \x01(\x0e\x32..google.cloud.networkconnectivity.v1beta.StateB\x03\xe0\x41\x03\x12\x15\n\x08ip_range\x18\x08 \x01(\tB\x03\xe0\x41\x05\x12\x1a\n\x08priority\x18\t \x01(\x05\x42\x03\xe0\x41\x01H\x00\x88\x01\x01\x12\x61\n\trecipient\x18\n \x01(\x0e\x32I.google.cloud.networkconnectivity.v1beta.GatewayAdvertisedRoute.RecipientB\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"<\n\tRecipient\x12\x19\n\x15RECIPIENT_UNSPECIFIED\x10\x00\x12\x14\n\x10\x41\x44VERTISE_TO_HUB\x10\x01:\xdb\x01\xea\x41\xd7\x01\n9networkconnectivity.googleapis.com/GatewayAdvertisedRoute\x12iprojects/{project}/locations/{location}/spokes/{spoke}/gatewayAdvertisedRoutes/{gateway_advertised_route}*\x17gatewayAdvertisedRoutes2\x16gatewayAdvertisedRouteB\x0b\n\t_priority\"\x9a\x02\n#CreateGatewayAdvertisedRouteRequest\x12@\n\x06parent\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12(\n\x1bgateway_advertised_route_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x66\n\x18gateway_advertised_route\x18\x03 \x01(\x0b\x32?.google.cloud.networkconnectivity.v1beta.GatewayAdvertisedRouteB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x04 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"s\n GetGatewayAdvertisedRouteRequest\x12O\n\x04name\x18\x01 \x01(\tBA\xe0\x41\x02\xfa\x41;\n9networkconnectivity.googleapis.com/GatewayAdvertisedRoute\"\xb9\x01\n\"ListGatewayAdvertisedRoutesRequest\x12@\n\x06parent\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"\xb7\x01\n#ListGatewayAdvertisedRoutesResponse\x12\x62\n\x19gateway_advertised_routes\x18\x01 \x03(\x0b\x32?.google.cloud.networkconnectivity.v1beta.GatewayAdvertisedRoute\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\xe4\x01\n#UpdateGatewayAdvertisedRouteRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12\x66\n\x18gateway_advertised_route\x18\x02 \x01(\x0b\x32?.google.cloud.networkconnectivity.v1beta.GatewayAdvertisedRouteB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x03 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"\x97\x01\n#DeleteGatewayAdvertisedRouteRequest\x12O\n\x04name\x18\x01 \x01(\tBA\xe0\x41\x02\xfa\x41;\n9networkconnectivity.googleapis.com/GatewayAdvertisedRoute\x12\x1f\n\nrequest_id\x18\x02 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"\xa3\x03\n\x18LinkedProducerVpcNetwork\x12\x37\n\x07network\x18\x01 \x01(\tB&\xe0\x41\x05\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12T\n\x1aservice_consumer_vpc_spoke\x18\x06 \x01(\tB0\xe0\x41\x03\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12\x14\n\x07peering\x18\x02 \x01(\tB\x03\xe0\x41\x05\x12@\n\x10producer_network\x18\x05 \x01(\tB&\xe0\x41\x03\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\"\n\x15\x65xclude_export_ranges\x18\x03 \x03(\tB\x03\xe0\x41\x01\x12\"\n\x15include_export_ranges\x18\x04 \x03(\tB\x03\xe0\x41\x01\x12+\n\x1eproposed_include_export_ranges\x18\x07 \x03(\tB\x03\xe0\x41\x03\x12+\n\x1eproposed_exclude_export_ranges\x18\x08 \x03(\tB\x03\xe0\x41\x03\"l\n\x17RouterApplianceInstance\x12=\n\x0fvirtual_machine\x18\x01 \x01(\tB$\xfa\x41!\n\x1f\x63ompute.googleapis.com/Instance\x12\x12\n\nip_address\x18\x03 \x01(\t\"g\n\x10LocationMetadata\x12S\n\x11location_features\x18\x01 \x03(\x0e\x32\x38.google.cloud.networkconnectivity.v1beta.LocationFeature\"E\n\x11NextHopVpcNetwork\x12\x30\n\x03uri\x18\x01 \x01(\tB#\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\"\xa4\x01\n\x10NextHopVPNTunnel\x12\x32\n\x03uri\x18\x01 \x01(\tB%\xfa\x41\"\n compute.googleapis.com/VpnTunnel\x12\x38\n\x0bvpc_network\x18\x02 \x01(\tB#\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\"\n\x1asite_to_site_data_transfer\x18\x03 \x01(\x08\"\xb1\x01\n\x1eNextHopRouterApplianceInstance\x12\x31\n\x03uri\x18\x01 \x01(\tB$\xfa\x41!\n\x1f\x63ompute.googleapis.com/Instance\x12\x38\n\x0bvpc_network\x18\x02 \x01(\tB#\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\"\n\x1asite_to_site_data_transfer\x18\x03 \x01(\x08\"\xbe\x01\n\x1dNextHopInterconnectAttachment\x12?\n\x03uri\x18\x01 \x01(\tB2\xfa\x41/\n-compute.googleapis.com/InterconnectAttachment\x12\x38\n\x0bvpc_network\x18\x02 \x01(\tB#\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\"\n\x1asite_to_site_data_transfer\x18\x03 \x01(\x08\"n\n\x0cNextHopSpoke\x12:\n\x03uri\x18\x01 \x01(\tB-\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12\"\n\x1asite_to_site_data_transfer\x18\x02 \x01(\x08\"\xbe\x05\n\x0cSpokeSummary\x12\x64\n\x11spoke_type_counts\x18\x01 \x03(\x0b\x32\x44.google.cloud.networkconnectivity.v1beta.SpokeSummary.SpokeTypeCountB\x03\xe0\x41\x03\x12\x66\n\x12spoke_state_counts\x18\x02 \x03(\x0b\x32\x45.google.cloud.networkconnectivity.v1beta.SpokeSummary.SpokeStateCountB\x03\xe0\x41\x03\x12s\n\x19spoke_state_reason_counts\x18\x03 \x03(\x0b\x32K.google.cloud.networkconnectivity.v1beta.SpokeSummary.SpokeStateReasonCountB\x03\xe0\x41\x03\x1aq\n\x0eSpokeTypeCount\x12K\n\nspoke_type\x18\x01 \x01(\x0e\x32\x32.google.cloud.networkconnectivity.v1beta.SpokeTypeB\x03\xe0\x41\x03\x12\x12\n\x05\x63ount\x18\x02 \x01(\x03\x42\x03\xe0\x41\x03\x1ai\n\x0fSpokeStateCount\x12\x42\n\x05state\x18\x01 \x01(\x0e\x32..google.cloud.networkconnectivity.v1beta.StateB\x03\xe0\x41\x03\x12\x12\n\x05\x63ount\x18\x02 \x01(\x03\x42\x03\xe0\x41\x03\x1a\x8c\x01\n\x15SpokeStateReasonCount\x12_\n\x11state_reason_code\x18\x01 \x01(\x0e\x32?.google.cloud.networkconnectivity.v1beta.Spoke.StateReason.CodeB\x03\xe0\x41\x03\x12\x12\n\x05\x63ount\x18\x02 \x01(\x03\x42\x03\xe0\x41\x03\"Q\n\x0fGetGroupRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(networkconnectivity.googleapis.com/Group\"\xa7\x01\n\x12UpdateGroupRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12\x42\n\x05group\x18\x02 \x01(\x0b\x32..google.cloud.networkconnectivity.v1beta.GroupB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01*l\n\tRouteType\x12\x1a\n\x16ROUTE_TYPE_UNSPECIFIED\x10\x00\x12\x16\n\x12VPC_PRIMARY_SUBNET\x10\x01\x12\x18\n\x14VPC_SECONDARY_SUBNET\x10\x02\x12\x11\n\rDYNAMIC_ROUTE\x10\x03*\x9a\x01\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x43REATING\x10\x01\x12\n\n\x06\x41\x43TIVE\x10\x02\x12\x0c\n\x08\x44\x45LETING\x10\x03\x12\r\n\tACCEPTING\x10\x08\x12\r\n\tREJECTING\x10\t\x12\x0c\n\x08UPDATING\x10\x06\x12\x0c\n\x08INACTIVE\x10\x07\x12\x0c\n\x08OBSOLETE\x10\n\x12\n\n\x06\x46\x41ILED\x10\x0b*\xa2\x01\n\tSpokeType\x12\x1a\n\x16SPOKE_TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nVPN_TUNNEL\x10\x01\x12\x1b\n\x17INTERCONNECT_ATTACHMENT\x10\x02\x12\x14\n\x10ROUTER_APPLIANCE\x10\x03\x12\x0f\n\x0bVPC_NETWORK\x10\x04\x12\x0b\n\x07GATEWAY\x10\x05\x12\x18\n\x14PRODUCER_VPC_NETWORK\x10\x07*5\n\nPolicyMode\x12\x1b\n\x17POLICY_MODE_UNSPECIFIED\x10\x00\x12\n\n\x06PRESET\x10\x01*\\\n\x0ePresetTopology\x12\x1f\n\x1bPRESET_TOPOLOGY_UNSPECIFIED\x10\x00\x12\x08\n\x04MESH\x10\x02\x12\x08\n\x04STAR\x10\x03\x12\x15\n\x11HYBRID_INSPECTION\x10\x04*z\n\x0fLocationFeature\x12 \n\x1cLOCATION_FEATURE_UNSPECIFIED\x10\x00\x12\x18\n\x14SITE_TO_CLOUD_SPOKES\x10\x01\x12\x17\n\x13SITE_TO_SITE_SPOKES\x10\x02\x12\x12\n\x0eGATEWAY_SPOKES\x10\x03\x32\xd7\x34\n\nHubService\x12\xc3\x01\n\x08ListHubs\x12\x38.google.cloud.networkconnectivity.v1beta.ListHubsRequest\x1a\x39.google.cloud.networkconnectivity.v1beta.ListHubsResponse\"B\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x33\x12\x31/v1beta/{parent=projects/*/locations/global}/hubs\x12\xb0\x01\n\x06GetHub\x12\x36.google.cloud.networkconnectivity.v1beta.GetHubRequest\x1a,.google.cloud.networkconnectivity.v1beta.Hub\"@\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33\x12\x31/v1beta/{name=projects/*/locations/global/hubs/*}\x12\xd4\x01\n\tCreateHub\x12\x39.google.cloud.networkconnectivity.v1beta.CreateHubRequest\x1a\x1d.google.longrunning.Operation\"m\xca\x41\x18\n\x03Hub\x12\x11OperationMetadata\xda\x41\x11parent,hub,hub_id\x82\xd3\xe4\x93\x02\x38\"1/v1beta/{parent=projects/*/locations/global}/hubs:\x03hub\x12\xd6\x01\n\tUpdateHub\x12\x39.google.cloud.networkconnectivity.v1beta.UpdateHubRequest\x1a\x1d.google.longrunning.Operation\"o\xca\x41\x18\n\x03Hub\x12\x11OperationMetadata\xda\x41\x0fhub,update_mask\x82\xd3\xe4\x93\x02<25/v1beta/{hub.name=projects/*/locations/global/hubs/*}:\x03hub\x12\xd4\x01\n\tDeleteHub\x12\x39.google.cloud.networkconnectivity.v1beta.DeleteHubRequest\x1a\x1d.google.longrunning.Operation\"m\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33*1/v1beta/{name=projects/*/locations/global/hubs/*}\x12\xdb\x01\n\rListHubSpokes\x12=.google.cloud.networkconnectivity.v1beta.ListHubSpokesRequest\x1a>.google.cloud.networkconnectivity.v1beta.ListHubSpokesResponse\"K\xda\x41\x04name\x82\xd3\xe4\x93\x02>\x12</v1beta/{name=projects/*/locations/global/hubs/*}:listSpokes\x12\xdf\x01\n\x0eQueryHubStatus\x12>.google.cloud.networkconnectivity.v1beta.QueryHubStatusRequest\x1a?.google.cloud.networkconnectivity.v1beta.QueryHubStatusResponse\"L\xda\x41\x04name\x82\xd3\xe4\x93\x02?\x12=/v1beta/{name=projects/*/locations/global/hubs/*}:queryStatus\x12\xc6\x01\n\nListSpokes\x12:.google.cloud.networkconnectivity.v1beta.ListSpokesRequest\x1a;.google.cloud.networkconnectivity.v1beta.ListSpokesResponse\"?\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x30\x12./v1beta/{parent=projects/*/locations/*}/spokes\x12\xb3\x01\n\x08GetSpoke\x12\x38.google.cloud.networkconnectivity.v1beta.GetSpokeRequest\x1a..google.cloud.networkconnectivity.v1beta.Spoke\"=\xda\x41\x04name\x82\xd3\xe4\x93\x02\x30\x12./v1beta/{name=projects/*/locations/*/spokes/*}\x12\xdd\x01\n\x0b\x43reateSpoke\x12;.google.cloud.networkconnectivity.v1beta.CreateSpokeRequest\x1a\x1d.google.longrunning.Operation\"r\xca\x41\x1a\n\x05Spoke\x12\x11OperationMetadata\xda\x41\x15parent,spoke,spoke_id\x82\xd3\xe4\x93\x02\x37\"./v1beta/{parent=projects/*/locations/*}/spokes:\x05spoke\x12\xdf\x01\n\x0bUpdateSpoke\x12;.google.cloud.networkconnectivity.v1beta.UpdateSpokeRequest\x1a\x1d.google.longrunning.Operation\"t\xca\x41\x1a\n\x05Spoke\x12\x11OperationMetadata\xda\x41\x11spoke,update_mask\x82\xd3\xe4\x93\x02=24/v1beta/{spoke.name=projects/*/locations/*/spokes/*}:\x05spoke\x12\xf9\x01\n\x0eRejectHubSpoke\x12>.google.cloud.networkconnectivity.v1beta.RejectHubSpokeRequest\x1a\x1d.google.longrunning.Operation\"\x87\x01\xca\x41+\n\x16RejectHubSpokeResponse\x12\x11OperationMetadata\xda\x41\x0ename,spoke_uri\x82\xd3\xe4\x93\x02\x42\"=/v1beta/{name=projects/*/locations/global/hubs/*}:rejectSpoke:\x01*\x12\xf9\x01\n\x0e\x41\x63\x63\x65ptHubSpoke\x12>.google.cloud.networkconnectivity.v1beta.AcceptHubSpokeRequest\x1a\x1d.google.longrunning.Operation\"\x87\x01\xca\x41+\n\x16\x41\x63\x63\x65ptHubSpokeResponse\x12\x11OperationMetadata\xda\x41\x0ename,spoke_uri\x82\xd3\xe4\x93\x02\x42\"=/v1beta/{name=projects/*/locations/global/hubs/*}:acceptSpoke:\x01*\x12\x93\x02\n\x11\x41\x63\x63\x65ptSpokeUpdate\x12\x41.google.cloud.networkconnectivity.v1beta.AcceptSpokeUpdateRequest\x1a\x1d.google.longrunning.Operation\"\x9b\x01\xca\x41.\n\x19\x41\x63\x63\x65ptSpokeUpdateResponse\x12\x11OperationMetadata\xda\x41\x19name,spoke_uri,spoke_etag\x82\xd3\xe4\x93\x02H\"C/v1beta/{name=projects/*/locations/global/hubs/*}:acceptSpokeUpdate:\x01*\x12\x93\x02\n\x11RejectSpokeUpdate\x12\x41.google.cloud.networkconnectivity.v1beta.RejectSpokeUpdateRequest\x1a\x1d.google.longrunning.Operation\"\x9b\x01\xca\x41.\n\x19RejectSpokeUpdateResponse\x12\x11OperationMetadata\xda\x41\x19name,spoke_uri,spoke_etag\x82\xd3\xe4\x93\x02H\"C/v1beta/{name=projects/*/locations/global/hubs/*}:rejectSpokeUpdate:\x01*\x12\xd5\x01\n\x0b\x44\x65leteSpoke\x12;.google.cloud.networkconnectivity.v1beta.DeleteSpokeRequest\x1a\x1d.google.longrunning.Operation\"j\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x30*./v1beta/{name=projects/*/locations/*/spokes/*}\x12\xd3\x01\n\rGetRouteTable\x12=.google.cloud.networkconnectivity.v1beta.GetRouteTableRequest\x1a\x33.google.cloud.networkconnectivity.v1beta.RouteTable\"N\xda\x41\x04name\x82\xd3\xe4\x93\x02\x41\x12?/v1beta/{name=projects/*/locations/global/hubs/*/routeTables/*}\x12\xcd\x01\n\x08GetRoute\x12\x38.google.cloud.networkconnectivity.v1beta.GetRouteRequest\x1a..google.cloud.networkconnectivity.v1beta.Route\"W\xda\x41\x04name\x82\xd3\xe4\x93\x02J\x12H/v1beta/{name=projects/*/locations/global/hubs/*/routeTables/*/routes/*}\x12\xe0\x01\n\nListRoutes\x12:.google.cloud.networkconnectivity.v1beta.ListRoutesRequest\x1a;.google.cloud.networkconnectivity.v1beta.ListRoutesResponse\"Y\xda\x41\x06parent\x82\xd3\xe4\x93\x02J\x12H/v1beta/{parent=projects/*/locations/global/hubs/*/routeTables/*}/routes\x12\xe6\x01\n\x0fListRouteTables\x12?.google.cloud.networkconnectivity.v1beta.ListRouteTablesRequest\x1a@.google.cloud.networkconnectivity.v1beta.ListRouteTablesResponse\"P\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x41\x12?/v1beta/{parent=projects/*/locations/global/hubs/*}/routeTables\x12\xbf\x01\n\x08GetGroup\x12\x38.google.cloud.networkconnectivity.v1beta.GetGroupRequest\x1a..google.cloud.networkconnectivity.v1beta.Group\"I\xda\x41\x04name\x82\xd3\xe4\x93\x02<\x12:/v1beta/{name=projects/*/locations/global/hubs/*/groups/*}\x12\xd2\x01\n\nListGroups\x12:.google.cloud.networkconnectivity.v1beta.ListGroupsRequest\x1a;.google.cloud.networkconnectivity.v1beta.ListGroupsResponse\"K\xda\x41\x06parent\x82\xd3\xe4\x93\x02<\x12:/v1beta/{parent=projects/*/locations/global/hubs/*}/groups\x12\xec\x01\n\x0bUpdateGroup\x12;.google.cloud.networkconnectivity.v1beta.UpdateGroupRequest\x1a\x1d.google.longrunning.Operation\"\x80\x01\xca\x41\x1a\n\x05Group\x12\x11OperationMetadata\xda\x41\x11group,update_mask\x82\xd3\xe4\x93\x02I2@/v1beta/{group.name=projects/*/locations/global/hubs/*/groups/*}:\x05group\x12\xe4\x02\n\x1c\x43reateGatewayAdvertisedRoute\x12L.google.cloud.networkconnectivity.v1beta.CreateGatewayAdvertisedRouteRequest\x1a\x1d.google.longrunning.Operation\"\xd6\x01\xca\x41+\n\x16GatewayAdvertisedRoute\x12\x11OperationMetadata\xda\x41;parent,gateway_advertised_route,gateway_advertised_route_id\x82\xd3\xe4\x93\x02\x64\"H/v1beta/{parent=projects/*/locations/*/spokes/*}/gatewayAdvertisedRoutes:\x18gateway_advertised_route\x12\x80\x02\n\x19GetGatewayAdvertisedRoute\x12I.google.cloud.networkconnectivity.v1beta.GetGatewayAdvertisedRouteRequest\x1a?.google.cloud.networkconnectivity.v1beta.GatewayAdvertisedRoute\"W\xda\x41\x04name\x82\xd3\xe4\x93\x02J\x12H/v1beta/{name=projects/*/locations/*/spokes/*/gatewayAdvertisedRoutes/*}\x12\x93\x02\n\x1bListGatewayAdvertisedRoutes\x12K.google.cloud.networkconnectivity.v1beta.ListGatewayAdvertisedRoutesRequest\x1aL.google.cloud.networkconnectivity.v1beta.ListGatewayAdvertisedRoutesResponse\"Y\xda\x41\x06parent\x82\xd3\xe4\x93\x02J\x12H/v1beta/{parent=projects/*/locations/*/spokes/*}/gatewayAdvertisedRoutes\x12\xe6\x02\n\x1cUpdateGatewayAdvertisedRoute\x12L.google.cloud.networkconnectivity.v1beta.UpdateGatewayAdvertisedRouteRequest\x1a\x1d.google.longrunning.Operation\"\xd8\x01\xca\x41+\n\x16GatewayAdvertisedRoute\x12\x11OperationMetadata\xda\x41$gateway_advertised_route,update_mask\x82\xd3\xe4\x93\x02}2a/v1beta/{gateway_advertised_route.name=projects/*/locations/*/spokes/*/gatewayAdvertisedRoutes/*}:\x18gateway_advertised_route\x12\x92\x02\n\x1c\x44\x65leteGatewayAdvertisedRoute\x12L.google.cloud.networkconnectivity.v1beta.DeleteGatewayAdvertisedRouteRequest\x1a\x1d.google.longrunning.Operation\"\x84\x01\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02J*H/v1beta/{name=projects/*/locations/*/spokes/*/gatewayAdvertisedRoutes/*}\x1aV\xca\x41\"networkconnectivity.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xd0\x04\n+com.google.cloud.networkconnectivity.v1betaB\x08HubProtoP\x01Z]cloud.google.com/go/networkconnectivity/apiv1beta/networkconnectivitypb;networkconnectivitypb\xaa\x02\'Google.Cloud.NetworkConnectivity.V1Beta\xca\x02\'Google\\Cloud\\NetworkConnectivity\\V1beta\xea\x02*Google::Cloud::NetworkConnectivity::V1beta\xea\x41`\n compute.googleapis.com/VpnTunnel\x12<projects/{project}/regions/{region}/vpnTunnels/{resource_id}\xea\x41W\n\x1f\x63ompute.googleapis.com/Instance\x12\x34projects/{project}/zones/{zone}/instances/{instance}\xea\x41w\n,networksecurity.googleapis.com/SACAttachment\x12Gprojects/{project}/locations/{location}/sacAttachments/{sac_attachment}b\x06proto3"
|
|
19
|
+
descriptor_data = "\n1google/cloud/networkconnectivity/v1beta/hub.proto\x12\'google.cloud.networkconnectivity.v1beta\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1bgoogle/api/field_info.proto\x1a\x19google/api/resource.proto\x1a\x34google/cloud/networkconnectivity/v1beta/common.proto\x1a#google/longrunning/operations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xff\x08\n\x03Hub\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12H\n\x06labels\x18\x04 \x03(\x0b\x32\x38.google.cloud.networkconnectivity.v1beta.Hub.LabelsEntry\x12\x18\n\x0b\x64\x65scription\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x16\n\tunique_id\x18\x08 \x01(\tB\x03\xe0\x41\x03\x12\x42\n\x05state\x18\t \x01(\x0e\x32..google.cloud.networkconnectivity.v1beta.StateB\x03\xe0\x41\x03\x12N\n\x0crouting_vpcs\x18\n \x03(\x0b\x32\x33.google.cloud.networkconnectivity.v1beta.RoutingVPCB\x03\xe0\x41\x03\x12\x19\n\x0croute_tables\x18\x0b \x03(\tB\x03\xe0\x41\x03\x12Q\n\rspoke_summary\x18\x0c \x01(\x0b\x32\x35.google.cloud.networkconnectivity.v1beta.SpokeSummaryB\x03\xe0\x41\x03\x12M\n\x0bpolicy_mode\x18\r \x01(\x0e\x32\x33.google.cloud.networkconnectivity.v1beta.PolicyModeB\x03\xe0\x41\x01\x12U\n\x0fpreset_topology\x18\x0e \x01(\x0e\x32\x37.google.cloud.networkconnectivity.v1beta.PresetTopologyB\x03\xe0\x41\x01\x12\x1c\n\nexport_psc\x18\x0f \x01(\x08\x42\x03\xe0\x41\x01H\x00\x88\x01\x01\x12\\\n\x11\x65xport_psc_config\x18\x11 \x01(\x0b\x32<.google.cloud.networkconnectivity.v1beta.Hub.ExportPscConfigB\x03\xe0\x41\x01\x1a\xbd\x01\n\x0f\x45xportPscConfig\x12=\n+published_services_and_regional_google_apis\x18\x01 \x01(\x08\x42\x03\xe0\x41\x01H\x00\x88\x01\x01\x12$\n\x12global_google_apis\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01H\x01\x88\x01\x01\x42.\n,_published_services_and_regional_google_apisB\x15\n\x13_global_google_apis\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:[\xea\x41X\n&networkconnectivity.googleapis.com/Hub\x12.projects/{project}/locations/global/hubs/{hub}B\r\n\x0b_export_psc\"\x7f\n\nRoutingVPC\x12\x30\n\x03uri\x18\x01 \x01(\tB#\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12?\n2required_for_new_site_to_site_data_transfer_spokes\x18\x02 \x01(\x08\x42\x03\xe0\x41\x03\"\xb5\r\n\x05Spoke\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12J\n\x06labels\x18\x04 \x03(\x0b\x32:.google.cloud.networkconnectivity.v1beta.Spoke.LabelsEntry\x12\x18\n\x0b\x64\x65scription\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12;\n\x03hub\x18\x06 \x01(\tB.\xe0\x41\x05\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\x12?\n\x05group\x18\x17 \x01(\tB0\xe0\x41\x01\xfa\x41*\n(networkconnectivity.googleapis.com/Group\x12Z\n\x12linked_vpn_tunnels\x18\x11 \x01(\x0b\x32\x39.google.cloud.networkconnectivity.v1beta.LinkedVpnTunnelsB\x03\xe0\x41\x01\x12t\n\x1flinked_interconnect_attachments\x18\x12 \x01(\x0b\x32\x46.google.cloud.networkconnectivity.v1beta.LinkedInterconnectAttachmentsB\x03\xe0\x41\x01\x12w\n!linked_router_appliance_instances\x18\x13 \x01(\x0b\x32G.google.cloud.networkconnectivity.v1beta.LinkedRouterApplianceInstancesB\x03\xe0\x41\x01\x12Z\n\x12linked_vpc_network\x18\x14 \x01(\x0b\x32\x39.google.cloud.networkconnectivity.v1beta.LinkedVpcNetworkB\x03\xe0\x41\x01\x12\x46\n\x07gateway\x18\x18 \x01(\x0b\x32\x30.google.cloud.networkconnectivity.v1beta.GatewayB\x03\xe0\x41\x01\x12k\n\x1blinked_producer_vpc_network\x18\x1a \x01(\x0b\x32\x41.google.cloud.networkconnectivity.v1beta.LinkedProducerVpcNetworkB\x03\xe0\x41\x01\x12\x16\n\tunique_id\x18\x0b \x01(\tB\x03\xe0\x41\x03\x12\x42\n\x05state\x18\x0f \x01(\x0e\x32..google.cloud.networkconnectivity.v1beta.StateB\x03\xe0\x41\x03\x12P\n\x07reasons\x18\x15 \x03(\x0b\x32:.google.cloud.networkconnectivity.v1beta.Spoke.StateReasonB\x03\xe0\x41\x03\x12K\n\nspoke_type\x18\x16 \x01(\x0e\x32\x32.google.cloud.networkconnectivity.v1beta.SpokeTypeB\x03\xe0\x41\x03\x12\x11\n\x04\x65tag\x18\x1b \x01(\tB\x03\xe0\x41\x01\x12\'\n\x1a\x66ield_paths_pending_update\x18\x1c \x03(\tB\x03\xe0\x41\x01\x1a\x9f\x02\n\x0bStateReason\x12M\n\x04\x63ode\x18\x01 \x01(\x0e\x32?.google.cloud.networkconnectivity.v1beta.Spoke.StateReason.Code\x12\x0f\n\x07message\x18\x02 \x01(\t\x12\x14\n\x0cuser_details\x18\x03 \x01(\t\"\x99\x01\n\x04\x43ode\x12\x14\n\x10\x43ODE_UNSPECIFIED\x10\x00\x12\x12\n\x0ePENDING_REVIEW\x10\x01\x12\x0c\n\x08REJECTED\x10\x02\x12\n\n\x06PAUSED\x10\x03\x12\n\n\x06\x46\x41ILED\x10\x04\x12\x19\n\x15UPDATE_PENDING_REVIEW\x10\x05\x12\x13\n\x0fUPDATE_REJECTED\x10\x06\x12\x11\n\rUPDATE_FAILED\x10\x07\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:e\xea\x41\x62\n(networkconnectivity.googleapis.com/Spoke\x12\x36projects/{project}/locations/{location}/spokes/{spoke}\"\xf4\x03\n\nRouteTable\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x06labels\x18\x04 \x03(\x0b\x32?.google.cloud.networkconnectivity.v1beta.RouteTable.LabelsEntry\x12\x13\n\x0b\x64\x65scription\x18\x05 \x01(\t\x12\x10\n\x03uid\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12\x42\n\x05state\x18\x07 \x01(\x0e\x32..google.cloud.networkconnectivity.v1beta.StateB\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:|\xea\x41y\n-networkconnectivity.googleapis.com/RouteTable\x12Hprojects/{project}/locations/global/hubs/{hub}/routeTables/{route_table}\"\xc7\t\n\x05Route\x12\x11\n\x04name\x18\x03 \x01(\tB\x03\xe0\x41\x05\x12\x34\n\x0b\x63reate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x15\n\rip_cidr_range\x18\x01 \x01(\t\x12\x45\n\x04type\x18\n \x01(\x0e\x32\x32.google.cloud.networkconnectivity.v1beta.RouteTypeB\x03\xe0\x41\x03\x12]\n\x14next_hop_vpc_network\x18\x02 \x01(\x0b\x32:.google.cloud.networkconnectivity.v1beta.NextHopVpcNetworkB\x03\xe0\x41\x05\x12J\n\x06labels\x18\x06 \x03(\x0b\x32:.google.cloud.networkconnectivity.v1beta.Route.LabelsEntry\x12\x13\n\x0b\x64\x65scription\x18\x07 \x01(\t\x12\x10\n\x03uid\x18\x08 \x01(\tB\x03\xe0\x41\x03\x12\x42\n\x05state\x18\t \x01(\x0e\x32..google.cloud.networkconnectivity.v1beta.StateB\x03\xe0\x41\x03\x12?\n\x05spoke\x18\x0b \x01(\tB0\xe0\x41\x05\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12\x15\n\x08location\x18\x0c \x01(\tB\x03\xe0\x41\x03\x12\x15\n\x08priority\x18\r \x01(\x03\x42\x03\xe0\x41\x03\x12[\n\x13next_hop_vpn_tunnel\x18\x0e \x01(\x0b\x32\x39.google.cloud.networkconnectivity.v1beta.NextHopVPNTunnelB\x03\xe0\x41\x05\x12x\n\"next_hop_router_appliance_instance\x18\x0f \x01(\x0b\x32G.google.cloud.networkconnectivity.v1beta.NextHopRouterApplianceInstanceB\x03\xe0\x41\x05\x12u\n next_hop_interconnect_attachment\x18\x10 \x01(\x0b\x32\x46.google.cloud.networkconnectivity.v1beta.NextHopInterconnectAttachmentB\x03\xe0\x41\x05\x12R\n\x0enext_hop_spoke\x18\x12 \x01(\x0b\x32\x35.google.cloud.networkconnectivity.v1beta.NextHopSpokeB\x03\xe0\x41\x05\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:\x8a\x01\xea\x41\x86\x01\n+networkconnectivity.googleapis.com/HubRoute\x12Wprojects/{project}/locations/global/hubs/{hub}/routeTables/{route_table}/routes/{route}\"\xff\x04\n\x05Group\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x06labels\x18\x04 \x03(\x0b\x32:.google.cloud.networkconnectivity.v1beta.Group.LabelsEntryB\x03\xe0\x41\x01\x12\x18\n\x0b\x64\x65scription\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x10\n\x03uid\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12\x42\n\x05state\x18\x07 \x01(\x0e\x32..google.cloud.networkconnectivity.v1beta.StateB\x03\xe0\x41\x03\x12M\n\x0b\x61uto_accept\x18\x08 \x01(\x0b\x32\x33.google.cloud.networkconnectivity.v1beta.AutoAcceptB\x03\xe0\x41\x01\x12J\n\x0broute_table\x18\t \x01(\tB5\xe0\x41\x03\xfa\x41/\n-networkconnectivity.googleapis.com/RouteTable\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:l\xea\x41i\n(networkconnectivity.googleapis.com/Group\x12=projects/{project}/locations/global/hubs/{hub}/groups/{group}\"/\n\nAutoAccept\x12!\n\x14\x61uto_accept_projects\x18\x01 \x03(\tB\x03\xe0\x41\x01\"\x95\x01\n\x0fListHubsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\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\"|\n\x10ListHubsResponse\x12:\n\x04hubs\x18\x01 \x03(\x0b\x32,.google.cloud.networkconnectivity.v1beta.Hub\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"M\n\rGetHubRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\"\xbb\x01\n\x10\x43reateHubRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x13\n\x06hub_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12>\n\x03hub\x18\x03 \x01(\x0b\x32,.google.cloud.networkconnectivity.v1beta.HubB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xa1\x01\n\x10UpdateHubRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12>\n\x03hub\x18\x02 \x01(\x0b\x32,.google.cloud.networkconnectivity.v1beta.HubB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"i\n\x10\x44\x65leteHubRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\xcf\x02\n\x14ListHubSpokesRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\x12\x17\n\x0fspoke_locations\x18\x02 \x03(\t\x12\x11\n\tpage_size\x18\x03 \x01(\x05\x12\x12\n\npage_token\x18\x04 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x05 \x01(\t\x12\x10\n\x08order_by\x18\x06 \x01(\t\x12U\n\x04view\x18\x07 \x01(\x0e\x32G.google.cloud.networkconnectivity.v1beta.ListHubSpokesRequest.SpokeView\"@\n\tSpokeView\x12\x1a\n\x16SPOKE_VIEW_UNSPECIFIED\x10\x00\x12\t\n\x05\x42\x41SIC\x10\x01\x12\x0c\n\x08\x44\x45TAILED\x10\x02\"\x85\x01\n\x15ListHubSpokesResponse\x12>\n\x06spokes\x18\x01 \x03(\x0b\x32..google.cloud.networkconnectivity.v1beta.Spoke\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\xc9\x01\n\x15QueryHubStatusRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08group_by\x18\x06 \x01(\tB\x03\xe0\x41\x01\"\x86\x01\n\x16QueryHubStatusResponse\x12S\n\x12hub_status_entries\x18\x01 \x03(\x0b\x32\x37.google.cloud.networkconnectivity.v1beta.HubStatusEntry\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x90\x01\n\x0eHubStatusEntry\x12\r\n\x05\x63ount\x18\x01 \x01(\x05\x12\x10\n\x08group_by\x18\x02 \x01(\t\x12]\n\x16psc_propagation_status\x18\x03 \x01(\x0b\x32=.google.cloud.networkconnectivity.v1beta.PscPropagationStatus\"\xd6\x03\n\x14PscPropagationStatus\x12\x14\n\x0csource_spoke\x18\x01 \x01(\t\x12\x14\n\x0csource_group\x18\x02 \x01(\t\x12\x1e\n\x16source_forwarding_rule\x18\x03 \x01(\t\x12\x14\n\x0ctarget_spoke\x18\x04 \x01(\t\x12\x14\n\x0ctarget_group\x18\x05 \x01(\t\x12P\n\x04\x63ode\x18\x06 \x01(\x0e\x32\x42.google.cloud.networkconnectivity.v1beta.PscPropagationStatus.Code\x12\x0f\n\x07message\x18\x07 \x01(\t\"\xe2\x01\n\x04\x43ode\x12\x14\n\x10\x43ODE_UNSPECIFIED\x10\x00\x12\t\n\x05READY\x10\x01\x12\x0f\n\x0bPROPAGATING\x10\x02\x12\x37\n3ERROR_PRODUCER_PROPAGATED_CONNECTION_LIMIT_EXCEEDED\x10\x03\x12)\n%ERROR_PRODUCER_NAT_IP_SPACE_EXHAUSTED\x10\x04\x12!\n\x1d\x45RROR_PRODUCER_QUOTA_EXCEEDED\x10\x05\x12!\n\x1d\x45RROR_CONSUMER_QUOTA_EXCEEDED\x10\x06\"\x97\x01\n\x11ListSpokesRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\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\"\x82\x01\n\x12ListSpokesResponse\x12>\n\x06spokes\x18\x01 \x03(\x0b\x32..google.cloud.networkconnectivity.v1beta.Spoke\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"Q\n\x0fGetSpokeRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\"\xc3\x01\n\x12\x43reateSpokeRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x15\n\x08spoke_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x42\n\x05spoke\x18\x03 \x01(\x0b\x32..google.cloud.networkconnectivity.v1beta.SpokeB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xa7\x01\n\x12UpdateSpokeRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12\x42\n\x05spoke\x18\x02 \x01(\x0b\x32..google.cloud.networkconnectivity.v1beta.SpokeB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"m\n\x12\x44\x65leteSpokeRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\xb3\x01\n\x15\x41\x63\x63\x65ptHubSpokeRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\x12\x43\n\tspoke_uri\x18\x02 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"W\n\x16\x41\x63\x63\x65ptHubSpokeResponse\x12=\n\x05spoke\x18\x01 \x01(\x0b\x32..google.cloud.networkconnectivity.v1beta.Spoke\"\xc9\x01\n\x15RejectHubSpokeRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\x12\x43\n\tspoke_uri\x18\x02 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x14\n\x07\x64\x65tails\x18\x04 \x01(\tB\x03\xe0\x41\x01\"W\n\x16RejectHubSpokeResponse\x12=\n\x05spoke\x18\x01 \x01(\x0b\x32..google.cloud.networkconnectivity.v1beta.Spoke\"\xd7\x01\n\x18\x41\x63\x63\x65ptSpokeUpdateRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\x12\x43\n\tspoke_uri\x18\x02 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12\x17\n\nspoke_etag\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x04 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"Z\n\x19\x41\x63\x63\x65ptSpokeUpdateResponse\x12=\n\x05spoke\x18\x01 \x01(\x0b\x32..google.cloud.networkconnectivity.v1beta.Spoke\"\xed\x01\n\x18RejectSpokeUpdateRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\x12\x43\n\tspoke_uri\x18\x02 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12\x17\n\nspoke_etag\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x14\n\x07\x64\x65tails\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1f\n\nrequest_id\x18\x05 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"Z\n\x19RejectSpokeUpdateResponse\x12=\n\x05spoke\x18\x01 \x01(\x0b\x32..google.cloud.networkconnectivity.v1beta.Spoke\"[\n\x14GetRouteTableRequest\x12\x43\n\x04name\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-networkconnectivity.googleapis.com/RouteTable\"T\n\x0fGetRouteRequest\x12\x41\n\x04name\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+networkconnectivity.googleapis.com/HubRoute\"\xa3\x01\n\x11ListRoutesRequest\x12\x45\n\x06parent\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-networkconnectivity.googleapis.com/RouteTable\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\"\x82\x01\n\x12ListRoutesResponse\x12>\n\x06routes\x18\x01 \x03(\x0b\x32..google.cloud.networkconnectivity.v1beta.Route\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\xa1\x01\n\x16ListRouteTablesRequest\x12>\n\x06parent\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\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\"\x92\x01\n\x17ListRouteTablesResponse\x12I\n\x0croute_tables\x18\x01 \x03(\x0b\x32\x33.google.cloud.networkconnectivity.v1beta.RouteTable\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\x9c\x01\n\x11ListGroupsRequest\x12>\n\x06parent\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\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\"\x82\x01\n\x12ListGroupsResponse\x12>\n\x06groups\x18\x01 \x03(\x0b\x32..google.cloud.networkconnectivity.v1beta.Group\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\xb8\x02\n\x10LinkedVpnTunnels\x12\x33\n\x04uris\x18\x01 \x03(\tB%\xfa\x41\"\n compute.googleapis.com/VpnTunnel\x12\"\n\x1asite_to_site_data_transfer\x18\x02 \x01(\x08\x12;\n\x0bvpc_network\x18\x03 \x01(\tB&\xe0\x41\x03\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\"\n\x15include_import_ranges\x18\x05 \x03(\tB\x03\xe0\x41\x01\x12\"\n\x15\x65xclude_import_ranges\x18\x06 \x03(\tB\x03\xe0\x41\x01\x12\"\n\x15include_export_ranges\x18\x07 \x03(\tB\x03\xe0\x41\x01\x12\"\n\x15\x65xclude_export_ranges\x18\x08 \x03(\tB\x03\xe0\x41\x01\"\xd2\x02\n\x1dLinkedInterconnectAttachments\x12@\n\x04uris\x18\x01 \x03(\tB2\xfa\x41/\n-compute.googleapis.com/InterconnectAttachment\x12\"\n\x1asite_to_site_data_transfer\x18\x02 \x01(\x08\x12;\n\x0bvpc_network\x18\x03 \x01(\tB&\xe0\x41\x03\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\"\n\x15include_import_ranges\x18\x05 \x03(\tB\x03\xe0\x41\x01\x12\"\n\x15\x65xclude_import_ranges\x18\x06 \x03(\tB\x03\xe0\x41\x01\x12\"\n\x15include_export_ranges\x18\x07 \x03(\tB\x03\xe0\x41\x01\x12\"\n\x15\x65xclude_export_ranges\x18\x08 \x03(\tB\x03\xe0\x41\x01\"\xe6\x02\n\x1eLinkedRouterApplianceInstances\x12S\n\tinstances\x18\x01 \x03(\x0b\x32@.google.cloud.networkconnectivity.v1beta.RouterApplianceInstance\x12\"\n\x1asite_to_site_data_transfer\x18\x02 \x01(\x08\x12;\n\x0bvpc_network\x18\x03 \x01(\tB&\xe0\x41\x03\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\"\n\x15include_import_ranges\x18\x05 \x03(\tB\x03\xe0\x41\x01\x12\"\n\x15\x65xclude_import_ranges\x18\x06 \x03(\tB\x03\xe0\x41\x01\x12\"\n\x15include_export_ranges\x18\x07 \x03(\tB\x03\xe0\x41\x01\x12\"\n\x15\x65xclude_export_ranges\x18\x08 \x03(\tB\x03\xe0\x41\x01\"\xb8\x02\n\x10LinkedVpcNetwork\x12\x33\n\x03uri\x18\x01 \x01(\tB&\xe0\x41\x02\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\"\n\x15\x65xclude_export_ranges\x18\x02 \x03(\tB\x03\xe0\x41\x01\x12\"\n\x15include_export_ranges\x18\x03 \x03(\tB\x03\xe0\x41\x01\x12+\n\x1eproposed_include_export_ranges\x18\x05 \x03(\tB\x03\xe0\x41\x03\x12+\n\x1eproposed_exclude_export_ranges\x18\x06 \x03(\tB\x03\xe0\x41\x03\x12M\n\x13producer_vpc_spokes\x18\x04 \x03(\tB0\xe0\x41\x03\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\"\xd9\x03\n\x07Gateway\x12g\n\x15ip_range_reservations\x18\x07 \x03(\x0b\x32\x43.google.cloud.networkconnectivity.v1beta.Gateway.IpRangeReservationB\x03\xe0\x41\x01\x12W\n\x08\x63\x61pacity\x18\n \x01(\x0e\x32@.google.cloud.networkconnectivity.v1beta.Gateway.GatewayCapacityB\x03\xe0\x41\x01\x12\x1a\n\rcloud_routers\x18\r \x03(\tB\x03\xe0\x41\x03\x12L\n\x0esac_attachment\x18\x0e \x01(\tB4\xe0\x41\x03\xfa\x41.\n,networksecurity.googleapis.com/SACAttachment\x1a+\n\x12IpRangeReservation\x12\x15\n\x08ip_range\x18\x01 \x01(\tB\x03\xe0\x41\x02\"u\n\x0fGatewayCapacity\x12 \n\x1cGATEWAY_CAPACITY_UNSPECIFIED\x10\x00\x12\x13\n\x0f\x43\x41PACITY_1_GBPS\x10\x05\x12\x14\n\x10\x43\x41PACITY_10_GBPS\x10\x01\x12\x15\n\x11\x43\x41PACITY_100_GBPS\x10\x04\"\xd3\x06\n\x16GatewayAdvertisedRoute\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12[\n\x06labels\x18\x04 \x03(\x0b\x32K.google.cloud.networkconnectivity.v1beta.GatewayAdvertisedRoute.LabelsEntry\x12\x13\n\x0b\x64\x65scription\x18\x05 \x01(\t\x12\x16\n\tunique_id\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12\x42\n\x05state\x18\x07 \x01(\x0e\x32..google.cloud.networkconnectivity.v1beta.StateB\x03\xe0\x41\x03\x12\x15\n\x08ip_range\x18\x08 \x01(\tB\x03\xe0\x41\x05\x12\x1a\n\x08priority\x18\t \x01(\x05\x42\x03\xe0\x41\x01H\x00\x88\x01\x01\x12\x61\n\trecipient\x18\n \x01(\x0e\x32I.google.cloud.networkconnectivity.v1beta.GatewayAdvertisedRoute.RecipientB\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"<\n\tRecipient\x12\x19\n\x15RECIPIENT_UNSPECIFIED\x10\x00\x12\x14\n\x10\x41\x44VERTISE_TO_HUB\x10\x01:\xdb\x01\xea\x41\xd7\x01\n9networkconnectivity.googleapis.com/GatewayAdvertisedRoute\x12iprojects/{project}/locations/{location}/spokes/{spoke}/gatewayAdvertisedRoutes/{gateway_advertised_route}*\x17gatewayAdvertisedRoutes2\x16gatewayAdvertisedRouteB\x0b\n\t_priority\"\x9a\x02\n#CreateGatewayAdvertisedRouteRequest\x12@\n\x06parent\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12(\n\x1bgateway_advertised_route_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x66\n\x18gateway_advertised_route\x18\x03 \x01(\x0b\x32?.google.cloud.networkconnectivity.v1beta.GatewayAdvertisedRouteB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x04 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"s\n GetGatewayAdvertisedRouteRequest\x12O\n\x04name\x18\x01 \x01(\tBA\xe0\x41\x02\xfa\x41;\n9networkconnectivity.googleapis.com/GatewayAdvertisedRoute\"\xb9\x01\n\"ListGatewayAdvertisedRoutesRequest\x12@\n\x06parent\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"\xb7\x01\n#ListGatewayAdvertisedRoutesResponse\x12\x62\n\x19gateway_advertised_routes\x18\x01 \x03(\x0b\x32?.google.cloud.networkconnectivity.v1beta.GatewayAdvertisedRoute\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\xe4\x01\n#UpdateGatewayAdvertisedRouteRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12\x66\n\x18gateway_advertised_route\x18\x02 \x01(\x0b\x32?.google.cloud.networkconnectivity.v1beta.GatewayAdvertisedRouteB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x03 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"\x97\x01\n#DeleteGatewayAdvertisedRouteRequest\x12O\n\x04name\x18\x01 \x01(\tBA\xe0\x41\x02\xfa\x41;\n9networkconnectivity.googleapis.com/GatewayAdvertisedRoute\x12\x1f\n\nrequest_id\x18\x02 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"\xa3\x03\n\x18LinkedProducerVpcNetwork\x12\x37\n\x07network\x18\x01 \x01(\tB&\xe0\x41\x05\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12T\n\x1aservice_consumer_vpc_spoke\x18\x06 \x01(\tB0\xe0\x41\x03\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12\x14\n\x07peering\x18\x02 \x01(\tB\x03\xe0\x41\x05\x12@\n\x10producer_network\x18\x05 \x01(\tB&\xe0\x41\x03\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\"\n\x15\x65xclude_export_ranges\x18\x03 \x03(\tB\x03\xe0\x41\x01\x12\"\n\x15include_export_ranges\x18\x04 \x03(\tB\x03\xe0\x41\x01\x12+\n\x1eproposed_include_export_ranges\x18\x07 \x03(\tB\x03\xe0\x41\x03\x12+\n\x1eproposed_exclude_export_ranges\x18\x08 \x03(\tB\x03\xe0\x41\x03\"l\n\x17RouterApplianceInstance\x12=\n\x0fvirtual_machine\x18\x01 \x01(\tB$\xfa\x41!\n\x1f\x63ompute.googleapis.com/Instance\x12\x12\n\nip_address\x18\x03 \x01(\t\"g\n\x10LocationMetadata\x12S\n\x11location_features\x18\x01 \x03(\x0e\x32\x38.google.cloud.networkconnectivity.v1beta.LocationFeature\"E\n\x11NextHopVpcNetwork\x12\x30\n\x03uri\x18\x01 \x01(\tB#\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\"\xa4\x01\n\x10NextHopVPNTunnel\x12\x32\n\x03uri\x18\x01 \x01(\tB%\xfa\x41\"\n compute.googleapis.com/VpnTunnel\x12\x38\n\x0bvpc_network\x18\x02 \x01(\tB#\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\"\n\x1asite_to_site_data_transfer\x18\x03 \x01(\x08\"\xb1\x01\n\x1eNextHopRouterApplianceInstance\x12\x31\n\x03uri\x18\x01 \x01(\tB$\xfa\x41!\n\x1f\x63ompute.googleapis.com/Instance\x12\x38\n\x0bvpc_network\x18\x02 \x01(\tB#\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\"\n\x1asite_to_site_data_transfer\x18\x03 \x01(\x08\"\xbe\x01\n\x1dNextHopInterconnectAttachment\x12?\n\x03uri\x18\x01 \x01(\tB2\xfa\x41/\n-compute.googleapis.com/InterconnectAttachment\x12\x38\n\x0bvpc_network\x18\x02 \x01(\tB#\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\"\n\x1asite_to_site_data_transfer\x18\x03 \x01(\x08\"n\n\x0cNextHopSpoke\x12:\n\x03uri\x18\x01 \x01(\tB-\xfa\x41*\n(networkconnectivity.googleapis.com/Spoke\x12\"\n\x1asite_to_site_data_transfer\x18\x02 \x01(\x08\"\xbe\x05\n\x0cSpokeSummary\x12\x64\n\x11spoke_type_counts\x18\x01 \x03(\x0b\x32\x44.google.cloud.networkconnectivity.v1beta.SpokeSummary.SpokeTypeCountB\x03\xe0\x41\x03\x12\x66\n\x12spoke_state_counts\x18\x02 \x03(\x0b\x32\x45.google.cloud.networkconnectivity.v1beta.SpokeSummary.SpokeStateCountB\x03\xe0\x41\x03\x12s\n\x19spoke_state_reason_counts\x18\x03 \x03(\x0b\x32K.google.cloud.networkconnectivity.v1beta.SpokeSummary.SpokeStateReasonCountB\x03\xe0\x41\x03\x1aq\n\x0eSpokeTypeCount\x12K\n\nspoke_type\x18\x01 \x01(\x0e\x32\x32.google.cloud.networkconnectivity.v1beta.SpokeTypeB\x03\xe0\x41\x03\x12\x12\n\x05\x63ount\x18\x02 \x01(\x03\x42\x03\xe0\x41\x03\x1ai\n\x0fSpokeStateCount\x12\x42\n\x05state\x18\x01 \x01(\x0e\x32..google.cloud.networkconnectivity.v1beta.StateB\x03\xe0\x41\x03\x12\x12\n\x05\x63ount\x18\x02 \x01(\x03\x42\x03\xe0\x41\x03\x1a\x8c\x01\n\x15SpokeStateReasonCount\x12_\n\x11state_reason_code\x18\x01 \x01(\x0e\x32?.google.cloud.networkconnectivity.v1beta.Spoke.StateReason.CodeB\x03\xe0\x41\x03\x12\x12\n\x05\x63ount\x18\x02 \x01(\x03\x42\x03\xe0\x41\x03\"Q\n\x0fGetGroupRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(networkconnectivity.googleapis.com/Group\"\xa7\x01\n\x12UpdateGroupRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12\x42\n\x05group\x18\x02 \x01(\x0b\x32..google.cloud.networkconnectivity.v1beta.GroupB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01*\x81\x01\n\tRouteType\x12\x1a\n\x16ROUTE_TYPE_UNSPECIFIED\x10\x00\x12\x16\n\x12VPC_PRIMARY_SUBNET\x10\x01\x12\x18\n\x14VPC_SECONDARY_SUBNET\x10\x02\x12\x11\n\rDYNAMIC_ROUTE\x10\x03\x12\x13\n\x0fPSC_GLOBAL_GAPI\x10\x04*\x9a\x01\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x43REATING\x10\x01\x12\n\n\x06\x41\x43TIVE\x10\x02\x12\x0c\n\x08\x44\x45LETING\x10\x03\x12\r\n\tACCEPTING\x10\x08\x12\r\n\tREJECTING\x10\t\x12\x0c\n\x08UPDATING\x10\x06\x12\x0c\n\x08INACTIVE\x10\x07\x12\x0c\n\x08OBSOLETE\x10\n\x12\n\n\x06\x46\x41ILED\x10\x0b*\xa2\x01\n\tSpokeType\x12\x1a\n\x16SPOKE_TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nVPN_TUNNEL\x10\x01\x12\x1b\n\x17INTERCONNECT_ATTACHMENT\x10\x02\x12\x14\n\x10ROUTER_APPLIANCE\x10\x03\x12\x0f\n\x0bVPC_NETWORK\x10\x04\x12\x0b\n\x07GATEWAY\x10\x05\x12\x18\n\x14PRODUCER_VPC_NETWORK\x10\x07*5\n\nPolicyMode\x12\x1b\n\x17POLICY_MODE_UNSPECIFIED\x10\x00\x12\n\n\x06PRESET\x10\x01*\\\n\x0ePresetTopology\x12\x1f\n\x1bPRESET_TOPOLOGY_UNSPECIFIED\x10\x00\x12\x08\n\x04MESH\x10\x02\x12\x08\n\x04STAR\x10\x03\x12\x15\n\x11HYBRID_INSPECTION\x10\x04*\x8a\x01\n\x0fLocationFeature\x12 \n\x1cLOCATION_FEATURE_UNSPECIFIED\x10\x00\x12\x18\n\x14SITE_TO_CLOUD_SPOKES\x10\x01\x12\x17\n\x13SITE_TO_SITE_SPOKES\x10\x02\x12\x12\n\x0eGATEWAY_SPOKES\x10\x03\x12\x0e\n\nTRANSPORTS\x10\x04\x32\xd7\x34\n\nHubService\x12\xc3\x01\n\x08ListHubs\x12\x38.google.cloud.networkconnectivity.v1beta.ListHubsRequest\x1a\x39.google.cloud.networkconnectivity.v1beta.ListHubsResponse\"B\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x33\x12\x31/v1beta/{parent=projects/*/locations/global}/hubs\x12\xb0\x01\n\x06GetHub\x12\x36.google.cloud.networkconnectivity.v1beta.GetHubRequest\x1a,.google.cloud.networkconnectivity.v1beta.Hub\"@\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33\x12\x31/v1beta/{name=projects/*/locations/global/hubs/*}\x12\xd4\x01\n\tCreateHub\x12\x39.google.cloud.networkconnectivity.v1beta.CreateHubRequest\x1a\x1d.google.longrunning.Operation\"m\xca\x41\x18\n\x03Hub\x12\x11OperationMetadata\xda\x41\x11parent,hub,hub_id\x82\xd3\xe4\x93\x02\x38\"1/v1beta/{parent=projects/*/locations/global}/hubs:\x03hub\x12\xd6\x01\n\tUpdateHub\x12\x39.google.cloud.networkconnectivity.v1beta.UpdateHubRequest\x1a\x1d.google.longrunning.Operation\"o\xca\x41\x18\n\x03Hub\x12\x11OperationMetadata\xda\x41\x0fhub,update_mask\x82\xd3\xe4\x93\x02<25/v1beta/{hub.name=projects/*/locations/global/hubs/*}:\x03hub\x12\xd4\x01\n\tDeleteHub\x12\x39.google.cloud.networkconnectivity.v1beta.DeleteHubRequest\x1a\x1d.google.longrunning.Operation\"m\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33*1/v1beta/{name=projects/*/locations/global/hubs/*}\x12\xdb\x01\n\rListHubSpokes\x12=.google.cloud.networkconnectivity.v1beta.ListHubSpokesRequest\x1a>.google.cloud.networkconnectivity.v1beta.ListHubSpokesResponse\"K\xda\x41\x04name\x82\xd3\xe4\x93\x02>\x12</v1beta/{name=projects/*/locations/global/hubs/*}:listSpokes\x12\xdf\x01\n\x0eQueryHubStatus\x12>.google.cloud.networkconnectivity.v1beta.QueryHubStatusRequest\x1a?.google.cloud.networkconnectivity.v1beta.QueryHubStatusResponse\"L\xda\x41\x04name\x82\xd3\xe4\x93\x02?\x12=/v1beta/{name=projects/*/locations/global/hubs/*}:queryStatus\x12\xc6\x01\n\nListSpokes\x12:.google.cloud.networkconnectivity.v1beta.ListSpokesRequest\x1a;.google.cloud.networkconnectivity.v1beta.ListSpokesResponse\"?\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x30\x12./v1beta/{parent=projects/*/locations/*}/spokes\x12\xb3\x01\n\x08GetSpoke\x12\x38.google.cloud.networkconnectivity.v1beta.GetSpokeRequest\x1a..google.cloud.networkconnectivity.v1beta.Spoke\"=\xda\x41\x04name\x82\xd3\xe4\x93\x02\x30\x12./v1beta/{name=projects/*/locations/*/spokes/*}\x12\xdd\x01\n\x0b\x43reateSpoke\x12;.google.cloud.networkconnectivity.v1beta.CreateSpokeRequest\x1a\x1d.google.longrunning.Operation\"r\xca\x41\x1a\n\x05Spoke\x12\x11OperationMetadata\xda\x41\x15parent,spoke,spoke_id\x82\xd3\xe4\x93\x02\x37\"./v1beta/{parent=projects/*/locations/*}/spokes:\x05spoke\x12\xdf\x01\n\x0bUpdateSpoke\x12;.google.cloud.networkconnectivity.v1beta.UpdateSpokeRequest\x1a\x1d.google.longrunning.Operation\"t\xca\x41\x1a\n\x05Spoke\x12\x11OperationMetadata\xda\x41\x11spoke,update_mask\x82\xd3\xe4\x93\x02=24/v1beta/{spoke.name=projects/*/locations/*/spokes/*}:\x05spoke\x12\xf9\x01\n\x0eRejectHubSpoke\x12>.google.cloud.networkconnectivity.v1beta.RejectHubSpokeRequest\x1a\x1d.google.longrunning.Operation\"\x87\x01\xca\x41+\n\x16RejectHubSpokeResponse\x12\x11OperationMetadata\xda\x41\x0ename,spoke_uri\x82\xd3\xe4\x93\x02\x42\"=/v1beta/{name=projects/*/locations/global/hubs/*}:rejectSpoke:\x01*\x12\xf9\x01\n\x0e\x41\x63\x63\x65ptHubSpoke\x12>.google.cloud.networkconnectivity.v1beta.AcceptHubSpokeRequest\x1a\x1d.google.longrunning.Operation\"\x87\x01\xca\x41+\n\x16\x41\x63\x63\x65ptHubSpokeResponse\x12\x11OperationMetadata\xda\x41\x0ename,spoke_uri\x82\xd3\xe4\x93\x02\x42\"=/v1beta/{name=projects/*/locations/global/hubs/*}:acceptSpoke:\x01*\x12\x93\x02\n\x11\x41\x63\x63\x65ptSpokeUpdate\x12\x41.google.cloud.networkconnectivity.v1beta.AcceptSpokeUpdateRequest\x1a\x1d.google.longrunning.Operation\"\x9b\x01\xca\x41.\n\x19\x41\x63\x63\x65ptSpokeUpdateResponse\x12\x11OperationMetadata\xda\x41\x19name,spoke_uri,spoke_etag\x82\xd3\xe4\x93\x02H\"C/v1beta/{name=projects/*/locations/global/hubs/*}:acceptSpokeUpdate:\x01*\x12\x93\x02\n\x11RejectSpokeUpdate\x12\x41.google.cloud.networkconnectivity.v1beta.RejectSpokeUpdateRequest\x1a\x1d.google.longrunning.Operation\"\x9b\x01\xca\x41.\n\x19RejectSpokeUpdateResponse\x12\x11OperationMetadata\xda\x41\x19name,spoke_uri,spoke_etag\x82\xd3\xe4\x93\x02H\"C/v1beta/{name=projects/*/locations/global/hubs/*}:rejectSpokeUpdate:\x01*\x12\xd5\x01\n\x0b\x44\x65leteSpoke\x12;.google.cloud.networkconnectivity.v1beta.DeleteSpokeRequest\x1a\x1d.google.longrunning.Operation\"j\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x30*./v1beta/{name=projects/*/locations/*/spokes/*}\x12\xd3\x01\n\rGetRouteTable\x12=.google.cloud.networkconnectivity.v1beta.GetRouteTableRequest\x1a\x33.google.cloud.networkconnectivity.v1beta.RouteTable\"N\xda\x41\x04name\x82\xd3\xe4\x93\x02\x41\x12?/v1beta/{name=projects/*/locations/global/hubs/*/routeTables/*}\x12\xcd\x01\n\x08GetRoute\x12\x38.google.cloud.networkconnectivity.v1beta.GetRouteRequest\x1a..google.cloud.networkconnectivity.v1beta.Route\"W\xda\x41\x04name\x82\xd3\xe4\x93\x02J\x12H/v1beta/{name=projects/*/locations/global/hubs/*/routeTables/*/routes/*}\x12\xe0\x01\n\nListRoutes\x12:.google.cloud.networkconnectivity.v1beta.ListRoutesRequest\x1a;.google.cloud.networkconnectivity.v1beta.ListRoutesResponse\"Y\xda\x41\x06parent\x82\xd3\xe4\x93\x02J\x12H/v1beta/{parent=projects/*/locations/global/hubs/*/routeTables/*}/routes\x12\xe6\x01\n\x0fListRouteTables\x12?.google.cloud.networkconnectivity.v1beta.ListRouteTablesRequest\x1a@.google.cloud.networkconnectivity.v1beta.ListRouteTablesResponse\"P\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x41\x12?/v1beta/{parent=projects/*/locations/global/hubs/*}/routeTables\x12\xbf\x01\n\x08GetGroup\x12\x38.google.cloud.networkconnectivity.v1beta.GetGroupRequest\x1a..google.cloud.networkconnectivity.v1beta.Group\"I\xda\x41\x04name\x82\xd3\xe4\x93\x02<\x12:/v1beta/{name=projects/*/locations/global/hubs/*/groups/*}\x12\xd2\x01\n\nListGroups\x12:.google.cloud.networkconnectivity.v1beta.ListGroupsRequest\x1a;.google.cloud.networkconnectivity.v1beta.ListGroupsResponse\"K\xda\x41\x06parent\x82\xd3\xe4\x93\x02<\x12:/v1beta/{parent=projects/*/locations/global/hubs/*}/groups\x12\xec\x01\n\x0bUpdateGroup\x12;.google.cloud.networkconnectivity.v1beta.UpdateGroupRequest\x1a\x1d.google.longrunning.Operation\"\x80\x01\xca\x41\x1a\n\x05Group\x12\x11OperationMetadata\xda\x41\x11group,update_mask\x82\xd3\xe4\x93\x02I2@/v1beta/{group.name=projects/*/locations/global/hubs/*/groups/*}:\x05group\x12\xe4\x02\n\x1c\x43reateGatewayAdvertisedRoute\x12L.google.cloud.networkconnectivity.v1beta.CreateGatewayAdvertisedRouteRequest\x1a\x1d.google.longrunning.Operation\"\xd6\x01\xca\x41+\n\x16GatewayAdvertisedRoute\x12\x11OperationMetadata\xda\x41;parent,gateway_advertised_route,gateway_advertised_route_id\x82\xd3\xe4\x93\x02\x64\"H/v1beta/{parent=projects/*/locations/*/spokes/*}/gatewayAdvertisedRoutes:\x18gateway_advertised_route\x12\x80\x02\n\x19GetGatewayAdvertisedRoute\x12I.google.cloud.networkconnectivity.v1beta.GetGatewayAdvertisedRouteRequest\x1a?.google.cloud.networkconnectivity.v1beta.GatewayAdvertisedRoute\"W\xda\x41\x04name\x82\xd3\xe4\x93\x02J\x12H/v1beta/{name=projects/*/locations/*/spokes/*/gatewayAdvertisedRoutes/*}\x12\x93\x02\n\x1bListGatewayAdvertisedRoutes\x12K.google.cloud.networkconnectivity.v1beta.ListGatewayAdvertisedRoutesRequest\x1aL.google.cloud.networkconnectivity.v1beta.ListGatewayAdvertisedRoutesResponse\"Y\xda\x41\x06parent\x82\xd3\xe4\x93\x02J\x12H/v1beta/{parent=projects/*/locations/*/spokes/*}/gatewayAdvertisedRoutes\x12\xe6\x02\n\x1cUpdateGatewayAdvertisedRoute\x12L.google.cloud.networkconnectivity.v1beta.UpdateGatewayAdvertisedRouteRequest\x1a\x1d.google.longrunning.Operation\"\xd8\x01\xca\x41+\n\x16GatewayAdvertisedRoute\x12\x11OperationMetadata\xda\x41$gateway_advertised_route,update_mask\x82\xd3\xe4\x93\x02}2a/v1beta/{gateway_advertised_route.name=projects/*/locations/*/spokes/*/gatewayAdvertisedRoutes/*}:\x18gateway_advertised_route\x12\x92\x02\n\x1c\x44\x65leteGatewayAdvertisedRoute\x12L.google.cloud.networkconnectivity.v1beta.DeleteGatewayAdvertisedRouteRequest\x1a\x1d.google.longrunning.Operation\"\x84\x01\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02J*H/v1beta/{name=projects/*/locations/*/spokes/*/gatewayAdvertisedRoutes/*}\x1aV\xca\x41\"networkconnectivity.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xd0\x04\n+com.google.cloud.networkconnectivity.v1betaB\x08HubProtoP\x01Z]cloud.google.com/go/networkconnectivity/apiv1beta/networkconnectivitypb;networkconnectivitypb\xaa\x02\'Google.Cloud.NetworkConnectivity.V1Beta\xca\x02\'Google\\Cloud\\NetworkConnectivity\\V1beta\xea\x02*Google::Cloud::NetworkConnectivity::V1beta\xea\x41`\n compute.googleapis.com/VpnTunnel\x12<projects/{project}/regions/{region}/vpnTunnels/{resource_id}\xea\x41W\n\x1f\x63ompute.googleapis.com/Instance\x12\x34projects/{project}/zones/{zone}/instances/{instance}\xea\x41w\n,networksecurity.googleapis.com/SACAttachment\x12Gprojects/{project}/locations/{location}/sacAttachments/{sac_attachment}b\x06proto3"
|
|
20
20
|
|
|
21
21
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
22
22
|
pool.add_serialized_file(descriptor_data)
|
|
@@ -26,6 +26,7 @@ module Google
|
|
|
26
26
|
module NetworkConnectivity
|
|
27
27
|
module V1beta
|
|
28
28
|
Hub = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkconnectivity.v1beta.Hub").msgclass
|
|
29
|
+
Hub::ExportPscConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkconnectivity.v1beta.Hub.ExportPscConfig").msgclass
|
|
29
30
|
RoutingVPC = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkconnectivity.v1beta.RoutingVPC").msgclass
|
|
30
31
|
Spoke = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkconnectivity.v1beta.Spoke").msgclass
|
|
31
32
|
Spoke::StateReason = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkconnectivity.v1beta.Spoke.StateReason").msgclass
|
|
@@ -16,7 +16,7 @@ require 'google/protobuf/field_mask_pb'
|
|
|
16
16
|
require 'google/protobuf/timestamp_pb'
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
descriptor_data = "\n?google/cloud/networkconnectivity/v1beta/transport_manager.proto\x12\'google.cloud.networkconnectivity.v1beta\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1bgoogle/api/field_info.proto\x1a\x19google/api/resource.proto\x1a\x34google/cloud/networkconnectivity/v1beta/common.proto\x1a#google/longrunning/operations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xf4\n\n\x16RemoteTransportProfile\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12`\n\x06labels\x18\x04 \x03(\x0b\x32K.google.cloud.networkconnectivity.v1beta.RemoteTransportProfile.LabelsEntryB\x03\xe0\x41\x03\x12\x18\n\x0b\x64\x65scription\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12\x15\n\x08provider\x18\x07 \x01(\tB\x03\xe0\x41\x03\x12\x1a\n\rprovider_site\x18\x08 \x01(\tB\x03\xe0\x41\x03\x12l\n\x14supported_bandwidths\x18\t \x03(\x0e\x32I.google.cloud.networkconnectivity.v1beta.RemoteTransportProfile.BandwidthB\x03\xe0\x41\x03\x12j\n\x03sla\x18\n \x01(\x0e\x32X.google.cloud.networkconnectivity.v1beta.RemoteTransportProfile.ServiceLevelAvailabilityB\x03\xe0\x41\x03\x12\x66\n\x04\x66low\x18\x0b \x01(\x0e\x32S.google.cloud.networkconnectivity.v1beta.RemoteTransportProfile.KeyProvisioningFlowB\x03\xe0\x41\x03\x12_\n\x0border_state\x18\x0c \x01(\x0e\x32\x45.google.cloud.networkconnectivity.v1beta.RemoteTransportProfile.StateB\x03\xe0\x41\x03\x12\x19\n\x0c\x64isplay_name\x18\r \x01(\tB\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\"\xd2\x01\n\tBandwidth\x12\x19\n\x15\x42\x41NDWIDTH_UNSPECIFIED\x10\x00\x12\x0b\n\x07\x42PS_50M\x10\x01\x12\x0c\n\x08\x42PS_100M\x10\x02\x12\x0c\n\x08\x42PS_200M\x10\x03\x12\x0c\n\x08\x42PS_300M\x10\x04\x12\x0c\n\x08\x42PS_400M\x10\x05\x12\x0c\n\x08\x42PS_500M\x10\x06\x12\n\n\x06\x42PS_1G\x10\x07\x12\n\n\x06\x42PS_2G\x10\x08\x12\n\n\x06\x42PS_5G\x10\t\x12\x0b\n\x07\x42PS_10G\x10\n\x12\x0b\n\x07\x42PS_20G\x10\x0b\x12\x0b\n\x07\x42PS_50G\x10\x0c\x12\x0c\n\x08\x42PS_100G\x10\r\"]\n\x18ServiceLevelAvailability\x12*\n&SERVICE_LEVEL_AVAILABILITY_UNSPECIFIED\x10\x00\x12\x08\n\x04HIGH\x10\x01\x12\x0b\n\x07MAXIMUM\x10\x02\"r\n\x13KeyProvisioningFlow\x12%\n!KEY_PROVISIONING_FLOW_UNSPECIFIED\x10\x00\x12\x0e\n\nINPUT_ONLY\x10\x01\x12\x0f\n\x0bOUTPUT_ONLY\x10\x02\x12\x13\n\x0fINPUT_OR_OUTPUT\x10\x03\"4\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\n\n\x06\x43LOSED\x10\x01\x12\x08\n\x04OPEN\x10\x02:\xcc\x01\xea\x41\xc8\x01\n9networkconnectivity.googleapis.com/RemoteTransportProfile\x12Zprojects/{project}/locations/{location}/remoteTransportProfiles/{remote_transport_profile}*\x17remoteTransportProfiles2\x16remoteTransportProfile\"\xd4\x01\n\"ListRemoteTransportProfilesRequest\x12Q\n\x06parent\x18\x01 \x01(\tBA\xe0\x41\x02\xfa\x41;\x12\x39networkconnectivity.googleapis.com/RemoteTransportProfile\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xbc\x01\n#ListRemoteTransportProfilesResponse\x12\x62\n\x19remote_transport_profiles\x18\x01 \x03(\x0b\x32?.google.cloud.networkconnectivity.v1beta.RemoteTransportProfile\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x18\n\x0bunreachable\x18\x03 \x03(\tB\x03\xe0\x41\x06\"s\n GetRemoteTransportProfileRequest\x12O\n\x04name\x18\x01 \x01(\tBA\xe0\x41\x02\xfa\x41;\n9networkconnectivity.googleapis.com/RemoteTransportProfile\"\xbe\x0b\n\tTransport\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12S\n\x06labels\x18\x04 \x03(\x0b\x32>.google.cloud.networkconnectivity.v1beta.Transport.LabelsEntryB\x03\xe0\x41\x01\x12\x18\n\x0b\x64\x65scription\x18\x06 \x01(\tB\x03\xe0\x41\x01\x12Y\n\x0eremote_profile\x18\x07 \x01(\tBA\xe0\x41\x01\xfa\x41;\n9networkconnectivity.googleapis.com/RemoteTransportProfile\x12$\n\x17provided_activation_key\x18\x08 \x01(\tB\x03\xe0\x41\x01\x12%\n\x18generated_activation_key\x18\t \x01(\tB\x03\xe0\x41\x03\x12T\n\tbandwidth\x18\n \x01(\x0e\x32<.google.cloud.networkconnectivity.v1beta.Transport.BandwidthB\x03\xe0\x41\x01\x12U\n\nstack_type\x18\x0b \x01(\x0e\x32<.google.cloud.networkconnectivity.v1beta.Transport.StackTypeB\x03\xe0\x41\x01\x12L\n\x05state\x18\x0c \x01(\x0e\x32\x38.google.cloud.networkconnectivity.v1beta.Transport.StateB\x03\xe0\x41\x03\x12\x16\n\tmtu_limit\x18\r \x01(\x05\x42\x03\xe0\x41\x03\x12\x1a\n\radmin_enabled\x18\x0e \x01(\x08\x42\x03\xe0\x41\x01\x12\x37\n\x07network\x18\x0f \x01(\tB&\xe0\x41\x01\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\x1e\n\x11\x61\x64vertised_routes\x18\x10 \x03(\tB\x03\xe0\x41\x01\x12\x1e\n\x11remote_account_id\x18\x11 \x01(\tB\x03\xe0\x41\x01\x12\x1c\n\x0fpeering_network\x18\x12 \x01(\tB\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\"\xd2\x01\n\tBandwidth\x12\x19\n\x15\x42\x41NDWIDTH_UNSPECIFIED\x10\x00\x12\x0b\n\x07\x42PS_50M\x10\x01\x12\x0c\n\x08\x42PS_100M\x10\x02\x12\x0c\n\x08\x42PS_200M\x10\x03\x12\x0c\n\x08\x42PS_300M\x10\x04\x12\x0c\n\x08\x42PS_400M\x10\x05\x12\x0c\n\x08\x42PS_500M\x10\x06\x12\n\n\x06\x42PS_1G\x10\x07\x12\n\n\x06\x42PS_2G\x10\x08\x12\n\n\x06\x42PS_5G\x10\t\x12\x0b\n\x07\x42PS_10G\x10\n\x12\x0b\n\x07\x42PS_20G\x10\x0b\x12\x0b\n\x07\x42PS_50G\x10\x0c\x12\x0c\n\x08\x42PS_100G\x10\r\"E\n\tStackType\x12\x1a\n\x16STACK_TYPE_UNSPECIFIED\x10\x00\x12\r\n\tIPV4_ONLY\x10\x01\x12\r\n\tIPV4_IPV6\x10\x02\"~\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x43REATING\x10\x01\x12\x12\n\x0ePENDING_CONFIG\x10\x02\x12\x0f\n\x0bPENDING_KEY\x10\x03\x12\n\n\x06\x41\x43TIVE\x10\x04\x12\x0c\n\x08\x44\x45LETING\x10\x05\x12\x11\n\rDEPROVISIONED\x10\x06:\x89\x01\xea\x41\x85\x01\n,networkconnectivity.googleapis.com/Transport\x12>projects/{project}/locations/{location}/transports/{transport}*\ntransports2\ttransport\"\xba\x01\n\x15ListTransportsRequest\x12\x44\n\x06parent\x18\x01 \x01(\tB4\xe0\x41\x02\xfa\x41.\x12,networkconnectivity.googleapis.com/Transport\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x93\x01\n\x16ListTransportsResponse\x12\x46\n\ntransports\x18\x01 \x03(\x0b\x32\x32.google.cloud.networkconnectivity.v1beta.Transport\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x18\n\x0bunreachable\x18\x03 \x03(\tB\x03\xe0\x41\x06\"Y\n\x13GetTransportRequest\x12\x42\n\x04name\x18\x01 \x01(\tB4\xe0\x41\x02\xfa\x41.\n,networkconnectivity.googleapis.com/Transport\"V\n\x10GetStatusRequest\x12\x42\n\x04name\x18\x01 \x01(\tB4\xe0\x41\x02\xfa\x41.\n,networkconnectivity.googleapis.com/Transport\"\xc1\x07\n\x11GetStatusResponse\x12`\n\x0eoverall_status\x18\x01 \x01(\x0e\x32H.google.cloud.networkconnectivity.v1beta.GetStatusResponse.OverallStatus\x12h\n\x12operational_status\x18\x02 \x01(\x0e\x32L.google.cloud.networkconnectivity.v1beta.GetStatusResponse.OperationalStatus\x12j\n\x13\x63onnectivity_status\x18\x03 \x01(\x0e\x32M.google.cloud.networkconnectivity.v1beta.GetStatusResponse.ConnectivityStatus\x12_\n\x0emac_sec_status\x18\x04 \x01(\x0e\x32G.google.cloud.networkconnectivity.v1beta.GetStatusResponse.MacSecStatus\"y\n\rOverallStatus\x12\x1e\n\x1aOVERALL_STATUS_UNSPECIFIED\x10\x00\x12\n\n\x06\x41\x43TIVE\x10\x01\x12\x0f\n\x0bPENDING_KEY\x10\x02\x12\x0f\n\x0b\x43ONFIGURING\x10\x03\x12\x10\n\x0c\x44ISCONNECTED\x10\x04\x12\x08\n\x04\x44OWN\x10\x05\"s\n\x11OperationalStatus\x12\"\n\x1eOPERATIONAL_STATUS_UNSPECIFIED\x10\x00\x12\x1d\n\x19OPERATIONAL_STATUS_ACTIVE\x10\x01\x12\x1b\n\x17OPERATIONAL_STATUS_DOWN\x10\x02\"\x82\x01\n\x12\x43onnectivityStatus\x12#\n\x1f\x43ONNECTIVITY_STATUS_UNSPECIFIED\x10\x00\x12!\n\x1d\x43ONNECTIVITY_STATUS_CONNECTED\x10\x01\x12$\n CONNECTIVITY_STATUS_DISCONNECTED\x10\x02\"\x9d\x01\n\x0cMacSecStatus\x12\x1e\n\x1aMAC_SEC_STATUS_UNSPECIFIED\x10\x00\x12%\n!MAC_SEC_STATUS_ACTIVE_FAIL_CLOSED\x10\x01\x12#\n\x1fMAC_SEC_STATUS_ACTIVE_FAIL_OPEN\x10\x02\x12!\n\x1dMAC_SEC_STATUS_NOT_CONFIGURED\x10\x03\"\xe6\x01\n\x16\x43reateTransportRequest\x12\x44\n\x06parent\x18\x01 \x01(\tB4\xe0\x41\x02\xfa\x41.\x12,networkconnectivity.googleapis.com/Transport\x12\x19\n\x0ctransport_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12J\n\ttransport\x18\x03 \x01(\x0b\x32\x32.google.cloud.networkconnectivity.v1beta.TransportB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x04 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"\xbb\x01\n\x16UpdateTransportRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12J\n\ttransport\x18\x02 \x01(\x0b\x32\x32.google.cloud.networkconnectivity.v1beta.TransportB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x03 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"}\n\x16\x44\x65leteTransportRequest\x12\x42\n\x04name\x18\x01 \x01(\tB4\xe0\x41\x02\xfa\x41.\n,networkconnectivity.googleapis.com/Transport\x12\x1f\n\nrequest_id\x18\x02 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x32\xc2\x0f\n\x10TransportManager\x12\x8a\x02\n\x1bListRemoteTransportProfiles\x12K.google.cloud.networkconnectivity.v1beta.ListRemoteTransportProfilesRequest\x1aL.google.cloud.networkconnectivity.v1beta.ListRemoteTransportProfilesResponse\"P\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x41\x12?/v1beta/{parent=projects/*/locations/*}/remoteTransportProfiles\x12\xf7\x01\n\x19GetRemoteTransportProfile\x12I.google.cloud.networkconnectivity.v1beta.GetRemoteTransportProfileRequest\x1a?.google.cloud.networkconnectivity.v1beta.RemoteTransportProfile\"N\xda\x41\x04name\x82\xd3\xe4\x93\x02\x41\x12?/v1beta/{name=projects/*/locations/*/remoteTransportProfiles/*}\x12\xd6\x01\n\x0eListTransports\x12>.google.cloud.networkconnectivity.v1beta.ListTransportsRequest\x1a?.google.cloud.networkconnectivity.v1beta.ListTransportsResponse\"C\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x34\x12\x32/v1beta/{parent=projects/*/locations/*}/transports\x12\xc3\x01\n\x0cGetTransport\x12<.google.cloud.networkconnectivity.v1beta.GetTransportRequest\x1a\x32.google.cloud.networkconnectivity.v1beta.Transport\"A\xda\x41\x04name\x82\xd3\xe4\x93\x02\x34\x12\x32/v1beta/{name=projects/*/locations/*/transports/*}\x12\xcf\x01\n\tGetStatus\x12\x39.google.cloud.networkconnectivity.v1beta.GetStatusRequest\x1a:.google.cloud.networkconnectivity.v1beta.GetStatusResponse\"K\xda\x41\x04name\x82\xd3\xe4\x93\x02>\x12</v1beta/{name=projects/*/locations/*/transports/*}:getStatus\x12\xfa\x01\n\x0f\x43reateTransport\x12?.google.cloud.networkconnectivity.v1beta.CreateTransportRequest\x1a\x1d.google.longrunning.Operation\"\x86\x01\xca\x41\x1e\n\tTransport\x12\x11OperationMetadata\xda\x41\x1dparent,transport,transport_id\x82\xd3\xe4\x93\x02?\"2/v1beta/{parent=projects/*/locations/*}/transports:\ttransport\x12\xfc\x01\n\x0fUpdateTransport\x12?.google.cloud.networkconnectivity.v1beta.UpdateTransportRequest\x1a\x1d.google.longrunning.Operation\"\x88\x01\xca\x41\x1e\n\tTransport\x12\x11OperationMetadata\xda\x41\x15transport,update_mask\x82\xd3\xe4\x93\x02I2</v1beta/{transport.name=projects/*/locations/*/transports/*}:\ttransport\x12\xe1\x01\n\x0f\x44\x65leteTransport\x12?.google.cloud.networkconnectivity.v1beta.DeleteTransportRequest\x1a\x1d.google.longrunning.Operation\"n\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x34*2/v1beta/{name=projects/*/locations/*/transports/*}\x1aV\xca\x41\"networkconnectivity.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xa6\x02\n+com.google.cloud.networkconnectivity.v1betaB\x15TransportManagerProtoP\x01Z]cloud.google.com/go/networkconnectivity/apiv1beta/networkconnectivitypb;networkconnectivitypb\xaa\x02\'Google.Cloud.NetworkConnectivity.V1Beta\xca\x02\'Google\\Cloud\\NetworkConnectivity\\V1beta\xea\x02*Google::Cloud::NetworkConnectivity::V1betab\x06proto3"
|
|
19
|
+
descriptor_data = "\n?google/cloud/networkconnectivity/v1beta/transport_manager.proto\x12\'google.cloud.networkconnectivity.v1beta\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1bgoogle/api/field_info.proto\x1a\x19google/api/resource.proto\x1a\x34google/cloud/networkconnectivity/v1beta/common.proto\x1a#google/longrunning/operations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xa5\x0c\n\x16RemoteTransportProfile\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12`\n\x06labels\x18\x04 \x03(\x0b\x32K.google.cloud.networkconnectivity.v1beta.RemoteTransportProfile.LabelsEntryB\x03\xe0\x41\x03\x12\x18\n\x0b\x64\x65scription\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12\x15\n\x08provider\x18\x07 \x01(\tB\x03\xe0\x41\x03\x12\x1a\n\rprovider_site\x18\x08 \x01(\tB\x03\xe0\x41\x03\x12l\n\x14supported_bandwidths\x18\t \x03(\x0e\x32I.google.cloud.networkconnectivity.v1beta.RemoteTransportProfile.BandwidthB\x03\xe0\x41\x03\x12j\n\x03sla\x18\n \x01(\x0e\x32X.google.cloud.networkconnectivity.v1beta.RemoteTransportProfile.ServiceLevelAvailabilityB\x03\xe0\x41\x03\x12\x66\n\x04\x66low\x18\x0b \x01(\x0e\x32S.google.cloud.networkconnectivity.v1beta.RemoteTransportProfile.KeyProvisioningFlowB\x03\xe0\x41\x03\x12_\n\x0border_state\x18\x0c \x01(\x0e\x32\x45.google.cloud.networkconnectivity.v1beta.RemoteTransportProfile.StateB\x03\xe0\x41\x03\x12\x19\n\x0c\x64isplay_name\x18\r \x01(\tB\x03\xe0\x41\x03\x12h\n\rprovider_type\x18\x0e \x01(\x0e\x32L.google.cloud.networkconnectivity.v1beta.RemoteTransportProfile.ProviderTypeB\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\"\xd2\x01\n\tBandwidth\x12\x19\n\x15\x42\x41NDWIDTH_UNSPECIFIED\x10\x00\x12\x0b\n\x07\x42PS_50M\x10\x01\x12\x0c\n\x08\x42PS_100M\x10\x02\x12\x0c\n\x08\x42PS_200M\x10\x03\x12\x0c\n\x08\x42PS_300M\x10\x04\x12\x0c\n\x08\x42PS_400M\x10\x05\x12\x0c\n\x08\x42PS_500M\x10\x06\x12\n\n\x06\x42PS_1G\x10\x07\x12\n\n\x06\x42PS_2G\x10\x08\x12\n\n\x06\x42PS_5G\x10\t\x12\x0b\n\x07\x42PS_10G\x10\n\x12\x0b\n\x07\x42PS_20G\x10\x0b\x12\x0b\n\x07\x42PS_50G\x10\x0c\x12\x0c\n\x08\x42PS_100G\x10\r\"]\n\x18ServiceLevelAvailability\x12*\n&SERVICE_LEVEL_AVAILABILITY_UNSPECIFIED\x10\x00\x12\x08\n\x04HIGH\x10\x01\x12\x0b\n\x07MAXIMUM\x10\x02\"r\n\x13KeyProvisioningFlow\x12%\n!KEY_PROVISIONING_FLOW_UNSPECIFIED\x10\x00\x12\x0e\n\nINPUT_ONLY\x10\x01\x12\x0f\n\x0bOUTPUT_ONLY\x10\x02\x12\x13\n\x0fINPUT_OR_OUTPUT\x10\x03\"4\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\n\n\x06\x43LOSED\x10\x01\x12\x08\n\x04OPEN\x10\x02\"E\n\x0cProviderType\x12\x1d\n\x19PROVIDER_TYPE_UNSPECIFIED\x10\x00\x12\t\n\x05\x43LOUD\x10\x01\x12\x0b\n\x07NETWORK\x10\x02:\xcc\x01\xea\x41\xc8\x01\n9networkconnectivity.googleapis.com/RemoteTransportProfile\x12Zprojects/{project}/locations/{location}/remoteTransportProfiles/{remote_transport_profile}*\x17remoteTransportProfiles2\x16remoteTransportProfile\"\xd4\x01\n\"ListRemoteTransportProfilesRequest\x12Q\n\x06parent\x18\x01 \x01(\tBA\xe0\x41\x02\xfa\x41;\x12\x39networkconnectivity.googleapis.com/RemoteTransportProfile\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xbc\x01\n#ListRemoteTransportProfilesResponse\x12\x62\n\x19remote_transport_profiles\x18\x01 \x03(\x0b\x32?.google.cloud.networkconnectivity.v1beta.RemoteTransportProfile\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x18\n\x0bunreachable\x18\x03 \x03(\tB\x03\xe0\x41\x06\"s\n GetRemoteTransportProfileRequest\x12O\n\x04name\x18\x01 \x01(\tBA\xe0\x41\x02\xfa\x41;\n9networkconnectivity.googleapis.com/RemoteTransportProfile\"\x8f\x01\n\x1dParseFromActivationKeyRequest\x12Q\n\x06parent\x18\x01 \x01(\tBA\xe0\x41\x02\xfa\x41;\x12\x39networkconnectivity.googleapis.com/RemoteTransportProfile\x12\x1b\n\x0e\x61\x63tivation_key\x18\x02 \x01(\tB\x03\xe0\x41\x02\"\x83\x01\n\x1eParseFromActivationKeyResponse\x12\x61\n\x18remote_transport_profile\x18\x01 \x01(\x0b\x32?.google.cloud.networkconnectivity.v1beta.RemoteTransportProfile\"\xcc\x0c\n\tTransport\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12S\n\x06labels\x18\x04 \x03(\x0b\x32>.google.cloud.networkconnectivity.v1beta.Transport.LabelsEntryB\x03\xe0\x41\x01\x12\x18\n\x0b\x64\x65scription\x18\x06 \x01(\tB\x03\xe0\x41\x01\x12\\\n\x0eremote_profile\x18\x07 \x01(\tBD\xe0\x41\x01\xe0\x41\x05\xfa\x41;\n9networkconnectivity.googleapis.com/RemoteTransportProfile\x12\'\n\x17provided_activation_key\x18\x08 \x01(\tB\x06\xe0\x41\x01\xe0\x41\x05\x12%\n\x18generated_activation_key\x18\t \x01(\tB\x03\xe0\x41\x03\x12T\n\tbandwidth\x18\n \x01(\x0e\x32<.google.cloud.networkconnectivity.v1beta.Transport.BandwidthB\x03\xe0\x41\x01\x12U\n\nstack_type\x18\x0b \x01(\x0e\x32<.google.cloud.networkconnectivity.v1beta.Transport.StackTypeB\x03\xe0\x41\x01\x12L\n\x05state\x18\x0c \x01(\x0e\x32\x38.google.cloud.networkconnectivity.v1beta.Transport.StateB\x03\xe0\x41\x03\x12\x16\n\tmtu_limit\x18\r \x01(\x05\x42\x03\xe0\x41\x03\x12\x1a\n\radmin_enabled\x18\x0e \x01(\x08\x42\x03\xe0\x41\x01\x12:\n\x07network\x18\x0f \x01(\tB)\xe0\x41\x01\xe0\x41\x05\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\x1e\n\x11\x61\x64vertised_routes\x18\x10 \x03(\tB\x03\xe0\x41\x01\x12!\n\x11remote_account_id\x18\x11 \x01(\tB\x06\xe0\x41\x01\xe0\x41\x05\x12\x1c\n\x0fpeering_network\x18\x12 \x01(\tB\x03\xe0\x41\x03\x12>\n\x03hub\x18\x13 \x01(\tB1\xe0\x41\x01\xe0\x41\x05\xfa\x41(\n&networkconnectivity.googleapis.com/Hub\x12#\n\x13psc_routing_enabled\x18\x14 \x01(\x08\x42\x06\xe0\x41\x01\xe0\x41\x05\x12\x1b\n\x0b\x61uto_accept\x18\x15 \x01(\x08\x42\x06\xe0\x41\x01\xe0\x41\x05\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xd2\x01\n\tBandwidth\x12\x19\n\x15\x42\x41NDWIDTH_UNSPECIFIED\x10\x00\x12\x0b\n\x07\x42PS_50M\x10\x01\x12\x0c\n\x08\x42PS_100M\x10\x02\x12\x0c\n\x08\x42PS_200M\x10\x03\x12\x0c\n\x08\x42PS_300M\x10\x04\x12\x0c\n\x08\x42PS_400M\x10\x05\x12\x0c\n\x08\x42PS_500M\x10\x06\x12\n\n\x06\x42PS_1G\x10\x07\x12\n\n\x06\x42PS_2G\x10\x08\x12\n\n\x06\x42PS_5G\x10\t\x12\x0b\n\x07\x42PS_10G\x10\n\x12\x0b\n\x07\x42PS_20G\x10\x0b\x12\x0b\n\x07\x42PS_50G\x10\x0c\x12\x0c\n\x08\x42PS_100G\x10\r\"E\n\tStackType\x12\x1a\n\x16STACK_TYPE_UNSPECIFIED\x10\x00\x12\r\n\tIPV4_ONLY\x10\x01\x12\r\n\tIPV4_IPV6\x10\x02\"~\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x43REATING\x10\x01\x12\x12\n\x0ePENDING_CONFIG\x10\x02\x12\x0f\n\x0bPENDING_KEY\x10\x03\x12\n\n\x06\x41\x43TIVE\x10\x04\x12\x0c\n\x08\x44\x45LETING\x10\x05\x12\x11\n\rDEPROVISIONED\x10\x06:\x89\x01\xea\x41\x85\x01\n,networkconnectivity.googleapis.com/Transport\x12>projects/{project}/locations/{location}/transports/{transport}*\ntransports2\ttransport\"\xba\x01\n\x15ListTransportsRequest\x12\x44\n\x06parent\x18\x01 \x01(\tB4\xe0\x41\x02\xfa\x41.\x12,networkconnectivity.googleapis.com/Transport\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x93\x01\n\x16ListTransportsResponse\x12\x46\n\ntransports\x18\x01 \x03(\x0b\x32\x32.google.cloud.networkconnectivity.v1beta.Transport\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x18\n\x0bunreachable\x18\x03 \x03(\tB\x03\xe0\x41\x06\"Y\n\x13GetTransportRequest\x12\x42\n\x04name\x18\x01 \x01(\tB4\xe0\x41\x02\xfa\x41.\n,networkconnectivity.googleapis.com/Transport\"o\n\x10GetStatusRequest\x12\x42\n\x04name\x18\x01 \x01(\tB4\xe0\x41\x02\xfa\x41.\n,networkconnectivity.googleapis.com/Transport\x12\x17\n\nskip_cache\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01\"\xc1\x07\n\x11GetStatusResponse\x12`\n\x0eoverall_status\x18\x01 \x01(\x0e\x32H.google.cloud.networkconnectivity.v1beta.GetStatusResponse.OverallStatus\x12h\n\x12operational_status\x18\x02 \x01(\x0e\x32L.google.cloud.networkconnectivity.v1beta.GetStatusResponse.OperationalStatus\x12j\n\x13\x63onnectivity_status\x18\x03 \x01(\x0e\x32M.google.cloud.networkconnectivity.v1beta.GetStatusResponse.ConnectivityStatus\x12_\n\x0emac_sec_status\x18\x04 \x01(\x0e\x32G.google.cloud.networkconnectivity.v1beta.GetStatusResponse.MacSecStatus\"y\n\rOverallStatus\x12\x1e\n\x1aOVERALL_STATUS_UNSPECIFIED\x10\x00\x12\n\n\x06\x41\x43TIVE\x10\x01\x12\x0f\n\x0bPENDING_KEY\x10\x02\x12\x0f\n\x0b\x43ONFIGURING\x10\x03\x12\x10\n\x0c\x44ISCONNECTED\x10\x04\x12\x08\n\x04\x44OWN\x10\x05\"s\n\x11OperationalStatus\x12\"\n\x1eOPERATIONAL_STATUS_UNSPECIFIED\x10\x00\x12\x1d\n\x19OPERATIONAL_STATUS_ACTIVE\x10\x01\x12\x1b\n\x17OPERATIONAL_STATUS_DOWN\x10\x02\"\x82\x01\n\x12\x43onnectivityStatus\x12#\n\x1f\x43ONNECTIVITY_STATUS_UNSPECIFIED\x10\x00\x12!\n\x1d\x43ONNECTIVITY_STATUS_CONNECTED\x10\x01\x12$\n CONNECTIVITY_STATUS_DISCONNECTED\x10\x02\"\x9d\x01\n\x0cMacSecStatus\x12\x1e\n\x1aMAC_SEC_STATUS_UNSPECIFIED\x10\x00\x12%\n!MAC_SEC_STATUS_ACTIVE_FAIL_CLOSED\x10\x01\x12#\n\x1fMAC_SEC_STATUS_ACTIVE_FAIL_OPEN\x10\x02\x12!\n\x1dMAC_SEC_STATUS_NOT_CONFIGURED\x10\x03\"\xe6\x01\n\x16\x43reateTransportRequest\x12\x44\n\x06parent\x18\x01 \x01(\tB4\xe0\x41\x02\xfa\x41.\x12,networkconnectivity.googleapis.com/Transport\x12\x19\n\x0ctransport_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12J\n\ttransport\x18\x03 \x01(\x0b\x32\x32.google.cloud.networkconnectivity.v1beta.TransportB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x04 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"\xbb\x01\n\x16UpdateTransportRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12J\n\ttransport\x18\x02 \x01(\x0b\x32\x32.google.cloud.networkconnectivity.v1beta.TransportB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x03 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"}\n\x16\x44\x65leteTransportRequest\x12\x42\n\x04name\x18\x01 \x01(\tB4\xe0\x41\x02\xfa\x41.\n,networkconnectivity.googleapis.com/Transport\x12\x1f\n\nrequest_id\x18\x02 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x32\xe1\x11\n\x10TransportManager\x12\x8a\x02\n\x1bListRemoteTransportProfiles\x12K.google.cloud.networkconnectivity.v1beta.ListRemoteTransportProfilesRequest\x1aL.google.cloud.networkconnectivity.v1beta.ListRemoteTransportProfilesResponse\"P\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x41\x12?/v1beta/{parent=projects/*/locations/*}/remoteTransportProfiles\x12\xf7\x01\n\x19GetRemoteTransportProfile\x12I.google.cloud.networkconnectivity.v1beta.GetRemoteTransportProfileRequest\x1a?.google.cloud.networkconnectivity.v1beta.RemoteTransportProfile\"N\xda\x41\x04name\x82\xd3\xe4\x93\x02\x41\x12?/v1beta/{name=projects/*/locations/*/remoteTransportProfiles/*}\x12\x9c\x02\n\x16ParseFromActivationKey\x12\x46.google.cloud.networkconnectivity.v1beta.ParseFromActivationKeyRequest\x1aG.google.cloud.networkconnectivity.v1beta.ParseFromActivationKeyResponse\"q\xda\x41\x15parent,activation_key\x82\xd3\xe4\x93\x02S\x12Q/v1beta/{parent=projects/*/locations/*}/remoteTransportProfiles:fromActivationKey\x12\xd6\x01\n\x0eListTransports\x12>.google.cloud.networkconnectivity.v1beta.ListTransportsRequest\x1a?.google.cloud.networkconnectivity.v1beta.ListTransportsResponse\"C\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x34\x12\x32/v1beta/{parent=projects/*/locations/*}/transports\x12\xc3\x01\n\x0cGetTransport\x12<.google.cloud.networkconnectivity.v1beta.GetTransportRequest\x1a\x32.google.cloud.networkconnectivity.v1beta.Transport\"A\xda\x41\x04name\x82\xd3\xe4\x93\x02\x34\x12\x32/v1beta/{name=projects/*/locations/*/transports/*}\x12\xcf\x01\n\tGetStatus\x12\x39.google.cloud.networkconnectivity.v1beta.GetStatusRequest\x1a:.google.cloud.networkconnectivity.v1beta.GetStatusResponse\"K\xda\x41\x04name\x82\xd3\xe4\x93\x02>\x12</v1beta/{name=projects/*/locations/*/transports/*}:getStatus\x12\xfa\x01\n\x0f\x43reateTransport\x12?.google.cloud.networkconnectivity.v1beta.CreateTransportRequest\x1a\x1d.google.longrunning.Operation\"\x86\x01\xca\x41\x1e\n\tTransport\x12\x11OperationMetadata\xda\x41\x1dparent,transport,transport_id\x82\xd3\xe4\x93\x02?\"2/v1beta/{parent=projects/*/locations/*}/transports:\ttransport\x12\xfc\x01\n\x0fUpdateTransport\x12?.google.cloud.networkconnectivity.v1beta.UpdateTransportRequest\x1a\x1d.google.longrunning.Operation\"\x88\x01\xca\x41\x1e\n\tTransport\x12\x11OperationMetadata\xda\x41\x15transport,update_mask\x82\xd3\xe4\x93\x02I2</v1beta/{transport.name=projects/*/locations/*/transports/*}:\ttransport\x12\xe1\x01\n\x0f\x44\x65leteTransport\x12?.google.cloud.networkconnectivity.v1beta.DeleteTransportRequest\x1a\x1d.google.longrunning.Operation\"n\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x34*2/v1beta/{name=projects/*/locations/*/transports/*}\x1aV\xca\x41\"networkconnectivity.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xa6\x02\n+com.google.cloud.networkconnectivity.v1betaB\x15TransportManagerProtoP\x01Z]cloud.google.com/go/networkconnectivity/apiv1beta/networkconnectivitypb;networkconnectivitypb\xaa\x02\'Google.Cloud.NetworkConnectivity.V1Beta\xca\x02\'Google\\Cloud\\NetworkConnectivity\\V1beta\xea\x02*Google::Cloud::NetworkConnectivity::V1betab\x06proto3"
|
|
20
20
|
|
|
21
21
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
22
22
|
pool.add_serialized_file(descriptor_data)
|
|
@@ -30,9 +30,12 @@ module Google
|
|
|
30
30
|
RemoteTransportProfile::ServiceLevelAvailability = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkconnectivity.v1beta.RemoteTransportProfile.ServiceLevelAvailability").enummodule
|
|
31
31
|
RemoteTransportProfile::KeyProvisioningFlow = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkconnectivity.v1beta.RemoteTransportProfile.KeyProvisioningFlow").enummodule
|
|
32
32
|
RemoteTransportProfile::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkconnectivity.v1beta.RemoteTransportProfile.State").enummodule
|
|
33
|
+
RemoteTransportProfile::ProviderType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkconnectivity.v1beta.RemoteTransportProfile.ProviderType").enummodule
|
|
33
34
|
ListRemoteTransportProfilesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkconnectivity.v1beta.ListRemoteTransportProfilesRequest").msgclass
|
|
34
35
|
ListRemoteTransportProfilesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkconnectivity.v1beta.ListRemoteTransportProfilesResponse").msgclass
|
|
35
36
|
GetRemoteTransportProfileRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkconnectivity.v1beta.GetRemoteTransportProfileRequest").msgclass
|
|
37
|
+
ParseFromActivationKeyRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkconnectivity.v1beta.ParseFromActivationKeyRequest").msgclass
|
|
38
|
+
ParseFromActivationKeyResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkconnectivity.v1beta.ParseFromActivationKeyResponse").msgclass
|
|
36
39
|
Transport = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkconnectivity.v1beta.Transport").msgclass
|
|
37
40
|
Transport::Bandwidth = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkconnectivity.v1beta.Transport.Bandwidth").enummodule
|
|
38
41
|
Transport::StackType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.networkconnectivity.v1beta.Transport.StackType").enummodule
|
|
@@ -37,6 +37,8 @@ module Google
|
|
|
37
37
|
rpc :ListRemoteTransportProfiles, ::Google::Cloud::NetworkConnectivity::V1beta::ListRemoteTransportProfilesRequest, ::Google::Cloud::NetworkConnectivity::V1beta::ListRemoteTransportProfilesResponse
|
|
38
38
|
# Gets details of a single RemoteTransportProfile.
|
|
39
39
|
rpc :GetRemoteTransportProfile, ::Google::Cloud::NetworkConnectivity::V1beta::GetRemoteTransportProfileRequest, ::Google::Cloud::NetworkConnectivity::V1beta::RemoteTransportProfile
|
|
40
|
+
# Gets details of a single RemoteTransportProfile given an activation key.
|
|
41
|
+
rpc :ParseFromActivationKey, ::Google::Cloud::NetworkConnectivity::V1beta::ParseFromActivationKeyRequest, ::Google::Cloud::NetworkConnectivity::V1beta::ParseFromActivationKeyResponse
|
|
40
42
|
# Lists Transports in a given project and location.
|
|
41
43
|
rpc :ListTransports, ::Google::Cloud::NetworkConnectivity::V1beta::ListTransportsRequest, ::Google::Cloud::NetworkConnectivity::V1beta::ListTransportsResponse
|
|
42
44
|
# Gets details of a single Transport.
|
|
@@ -93,10 +93,32 @@ module Google
|
|
|
93
93
|
# for the hub. If true, Private Service Connect endpoints in VPC spokes
|
|
94
94
|
# attached to the hub are made accessible to other VPC spokes attached to the
|
|
95
95
|
# hub. The default value is false.
|
|
96
|
+
# @!attribute [rw] export_psc_config
|
|
97
|
+
# @return [::Google::Cloud::NetworkConnectivity::V1beta::Hub::ExportPscConfig]
|
|
98
|
+
# Optional. Config for more granular control of Private Service Connect
|
|
99
|
+
# transitivity.
|
|
96
100
|
class Hub
|
|
97
101
|
include ::Google::Protobuf::MessageExts
|
|
98
102
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
99
103
|
|
|
104
|
+
# Configuration for more granular control of Private Service Connect
|
|
105
|
+
# connection propagation.
|
|
106
|
+
# This allows enabling or disabling connection propagation for specific types
|
|
107
|
+
# of Private Service Connect endpoints.
|
|
108
|
+
# @!attribute [rw] published_services_and_regional_google_apis
|
|
109
|
+
# @return [::Boolean]
|
|
110
|
+
# Optional. Controls whether Private Service Connect endpoints for regional
|
|
111
|
+
# ILBs and regional Google APIs should be propagated. Default value is true
|
|
112
|
+
# if export_psc is true. Otherwise, the default value is false.
|
|
113
|
+
# @!attribute [rw] global_google_apis
|
|
114
|
+
# @return [::Boolean]
|
|
115
|
+
# Optional. Controls whether Private Service Connect endpoints for global
|
|
116
|
+
# Google APIs should be propagated. The default value is false.
|
|
117
|
+
class ExportPscConfig
|
|
118
|
+
include ::Google::Protobuf::MessageExts
|
|
119
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
120
|
+
end
|
|
121
|
+
|
|
100
122
|
# @!attribute [rw] key
|
|
101
123
|
# @return [::String]
|
|
102
124
|
# @!attribute [rw] value
|
|
@@ -1290,6 +1312,18 @@ module Google
|
|
|
1290
1312
|
# @return [::Array<::String>]
|
|
1291
1313
|
# Optional. Hub routes fully encompassed by include import ranges are
|
|
1292
1314
|
# included during import from hub.
|
|
1315
|
+
# @!attribute [rw] exclude_import_ranges
|
|
1316
|
+
# @return [::Array<::String>]
|
|
1317
|
+
# Optional. Hub routes overlapped/encompassed by exclude import ranges are
|
|
1318
|
+
# excluded during import from hub.
|
|
1319
|
+
# @!attribute [rw] include_export_ranges
|
|
1320
|
+
# @return [::Array<::String>]
|
|
1321
|
+
# Optional. Dynamic routes fully encompassed by include export ranges are
|
|
1322
|
+
# included during export to hub.
|
|
1323
|
+
# @!attribute [rw] exclude_export_ranges
|
|
1324
|
+
# @return [::Array<::String>]
|
|
1325
|
+
# Optional. Dynamic routes overlapped/encompassed by exclude export ranges
|
|
1326
|
+
# are excluded during export to hub.
|
|
1293
1327
|
class LinkedVpnTunnels
|
|
1294
1328
|
include ::Google::Protobuf::MessageExts
|
|
1295
1329
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -1314,6 +1348,18 @@ module Google
|
|
|
1314
1348
|
# @return [::Array<::String>]
|
|
1315
1349
|
# Optional. Hub routes fully encompassed by include import ranges are
|
|
1316
1350
|
# included during import from hub.
|
|
1351
|
+
# @!attribute [rw] exclude_import_ranges
|
|
1352
|
+
# @return [::Array<::String>]
|
|
1353
|
+
# Optional. Hub routes overlapped/encompassed by exclude import ranges are
|
|
1354
|
+
# excluded during import from hub.
|
|
1355
|
+
# @!attribute [rw] include_export_ranges
|
|
1356
|
+
# @return [::Array<::String>]
|
|
1357
|
+
# Optional. Dynamic routes fully encompassed by include export ranges are
|
|
1358
|
+
# included during export to hub.
|
|
1359
|
+
# @!attribute [rw] exclude_export_ranges
|
|
1360
|
+
# @return [::Array<::String>]
|
|
1361
|
+
# Optional. Dynamic routes overlapped/encompassed by exclude export ranges
|
|
1362
|
+
# are excluded during export to hub.
|
|
1317
1363
|
class LinkedInterconnectAttachments
|
|
1318
1364
|
include ::Google::Protobuf::MessageExts
|
|
1319
1365
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -1339,6 +1385,18 @@ module Google
|
|
|
1339
1385
|
# @return [::Array<::String>]
|
|
1340
1386
|
# Optional. Hub routes fully encompassed by include import ranges are
|
|
1341
1387
|
# included during import from hub.
|
|
1388
|
+
# @!attribute [rw] exclude_import_ranges
|
|
1389
|
+
# @return [::Array<::String>]
|
|
1390
|
+
# Optional. Hub routes overlapped/encompassed by exclude import ranges are
|
|
1391
|
+
# excluded during import from hub.
|
|
1392
|
+
# @!attribute [rw] include_export_ranges
|
|
1393
|
+
# @return [::Array<::String>]
|
|
1394
|
+
# Optional. Dynamic routes fully encompassed by include export ranges are
|
|
1395
|
+
# included during export to hub.
|
|
1396
|
+
# @!attribute [rw] exclude_export_ranges
|
|
1397
|
+
# @return [::Array<::String>]
|
|
1398
|
+
# Optional. Dynamic routes overlapped/encompassed by exclude export ranges
|
|
1399
|
+
# are excluded during export to hub.
|
|
1342
1400
|
class LinkedRouterApplianceInstances
|
|
1343
1401
|
include ::Google::Protobuf::MessageExts
|
|
1344
1402
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -1910,6 +1968,10 @@ module Google
|
|
|
1910
1968
|
# derived from Border Gateway Protocol (BGP) advertisements received from an
|
|
1911
1969
|
# NCC hybrid spoke.
|
|
1912
1970
|
DYNAMIC_ROUTE = 3
|
|
1971
|
+
|
|
1972
|
+
# The route leads to a destination within the Private Service Connect
|
|
1973
|
+
# Global Google API range of the VPC network.
|
|
1974
|
+
PSC_GLOBAL_GAPI = 4
|
|
1913
1975
|
end
|
|
1914
1976
|
|
|
1915
1977
|
# The State enum represents the lifecycle stage of a Network Connectivity
|
|
@@ -2017,6 +2079,9 @@ module Google
|
|
|
2017
2079
|
|
|
2018
2080
|
# Gateway spokes are supported in this location.
|
|
2019
2081
|
GATEWAY_SPOKES = 3
|
|
2082
|
+
|
|
2083
|
+
# Supports transports in this location.
|
|
2084
|
+
TRANSPORTS = 4
|
|
2020
2085
|
end
|
|
2021
2086
|
end
|
|
2022
2087
|
end
|
|
@@ -59,6 +59,9 @@ module Google
|
|
|
59
59
|
# @return [::String]
|
|
60
60
|
# Output only. Human readable name of this profile, used to identify this
|
|
61
61
|
# profile in the UI.
|
|
62
|
+
# @!attribute [r] provider_type
|
|
63
|
+
# @return [::Google::Cloud::NetworkConnectivity::V1beta::RemoteTransportProfile::ProviderType]
|
|
64
|
+
# Output only. Provider type for this profile.
|
|
62
65
|
class RemoteTransportProfile
|
|
63
66
|
include ::Google::Protobuf::MessageExts
|
|
64
67
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -161,6 +164,18 @@ module Google
|
|
|
161
164
|
# Enough capacity to fulfill an order.
|
|
162
165
|
OPEN = 2
|
|
163
166
|
end
|
|
167
|
+
|
|
168
|
+
# Provider type for this profile.
|
|
169
|
+
module ProviderType
|
|
170
|
+
# Unspecified provider type.
|
|
171
|
+
PROVIDER_TYPE_UNSPECIFIED = 0
|
|
172
|
+
|
|
173
|
+
# Represents a Cloud service provider.
|
|
174
|
+
CLOUD = 1
|
|
175
|
+
|
|
176
|
+
# Represents a Network service provider.
|
|
177
|
+
NETWORK = 2
|
|
178
|
+
end
|
|
164
179
|
end
|
|
165
180
|
|
|
166
181
|
# Message for requesting list of RemoteTransportProfiles.
|
|
@@ -209,6 +224,28 @@ module Google
|
|
|
209
224
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
210
225
|
end
|
|
211
226
|
|
|
227
|
+
# Message for getting a RemoteTransportProfile from an activation key.
|
|
228
|
+
# @!attribute [rw] parent
|
|
229
|
+
# @return [::String]
|
|
230
|
+
# Required. Parent value for ParseFromActivationKeyRequest.
|
|
231
|
+
# @!attribute [rw] activation_key
|
|
232
|
+
# @return [::String]
|
|
233
|
+
# Required. The activation key to get the RemoteTransportProfile for.
|
|
234
|
+
class ParseFromActivationKeyRequest
|
|
235
|
+
include ::Google::Protobuf::MessageExts
|
|
236
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
237
|
+
end
|
|
238
|
+
|
|
239
|
+
# Message for response to getting a RemoteTransportProfile from an activation
|
|
240
|
+
# key.
|
|
241
|
+
# @!attribute [rw] remote_transport_profile
|
|
242
|
+
# @return [::Google::Cloud::NetworkConnectivity::V1beta::RemoteTransportProfile]
|
|
243
|
+
# The RemoteTransportProfile that was parsed from the activation key.
|
|
244
|
+
class ParseFromActivationKeyResponse
|
|
245
|
+
include ::Google::Protobuf::MessageExts
|
|
246
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
247
|
+
end
|
|
248
|
+
|
|
212
249
|
# Message describing Transport object.
|
|
213
250
|
# @!attribute [rw] name
|
|
214
251
|
# @return [::String]
|
|
@@ -227,13 +264,13 @@ module Google
|
|
|
227
264
|
# Optional. Description of the Transport.
|
|
228
265
|
# @!attribute [rw] remote_profile
|
|
229
266
|
# @return [::String]
|
|
230
|
-
# Optional. Name of the remoteTransportProfile that this Transport
|
|
231
|
-
# connecting to.
|
|
267
|
+
# Optional. Immutable. Name of the remoteTransportProfile that this Transport
|
|
268
|
+
# is connecting to.
|
|
232
269
|
# @!attribute [rw] provided_activation_key
|
|
233
270
|
# @return [::String]
|
|
234
|
-
# Optional. Key used for establishing a connection with the remote
|
|
235
|
-
# This key can only be provided if the profile supports an INPUT
|
|
236
|
-
# the resource is in the PENDING_KEY state.
|
|
271
|
+
# Optional. Immutable. Key used for establishing a connection with the remote
|
|
272
|
+
# transport. This key can only be provided if the profile supports an INPUT
|
|
273
|
+
# key flow and the resource is in the PENDING_KEY state.
|
|
237
274
|
# @!attribute [r] generated_activation_key
|
|
238
275
|
# @return [::String]
|
|
239
276
|
# Output only. Google-generated activation key. This is only output if the
|
|
@@ -265,22 +302,41 @@ module Google
|
|
|
265
302
|
# bandwidth associated with the connectivity.
|
|
266
303
|
# @!attribute [rw] network
|
|
267
304
|
# @return [::String]
|
|
268
|
-
# Optional. Resource URI of the Network that will be peered with
|
|
269
|
-
# Transport. This field must be provided during resource creation and
|
|
270
|
-
# be changed.
|
|
305
|
+
# Optional. Immutable. Resource URI of the Network that will be peered with
|
|
306
|
+
# this Transport. This field must be provided during resource creation and
|
|
307
|
+
# cannot be changed.
|
|
271
308
|
# @!attribute [rw] advertised_routes
|
|
272
309
|
# @return [::Array<::String>]
|
|
273
310
|
# Optional. List of IP Prefixes that will be advertised to the remote
|
|
274
311
|
# provider. Both IPv4 and IPv6 addresses are supported.
|
|
275
312
|
# @!attribute [rw] remote_account_id
|
|
276
313
|
# @return [::String]
|
|
277
|
-
# Optional. The user supplied account id for the CSP associated
|
|
278
|
-
# remote profile.
|
|
314
|
+
# Optional. Immutable. The user supplied account id for the CSP associated
|
|
315
|
+
# with the remote profile.
|
|
279
316
|
# @!attribute [r] peering_network
|
|
280
317
|
# @return [::String]
|
|
281
318
|
# Output only. VPC Network URI that was created for the VPC Peering
|
|
282
319
|
# connection to the provided `network`. If VPC Peering is disconnected, this
|
|
283
320
|
# can be used to re-establish.
|
|
321
|
+
# @!attribute [rw] hub
|
|
322
|
+
# @return [::String]
|
|
323
|
+
# Optional. Immutable. The NCC Hub that the Transport should attach to. The
|
|
324
|
+
# hub must be in the same project as the Transport. Format:
|
|
325
|
+
# `{hub}` or `projects/{project}/locations/global/hubs/{hub}`
|
|
326
|
+
# @!attribute [rw] psc_routing_enabled
|
|
327
|
+
# @return [::Boolean]
|
|
328
|
+
# Optional. Immutable. Controls whether a Routing VPC Spoke should be created
|
|
329
|
+
# and attached to the NCC Hub. This will provide Private Service Connect
|
|
330
|
+
# (PSC) connectivity through NCC. This can only be set when the Transport is
|
|
331
|
+
# first created.
|
|
332
|
+
# @!attribute [rw] auto_accept
|
|
333
|
+
# @return [::Boolean]
|
|
334
|
+
# Optional. Immutable. Controls whether resources proposed by the Transport
|
|
335
|
+
# are automatically accepted on behalf of the user. List of actions that can
|
|
336
|
+
# be automatically accepted are:
|
|
337
|
+
# 1. VPC Peering creation
|
|
338
|
+
# 2. Routing VPC Spoke creation
|
|
339
|
+
# 3. Hybrid Spoke creation
|
|
284
340
|
class Transport
|
|
285
341
|
include ::Google::Protobuf::MessageExts
|
|
286
342
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -437,6 +493,10 @@ module Google
|
|
|
437
493
|
# @!attribute [rw] name
|
|
438
494
|
# @return [::String]
|
|
439
495
|
# Required. Name of the resource.
|
|
496
|
+
# @!attribute [rw] skip_cache
|
|
497
|
+
# @return [::Boolean]
|
|
498
|
+
# Optional. If set to true, the response will bypass any caches and return
|
|
499
|
+
# the freshest possible data.
|
|
440
500
|
class GetStatusRequest
|
|
441
501
|
include ::Google::Protobuf::MessageExts
|
|
442
502
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|