google-cloud-vmware_engine-v1 0.3.1 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -496,6 +496,82 @@ module Google
496
496
  result
497
497
  end
498
498
 
499
+ ##
500
+ # Baseline implementation for the get_subnet REST call
501
+ #
502
+ # @param request_pb [::Google::Cloud::VmwareEngine::V1::GetSubnetRequest]
503
+ # A request object representing the call parameters. Required.
504
+ # @param options [::Gapic::CallOptions]
505
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
506
+ #
507
+ # @yield [result, operation] Access the result along with the TransportOperation object
508
+ # @yieldparam result [::Google::Cloud::VmwareEngine::V1::Subnet]
509
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
510
+ #
511
+ # @return [::Google::Cloud::VmwareEngine::V1::Subnet]
512
+ # A result object deserialized from the server's reply
513
+ def get_subnet request_pb, options = nil
514
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
515
+
516
+ verb, uri, query_string_params, body = ServiceStub.transcode_get_subnet_request request_pb
517
+ query_string_params = if query_string_params.any?
518
+ query_string_params.to_h { |p| p.split "=", 2 }
519
+ else
520
+ {}
521
+ end
522
+
523
+ response = @client_stub.make_http_request(
524
+ verb,
525
+ uri: uri,
526
+ body: body || "",
527
+ params: query_string_params,
528
+ options: options
529
+ )
530
+ operation = ::Gapic::Rest::TransportOperation.new response
531
+ result = ::Google::Cloud::VmwareEngine::V1::Subnet.decode_json response.body, ignore_unknown_fields: true
532
+
533
+ yield result, operation if block_given?
534
+ result
535
+ end
536
+
537
+ ##
538
+ # Baseline implementation for the update_subnet REST call
539
+ #
540
+ # @param request_pb [::Google::Cloud::VmwareEngine::V1::UpdateSubnetRequest]
541
+ # A request object representing the call parameters. Required.
542
+ # @param options [::Gapic::CallOptions]
543
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
544
+ #
545
+ # @yield [result, operation] Access the result along with the TransportOperation object
546
+ # @yieldparam result [::Google::Longrunning::Operation]
547
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
548
+ #
549
+ # @return [::Google::Longrunning::Operation]
550
+ # A result object deserialized from the server's reply
551
+ def update_subnet request_pb, options = nil
552
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
553
+
554
+ verb, uri, query_string_params, body = ServiceStub.transcode_update_subnet_request request_pb
555
+ query_string_params = if query_string_params.any?
556
+ query_string_params.to_h { |p| p.split "=", 2 }
557
+ else
558
+ {}
559
+ end
560
+
561
+ response = @client_stub.make_http_request(
562
+ verb,
563
+ uri: uri,
564
+ body: body || "",
565
+ params: query_string_params,
566
+ options: options
567
+ )
568
+ operation = ::Gapic::Rest::TransportOperation.new response
569
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
570
+
571
+ yield result, operation if block_given?
572
+ result
573
+ end
574
+
499
575
  ##
500
576
  # Baseline implementation for the list_node_types REST call
501
577
  #
@@ -1218,6 +1294,234 @@ module Google
1218
1294
  result
1219
1295
  end
1220
1296
 
1297
+ ##
1298
+ # Baseline implementation for the create_private_connection REST call
1299
+ #
1300
+ # @param request_pb [::Google::Cloud::VmwareEngine::V1::CreatePrivateConnectionRequest]
1301
+ # A request object representing the call parameters. Required.
1302
+ # @param options [::Gapic::CallOptions]
1303
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1304
+ #
1305
+ # @yield [result, operation] Access the result along with the TransportOperation object
1306
+ # @yieldparam result [::Google::Longrunning::Operation]
1307
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1308
+ #
1309
+ # @return [::Google::Longrunning::Operation]
1310
+ # A result object deserialized from the server's reply
1311
+ def create_private_connection request_pb, options = nil
1312
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1313
+
1314
+ verb, uri, query_string_params, body = ServiceStub.transcode_create_private_connection_request request_pb
1315
+ query_string_params = if query_string_params.any?
1316
+ query_string_params.to_h { |p| p.split "=", 2 }
1317
+ else
1318
+ {}
1319
+ end
1320
+
1321
+ response = @client_stub.make_http_request(
1322
+ verb,
1323
+ uri: uri,
1324
+ body: body || "",
1325
+ params: query_string_params,
1326
+ options: options
1327
+ )
1328
+ operation = ::Gapic::Rest::TransportOperation.new response
1329
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
1330
+
1331
+ yield result, operation if block_given?
1332
+ result
1333
+ end
1334
+
1335
+ ##
1336
+ # Baseline implementation for the get_private_connection REST call
1337
+ #
1338
+ # @param request_pb [::Google::Cloud::VmwareEngine::V1::GetPrivateConnectionRequest]
1339
+ # A request object representing the call parameters. Required.
1340
+ # @param options [::Gapic::CallOptions]
1341
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1342
+ #
1343
+ # @yield [result, operation] Access the result along with the TransportOperation object
1344
+ # @yieldparam result [::Google::Cloud::VmwareEngine::V1::PrivateConnection]
1345
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1346
+ #
1347
+ # @return [::Google::Cloud::VmwareEngine::V1::PrivateConnection]
1348
+ # A result object deserialized from the server's reply
1349
+ def get_private_connection request_pb, options = nil
1350
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1351
+
1352
+ verb, uri, query_string_params, body = ServiceStub.transcode_get_private_connection_request request_pb
1353
+ query_string_params = if query_string_params.any?
1354
+ query_string_params.to_h { |p| p.split "=", 2 }
1355
+ else
1356
+ {}
1357
+ end
1358
+
1359
+ response = @client_stub.make_http_request(
1360
+ verb,
1361
+ uri: uri,
1362
+ body: body || "",
1363
+ params: query_string_params,
1364
+ options: options
1365
+ )
1366
+ operation = ::Gapic::Rest::TransportOperation.new response
1367
+ result = ::Google::Cloud::VmwareEngine::V1::PrivateConnection.decode_json response.body, ignore_unknown_fields: true
1368
+
1369
+ yield result, operation if block_given?
1370
+ result
1371
+ end
1372
+
1373
+ ##
1374
+ # Baseline implementation for the list_private_connections REST call
1375
+ #
1376
+ # @param request_pb [::Google::Cloud::VmwareEngine::V1::ListPrivateConnectionsRequest]
1377
+ # A request object representing the call parameters. Required.
1378
+ # @param options [::Gapic::CallOptions]
1379
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1380
+ #
1381
+ # @yield [result, operation] Access the result along with the TransportOperation object
1382
+ # @yieldparam result [::Google::Cloud::VmwareEngine::V1::ListPrivateConnectionsResponse]
1383
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1384
+ #
1385
+ # @return [::Google::Cloud::VmwareEngine::V1::ListPrivateConnectionsResponse]
1386
+ # A result object deserialized from the server's reply
1387
+ def list_private_connections request_pb, options = nil
1388
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1389
+
1390
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_private_connections_request request_pb
1391
+ query_string_params = if query_string_params.any?
1392
+ query_string_params.to_h { |p| p.split "=", 2 }
1393
+ else
1394
+ {}
1395
+ end
1396
+
1397
+ response = @client_stub.make_http_request(
1398
+ verb,
1399
+ uri: uri,
1400
+ body: body || "",
1401
+ params: query_string_params,
1402
+ options: options
1403
+ )
1404
+ operation = ::Gapic::Rest::TransportOperation.new response
1405
+ result = ::Google::Cloud::VmwareEngine::V1::ListPrivateConnectionsResponse.decode_json response.body, ignore_unknown_fields: true
1406
+
1407
+ yield result, operation if block_given?
1408
+ result
1409
+ end
1410
+
1411
+ ##
1412
+ # Baseline implementation for the update_private_connection REST call
1413
+ #
1414
+ # @param request_pb [::Google::Cloud::VmwareEngine::V1::UpdatePrivateConnectionRequest]
1415
+ # A request object representing the call parameters. Required.
1416
+ # @param options [::Gapic::CallOptions]
1417
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1418
+ #
1419
+ # @yield [result, operation] Access the result along with the TransportOperation object
1420
+ # @yieldparam result [::Google::Longrunning::Operation]
1421
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1422
+ #
1423
+ # @return [::Google::Longrunning::Operation]
1424
+ # A result object deserialized from the server's reply
1425
+ def update_private_connection request_pb, options = nil
1426
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1427
+
1428
+ verb, uri, query_string_params, body = ServiceStub.transcode_update_private_connection_request request_pb
1429
+ query_string_params = if query_string_params.any?
1430
+ query_string_params.to_h { |p| p.split "=", 2 }
1431
+ else
1432
+ {}
1433
+ end
1434
+
1435
+ response = @client_stub.make_http_request(
1436
+ verb,
1437
+ uri: uri,
1438
+ body: body || "",
1439
+ params: query_string_params,
1440
+ options: options
1441
+ )
1442
+ operation = ::Gapic::Rest::TransportOperation.new response
1443
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
1444
+
1445
+ yield result, operation if block_given?
1446
+ result
1447
+ end
1448
+
1449
+ ##
1450
+ # Baseline implementation for the delete_private_connection REST call
1451
+ #
1452
+ # @param request_pb [::Google::Cloud::VmwareEngine::V1::DeletePrivateConnectionRequest]
1453
+ # A request object representing the call parameters. Required.
1454
+ # @param options [::Gapic::CallOptions]
1455
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1456
+ #
1457
+ # @yield [result, operation] Access the result along with the TransportOperation object
1458
+ # @yieldparam result [::Google::Longrunning::Operation]
1459
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1460
+ #
1461
+ # @return [::Google::Longrunning::Operation]
1462
+ # A result object deserialized from the server's reply
1463
+ def delete_private_connection request_pb, options = nil
1464
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1465
+
1466
+ verb, uri, query_string_params, body = ServiceStub.transcode_delete_private_connection_request request_pb
1467
+ query_string_params = if query_string_params.any?
1468
+ query_string_params.to_h { |p| p.split "=", 2 }
1469
+ else
1470
+ {}
1471
+ end
1472
+
1473
+ response = @client_stub.make_http_request(
1474
+ verb,
1475
+ uri: uri,
1476
+ body: body || "",
1477
+ params: query_string_params,
1478
+ options: options
1479
+ )
1480
+ operation = ::Gapic::Rest::TransportOperation.new response
1481
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
1482
+
1483
+ yield result, operation if block_given?
1484
+ result
1485
+ end
1486
+
1487
+ ##
1488
+ # Baseline implementation for the list_private_connection_peering_routes REST call
1489
+ #
1490
+ # @param request_pb [::Google::Cloud::VmwareEngine::V1::ListPrivateConnectionPeeringRoutesRequest]
1491
+ # A request object representing the call parameters. Required.
1492
+ # @param options [::Gapic::CallOptions]
1493
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1494
+ #
1495
+ # @yield [result, operation] Access the result along with the TransportOperation object
1496
+ # @yieldparam result [::Google::Cloud::VmwareEngine::V1::ListPrivateConnectionPeeringRoutesResponse]
1497
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1498
+ #
1499
+ # @return [::Google::Cloud::VmwareEngine::V1::ListPrivateConnectionPeeringRoutesResponse]
1500
+ # A result object deserialized from the server's reply
1501
+ def list_private_connection_peering_routes request_pb, options = nil
1502
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1503
+
1504
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_private_connection_peering_routes_request request_pb
1505
+ query_string_params = if query_string_params.any?
1506
+ query_string_params.to_h { |p| p.split "=", 2 }
1507
+ else
1508
+ {}
1509
+ end
1510
+
1511
+ response = @client_stub.make_http_request(
1512
+ verb,
1513
+ uri: uri,
1514
+ body: body || "",
1515
+ params: query_string_params,
1516
+ options: options
1517
+ )
1518
+ operation = ::Gapic::Rest::TransportOperation.new response
1519
+ result = ::Google::Cloud::VmwareEngine::V1::ListPrivateConnectionPeeringRoutesResponse.decode_json response.body, ignore_unknown_fields: true
1520
+
1521
+ yield result, operation if block_given?
1522
+ result
1523
+ end
1524
+
1221
1525
  ##
