google-apis-networkmanagement_v1beta1 0.35.0 → 0.36.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9cf388592a47cfc10c8aed40e6cf8a236c8071f521257da8b6196d7954b4e43e
|
4
|
+
data.tar.gz: a765b39ff5d886eeaee7b15fa3b797265d07a50f85101c3c8ca90bbbaff41589
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d89b6903bcd8dd75fbad879f7df8338c1eed3d1f6e7ac319752c8de04cd6a89c534e063dd17a6e0f1170edfd6b5f7edb2b2244a063478bd6e6e79c34f13ddbfd
|
7
|
+
data.tar.gz: 7f3785df12b10abd032423216326be2da5e76b742caf858f424846c374de9b5c8259ff1c711a2e2fb005e4ba49207ad35c121ebbf28640fc4d46440aea0439fc
|
data/CHANGELOG.md
CHANGED
@@ -565,11 +565,26 @@ module Google
|
|
565
565
|
# @return [String]
|
566
566
|
attr_accessor :cause
|
567
567
|
|
568
|
+
# Destination IP address of the dropped packet (if relevant).
|
569
|
+
# Corresponds to the JSON property `destinationIp`
|
570
|
+
# @return [String]
|
571
|
+
attr_accessor :destination_ip
|
572
|
+
|
573
|
+
# Region of the dropped packet (if relevant).
|
574
|
+
# Corresponds to the JSON property `region`
|
575
|
+
# @return [String]
|
576
|
+
attr_accessor :region
|
577
|
+
|
568
578
|
# URI of the resource that caused the drop.
|
569
579
|
# Corresponds to the JSON property `resourceUri`
|
570
580
|
# @return [String]
|
571
581
|
attr_accessor :resource_uri
|
572
582
|
|
583
|
+
# Source IP address of the dropped packet (if relevant).
|
584
|
+
# Corresponds to the JSON property `sourceIp`
|
585
|
+
# @return [String]
|
586
|
+
attr_accessor :source_ip
|
587
|
+
|
573
588
|
def initialize(**args)
|
574
589
|
update!(**args)
|
575
590
|
end
|
@@ -577,7 +592,10 @@ module Google
|
|
577
592
|
# Update properties of this object
|
578
593
|
def update!(**args)
|
579
594
|
@cause = args[:cause] if args.key?(:cause)
|
595
|
+
@destination_ip = args[:destination_ip] if args.key?(:destination_ip)
|
596
|
+
@region = args[:region] if args.key?(:region)
|
580
597
|
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
598
|
+
@source_ip = args[:source_ip] if args.key?(:source_ip)
|
581
599
|
end
|
582
600
|
end
|
583
601
|
|
@@ -667,10 +685,7 @@ module Google
|
|
667
685
|
# @return [String]
|
668
686
|
attr_accessor :instance
|
669
687
|
|
670
|
-
# The IP address of the endpoint, which can be an external or internal IP.
|
671
|
-
# IPv6 address is only allowed when the test's destination is a [global load
|
672
|
-
# balancer VIP](https://cloud.google.com/load-balancing/docs/load-balancing-
|
673
|
-
# overview).
|
688
|
+
# The IP address of the endpoint, which can be an external or internal IP.
|
674
689
|
# Corresponds to the JSON property `ipAddress`
|
675
690
|
# @return [String]
|
676
691
|
attr_accessor :ip_address
|
@@ -1311,6 +1326,69 @@ module Google
|
|
1311
1326
|
end
|
1312
1327
|
end
|
1313
1328
|
|
1329
|
+
# For display only. Metadata associated with the load balancer backend.
|
1330
|
+
class LoadBalancerBackendInfo
|
1331
|
+
include Google::Apis::Core::Hashable
|
1332
|
+
|
1333
|
+
# Display name of the backend. For example, it might be an instance name for the
|
1334
|
+
# instance group backends, or an IP address and port for zonal network endpoint
|
1335
|
+
# group backends.
|
1336
|
+
# Corresponds to the JSON property `backendDisplayName`
|
1337
|
+
# @return [String]
|
1338
|
+
attr_accessor :backend_display_name
|
1339
|
+
|
1340
|
+
# URI of the backend service this backend belongs to (if applicable).
|
1341
|
+
# Corresponds to the JSON property `backendServiceUri`
|
1342
|
+
# @return [String]
|
1343
|
+
attr_accessor :backend_service_uri
|
1344
|
+
|
1345
|
+
# Output only. Health check configuration state for the backend. This is a
|
1346
|
+
# result of the static firewall analysis (verifying that health check traffic
|
1347
|
+
# from required IP ranges to the backend is allowed or not). The backend might
|
1348
|
+
# still be unhealthy even if these firewalls are configured. Please refer to the
|
1349
|
+
# documentation for more information: https://cloud.google.com/load-balancing/
|
1350
|
+
# docs/firewall-rules
|
1351
|
+
# Corresponds to the JSON property `healthCheckConfigState`
|
1352
|
+
# @return [String]
|
1353
|
+
attr_accessor :health_check_config_state
|
1354
|
+
|
1355
|
+
# URI of the health check attached to this backend (if applicable).
|
1356
|
+
# Corresponds to the JSON property `healthCheckUri`
|
1357
|
+
# @return [String]
|
1358
|
+
attr_accessor :health_check_uri
|
1359
|
+
|
1360
|
+
# URI of the instance group this backend belongs to (if applicable).
|
1361
|
+
# Corresponds to the JSON property `instanceGroupUri`
|
1362
|
+
# @return [String]
|
1363
|
+
attr_accessor :instance_group_uri
|
1364
|
+
|
1365
|
+
# URI of the backend instance (if applicable). Populated for instance group
|
1366
|
+
# backends, and zonal NEG backends.
|
1367
|
+
# Corresponds to the JSON property `instanceUri`
|
1368
|
+
# @return [String]
|
1369
|
+
attr_accessor :instance_uri
|
1370
|
+
|
1371
|
+
# URI of the network endpoint group this backend belongs to (if applicable).
|
1372
|
+
# Corresponds to the JSON property `networkEndpointGroupUri`
|
1373
|
+
# @return [String]
|
1374
|
+
attr_accessor :network_endpoint_group_uri
|
1375
|
+
|
1376
|
+
def initialize(**args)
|
1377
|
+
update!(**args)
|
1378
|
+
end
|
1379
|
+
|
1380
|
+
# Update properties of this object
|
1381
|
+
def update!(**args)
|
1382
|
+
@backend_display_name = args[:backend_display_name] if args.key?(:backend_display_name)
|
1383
|
+
@backend_service_uri = args[:backend_service_uri] if args.key?(:backend_service_uri)
|
1384
|
+
@health_check_config_state = args[:health_check_config_state] if args.key?(:health_check_config_state)
|
1385
|
+
@health_check_uri = args[:health_check_uri] if args.key?(:health_check_uri)
|
1386
|
+
@instance_group_uri = args[:instance_group_uri] if args.key?(:instance_group_uri)
|
1387
|
+
@instance_uri = args[:instance_uri] if args.key?(:instance_uri)
|
1388
|
+
@network_endpoint_group_uri = args[:network_endpoint_group_uri] if args.key?(:network_endpoint_group_uri)
|
1389
|
+
end
|
1390
|
+
end
|
1391
|
+
|
1314
1392
|
# For display only. Metadata associated with a load balancer.
|
1315
1393
|
class LoadBalancerInfo
|
1316
1394
|
include Google::Apis::Core::Hashable
|
@@ -1403,6 +1481,98 @@ module Google
|
|
1403
1481
|
end
|
1404
1482
|
end
|
1405
1483
|
|
1484
|
+
# For display only. Metadata associated with NAT.
|
1485
|
+
class NatInfo
|
1486
|
+
include Google::Apis::Core::Hashable
|
1487
|
+
|
1488
|
+
# The name of Cloud NAT Gateway. Only valid when type is CLOUD_NAT.
|
1489
|
+
# Corresponds to the JSON property `natGatewayName`
|
1490
|
+
# @return [String]
|
1491
|
+
attr_accessor :nat_gateway_name
|
1492
|
+
|
1493
|
+
# URI of the network where NAT translation takes place.
|
1494
|
+
# Corresponds to the JSON property `networkUri`
|
1495
|
+
# @return [String]
|
1496
|
+
attr_accessor :network_uri
|
1497
|
+
|
1498
|
+
# Destination IP address after NAT translation.
|
1499
|
+
# Corresponds to the JSON property `newDestinationIp`
|
1500
|
+
# @return [String]
|
1501
|
+
attr_accessor :new_destination_ip
|
1502
|
+
|
1503
|
+
# Destination port after NAT translation. Only valid when protocol is TCP or UDP.
|
1504
|
+
# Corresponds to the JSON property `newDestinationPort`
|
1505
|
+
# @return [Fixnum]
|
1506
|
+
attr_accessor :new_destination_port
|
1507
|
+
|
1508
|
+
# Source IP address after NAT translation.
|
1509
|
+
# Corresponds to the JSON property `newSourceIp`
|
1510
|
+
# @return [String]
|
1511
|
+
attr_accessor :new_source_ip
|
1512
|
+
|
1513
|
+
# Source port after NAT translation. Only valid when protocol is TCP or UDP.
|
1514
|
+
# Corresponds to the JSON property `newSourcePort`
|
1515
|
+
# @return [Fixnum]
|
1516
|
+
attr_accessor :new_source_port
|
1517
|
+
|
1518
|
+
# Destination IP address before NAT translation.
|
1519
|
+
# Corresponds to the JSON property `oldDestinationIp`
|
1520
|
+
# @return [String]
|
1521
|
+
attr_accessor :old_destination_ip
|
1522
|
+
|
1523
|
+
# Destination port before NAT translation. Only valid when protocol is TCP or
|
1524
|
+
# UDP.
|
1525
|
+
# Corresponds to the JSON property `oldDestinationPort`
|
1526
|
+
# @return [Fixnum]
|
1527
|
+
attr_accessor :old_destination_port
|
1528
|
+
|
1529
|
+
# Source IP address before NAT translation.
|
1530
|
+
# Corresponds to the JSON property `oldSourceIp`
|
1531
|
+
# @return [String]
|
1532
|
+
attr_accessor :old_source_ip
|
1533
|
+
|
1534
|
+
# Source port before NAT translation. Only valid when protocol is TCP or UDP.
|
1535
|
+
# Corresponds to the JSON property `oldSourcePort`
|
1536
|
+
# @return [Fixnum]
|
1537
|
+
attr_accessor :old_source_port
|
1538
|
+
|
1539
|
+
# IP protocol in string format, for example: "TCP", "UDP", "ICMP".
|
1540
|
+
# Corresponds to the JSON property `protocol`
|
1541
|
+
# @return [String]
|
1542
|
+
attr_accessor :protocol
|
1543
|
+
|
1544
|
+
# Uri of the Cloud Router. Only valid when type is CLOUD_NAT.
|
1545
|
+
# Corresponds to the JSON property `routerUri`
|
1546
|
+
# @return [String]
|
1547
|
+
attr_accessor :router_uri
|
1548
|
+
|
1549
|
+
# Type of NAT.
|
1550
|
+
# Corresponds to the JSON property `type`
|
1551
|
+
# @return [String]
|
1552
|
+
attr_accessor :type
|
1553
|
+
|
1554
|
+
def initialize(**args)
|
1555
|
+
update!(**args)
|
1556
|
+
end
|
1557
|
+
|
1558
|
+
# Update properties of this object
|
1559
|
+
def update!(**args)
|
1560
|
+
@nat_gateway_name = args[:nat_gateway_name] if args.key?(:nat_gateway_name)
|
1561
|
+
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
1562
|
+
@new_destination_ip = args[:new_destination_ip] if args.key?(:new_destination_ip)
|
1563
|
+
@new_destination_port = args[:new_destination_port] if args.key?(:new_destination_port)
|
1564
|
+
@new_source_ip = args[:new_source_ip] if args.key?(:new_source_ip)
|
1565
|
+
@new_source_port = args[:new_source_port] if args.key?(:new_source_port)
|
1566
|
+
@old_destination_ip = args[:old_destination_ip] if args.key?(:old_destination_ip)
|
1567
|
+
@old_destination_port = args[:old_destination_port] if args.key?(:old_destination_port)
|
1568
|
+
@old_source_ip = args[:old_source_ip] if args.key?(:old_source_ip)
|
1569
|
+
@old_source_port = args[:old_source_port] if args.key?(:old_source_port)
|
1570
|
+
@protocol = args[:protocol] if args.key?(:protocol)
|
1571
|
+
@router_uri = args[:router_uri] if args.key?(:router_uri)
|
1572
|
+
@type = args[:type] if args.key?(:type)
|
1573
|
+
end
|
1574
|
+
end
|
1575
|
+
|
1406
1576
|
# For display only. Metadata associated with a Compute Engine network.
|
1407
1577
|
class NetworkInfo
|
1408
1578
|
include Google::Apis::Core::Hashable
|
@@ -1723,6 +1893,86 @@ module Google
|
|
1723
1893
|
end
|
1724
1894
|
end
|
1725
1895
|
|
1896
|
+
# For display only. Metadata associated with ProxyConnection.
|
1897
|
+
class ProxyConnectionInfo
|
1898
|
+
include Google::Apis::Core::Hashable
|
1899
|
+
|
1900
|
+
# URI of the network where connection is proxied.
|
1901
|
+
# Corresponds to the JSON property `networkUri`
|
1902
|
+
# @return [String]
|
1903
|
+
attr_accessor :network_uri
|
1904
|
+
|
1905
|
+
# Destination IP address of a new connection.
|
1906
|
+
# Corresponds to the JSON property `newDestinationIp`
|
1907
|
+
# @return [String]
|
1908
|
+
attr_accessor :new_destination_ip
|
1909
|
+
|
1910
|
+
# Destination port of a new connection. Only valid when protocol is TCP or UDP.
|
1911
|
+
# Corresponds to the JSON property `newDestinationPort`
|
1912
|
+
# @return [Fixnum]
|
1913
|
+
attr_accessor :new_destination_port
|
1914
|
+
|
1915
|
+
# Source IP address of a new connection.
|
1916
|
+
# Corresponds to the JSON property `newSourceIp`
|
1917
|
+
# @return [String]
|
1918
|
+
attr_accessor :new_source_ip
|
1919
|
+
|
1920
|
+
# Source port of a new connection. Only valid when protocol is TCP or UDP.
|
1921
|
+
# Corresponds to the JSON property `newSourcePort`
|
1922
|
+
# @return [Fixnum]
|
1923
|
+
attr_accessor :new_source_port
|
1924
|
+
|
1925
|
+
# Destination IP address of an original connection
|
1926
|
+
# Corresponds to the JSON property `oldDestinationIp`
|
1927
|
+
# @return [String]
|
1928
|
+
attr_accessor :old_destination_ip
|
1929
|
+
|
1930
|
+
# Destination port of an original connection. Only valid when protocol is TCP or
|
1931
|
+
# UDP.
|
1932
|
+
# Corresponds to the JSON property `oldDestinationPort`
|
1933
|
+
# @return [Fixnum]
|
1934
|
+
attr_accessor :old_destination_port
|
1935
|
+
|
1936
|
+
# Source IP address of an original connection.
|
1937
|
+
# Corresponds to the JSON property `oldSourceIp`
|
1938
|
+
# @return [String]
|
1939
|
+
attr_accessor :old_source_ip
|
1940
|
+
|
1941
|
+
# Source port of an original connection. Only valid when protocol is TCP or UDP.
|
1942
|
+
# Corresponds to the JSON property `oldSourcePort`
|
1943
|
+
# @return [Fixnum]
|
1944
|
+
attr_accessor :old_source_port
|
1945
|
+
|
1946
|
+
# IP protocol in string format, for example: "TCP", "UDP", "ICMP".
|
1947
|
+
# Corresponds to the JSON property `protocol`
|
1948
|
+
# @return [String]
|
1949
|
+
attr_accessor :protocol
|
1950
|
+
|
1951
|
+
# Uri of proxy subnet.
|
1952
|
+
# Corresponds to the JSON property `subnetUri`
|
1953
|
+
# @return [String]
|
1954
|
+
attr_accessor :subnet_uri
|
1955
|
+
|
1956
|
+
def initialize(**args)
|
1957
|
+
update!(**args)
|
1958
|
+
end
|
1959
|
+
|
1960
|
+
# Update properties of this object
|
1961
|
+
def update!(**args)
|
1962
|
+
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
1963
|
+
@new_destination_ip = args[:new_destination_ip] if args.key?(:new_destination_ip)
|
1964
|
+
@new_destination_port = args[:new_destination_port] if args.key?(:new_destination_port)
|
1965
|
+
@new_source_ip = args[:new_source_ip] if args.key?(:new_source_ip)
|
1966
|
+
@new_source_port = args[:new_source_port] if args.key?(:new_source_port)
|
1967
|
+
@old_destination_ip = args[:old_destination_ip] if args.key?(:old_destination_ip)
|
1968
|
+
@old_destination_port = args[:old_destination_port] if args.key?(:old_destination_port)
|
1969
|
+
@old_source_ip = args[:old_source_ip] if args.key?(:old_source_ip)
|
1970
|
+
@old_source_port = args[:old_source_port] if args.key?(:old_source_port)
|
1971
|
+
@protocol = args[:protocol] if args.key?(:protocol)
|
1972
|
+
@subnet_uri = args[:subnet_uri] if args.key?(:subnet_uri)
|
1973
|
+
end
|
1974
|
+
end
|
1975
|
+
|
1726
1976
|
# Results of the configuration analysis from the last run of the test.
|
1727
1977
|
class ReachabilityDetails
|
1728
1978
|
include Google::Apis::Core::Hashable
|
@@ -2082,6 +2332,16 @@ module Google
|
|
2082
2332
|
# @return [Google::Apis::NetworkmanagementV1beta1::LoadBalancerInfo]
|
2083
2333
|
attr_accessor :load_balancer
|
2084
2334
|
|
2335
|
+
# For display only. Metadata associated with the load balancer backend.
|
2336
|
+
# Corresponds to the JSON property `loadBalancerBackendInfo`
|
2337
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::LoadBalancerBackendInfo]
|
2338
|
+
attr_accessor :load_balancer_backend_info
|
2339
|
+
|
2340
|
+
# For display only. Metadata associated with NAT.
|
2341
|
+
# Corresponds to the JSON property `nat`
|
2342
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::NatInfo]
|
2343
|
+
attr_accessor :nat
|
2344
|
+
|
2085
2345
|
# For display only. Metadata associated with a Compute Engine network.
|
2086
2346
|
# Corresponds to the JSON property `network`
|
2087
2347
|
# @return [Google::Apis::NetworkmanagementV1beta1::NetworkInfo]
|
@@ -2092,6 +2352,11 @@ module Google
|
|
2092
2352
|
# @return [String]
|
2093
2353
|
attr_accessor :project_id
|
2094
2354
|
|
2355
|
+
# For display only. Metadata associated with ProxyConnection.
|
2356
|
+
# Corresponds to the JSON property `proxyConnection`
|
2357
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::ProxyConnectionInfo]
|
2358
|
+
attr_accessor :proxy_connection
|
2359
|
+
|
2095
2360
|
# For display only. Metadata associated with a Compute Engine route.
|
2096
2361
|
# Corresponds to the JSON property `route`
|
2097
2362
|
# @return [Google::Apis::NetworkmanagementV1beta1::RouteInfo]
|
@@ -2140,8 +2405,11 @@ module Google
|
|
2140
2405
|
@google_service = args[:google_service] if args.key?(:google_service)
|
2141
2406
|
@instance = args[:instance] if args.key?(:instance)
|
2142
2407
|
@load_balancer = args[:load_balancer] if args.key?(:load_balancer)
|
2408
|
+
@load_balancer_backend_info = args[:load_balancer_backend_info] if args.key?(:load_balancer_backend_info)
|
2409
|
+
@nat = args[:nat] if args.key?(:nat)
|
2143
2410
|
@network = args[:network] if args.key?(:network)
|
2144
2411
|
@project_id = args[:project_id] if args.key?(:project_id)
|
2412
|
+
@proxy_connection = args[:proxy_connection] if args.key?(:proxy_connection)
|
2145
2413
|
@route = args[:route] if args.key?(:route)
|
2146
2414
|
@state = args[:state] if args.key?(:state)
|
2147
2415
|
@vpc_connector = args[:vpc_connector] if args.key?(:vpc_connector)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkmanagementV1beta1
|
18
18
|
# Version of the google-apis-networkmanagement_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.36.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231129"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -214,6 +214,12 @@ module Google
|
|
214
214
|
include Google::Apis::Core::JsonObjectSupport
|
215
215
|
end
|
216
216
|
|
217
|
+
class LoadBalancerBackendInfo
|
218
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
|
+
|
220
|
+
include Google::Apis::Core::JsonObjectSupport
|
221
|
+
end
|
222
|
+
|
217
223
|
class LoadBalancerInfo
|
218
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
225
|
|
@@ -226,6 +232,12 @@ module Google
|
|
226
232
|
include Google::Apis::Core::JsonObjectSupport
|
227
233
|
end
|
228
234
|
|
235
|
+
class NatInfo
|
236
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
|
+
|
238
|
+
include Google::Apis::Core::JsonObjectSupport
|
239
|
+
end
|
240
|
+
|
229
241
|
class NetworkInfo
|
230
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
243
|
|
@@ -256,6 +268,12 @@ module Google
|
|
256
268
|
include Google::Apis::Core::JsonObjectSupport
|
257
269
|
end
|
258
270
|
|
271
|
+
class ProxyConnectionInfo
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
259
277
|
class ReachabilityDetails
|
260
278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
279
|
|
@@ -468,7 +486,10 @@ module Google
|
|
468
486
|
# @private
|
469
487
|
class Representation < Google::Apis::Core::JsonRepresentation
|
470
488
|
property :cause, as: 'cause'
|
489
|
+
property :destination_ip, as: 'destinationIp'
|
490
|
+
property :region, as: 'region'
|
471
491
|
property :resource_uri, as: 'resourceUri'
|
492
|
+
property :source_ip, as: 'sourceIp'
|
472
493
|
end
|
473
494
|
end
|
474
495
|
|
@@ -657,6 +678,19 @@ module Google
|
|
657
678
|
end
|
658
679
|
end
|
659
680
|
|
681
|
+
class LoadBalancerBackendInfo
|
682
|
+
# @private
|
683
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
684
|
+
property :backend_display_name, as: 'backendDisplayName'
|
685
|
+
property :backend_service_uri, as: 'backendServiceUri'
|
686
|
+
property :health_check_config_state, as: 'healthCheckConfigState'
|
687
|
+
property :health_check_uri, as: 'healthCheckUri'
|
688
|
+
property :instance_group_uri, as: 'instanceGroupUri'
|
689
|
+
property :instance_uri, as: 'instanceUri'
|
690
|
+
property :network_endpoint_group_uri, as: 'networkEndpointGroupUri'
|
691
|
+
end
|
692
|
+
end
|
693
|
+
|
660
694
|
class LoadBalancerInfo
|
661
695
|
# @private
|
662
696
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -680,6 +714,25 @@ module Google
|
|
680
714
|
end
|
681
715
|
end
|
682
716
|
|
717
|
+
class NatInfo
|
718
|
+
# @private
|
719
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
720
|
+
property :nat_gateway_name, as: 'natGatewayName'
|
721
|
+
property :network_uri, as: 'networkUri'
|
722
|
+
property :new_destination_ip, as: 'newDestinationIp'
|
723
|
+
property :new_destination_port, as: 'newDestinationPort'
|
724
|
+
property :new_source_ip, as: 'newSourceIp'
|
725
|
+
property :new_source_port, as: 'newSourcePort'
|
726
|
+
property :old_destination_ip, as: 'oldDestinationIp'
|
727
|
+
property :old_destination_port, as: 'oldDestinationPort'
|
728
|
+
property :old_source_ip, as: 'oldSourceIp'
|
729
|
+
property :old_source_port, as: 'oldSourcePort'
|
730
|
+
property :protocol, as: 'protocol'
|
731
|
+
property :router_uri, as: 'routerUri'
|
732
|
+
property :type, as: 'type'
|
733
|
+
end
|
734
|
+
end
|
735
|
+
|
683
736
|
class NetworkInfo
|
684
737
|
# @private
|
685
738
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -745,6 +798,23 @@ module Google
|
|
745
798
|
end
|
746
799
|
end
|
747
800
|
|
801
|
+
class ProxyConnectionInfo
|
802
|
+
# @private
|
803
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
804
|
+
property :network_uri, as: 'networkUri'
|
805
|
+
property :new_destination_ip, as: 'newDestinationIp'
|
806
|
+
property :new_destination_port, as: 'newDestinationPort'
|
807
|
+
property :new_source_ip, as: 'newSourceIp'
|
808
|
+
property :new_source_port, as: 'newSourcePort'
|
809
|
+
property :old_destination_ip, as: 'oldDestinationIp'
|
810
|
+
property :old_destination_port, as: 'oldDestinationPort'
|
811
|
+
property :old_source_ip, as: 'oldSourceIp'
|
812
|
+
property :old_source_port, as: 'oldSourcePort'
|
813
|
+
property :protocol, as: 'protocol'
|
814
|
+
property :subnet_uri, as: 'subnetUri'
|
815
|
+
end
|
816
|
+
end
|
817
|
+
|
748
818
|
class ReachabilityDetails
|
749
819
|
# @private
|
750
820
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -838,9 +908,15 @@ module Google
|
|
838
908
|
|
839
909
|
property :load_balancer, as: 'loadBalancer', class: Google::Apis::NetworkmanagementV1beta1::LoadBalancerInfo, decorator: Google::Apis::NetworkmanagementV1beta1::LoadBalancerInfo::Representation
|
840
910
|
|
911
|
+
property :load_balancer_backend_info, as: 'loadBalancerBackendInfo', class: Google::Apis::NetworkmanagementV1beta1::LoadBalancerBackendInfo, decorator: Google::Apis::NetworkmanagementV1beta1::LoadBalancerBackendInfo::Representation
|
912
|
+
|
913
|
+
property :nat, as: 'nat', class: Google::Apis::NetworkmanagementV1beta1::NatInfo, decorator: Google::Apis::NetworkmanagementV1beta1::NatInfo::Representation
|
914
|
+
|
841
915
|
property :network, as: 'network', class: Google::Apis::NetworkmanagementV1beta1::NetworkInfo, decorator: Google::Apis::NetworkmanagementV1beta1::NetworkInfo::Representation
|
842
916
|
|
843
917
|
property :project_id, as: 'projectId'
|
918
|
+
property :proxy_connection, as: 'proxyConnection', class: Google::Apis::NetworkmanagementV1beta1::ProxyConnectionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::ProxyConnectionInfo::Representation
|
919
|
+
|
844
920
|
property :route, as: 'route', class: Google::Apis::NetworkmanagementV1beta1::RouteInfo, decorator: Google::Apis::NetworkmanagementV1beta1::RouteInfo::Representation
|
845
921
|
|
846
922
|
property :state, as: 'state'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkmanagement_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.36.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-12-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.36.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|