1222
1526
  # @private
1223
1527
  #
@@ -1475,6 +1779,49 @@ module Google
1475
1779
  transcoder.transcode request_pb
1476
1780
  end
1477
1781
 
1782
+ ##
1783
+ # @private
1784
+ #
1785
+ # GRPC transcoding helper method for the get_subnet REST call
1786
+ #
1787
+ # @param request_pb [::Google::Cloud::VmwareEngine::V1::GetSubnetRequest]
1788
+ # A request object representing the call parameters. Required.
1789
+ # @return [Array(String, [String, nil], Hash{String => String})]
1790
+ # Uri, Body, Query string parameters
1791
+ def self.transcode_get_subnet_request request_pb
1792
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1793
+ .with_bindings(
1794
+ uri_method: :get,
1795
+ uri_template: "/v1/{name}",
1796
+ matches: [
1797
+ ["name", %r{^projects/[^/]+/locations/[^/]+/privateClouds/[^/]+/subnets/[^/]+/?$}, false]
1798
+ ]
1799
+ )
1800
+ transcoder.transcode request_pb
1801
+ end
1802
+
1803
+ ##
1804
+ # @private
1805
+ #
1806
+ # GRPC transcoding helper method for the update_subnet REST call
1807
+ #
1808
+ # @param request_pb [::Google::Cloud::VmwareEngine::V1::UpdateSubnetRequest]
1809
+ # A request object representing the call parameters. Required.
1810
+ # @return [Array(String, [String, nil], Hash{String => String})]
1811
+ # Uri, Body, Query string parameters
1812
+ def self.transcode_update_subnet_request request_pb
1813
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1814
+ .with_bindings(
1815
+ uri_method: :patch,
1816
+ uri_template: "/v1/{subnet.name}",
1817
+ body: "subnet",
1818
+ matches: [
1819
+ ["subnet.name", %r{^projects/[^/]+/locations/[^/]+/privateClouds/[^/]+/subnets/[^/]+/?$}, false]
1820
+ ]
1821
+ )
1822
+ transcoder.transcode request_pb
1823
+ end
1824
+
1478
1825
  ##
1479
1826
  # @private
1480
1827
  #
@@ -1880,6 +2227,134 @@ module Google
1880
2227
  )
1881
2228
  transcoder.transcode request_pb
1882
2229
  end
2230
+
2231
+ ##
2232
+ # @private
2233
+ #
2234
+ # GRPC transcoding helper method for the create_private_connection REST call
2235
+ #
2236
+ # @param request_pb [::Google::Cloud::VmwareEngine::V1::CreatePrivateConnectionRequest]
2237
+ # A request object representing the call parameters. Required.
2238
+ # @return [Array(String, [String, nil], Hash{String => String})]
2239
+ # Uri, Body, Query string parameters
2240
+ def self.transcode_create_private_connection_request request_pb
2241
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2242
+ .with_bindings(
2243
+ uri_method: :post,
2244
+ uri_template: "/v1/{parent}/privateConnections",
2245
+ body: "private_connection",
2246
+ matches: [
2247
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
2248
+ ]
2249
+ )
2250
+ transcoder.transcode request_pb
2251
+ end
2252
+
2253
+ ##
2254
+ # @private
2255
+ #
2256
+ # GRPC transcoding helper method for the get_private_connection REST call
2257
+ #
2258
+ # @param request_pb [::Google::Cloud::VmwareEngine::V1::GetPrivateConnectionRequest]
2259
+ # A request object representing the call parameters. Required.
2260
+ # @return [Array(String, [String, nil], Hash{String => String})]
2261
+ # Uri, Body, Query string parameters
2262
+ def self.transcode_get_private_connection_request request_pb
2263
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2264
+ .with_bindings(
2265
+ uri_method: :get,
2266
+ uri_template: "/v1/{name}",
2267
+ matches: [
2268
+ ["name", %r{^projects/[^/]+/locations/[^/]+/privateConnections/[^/]+/?$}, false]
2269
+ ]
2270
+ )
2271
+ transcoder.transcode request_pb
2272
+ end
2273
+
2274
+ ##
2275
+ # @private
2276
+ #
2277
+ # GRPC transcoding helper method for the list_private_connections REST call
2278
+ #
2279
+ # @param request_pb [::Google::Cloud::VmwareEngine::V1::ListPrivateConnectionsRequest]
2280
+ # A request object representing the call parameters. Required.
2281
+ # @return [Array(String, [String, nil], Hash{String => String})]
2282
+ # Uri, Body, Query string parameters
2283
+ def self.transcode_list_private_connections_request request_pb
2284
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2285
+ .with_bindings(
2286
+ uri_method: :get,
2287
+ uri_template: "/v1/{parent}/privateConnections",
2288
+ matches: [
2289
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
2290
+ ]
2291
+ )
2292
+ transcoder.transcode request_pb
2293
+ end
2294
+
2295
+ ##
2296
+ # @private
2297
+ #
2298
+ # GRPC transcoding helper method for the update_private_connection REST call
2299
+ #
2300
+ # @param request_pb [::Google::Cloud::VmwareEngine::V1::UpdatePrivateConnectionRequest]
2301
+ # A request object representing the call parameters. Required.
2302
+ # @return [Array(String, [String, nil], Hash{String => String})]
2303
+ # Uri, Body, Query string parameters
2304
+ def self.transcode_update_private_connection_request request_pb
2305
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2306
+ .with_bindings(
2307
+ uri_method: :patch,
2308
+ uri_template: "/v1/{private_connection.name}",
2309
+ body: "private_connection",
2310
+ matches: [
2311
+ ["private_connection.name", %r{^projects/[^/]+/locations/[^/]+/privateConnections/[^/]+/?$}, false]
2312
+ ]
2313
+ )
2314
+ transcoder.transcode request_pb
2315
+ end
2316
+
2317
+ ##
2318
+ # @private
2319
+ #
2320
+ # GRPC transcoding helper method for the delete_private_connection REST call
2321
+ #
2322
+ # @param request_pb [::Google::Cloud::VmwareEngine::V1::DeletePrivateConnectionRequest]
2323
+ # A request object representing the call parameters. Required.
2324
+ # @return [Array(String, [String, nil], Hash{String => String})]
2325
+ # Uri, Body, Query string parameters
2326
+ def self.transcode_delete_private_connection_request request_pb
2327
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2328
+ .with_bindings(
2329
+ uri_method: :delete,
2330
+ uri_template: "/v1/{name}",
2331
+ matches: [
2332
+ ["name", %r{^projects/[^/]+/locations/[^/]+/privateConnections/[^/]+/?$}, false]
2333
+ ]
2334
+ )
2335
+ transcoder.transcode request_pb
2336
+ end
2337
+
2338
+ ##
2339
+ # @private
2340
+ #
2341
+ # GRPC transcoding helper method for the list_private_connection_peering_routes REST call
2342
+ #
2343
+ # @param request_pb [::Google::Cloud::VmwareEngine::V1::ListPrivateConnectionPeeringRoutesRequest]
2344
+ # A request object representing the call parameters. Required.
2345
+ # @return [Array(String, [String, nil], Hash{String => String})]
2346
+ # Uri, Body, Query string parameters
2347
+ def self.transcode_list_private_connection_peering_routes_request request_pb
2348
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2349
+ .with_bindings(
2350
+ uri_method: :get,
2351
+ uri_template: "/v1/{parent}/peeringRoutes",
2352
+ matches: [
2353
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/privateConnections/[^/]+/?$}, false]
2354
+ ]
2355
+ )
2356
+ transcoder.transcode request_pb
2357
+ end
1883
2358
  end
1884
2359
  end
1885
2360
  end
@@ -10,11 +10,12 @@ require 'google/api/field_behavior_pb'
10
10
  require 'google/api/resource_pb'
11
11
  require 'google/cloud/vmwareengine/v1/vmwareengine_resources_pb'
12
12
  require 'google/longrunning/operations_pb'
13
+ require 'google/protobuf/empty_pb'
13
14
  require 'google/protobuf/field_mask_pb'
14
15
  require 'google/protobuf/timestamp_pb'
15
16
 
16
17
 
17
- descriptor_data = "\n/google/cloud/vmwareengine/v1/vmwareengine.proto\x12\x1cgoogle.cloud.vmwareengine.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x39google/cloud/vmwareengine/v1/vmwareengine_resources.proto\x1a#google/longrunning/operations.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x9e\x01\n\x18ListPrivateCloudsRequest\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\"\x8d\x01\n\x19ListPrivateCloudsResponse\x12\x42\n\x0eprivate_clouds\x18\x01 \x03(\x0b\x32*.google.cloud.vmwareengine.v1.PrivateCloud\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"X\n\x16GetPrivateCloudRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\"\xf2\x01\n\x19\x43reatePrivateCloudRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x1d\n\x10private_cloud_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x46\n\rprivate_cloud\x18\x03 \x01(\x0b\x32*.google.cloud.vmwareengine.v1.PrivateCloudB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\"\xb2\x01\n\x19UpdatePrivateCloudRequest\x12\x46\n\rprivate_cloud\x18\x01 \x01(\x0b\x32*.google.cloud.vmwareengine.v1.PrivateCloudB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\xb7\x01\n\x19\x44\x65letePrivateCloudRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x12\n\x05\x66orce\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x12\x1d\n\x0b\x64\x65lay_hours\x18\x04 \x01(\x05\x42\x03\xe0\x41\x01H\x00\x88\x01\x01\x42\x0e\n\x0c_delay_hours\"v\n\x1bUndeletePrivateCloudRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\xa0\x01\n\x13ListClustersRequest\x12@\n\x06parent\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\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\x14ListClustersResponse\x12\x37\n\x08\x63lusters\x18\x01 \x03(\x0b\x32%.google.cloud.vmwareengine.v1.Cluster\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"N\n\x11GetClusterRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#vmwareengine.googleapis.com/Cluster\"\xe3\x01\n\x14\x43reateClusterRequest\x12@\n\x06parent\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\x12\x17\n\ncluster_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12;\n\x07\x63luster\x18\x03 \x01(\x0b\x32%.google.cloud.vmwareengine.v1.ClusterB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\"\xbe\x01\n\x14UpdateClusterRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12;\n\x07\x63luster\x18\x02 \x01(\x0b\x32%.google.cloud.vmwareengine.v1.ClusterB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\"j\n\x14\x44\x65leteClusterRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#vmwareengine.googleapis.com/Cluster\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"}\n\x12ListSubnetsRequest\x12@\n\x06parent\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"e\n\x13ListSubnetsResponse\x12\x35\n\x07subnets\x18\x01 \x03(\x0b\x32$.google.cloud.vmwareengine.v1.Subnet\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x80\x02\n\x11OperationMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x13\n\x06target\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x11\n\x04verb\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12\x1b\n\x0estatus_message\x18\x05 \x01(\tB\x03\xe0\x41\x03\x12#\n\x16requested_cancellation\x18\x06 \x01(\x08\x42\x03\xe0\x41\x03\x12\x18\n\x0b\x61pi_version\x18\x07 \x01(\tB\x03\xe0\x41\x03\"\x88\x01\n\x14ListNodeTypesRequest\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\"\x81\x01\n\x15ListNodeTypesResponse\x12:\n\nnode_types\x18\x01 \x03(\x0b\x32&.google.cloud.vmwareengine.v1.NodeType\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"P\n\x12GetNodeTypeRequest\x12:\n\x04name\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$vmwareengine.googleapis.com/NodeType\"d\n\x19ShowNsxCredentialsRequest\x12G\n\rprivate_cloud\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\"h\n\x1dShowVcenterCredentialsRequest\x12G\n\rprivate_cloud\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\"~\n\x1aResetNsxCredentialsRequest\x12G\n\rprivate_cloud\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\x82\x01\n\x1eResetVcenterCredentialsRequest\x12G\n\rprivate_cloud\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\x9a\x01\n\x1dListHcxActivationKeysResponse\x12K\n\x13hcx_activation_keys\x18\x01 \x03(\x0b\x32..google.cloud.vmwareengine.v1.HcxActivationKey\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\x87\x01\n\x1cListHcxActivationKeysRequest\x12@\n\x06parent\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"`\n\x1aGetHcxActivationKeyRequest\x12\x42\n\x04name\x18\x01 \x01(\tB4\xe0\x41\x02\xfa\x41.\n,vmwareengine.googleapis.com/HcxActivationKey\"\xea\x01\n\x1d\x43reateHcxActivationKeyRequest\x12@\n\x06parent\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\x12O\n\x12hcx_activation_key\x18\x02 \x01(\x0b\x32..google.cloud.vmwareengine.v1.HcxActivationKeyB\x03\xe0\x41\x02\x12\"\n\x15hcx_activation_key_id\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x12\n\nrequest_id\x18\x04 \x01(\t\"\xa8\x01\n\x1aListNetworkPoliciesRequest\x12\x41\n\x06parent\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\x12)vmwareengine.googleapis.com/NetworkPolicy\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\x1bListNetworkPoliciesResponse\x12\x45\n\x10network_policies\x18\x01 \x03(\x0b\x32+.google.cloud.vmwareengine.v1.NetworkPolicy\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"Z\n\x17GetNetworkPolicyRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)vmwareengine.googleapis.com/NetworkPolicy\"\xb5\x01\n\x1aUpdateNetworkPolicyRequest\x12H\n\x0enetwork_policy\x18\x01 \x01(\x0b\x32+.google.cloud.vmwareengine.v1.NetworkPolicyB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\xe2\x01\n\x1a\x43reateNetworkPolicyRequest\x12\x41\n\x06parent\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\x12)vmwareengine.googleapis.com/NetworkPolicy\x12\x1e\n\x11network_policy_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12H\n\x0enetwork_policy\x18\x03 \x01(\x0b\x32+.google.cloud.vmwareengine.v1.NetworkPolicyB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"v\n\x1a\x44\x65leteNetworkPolicyRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)vmwareengine.googleapis.com/NetworkPolicy\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\x82\x02\n CreateVmwareEngineNetworkRequest\x12G\n\x06parent\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\x12/vmwareengine.googleapis.com/VmwareEngineNetwork\x12%\n\x18vmware_engine_network_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12U\n\x15vmware_engine_network\x18\x03 \x01(\x0b\x32\x31.google.cloud.vmwareengine.v1.VmwareEngineNetworkB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xc8\x01\n UpdateVmwareEngineNetworkRequest\x12U\n\x15vmware_engine_network\x18\x01 \x01(\x0b\x32\x31.google.cloud.vmwareengine.v1.VmwareEngineNetworkB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\x95\x01\n DeleteVmwareEngineNetworkRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/vmwareengine.googleapis.com/VmwareEngineNetwork\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x11\n\x04\x65tag\x18\x03 \x01(\tB\x03\xe0\x41\x01\"f\n\x1dGetVmwareEngineNetworkRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/vmwareengine.googleapis.com/VmwareEngineNetwork\"\xa5\x01\n\x1fListVmwareEngineNetworksRequest\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\"\xa3\x01\n ListVmwareEngineNetworksResponse\x12Q\n\x16vmware_engine_networks\x18\x01 \x03(\x0b\x32\x31.google.cloud.vmwareengine.v1.VmwareEngineNetwork\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t2\x96\x39\n\x0cVmwareEngine\x12\xc8\x01\n\x11ListPrivateClouds\x12\x36.google.cloud.vmwareengine.v1.ListPrivateCloudsRequest\x1a\x37.google.cloud.vmwareengine.v1.ListPrivateCloudsResponse\"B\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{parent=projects/*/locations/*}/privateClouds\xda\x41\x06parent\x12\xb5\x01\n\x0fGetPrivateCloud\x12\x34.google.cloud.vmwareengine.v1.GetPrivateCloudRequest\x1a*.google.cloud.vmwareengine.v1.PrivateCloud\"@\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{name=projects/*/locations/*/privateClouds/*}\xda\x41\x04name\x12\x83\x02\n\x12\x43reatePrivateCloud\x12\x37.google.cloud.vmwareengine.v1.CreatePrivateCloudRequest\x1a\x1d.google.longrunning.Operation\"\x94\x01\x82\xd3\xe4\x93\x02\x42\"1/v1/{parent=projects/*/locations/*}/privateClouds:\rprivate_cloud\xda\x41%parent,private_cloud,private_cloud_id\xca\x41!\n\x0cPrivateCloud\x12\x11OperationMetadata\x12\x85\x02\n\x12UpdatePrivateCloud\x12\x37.google.cloud.vmwareengine.v1.UpdatePrivateCloudRequest\x1a\x1d.google.longrunning.Operation\"\x96\x01\x82\xd3\xe4\x93\x02P2?/v1/{private_cloud.name=projects/*/locations/*/privateClouds/*}:\rprivate_cloud\xda\x41\x19private_cloud,update_mask\xca\x41!\n\x0cPrivateCloud\x12\x11OperationMetadata\x12\xd2\x01\n\x12\x44\x65letePrivateCloud\x12\x37.google.cloud.vmwareengine.v1.DeletePrivateCloudRequest\x1a\x1d.google.longrunning.Operation\"d\x82\xd3\xe4\x93\x02\x33*1/v1/{name=projects/*/locations/*/privateClouds/*}\xda\x41\x04name\xca\x41!\n\x0cPrivateCloud\x12\x11OperationMetadata\x12\xe2\x01\n\x14UndeletePrivateCloud\x12\x39.google.cloud.vmwareengine.v1.UndeletePrivateCloudRequest\x1a\x1d.google.longrunning.Operation\"p\x82\xd3\xe4\x93\x02?\":/v1/{name=projects/*/locations/*/privateClouds/*}:undelete:\x01*\xda\x41\x04name\xca\x41!\n\x0cPrivateCloud\x12\x11OperationMetadata\x12\xc4\x01\n\x0cListClusters\x12\x31.google.cloud.vmwareengine.v1.ListClustersRequest\x1a\x32.google.cloud.vmwareengine.v1.ListClustersResponse\"M\x82\xd3\xe4\x93\x02>\x12</v1/{parent=projects/*/locations/*/privateClouds/*}/clusters\xda\x41\x06parent\x12\xb1\x01\n\nGetCluster\x12/.google.cloud.vmwareengine.v1.GetClusterRequest\x1a%.google.cloud.vmwareengine.v1.Cluster\"K\x82\xd3\xe4\x93\x02>\x12</v1/{name=projects/*/locations/*/privateClouds/*/clusters/*}\xda\x41\x04name\x12\xed\x01\n\rCreateCluster\x12\x32.google.cloud.vmwareengine.v1.CreateClusterRequest\x1a\x1d.google.longrunning.Operation\"\x88\x01\x82\xd3\xe4\x93\x02G\"</v1/{parent=projects/*/locations/*/privateClouds/*}/clusters:\x07\x63luster\xda\x41\x19parent,cluster,cluster_id\xca\x41\x1c\n\x07\x43luster\x12\x11OperationMetadata\x12\xef\x01\n\rUpdateCluster\x12\x32.google.cloud.vmwareengine.v1.UpdateClusterRequest\x1a\x1d.google.longrunning.Operation\"\x8a\x01\x82\xd3\xe4\x93\x02O2D/v1/{cluster.name=projects/*/locations/*/privateClouds/*/clusters/*}:\x07\x63luster\xda\x41\x13\x63luster,update_mask\xca\x41\x1c\n\x07\x43luster\x12\x11OperationMetadata\x12\xdc\x01\n\rDeleteCluster\x12\x32.google.cloud.vmwareengine.v1.DeleteClusterRequest\x1a\x1d.google.longrunning.Operation\"x\x82\xd3\xe4\x93\x02>*</v1/{name=projects/*/locations/*/privateClouds/*/clusters/*}\xda\x41\x04name\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x12\xc0\x01\n\x0bListSubnets\x12\x30.google.cloud.vmwareengine.v1.ListSubnetsRequest\x1a\x31.google.cloud.vmwareengine.v1.ListSubnetsResponse\"L\x82\xd3\xe4\x93\x02=\x12;/v1/{parent=projects/*/locations/*/privateClouds/*}/subnets\xda\x41\x06parent\x12\xb8\x01\n\rListNodeTypes\x12\x32.google.cloud.vmwareengine.v1.ListNodeTypesRequest\x1a\x33.google.cloud.vmwareengine.v1.ListNodeTypesResponse\">\x82\xd3\xe4\x93\x02/\x12-/v1/{parent=projects/*/locations/*}/nodeTypes\xda\x41\x06parent\x12\xa5\x01\n\x0bGetNodeType\x12\x30.google.cloud.vmwareengine.v1.GetNodeTypeRequest\x1a&.google.cloud.vmwareengine.v1.NodeType\"<\x82\xd3\xe4\x93\x02/\x12-/v1/{name=projects/*/locations/*/nodeTypes/*}\xda\x41\x04name\x12\xdf\x01\n\x12ShowNsxCredentials\x12\x37.google.cloud.vmwareengine.v1.ShowNsxCredentialsRequest\x1a).google.cloud.vmwareengine.v1.Credentials\"e\x82\xd3\xe4\x93\x02O\x12M/v1/{private_cloud=projects/*/locations/*/privateClouds/*}:showNsxCredentials\xda\x41\rprivate_cloud\x12\xeb\x01\n\x16ShowVcenterCredentials\x12;.google.cloud.vmwareengine.v1.ShowVcenterCredentialsRequest\x1a).google.cloud.vmwareengine.v1.Credentials\"i\x82\xd3\xe4\x93\x02S\x12Q/v1/{private_cloud=projects/*/locations/*/privateClouds/*}:showVcenterCredentials\xda\x41\rprivate_cloud\x12\xfe\x01\n\x13ResetNsxCredentials\x12\x38.google.cloud.vmwareengine.v1.ResetNsxCredentialsRequest\x1a\x1d.google.longrunning.Operation\"\x8d\x01\x82\xd3\xe4\x93\x02S\"N/v1/{private_cloud=projects/*/locations/*/privateClouds/*}:resetNsxCredentials:\x01*\xda\x41\rprivate_cloud\xca\x41!\n\x0cPrivateCloud\x12\x11OperationMetadata\x12\x8a\x02\n\x17ResetVcenterCredentials\x12<.google.cloud.vmwareengine.v1.ResetVcenterCredentialsRequest\x1a\x1d.google.longrunning.Operation\"\x91\x01\x82\xd3\xe4\x93\x02W\"R/v1/{private_cloud=projects/*/locations/*/privateClouds/*}:resetVcenterCredentials:\x01*\xda\x41\rprivate_cloud\xca\x41!\n\x0cPrivateCloud\x12\x11OperationMetadata\x12\xb2\x02\n\x16\x43reateHcxActivationKey\x12;.google.cloud.vmwareengine.v1.CreateHcxActivationKeyRequest\x1a\x1d.google.longrunning.Operation\"\xbb\x01\x82\xd3\xe4\x93\x02[\"E/v1/{parent=projects/*/locations/*/privateClouds/*}/hcxActivationKeys:\x12hcx_activation_key\xda\x41/parent,hcx_activation_key,hcx_activation_key_id\xca\x41%\n\x10HcxActivationKey\x12\x11OperationMetadata\x12\xe8\x01\n\x15ListHcxActivationKeys\x12:.google.cloud.vmwareengine.v1.ListHcxActivationKeysRequest\x1a;.google.cloud.vmwareengine.v1.ListHcxActivationKeysResponse\"V\x82\xd3\xe4\x93\x02G\x12\x45/v1/{parent=projects/*/locations/*/privateClouds/*}/hcxActivationKeys\xda\x41\x06parent\x12\xd5\x01\n\x13GetHcxActivationKey\x12\x38.google.cloud.vmwareengine.v1.GetHcxActivationKeyRequest\x1a..google.cloud.vmwareengine.v1.HcxActivationKey\"T\x82\xd3\xe4\x93\x02G\x12\x45/v1/{name=projects/*/locations/*/privateClouds/*/hcxActivationKeys/*}\xda\x41\x04name\x12\xba\x01\n\x10GetNetworkPolicy\x12\x35.google.cloud.vmwareengine.v1.GetNetworkPolicyRequest\x1a+.google.cloud.vmwareengine.v1.NetworkPolicy\"B\x82\xd3\xe4\x93\x02\x35\x12\x33/v1/{name=projects/*/locations/*/networkPolicies/*}\xda\x41\x04name\x12\xd0\x01\n\x13ListNetworkPolicies\x12\x38.google.cloud.vmwareengine.v1.ListNetworkPoliciesRequest\x1a\x39.google.cloud.vmwareengine.v1.ListNetworkPoliciesResponse\"D\x82\xd3\xe4\x93\x02\x35\x12\x33/v1/{parent=projects/*/locations/*}/networkPolicies\xda\x41\x06parent\x12\x8b\x02\n\x13\x43reateNetworkPolicy\x12\x38.google.cloud.vmwareengine.v1.CreateNetworkPolicyRequest\x1a\x1d.google.longrunning.Operation\"\x9a\x01\x82\xd3\xe4\x93\x02\x45\"3/v1/{parent=projects/*/locations/*}/networkPolicies:\x0enetwork_policy\xda\x41\'parent,network_policy,network_policy_id\xca\x41\"\n\rNetworkPolicy\x12\x11OperationMetadata\x12\x8d\x02\n\x13UpdateNetworkPolicy\x12\x38.google.cloud.vmwareengine.v1.UpdateNetworkPolicyRequest\x1a\x1d.google.longrunning.Operation\"\x9c\x01\x82\xd3\xe4\x93\x02T2B/v1/{network_policy.name=projects/*/locations/*/networkPolicies/*}:\x0enetwork_policy\xda\x41\x1anetwork_policy,update_mask\xca\x41\"\n\rNetworkPolicy\x12\x11OperationMetadata\x12\xdf\x01\n\x13\x44\x65leteNetworkPolicy\x12\x38.google.cloud.vmwareengine.v1.DeleteNetworkPolicyRequest\x1a\x1d.google.longrunning.Operation\"o\x82\xd3\xe4\x93\x02\x35*3/v1/{name=projects/*/locations/*/networkPolicies/*}\xda\x41\x04name\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x12\xb7\x02\n\x19\x43reateVmwareEngineNetwork\x12>.google.cloud.vmwareengine.v1.CreateVmwareEngineNetworkRequest\x1a\x1d.google.longrunning.Operation\"\xba\x01\x82\xd3\xe4\x93\x02Q\"8/v1/{parent=projects/*/locations/*}/vmwareEngineNetworks:\x15vmware_engine_network\xda\x41\x35parent,vmware_engine_network,vmware_engine_network_id\xca\x41(\n\x13VmwareEngineNetwork\x12\x11OperationMetadata\x12\xb9\x02\n\x19UpdateVmwareEngineNetwork\x12>.google.cloud.vmwareengine.v1.UpdateVmwareEngineNetworkRequest\x1a\x1d.google.longrunning.Operation\"\xbc\x01\x82\xd3\xe4\x93\x02g2N/v1/{vmware_engine_network.name=projects/*/locations/*/vmwareEngineNetworks/*}:\x15vmware_engine_network\xda\x41!vmware_engine_network,update_mask\xca\x41(\n\x13VmwareEngineNetwork\x12\x11OperationMetadata\x12\xf0\x01\n\x19\x44\x65leteVmwareEngineNetwork\x12>.google.cloud.vmwareengine.v1.DeleteVmwareEngineNetworkRequest\x1a\x1d.google.longrunning.Operation\"t\x82\xd3\xe4\x93\x02:*8/v1/{name=projects/*/locations/*/vmwareEngineNetworks/*}\xda\x41\x04name\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x12\xd1\x01\n\x16GetVmwareEngineNetwork\x12;.google.cloud.vmwareengine.v1.GetVmwareEngineNetworkRequest\x1a\x31.google.cloud.vmwareengine.v1.VmwareEngineNetwork\"G\x82\xd3\xe4\x93\x02:\x12\x38/v1/{name=projects/*/locations/*/vmwareEngineNetworks/*}\xda\x41\x04name\x12\xe4\x01\n\x18ListVmwareEngineNetworks\x12=.google.cloud.vmwareengine.v1.ListVmwareEngineNetworksRequest\x1a>.google.cloud.vmwareengine.v1.ListVmwareEngineNetworksResponse\"I\x82\xd3\xe4\x93\x02:\x12\x38/v1/{parent=projects/*/locations/*}/vmwareEngineNetworks\xda\x41\x06parent\x1aO\xca\x41\x1bvmwareengine.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xae\x02\n com.google.cloud.vmwareengine.v1B\x11VmwareengineProtoP\x01ZDcloud.google.com/go/vmwareengine/apiv1/vmwareenginepb;vmwareenginepb\xaa\x02\x1cGoogle.Cloud.VmwareEngine.V1\xca\x02\x1cGoogle\\Cloud\\VmwareEngine\\V1\xea\x02\x1fGoogle::Cloud::VmwareEngine::V1\xea\x41N\n\x1e\x63ompute.googleapis.com/Network\x12,projects/{project}/global/networks/{network}b\x06proto3"
18
+ descriptor_data = "\n/google/cloud/vmwareengine/v1/vmwareengine.proto\x12\x1cgoogle.cloud.vmwareengine.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x39google/cloud/vmwareengine/v1/vmwareengine_resources.proto\x1a#google/longrunning/operations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x9e\x01\n\x18ListPrivateCloudsRequest\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\"\x8d\x01\n\x19ListPrivateCloudsResponse\x12\x42\n\x0eprivate_clouds\x18\x01 \x03(\x0b\x32*.google.cloud.vmwareengine.v1.PrivateCloud\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"X\n\x16GetPrivateCloudRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\"\xf2\x01\n\x19\x43reatePrivateCloudRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x1d\n\x10private_cloud_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x46\n\rprivate_cloud\x18\x03 \x01(\x0b\x32*.google.cloud.vmwareengine.v1.PrivateCloudB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\"\xb2\x01\n\x19UpdatePrivateCloudRequest\x12\x46\n\rprivate_cloud\x18\x01 \x01(\x0b\x32*.google.cloud.vmwareengine.v1.PrivateCloudB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\xb7\x01\n\x19\x44\x65letePrivateCloudRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x12\n\x05\x66orce\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x12\x1d\n\x0b\x64\x65lay_hours\x18\x04 \x01(\x05\x42\x03\xe0\x41\x01H\x00\x88\x01\x01\x42\x0e\n\x0c_delay_hours\"v\n\x1bUndeletePrivateCloudRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\xa0\x01\n\x13ListClustersRequest\x12@\n\x06parent\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\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\x14ListClustersResponse\x12\x37\n\x08\x63lusters\x18\x01 \x03(\x0b\x32%.google.cloud.vmwareengine.v1.Cluster\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"N\n\x11GetClusterRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#vmwareengine.googleapis.com/Cluster\"\xe3\x01\n\x14\x43reateClusterRequest\x12@\n\x06parent\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\x12\x17\n\ncluster_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12;\n\x07\x63luster\x18\x03 \x01(\x0b\x32%.google.cloud.vmwareengine.v1.ClusterB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\"\xbe\x01\n\x14UpdateClusterRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12;\n\x07\x63luster\x18\x02 \x01(\x0b\x32%.google.cloud.vmwareengine.v1.ClusterB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\"j\n\x14\x44\x65leteClusterRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#vmwareengine.googleapis.com/Cluster\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"}\n\x12ListSubnetsRequest\x12@\n\x06parent\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"z\n\x13ListSubnetsResponse\x12\x35\n\x07subnets\x18\x01 \x03(\x0b\x32$.google.cloud.vmwareengine.v1.Subnet\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"L\n\x10GetSubnetRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"vmwareengine.googleapis.com/Subnet\"\x86\x01\n\x13UpdateSubnetRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12\x39\n\x06subnet\x18\x02 \x01(\x0b\x32$.google.cloud.vmwareengine.v1.SubnetB\x03\xe0\x41\x02\"\x80\x02\n\x11OperationMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x13\n\x06target\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x11\n\x04verb\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12\x1b\n\x0estatus_message\x18\x05 \x01(\tB\x03\xe0\x41\x03\x12#\n\x16requested_cancellation\x18\x06 \x01(\x08\x42\x03\xe0\x41\x03\x12\x18\n\x0b\x61pi_version\x18\x07 \x01(\tB\x03\xe0\x41\x03\"\x88\x01\n\x14ListNodeTypesRequest\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\"\x81\x01\n\x15ListNodeTypesResponse\x12:\n\nnode_types\x18\x01 \x03(\x0b\x32&.google.cloud.vmwareengine.v1.NodeType\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"P\n\x12GetNodeTypeRequest\x12:\n\x04name\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$vmwareengine.googleapis.com/NodeType\"d\n\x19ShowNsxCredentialsRequest\x12G\n\rprivate_cloud\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\"h\n\x1dShowVcenterCredentialsRequest\x12G\n\rprivate_cloud\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\"~\n\x1aResetNsxCredentialsRequest\x12G\n\rprivate_cloud\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\x82\x01\n\x1eResetVcenterCredentialsRequest\x12G\n\rprivate_cloud\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\x9a\x01\n\x1dListHcxActivationKeysResponse\x12K\n\x13hcx_activation_keys\x18\x01 \x03(\x0b\x32..google.cloud.vmwareengine.v1.HcxActivationKey\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\x87\x01\n\x1cListHcxActivationKeysRequest\x12@\n\x06parent\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"`\n\x1aGetHcxActivationKeyRequest\x12\x42\n\x04name\x18\x01 \x01(\tB4\xe0\x41\x02\xfa\x41.\n,vmwareengine.googleapis.com/HcxActivationKey\"\xea\x01\n\x1d\x43reateHcxActivationKeyRequest\x12@\n\x06parent\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(vmwareengine.googleapis.com/PrivateCloud\x12O\n\x12hcx_activation_key\x18\x02 \x01(\x0b\x32..google.cloud.vmwareengine.v1.HcxActivationKeyB\x03\xe0\x41\x02\x12\"\n\x15hcx_activation_key_id\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x12\n\nrequest_id\x18\x04 \x01(\t\"\xa8\x01\n\x1aListNetworkPoliciesRequest\x12\x41\n\x06parent\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\x12)vmwareengine.googleapis.com/NetworkPolicy\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\x1bListNetworkPoliciesResponse\x12\x45\n\x10network_policies\x18\x01 \x03(\x0b\x32+.google.cloud.vmwareengine.v1.NetworkPolicy\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"Z\n\x17GetNetworkPolicyRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)vmwareengine.googleapis.com/NetworkPolicy\"\xb5\x01\n\x1aUpdateNetworkPolicyRequest\x12H\n\x0enetwork_policy\x18\x01 \x01(\x0b\x32+.google.cloud.vmwareengine.v1.NetworkPolicyB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\xe2\x01\n\x1a\x43reateNetworkPolicyRequest\x12\x41\n\x06parent\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\x12)vmwareengine.googleapis.com/NetworkPolicy\x12\x1e\n\x11network_policy_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12H\n\x0enetwork_policy\x18\x03 \x01(\x0b\x32+.google.cloud.vmwareengine.v1.NetworkPolicyB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"v\n\x1a\x44\x65leteNetworkPolicyRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)vmwareengine.googleapis.com/NetworkPolicy\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\x82\x02\n CreateVmwareEngineNetworkRequest\x12G\n\x06parent\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\x12/vmwareengine.googleapis.com/VmwareEngineNetwork\x12%\n\x18vmware_engine_network_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12U\n\x15vmware_engine_network\x18\x03 \x01(\x0b\x32\x31.google.cloud.vmwareengine.v1.VmwareEngineNetworkB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xc8\x01\n UpdateVmwareEngineNetworkRequest\x12U\n\x15vmware_engine_network\x18\x01 \x01(\x0b\x32\x31.google.cloud.vmwareengine.v1.VmwareEngineNetworkB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\x95\x01\n DeleteVmwareEngineNetworkRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/vmwareengine.googleapis.com/VmwareEngineNetwork\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x11\n\x04\x65tag\x18\x03 \x01(\tB\x03\xe0\x41\x01\"f\n\x1dGetVmwareEngineNetworkRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/vmwareengine.googleapis.com/VmwareEngineNetwork\"\xa5\x01\n\x1fListVmwareEngineNetworksRequest\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\"\xa3\x01\n ListVmwareEngineNetworksResponse\x12Q\n\x16vmware_engine_networks\x18\x01 \x03(\x0b\x32\x31.google.cloud.vmwareengine.v1.VmwareEngineNetwork\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\xf6\x01\n\x1e\x43reatePrivateConnectionRequest\x12\x45\n\x06parent\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\x12-vmwareengine.googleapis.com/PrivateConnection\x12\"\n\x15private_connection_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12P\n\x12private_connection\x18\x03 \x01(\x0b\x32/.google.cloud.vmwareengine.v1.PrivateConnectionB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"b\n\x1bGetPrivateConnectionRequest\x12\x43\n\x04name\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-vmwareengine.googleapis.com/PrivateConnection\"\xaf\x01\n\x1dListPrivateConnectionsRequest\x12\x45\n\x06parent\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\x12-vmwareengine.googleapis.com/PrivateConnection\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\"\x9c\x01\n\x1eListPrivateConnectionsResponse\x12L\n\x13private_connections\x18\x01 \x03(\x0b\x32/.google.cloud.vmwareengine.v1.PrivateConnection\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\xc1\x01\n\x1eUpdatePrivateConnectionRequest\x12P\n\x12private_connection\x18\x01 \x01(\x0b\x32/.google.cloud.vmwareengine.v1.PrivateConnectionB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"~\n\x1e\x44\x65letePrivateConnectionRequest\x12\x43\n\x04name\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-vmwareengine.googleapis.com/PrivateConnection\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\x99\x01\n)ListPrivateConnectionPeeringRoutesRequest\x12\x45\n\x06parent\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-vmwareengine.googleapis.com/PrivateConnection\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"\x89\x01\n*ListPrivateConnectionPeeringRoutesResponse\x12\x42\n\x0epeering_routes\x18\x01 \x03(\x0b\x32*.google.cloud.vmwareengine.v1.PeeringRoute\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t2\xb0H\n\x0cVmwareEngine\x12\xc8\x01\n\x11ListPrivateClouds\x12\x36.google.cloud.vmwareengine.v1.ListPrivateCloudsRequest\x1a\x37.google.cloud.vmwareengine.v1.ListPrivateCloudsResponse\"B\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{parent=projects/*/locations/*}/privateClouds\xda\x41\x06parent\x12\xb5\x01\n\x0fGetPrivateCloud\x12\x34.google.cloud.vmwareengine.v1.GetPrivateCloudRequest\x1a*.google.cloud.vmwareengine.v1.PrivateCloud\"@\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{name=projects/*/locations/*/privateClouds/*}\xda\x41\x04name\x12\x83\x02\n\x12\x43reatePrivateCloud\x12\x37.google.cloud.vmwareengine.v1.CreatePrivateCloudRequest\x1a\x1d.google.longrunning.Operation\"\x94\x01\x82\xd3\xe4\x93\x02\x42\"1/v1/{parent=projects/*/locations/*}/privateClouds:\rprivate_cloud\xda\x41%parent,private_cloud,private_cloud_id\xca\x41!\n\x0cPrivateCloud\x12\x11OperationMetadata\x12\x85\x02\n\x12UpdatePrivateCloud\x12\x37.google.cloud.vmwareengine.v1.UpdatePrivateCloudRequest\x1a\x1d.google.longrunning.Operation\"\x96\x01\x82\xd3\xe4\x93\x02P2?/v1/{private_cloud.name=projects/*/locations/*/privateClouds/*}:\rprivate_cloud\xda\x41\x19private_cloud,update_mask\xca\x41!\n\x0cPrivateCloud\x12\x11OperationMetadata\x12\xd2\x01\n\x12\x44\x65letePrivateCloud\x12\x37.google.cloud.vmwareengine.v1.DeletePrivateCloudRequest\x1a\x1d.google.longrunning.Operation\"d\x82\xd3\xe4\x93\x02\x33*1/v1/{name=projects/*/locations/*/privateClouds/*}\xda\x41\x04name\xca\x41!\n\x0cPrivateCloud\x12\x11OperationMetadata\x12\xe2\x01\n\x14UndeletePrivateCloud\x12\x39.google.cloud.vmwareengine.v1.UndeletePrivateCloudRequest\x1a\x1d.google.longrunning.Operation\"p\x82\xd3\xe4\x93\x02?\":/v1/{name=projects/*/locations/*/privateClouds/*}:undelete:\x01*\xda\x41\x04name\xca\x41!\n\x0cPrivateCloud\x12\x11OperationMetadata\x12\xc4\x01\n\x0cListClusters\x12\x31.google.cloud.vmwareengine.v1.ListClustersRequest\x1a\x32.google.cloud.vmwareengine.v1.ListClustersResponse\"M\x82\xd3\xe4\x93\x02>\x12</v1/{parent=projects/*/locations/*/privateClouds/*}/clusters\xda\x41\x06parent\x12\xb1\x01\n\nGetCluster\x12/.google.cloud.vmwareengine.v1.GetClusterRequest\x1a%.google.cloud.vmwareengine.v1.Cluster\"K\x82\xd3\xe4\x93\x02>\x12</v1/{name=projects/*/locations/*/privateClouds/*/clusters/*}\xda\x41\x04name\x12\xed\x01\n\rCreateCluster\x12\x32.google.cloud.vmwareengine.v1.CreateClusterRequest\x1a\x1d.google.longrunning.Operation\"\x88\x01\x82\xd3\xe4\x93\x02G\"</v1/{parent=projects/*/locations/*/privateClouds/*}/clusters:\x07\x63luster\xda\x41\x19parent,cluster,cluster_id\xca\x41\x1c\n\x07\x43luster\x12\x11OperationMetadata\x12\xef\x01\n\rUpdateCluster\x12\x32.google.cloud.vmwareengine.v1.UpdateClusterRequest\x1a\x1d.google.longrunning.Operation\"\x8a\x01\x82\xd3\xe4\x93\x02O2D/v1/{cluster.name=projects/*/locations/*/privateClouds/*/clusters/*}:\x07\x63luster\xda\x41\x13\x63luster,update_mask\xca\x41\x1c\n\x07\x43luster\x12\x11OperationMetadata\x12\xdc\x01\n\rDeleteCluster\x12\x32.google.cloud.vmwareengine.v1.DeleteClusterRequest\x1a\x1d.google.longrunning.Operation\"x\x82\xd3\xe4\x93\x02>*</v1/{name=projects/*/locations/*/privateClouds/*/clusters/*}\xda\x41\x04name\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x12\xc0\x01\n\x0bListSubnets\x12\x30.google.cloud.vmwareengine.v1.ListSubnetsRequest\x1a\x31.google.cloud.vmwareengine.v1.ListSubnetsResponse\"L\x82\xd3\xe4\x93\x02=\x12;/v1/{parent=projects/*/locations/*/privateClouds/*}/subnets\xda\x41\x06parent\x12\xad\x01\n\tGetSubnet\x12..google.cloud.vmwareengine.v1.GetSubnetRequest\x1a$.google.cloud.vmwareengine.v1.Subnet\"J\x82\xd3\xe4\x93\x02=\x12;/v1/{name=projects/*/locations/*/privateClouds/*/subnets/*}\xda\x41\x04name\x12\xe8\x01\n\x0cUpdateSubnet\x12\x31.google.cloud.vmwareengine.v1.UpdateSubnetRequest\x1a\x1d.google.longrunning.Operation\"\x85\x01\x82\xd3\xe4\x93\x02L2B/v1/{subnet.name=projects/*/locations/*/privateClouds/*/subnets/*}:\x06subnet\xda\x41\x12subnet,update_mask\xca\x41\x1b\n\x06Subnet\x12\x11OperationMetadata\x12\xb8\x01\n\rListNodeTypes\x12\x32.google.cloud.vmwareengine.v1.ListNodeTypesRequest\x1a\x33.google.cloud.vmwareengine.v1.ListNodeTypesResponse\">\x82\xd3\xe4\x93\x02/\x12-/v1/{parent=projects/*/locations/*}/nodeTypes\xda\x41\x06parent\x12\xa5\x01\n\x0bGetNodeType\x12\x30.google.cloud.vmwareengine.v1.GetNodeTypeRequest\x1a&.google.cloud.vmwareengine.v1.NodeType\"<\x82\xd3\xe4\x93\x02/\x12-/v1/{name=projects/*/locations/*/nodeTypes/*}\xda\x41\x04name\x12\xdf\x01\n\x12ShowNsxCredentials\x12\x37.google.cloud.vmwareengine.v1.ShowNsxCredentialsRequest\x1a).google.cloud.vmwareengine.v1.Credentials\"e\x82\xd3\xe4\x93\x02O\x12M/v1/{private_cloud=projects/*/locations/*/privateClouds/*}:showNsxCredentials\xda\x41\rprivate_cloud\x12\xeb\x01\n\x16ShowVcenterCredentials\x12;.google.cloud.vmwareengine.v1.ShowVcenterCredentialsRequest\x1a).google.cloud.vmwareengine.v1.Credentials\"i\x82\xd3\xe4\x93\x02S\x12Q/v1/{private_cloud=projects/*/locations/*/privateClouds/*}:showVcenterCredentials\xda\x41\rprivate_cloud\x12\xfe\x01\n\x13ResetNsxCredentials\x12\x38.google.cloud.vmwareengine.v1.ResetNsxCredentialsRequest\x1a\x1d.google.longrunning.Operation\"\x8d\x01\x82\xd3\xe4\x93\x02S\"N/v1/{private_cloud=projects/*/locations/*/privateClouds/*}:resetNsxCredentials:\x01*\xda\x41\rprivate_cloud\xca\x41!\n\x0cPrivateCloud\x12\x11OperationMetadata\x12\x8a\x02\n\x17ResetVcenterCredentials\x12<.google.cloud.vmwareengine.v1.ResetVcenterCredentialsRequest\x1a\x1d.google.longrunning.Operation\"\x91\x01\x82\xd3\xe4\x93\x02W\"R/v1/{private_cloud=projects/*/locations/*/privateClouds/*}:resetVcenterCredentials:\x01*\xda\x41\rprivate_cloud\xca\x41!\n\x0cPrivateCloud\x12\x11OperationMetadata\x12\xb2\x02\n\x16\x43reateHcxActivationKey\x12;.google.cloud.vmwareengine.v1.CreateHcxActivationKeyRequest\x1a\x1d.google.longrunning.Operation\"\xbb\x01\x82\xd3\xe4\x93\x02[\"E/v1/{parent=projects/*/locations/*/privateClouds/*}/hcxActivationKeys:\x12hcx_activation_key\xda\x41/parent,hcx_activation_key,hcx_activation_key_id\xca\x41%\n\x10HcxActivationKey\x12\x11OperationMetadata\x12\xe8\x01\n\x15ListHcxActivationKeys\x12:.google.cloud.vmwareengine.v1.ListHcxActivationKeysRequest\x1a;.google.cloud.vmwareengine.v1.ListHcxActivationKeysResponse\"V\x82\xd3\xe4\x93\x02G\x12\x45/v1/{parent=projects/*/locations/*/privateClouds/*}/hcxActivationKeys\xda\x41\x06parent\x12\xd5\x01\n\x13GetHcxActivationKey\x12\x38.google.cloud.vmwareengine.v1.GetHcxActivationKeyRequest\x1a..google.cloud.vmwareengine.v1.HcxActivationKey\"T\x82\xd3\xe4\x93\x02G\x12\x45/v1/{name=projects/*/locations/*/privateClouds/*/hcxActivationKeys/*}\xda\x41\x04name\x12\xba\x01\n\x10GetNetworkPolicy\x12\x35.google.cloud.vmwareengine.v1.GetNetworkPolicyRequest\x1a+.google.cloud.vmwareengine.v1.NetworkPolicy\"B\x82\xd3\xe4\x93\x02\x35\x12\x33/v1/{name=projects/*/locations/*/networkPolicies/*}\xda\x41\x04name\x12\xd0\x01\n\x13ListNetworkPolicies\x12\x38.google.cloud.vmwareengine.v1.ListNetworkPoliciesRequest\x1a\x39.google.cloud.vmwareengine.v1.ListNetworkPoliciesResponse\"D\x82\xd3\xe4\x93\x02\x35\x12\x33/v1/{parent=projects/*/locations/*}/networkPolicies\xda\x41\x06parent\x12\x8b\x02\n\x13\x43reateNetworkPolicy\x12\x38.google.cloud.vmwareengine.v1.CreateNetworkPolicyRequest\x1a\x1d.google.longrunning.Operation\"\x9a\x01\x82\xd3\xe4\x93\x02\x45\"3/v1/{parent=projects/*/locations/*}/networkPolicies:\x0enetwork_policy\xda\x41\'parent,network_policy,network_policy_id\xca\x41\"\n\rNetworkPolicy\x12\x11OperationMetadata\x12\x8d\x02\n\x13UpdateNetworkPolicy\x12\x38.google.cloud.vmwareengine.v1.UpdateNetworkPolicyRequest\x1a\x1d.google.longrunning.Operation\"\x9c\x01\x82\xd3\xe4\x93\x02T2B/v1/{network_policy.name=projects/*/locations/*/networkPolicies/*}:\x0enetwork_policy\xda\x41\x1anetwork_policy,update_mask\xca\x41\"\n\rNetworkPolicy\x12\x11OperationMetadata\x12\xdf\x01\n\x13\x44\x65leteNetworkPolicy\x12\x38.google.cloud.vmwareengine.v1.DeleteNetworkPolicyRequest\x1a\x1d.google.longrunning.Operation\"o\x82\xd3\xe4\x93\x02\x35*3/v1/{name=projects/*/locations/*/networkPolicies/*}\xda\x41\x04name\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x12\xb7\x02\n\x19\x43reateVmwareEngineNetwork\x12>.google.cloud.vmwareengine.v1.CreateVmwareEngineNetworkRequest\x1a\x1d.google.longrunning.Operation\"\xba\x01\x82\xd3\xe4\x93\x02Q\"8/v1/{parent=projects/*/locations/*}/vmwareEngineNetworks:\x15vmware_engine_network\xda\x41\x35parent,vmware_engine_network,vmware_engine_network_id\xca\x41(\n\x13VmwareEngineNetwork\x12\x11OperationMetadata\x12\xb9\x02\n\x19UpdateVmwareEngineNetwork\x12>.google.cloud.vmwareengine.v1.UpdateVmwareEngineNetworkRequest\x1a\x1d.google.longrunning.Operation\"\xbc\x01\x82\xd3\xe4\x93\x02g2N/v1/{vmware_engine_network.name=projects/*/locations/*/vmwareEngineNetworks/*}:\x15vmware_engine_network\xda\x41!vmware_engine_network,update_mask\xca\x41(\n\x13VmwareEngineNetwork\x12\x11OperationMetadata\x12\xf0\x01\n\x19\x44\x65leteVmwareEngineNetwork\x12>.google.cloud.vmwareengine.v1.DeleteVmwareEngineNetworkRequest\x1a\x1d.google.longrunning.Operation\"t\x82\xd3\xe4\x93\x02:*8/v1/{name=projects/*/locations/*/vmwareEngineNetworks/*}\xda\x41\x04name\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x12\xd1\x01\n\x16GetVmwareEngineNetwork\x12;.google.cloud.vmwareengine.v1.GetVmwareEngineNetworkRequest\x1a\x31.google.cloud.vmwareengine.v1.VmwareEngineNetwork\"G\x82\xd3\xe4\x93\x02:\x12\x38/v1/{name=projects/*/locations/*/vmwareEngineNetworks/*}\xda\x41\x04name\x12\xe4\x01\n\x18ListVmwareEngineNetworks\x12=.google.cloud.vmwareengine.v1.ListVmwareEngineNetworksRequest\x1a>.google.cloud.vmwareengine.v1.ListVmwareEngineNetworksResponse\"I\x82\xd3\xe4\x93\x02:\x12\x38/v1/{parent=projects/*/locations/*}/vmwareEngineNetworks\xda\x41\x06parent\x12\xa6\x02\n\x17\x43reatePrivateConnection\x12<.google.cloud.vmwareengine.v1.CreatePrivateConnectionRequest\x1a\x1d.google.longrunning.Operation\"\xad\x01\x82\xd3\xe4\x93\x02L\"6/v1/{parent=projects/*/locations/*}/privateConnections:\x12private_connection\xda\x41/parent,private_connection,private_connection_id\xca\x41&\n\x11PrivateConnection\x12\x11OperationMetadata\x12\xc9\x01\n\x14GetPrivateConnection\x12\x39.google.cloud.vmwareengine.v1.GetPrivateConnectionRequest\x1a/.google.cloud.vmwareengine.v1.PrivateConnection\"E\x82\xd3\xe4\x93\x02\x38\x12\x36/v1/{name=projects/*/locations/*/privateConnections/*}\xda\x41\x04name\x12\xdc\x01\n\x16ListPrivateConnections\x12;.google.cloud.vmwareengine.v1.ListPrivateConnectionsRequest\x1a<.google.cloud.vmwareengine.v1.ListPrivateConnectionsResponse\"G\x82\xd3\xe4\x93\x02\x38\x12\x36/v1/{parent=projects/*/locations/*}/privateConnections\xda\x41\x06parent\x12\xa8\x02\n\x17UpdatePrivateConnection\x12<.google.cloud.vmwareengine.v1.UpdatePrivateConnectionRequest\x1a\x1d.google.longrunning.Operation\"\xaf\x01\x82\xd3\xe4\x93\x02_2I/v1/{private_connection.name=projects/*/locations/*/privateConnections/*}:\x12private_connection\xda\x41\x1eprivate_connection,update_mask\xca\x41&\n\x11PrivateConnection\x12\x11OperationMetadata\x12\xea\x01\n\x17\x44\x65letePrivateConnection\x12<.google.cloud.vmwareengine.v1.DeletePrivateConnectionRequest\x1a\x1d.google.longrunning.Operation\"r\x82\xd3\xe4\x93\x02\x38*6/v1/{name=projects/*/locations/*/privateConnections/*}\xda\x41\x04name\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x12\x90\x02\n\"ListPrivateConnectionPeeringRoutes\x12G.google.cloud.vmwareengine.v1.ListPrivateConnectionPeeringRoutesRequest\x1aH.google.cloud.vmwareengine.v1.ListPrivateConnectionPeeringRoutesResponse\"W\x82\xd3\xe4\x93\x02H\x12\x46/v1/{parent=projects/*/locations/*/privateConnections/*}/peeringRoutes\xda\x41\x06parent\x1aO\xca\x41\x1bvmwareengine.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xae\x02\n com.google.cloud.vmwareengine.v1B\x11VmwareengineProtoP\x01ZDcloud.google.com/go/vmwareengine/apiv1/vmwareenginepb;vmwareenginepb\xaa\x02\x1cGoogle.Cloud.VmwareEngine.V1\xca\x02\x1cGoogle\\Cloud\\VmwareEngine\\V1\xea\x02\x1fGoogle::Cloud::VmwareEngine::V1\xea\x41N\n\x1e\x63ompute.googleapis.com/Network\x12,projects/{project}/global/networks/{network}b\x06proto3"
18
19
 
19
20
  pool = Google::Protobuf::DescriptorPool.generated_pool
20
21
 
@@ -62,6 +63,8 @@ module Google
62
63
  DeleteClusterRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.DeleteClusterRequest").msgclass
63
64
  ListSubnetsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.ListSubnetsRequest").msgclass
64
65
  ListSubnetsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.ListSubnetsResponse").msgclass
66
+ GetSubnetRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.GetSubnetRequest").msgclass
67
+ UpdateSubnetRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.UpdateSubnetRequest").msgclass
65
68
  OperationMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.OperationMetadata").msgclass
66
69
  ListNodeTypesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.ListNodeTypesRequest").msgclass
67
70
  ListNodeTypesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.ListNodeTypesResponse").msgclass
@@ -86,6 +89,14 @@ module Google
86
89
  GetVmwareEngineNetworkRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.GetVmwareEngineNetworkRequest").msgclass
87
90
  ListVmwareEngineNetworksRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.ListVmwareEngineNetworksRequest").msgclass
88
91
  ListVmwareEngineNetworksResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.ListVmwareEngineNetworksResponse").msgclass
92
+ CreatePrivateConnectionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.CreatePrivateConnectionRequest").msgclass
93
+ GetPrivateConnectionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.GetPrivateConnectionRequest").msgclass
94
+ ListPrivateConnectionsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.ListPrivateConnectionsRequest").msgclass
95
+ ListPrivateConnectionsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.ListPrivateConnectionsResponse").msgclass
96
+ UpdatePrivateConnectionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.UpdatePrivateConnectionRequest").msgclass
97
+ DeletePrivateConnectionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.DeletePrivateConnectionRequest").msgclass
98
+ ListPrivateConnectionPeeringRoutesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.ListPrivateConnectionPeeringRoutesRequest").msgclass
99
+ ListPrivateConnectionPeeringRoutesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.vmwareengine.v1.ListPrivateConnectionPeeringRoutesResponse").msgclass
89
100
  end
90
101
  end
91
102
  end