google-apis-networkmanagement_v1 0.34.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: b963e20d35845f2c05760431b2400725f1f113c6051f479720eac70c689e0d99
4
- data.tar.gz: 35058a6b4e7cff2f5bbdfc2bacb01c8ecc2ebea5930a37feaef72f737df5b6fd
3
+ metadata.gz: 9865b9fbabf449192ff69f8a35ad1c23cd3c6e04e8e23b870274c61c2d9a3931
4
+ data.tar.gz: cbf3ddf53fc5afbeb6061e0af99f70b83e2cb6d2a3851e052ab2f5eb03fe5eb7
5
5
  SHA512:
6
- metadata.gz: ea6084aecedf381f764cfac5635bd5766175701cbe6c268520b7aae65fa401b1e0ffe08cc4d1b023bed7647960f674c9a76d31c5f18b2442acfdd77c0602dff1
7
- data.tar.gz: 020ec478e2dc816a819c313d5fd6c0450a542e54a73ef99f877025116cdec575733443a4800054c46af1a6f9705c276c1fdf3bb97ec35bb468be51fccece565c
6
+ metadata.gz: 42ae73693c9a60836e00eeb815a01d2dec43ab6a9698473a1dbf4a936668d357facd603d575c2cf9dd5b874d8301a2c7378612ab247e1247dca2e8928b805497
7
+ data.tar.gz: 2af83a72969449ebd4f7e2108549d94e70be1b7d49347116341a7f0ef1b3f6162c6af5d3579082b623f8436d5501f5f970dc8f6babb5b1a488bb44a23b410abc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkmanagement_v1
2
2
 
3
+ ### v0.36.0 (2023-12-17)
4
+
5
+ * Regenerated from discovery document revision 20231207
6
+
7
+ ### v0.35.0 (2023-12-10)
8
+
9
+ * Regenerated from discovery document revision 20231129
10
+
3
11
  ### v0.34.0 (2023-11-19)
4
12
 
5
13
  * Regenerated from discovery document revision 20231108
@@ -559,11 +559,26 @@ module Google
559
559
  # @return [String]
560
560
  attr_accessor :cause
561
561
 
562
+ # Destination IP address of the dropped packet (if relevant).
563
+ # Corresponds to the JSON property `destinationIp`
564
+ # @return [String]
565
+ attr_accessor :destination_ip
566
+
567
+ # Region of the dropped packet (if relevant).
568
+ # Corresponds to the JSON property `region`
569
+ # @return [String]
570
+ attr_accessor :region
571
+
562
572
  # URI of the resource that caused the drop.
563
573
  # Corresponds to the JSON property `resourceUri`
564
574
  # @return [String]
565
575
  attr_accessor :resource_uri
566
576
 
577
+ # Source IP address of the dropped packet (if relevant).
578
+ # Corresponds to the JSON property `sourceIp`
579
+ # @return [String]
580
+ attr_accessor :source_ip
581
+
567
582
  def initialize(**args)
568
583
  update!(**args)
569
584
  end
@@ -571,7 +586,10 @@ module Google
571
586
  # Update properties of this object
572
587
  def update!(**args)
573
588
  @cause = args[:cause] if args.key?(:cause)
589
+ @destination_ip = args[:destination_ip] if args.key?(:destination_ip)
590
+ @region = args[:region] if args.key?(:region)
574
591
  @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
592
+ @source_ip = args[:source_ip] if args.key?(:source_ip)
575
593
  end
576
594
  end
577
595
 
@@ -661,10 +679,7 @@ module Google
661
679
  # @return [String]
662
680
  attr_accessor :instance
663
681
 
664
- # The IP address of the endpoint, which can be an external or internal IP. An
665
- # IPv6 address is only allowed when the test's destination is a [global load
666
- # balancer VIP](https://cloud.google.com/load-balancing/docs/load-balancing-
667
- # overview).
682
+ # The IP address of the endpoint, which can be an external or internal IP.
668
683
  # Corresponds to the JSON property `ipAddress`
669
684
  # @return [String]
670
685
  attr_accessor :ip_address
@@ -854,7 +869,7 @@ module Google
854
869
  class FirewallInfo
855
870
  include Google::Apis::Core::Hashable
856
871
 
857
- # Possible values: ALLOW, DENY
872
+ # Possible values: ALLOW, DENY, APPLY_SECURITY_PROFILE_GROUP
858
873
  # Corresponds to the JSON property `action`
859
874
  # @return [String]
860
875
  attr_accessor :action
@@ -1305,6 +1320,69 @@ module Google
1305
1320
  end
1306
1321
  end
1307
1322
 
1323
+ # For display only. Metadata associated with the load balancer backend.
1324
+ class LoadBalancerBackendInfo
1325
+ include Google::Apis::Core::Hashable
1326
+
1327
+ # URI of the backend service this backend belongs to (if applicable).
1328
+ # Corresponds to the JSON property `backendServiceUri`
1329
+ # @return [String]
1330
+ attr_accessor :backend_service_uri
1331
+
1332
+ # Output only. Health check firewalls configuration state for the backend. This
1333
+ # is a result of the static firewall analysis (verifying that health check
1334
+ # traffic from required IP ranges to the backend is allowed or not). The backend
1335
+ # might still be unhealthy even if these firewalls are configured. Please refer
1336
+ # to the documentation for more information: https://cloud.google.com/load-
1337
+ # balancing/docs/firewall-rules
1338
+ # Corresponds to the JSON property `healthCheckFirewallsConfigState`
1339
+ # @return [String]
1340
+ attr_accessor :health_check_firewalls_config_state
1341
+
1342
+ # URI of the health check attached to this backend (if applicable).
1343
+ # Corresponds to the JSON property `healthCheckUri`
1344
+ # @return [String]
1345
+ attr_accessor :health_check_uri
1346
+
1347
+ # URI of the instance group this backend belongs to (if applicable).
1348
+ # Corresponds to the JSON property `instanceGroupUri`
1349
+ # @return [String]
1350
+ attr_accessor :instance_group_uri
1351
+
1352
+ # URI of the backend instance (if applicable). Populated for instance group
1353
+ # backends, and zonal NEG backends.
1354
+ # Corresponds to the JSON property `instanceUri`
1355
+ # @return [String]
1356
+ attr_accessor :instance_uri
1357
+
1358
+ # Display name of the backend. For example, it might be an instance name for the
1359
+ # instance group backends, or an IP address and port for zonal network endpoint
1360
+ # group backends.
1361
+ # Corresponds to the JSON property `name`
1362
+ # @return [String]
1363
+ attr_accessor :name
1364
+
1365
+ # URI of the network endpoint group this backend belongs to (if applicable).
1366
+ # Corresponds to the JSON property `networkEndpointGroupUri`
1367
+ # @return [String]
1368
+ attr_accessor :network_endpoint_group_uri
1369
+
1370
+ def initialize(**args)
1371
+ update!(**args)
1372
+ end
1373
+
1374
+ # Update properties of this object
1375
+ def update!(**args)
1376
+ @backend_service_uri = args[:backend_service_uri] if args.key?(:backend_service_uri)
1377
+ @health_check_firewalls_config_state = args[:health_check_firewalls_config_state] if args.key?(:health_check_firewalls_config_state)
1378
+ @health_check_uri = args[:health_check_uri] if args.key?(:health_check_uri)
1379
+ @instance_group_uri = args[:instance_group_uri] if args.key?(:instance_group_uri)
1380
+ @instance_uri = args[:instance_uri] if args.key?(:instance_uri)
1381
+ @name = args[:name] if args.key?(:name)
1382
+ @network_endpoint_group_uri = args[:network_endpoint_group_uri] if args.key?(:network_endpoint_group_uri)
1383
+ end
1384
+ end
1385
+
1308
1386
  # For display only. Metadata associated with a load balancer.
1309
1387
  class LoadBalancerInfo
1310
1388
  include Google::Apis::Core::Hashable
@@ -1397,6 +1475,98 @@ module Google
1397
1475
  end
1398
1476
  end
1399
1477
 
1478
+ # For display only. Metadata associated with NAT.
1479
+ class NatInfo
1480
+ include Google::Apis::Core::Hashable
1481
+
1482
+ # The name of Cloud NAT Gateway. Only valid when type is CLOUD_NAT.
1483
+ # Corresponds to the JSON property `natGatewayName`
1484
+ # @return [String]
1485
+ attr_accessor :nat_gateway_name
1486
+
1487
+ # URI of the network where NAT translation takes place.
1488
+ # Corresponds to the JSON property `networkUri`
1489
+ # @return [String]
1490
+ attr_accessor :network_uri
1491
+
1492
+ # Destination IP address after NAT translation.
1493
+ # Corresponds to the JSON property `newDestinationIp`
1494
+ # @return [String]
1495
+ attr_accessor :new_destination_ip
1496
+
1497
+ # Destination port after NAT translation. Only valid when protocol is TCP or UDP.
1498
+ # Corresponds to the JSON property `newDestinationPort`
1499
+ # @return [Fixnum]
1500
+ attr_accessor :new_destination_port
1501
+
1502
+ # Source IP address after NAT translation.
1503
+ # Corresponds to the JSON property `newSourceIp`
1504
+ # @return [String]
1505
+ attr_accessor :new_source_ip
1506
+
1507
+ # Source port after NAT translation. Only valid when protocol is TCP or UDP.
1508
+ # Corresponds to the JSON property `newSourcePort`
1509
+ # @return [Fixnum]
1510
+ attr_accessor :new_source_port
1511
+
1512
+ # Destination IP address before NAT translation.
1513
+ # Corresponds to the JSON property `oldDestinationIp`
1514
+ # @return [String]
1515
+ attr_accessor :old_destination_ip
1516
+
1517
+ # Destination port before NAT translation. Only valid when protocol is TCP or
1518
+ # UDP.
1519
+ # Corresponds to the JSON property `oldDestinationPort`
1520
+ # @return [Fixnum]
1521
+ attr_accessor :old_destination_port
1522
+
1523
+ # Source IP address before NAT translation.
1524
+ # Corresponds to the JSON property `oldSourceIp`
1525
+ # @return [String]
1526
+ attr_accessor :old_source_ip
1527
+
1528
+ # Source port before NAT translation. Only valid when protocol is TCP or UDP.
1529
+ # Corresponds to the JSON property `oldSourcePort`
1530
+ # @return [Fixnum]
1531
+ attr_accessor :old_source_port
1532
+
1533
+ # IP protocol in string format, for example: "TCP", "UDP", "ICMP".
1534
+ # Corresponds to the JSON property `protocol`
1535
+ # @return [String]
1536
+ attr_accessor :protocol
1537
+
1538
+ # Uri of the Cloud Router. Only valid when type is CLOUD_NAT.
1539
+ # Corresponds to the JSON property `routerUri`
1540
+ # @return [String]
1541
+ attr_accessor :router_uri
1542
+
1543
+ # Type of NAT.
1544
+ # Corresponds to the JSON property `type`
1545
+ # @return [String]
1546
+ attr_accessor :type
1547
+
1548
+ def initialize(**args)
1549
+ update!(**args)
1550
+ end
1551
+
1552
+ # Update properties of this object
1553
+ def update!(**args)
1554
+ @nat_gateway_name = args[:nat_gateway_name] if args.key?(:nat_gateway_name)
1555
+ @network_uri = args[:network_uri] if args.key?(:network_uri)
1556
+ @new_destination_ip = args[:new_destination_ip] if args.key?(:new_destination_ip)
1557
+ @new_destination_port = args[:new_destination_port] if args.key?(:new_destination_port)
1558
+ @new_source_ip = args[:new_source_ip] if args.key?(:new_source_ip)
1559
+ @new_source_port = args[:new_source_port] if args.key?(:new_source_port)
1560
+ @old_destination_ip = args[:old_destination_ip] if args.key?(:old_destination_ip)
1561
+ @old_destination_port = args[:old_destination_port] if args.key?(:old_destination_port)
1562
+ @old_source_ip = args[:old_source_ip] if args.key?(:old_source_ip)
1563
+ @old_source_port = args[:old_source_port] if args.key?(:old_source_port)
1564
+ @protocol = args[:protocol] if args.key?(:protocol)
1565
+ @router_uri = args[:router_uri] if args.key?(:router_uri)
1566
+ @type = args[:type] if args.key?(:type)
1567
+ end
1568
+ end
1569
+
1400
1570
  # For display only. Metadata associated with a Compute Engine network.
1401
1571
  class NetworkInfo
1402
1572
  include Google::Apis::Core::Hashable
@@ -1717,6 +1887,86 @@ module Google
1717
1887
  end
1718
1888
  end
1719
1889
 
1890
+ # For display only. Metadata associated with ProxyConnection.
1891
+ class ProxyConnectionInfo
1892
+ include Google::Apis::Core::Hashable
1893
+
1894
+ # URI of the network where connection is proxied.
1895
+ # Corresponds to the JSON property `networkUri`
1896
+ # @return [String]
1897
+ attr_accessor :network_uri
1898
+
1899
+ # Destination IP address of a new connection.
1900
+ # Corresponds to the JSON property `newDestinationIp`
1901
+ # @return [String]
1902
+ attr_accessor :new_destination_ip
1903
+
1904
+ # Destination port of a new connection. Only valid when protocol is TCP or UDP.
1905
+ # Corresponds to the JSON property `newDestinationPort`
1906
+ # @return [Fixnum]
1907
+ attr_accessor :new_destination_port
1908
+
1909
+ # Source IP address of a new connection.
1910
+ # Corresponds to the JSON property `newSourceIp`
1911
+ # @return [String]
1912
+ attr_accessor :new_source_ip
1913
+
1914
+ # Source port of a new connection. Only valid when protocol is TCP or UDP.
1915
+ # Corresponds to the JSON property `newSourcePort`
1916
+ # @return [Fixnum]
1917
+ attr_accessor :new_source_port
1918
+
1919
+ # Destination IP address of an original connection
1920
+ # Corresponds to the JSON property `oldDestinationIp`
1921
+ # @return [String]
1922
+ attr_accessor :old_destination_ip
1923
+
1924
+ # Destination port of an original connection. Only valid when protocol is TCP or
1925
+ # UDP.
1926
+ # Corresponds to the JSON property `oldDestinationPort`
1927
+ # @return [Fixnum]
1928
+ attr_accessor :old_destination_port
1929
+
1930
+ # Source IP address of an original connection.
1931
+ # Corresponds to the JSON property `oldSourceIp`
1932
+ # @return [String]
1933
+ attr_accessor :old_source_ip
1934
+
1935
+ # Source port of an original connection. Only valid when protocol is TCP or UDP.
1936
+ # Corresponds to the JSON property `oldSourcePort`
1937
+ # @return [Fixnum]
1938
+ attr_accessor :old_source_port
1939
+
1940
+ # IP protocol in string format, for example: "TCP", "UDP", "ICMP".
1941
+ # Corresponds to the JSON property `protocol`
1942
+ # @return [String]
1943
+ attr_accessor :protocol
1944
+
1945
+ # Uri of proxy subnet.
1946
+ # Corresponds to the JSON property `subnetUri`
1947
+ # @return [String]
1948
+ attr_accessor :subnet_uri
1949
+
1950
+ def initialize(**args)
1951
+ update!(**args)
1952
+ end
1953
+
1954
+ # Update properties of this object
1955
+ def update!(**args)
1956
+ @network_uri = args[:network_uri] if args.key?(:network_uri)
1957
+ @new_destination_ip = args[:new_destination_ip] if args.key?(:new_destination_ip)
1958
+ @new_destination_port = args[:new_destination_port] if args.key?(:new_destination_port)
1959
+ @new_source_ip = args[:new_source_ip] if args.key?(:new_source_ip)
1960
+ @new_source_port = args[:new_source_port] if args.key?(:new_source_port)
1961
+ @old_destination_ip = args[:old_destination_ip] if args.key?(:old_destination_ip)
1962
+ @old_destination_port = args[:old_destination_port] if args.key?(:old_destination_port)
1963
+ @old_source_ip = args[:old_source_ip] if args.key?(:old_source_ip)
1964
+ @old_source_port = args[:old_source_port] if args.key?(:old_source_port)
1965
+ @protocol = args[:protocol] if args.key?(:protocol)
1966
+ @subnet_uri = args[:subnet_uri] if args.key?(:subnet_uri)
1967
+ end
1968
+ end
1969
+
1720
1970
  # Results of the configuration analysis from the last run of the test.
1721
1971
  class ReachabilityDetails
1722
1972
  include Google::Apis::Core::Hashable
@@ -2076,6 +2326,16 @@ module Google
2076
2326
  # @return [Google::Apis::NetworkmanagementV1::LoadBalancerInfo]
2077
2327
  attr_accessor :load_balancer
2078
2328
 
2329
+ # For display only. Metadata associated with the load balancer backend.
2330
+ # Corresponds to the JSON property `loadBalancerBackendInfo`
2331
+ # @return [Google::Apis::NetworkmanagementV1::LoadBalancerBackendInfo]
2332
+ attr_accessor :load_balancer_backend_info
2333
+
2334
+ # For display only. Metadata associated with NAT.
2335
+ # Corresponds to the JSON property `nat`
2336
+ # @return [Google::Apis::NetworkmanagementV1::NatInfo]
2337
+ attr_accessor :nat
2338
+
2079
2339
  # For display only. Metadata associated with a Compute Engine network.
2080
2340
  # Corresponds to the JSON property `network`
2081
2341
  # @return [Google::Apis::NetworkmanagementV1::NetworkInfo]
@@ -2086,6 +2346,11 @@ module Google
2086
2346
  # @return [String]
2087
2347
  attr_accessor :project_id
2088
2348
 
2349
+ # For display only. Metadata associated with ProxyConnection.
2350
+ # Corresponds to the JSON property `proxyConnection`
2351
+ # @return [Google::Apis::NetworkmanagementV1::ProxyConnectionInfo]
2352
+ attr_accessor :proxy_connection
2353
+
2089
2354
  # For display only. Metadata associated with a Compute Engine route.
2090
2355
  # Corresponds to the JSON property `route`
2091
2356
  # @return [Google::Apis::NetworkmanagementV1::RouteInfo]
@@ -2134,8 +2399,11 @@ module Google
2134
2399
  @google_service = args[:google_service] if args.key?(:google_service)
2135
2400
  @instance = args[:instance] if args.key?(:instance)
2136
2401
  @load_balancer = args[:load_balancer] if args.key?(:load_balancer)
2402
+ @load_balancer_backend_info = args[:load_balancer_backend_info] if args.key?(:load_balancer_backend_info)
2403
+ @nat = args[:nat] if args.key?(:nat)
2137
2404
  @network = args[:network] if args.key?(:network)
2138
2405
  @project_id = args[:project_id] if args.key?(:project_id)
2406
+ @proxy_connection = args[:proxy_connection] if args.key?(:proxy_connection)
2139
2407
  @route = args[:route] if args.key?(:route)
2140
2408
  @state = args[:state] if args.key?(:state)
2141
2409
  @vpc_connector = args[:vpc_connector] if args.key?(:vpc_connector)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetworkmanagementV1
18
18
  # Version of the google-apis-networkmanagement_v1 gem
19
- GEM_VERSION = "0.34.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 = "20231108"
25
+ REVISION = "20231207"
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
 
@@ -467,7 +485,10 @@ module Google
467
485
  # @private
468
486
  class Representation < Google::Apis::Core::JsonRepresentation
469
487
  property :cause, as: 'cause'
488
+ property :destination_ip, as: 'destinationIp'
489
+ property :region, as: 'region'
470
490
  property :resource_uri, as: 'resourceUri'
491
+ property :source_ip, as: 'sourceIp'
471
492
  end
472
493
  end
473
494
 
@@ -656,6 +677,19 @@ module Google
656
677
  end
657
678
  end
658
679
 
680
+ class LoadBalancerBackendInfo
681
+ # @private
682
+ class Representation < Google::Apis::Core::JsonRepresentation
683
+ property :backend_service_uri, as: 'backendServiceUri'
684
+ property :health_check_firewalls_config_state, as: 'healthCheckFirewallsConfigState'
685
+ property :health_check_uri, as: 'healthCheckUri'
686
+ property :instance_group_uri, as: 'instanceGroupUri'
687
+ property :instance_uri, as: 'instanceUri'
688
+ property :name, as: 'name'
689
+ property :network_endpoint_group_uri, as: 'networkEndpointGroupUri'
690
+ end
691
+ end
692
+
659
693
  class LoadBalancerInfo
660
694
  # @private
661
695
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -679,6 +713,25 @@ module Google
679
713
  end
680
714
  end
681
715
 
716
+ class NatInfo
717
+ # @private
718
+ class Representation < Google::Apis::Core::JsonRepresentation
719
+ property :nat_gateway_name, as: 'natGatewayName'
720
+ property :network_uri, as: 'networkUri'
721
+ property :new_destination_ip, as: 'newDestinationIp'
722
+ property :new_destination_port, as: 'newDestinationPort'
723
+ property :new_source_ip, as: 'newSourceIp'
724
+ property :new_source_port, as: 'newSourcePort'
725
+ property :old_destination_ip, as: 'oldDestinationIp'
726
+ property :old_destination_port, as: 'oldDestinationPort'
727
+ property :old_source_ip, as: 'oldSourceIp'
728
+ property :old_source_port, as: 'oldSourcePort'
729
+ property :protocol, as: 'protocol'
730
+ property :router_uri, as: 'routerUri'
731
+ property :type, as: 'type'
732
+ end
733
+ end
734
+
682
735
  class NetworkInfo
683
736
  # @private
684
737
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -744,6 +797,23 @@ module Google
744
797
  end
745
798
  end
746
799
 
800
+ class ProxyConnectionInfo
801
+ # @private
802
+ class Representation < Google::Apis::Core::JsonRepresentation
803
+ property :network_uri, as: 'networkUri'
804
+ property :new_destination_ip, as: 'newDestinationIp'
805
+ property :new_destination_port, as: 'newDestinationPort'
806
+ property :new_source_ip, as: 'newSourceIp'
807
+ property :new_source_port, as: 'newSourcePort'
808
+ property :old_destination_ip, as: 'oldDestinationIp'
809
+ property :old_destination_port, as: 'oldDestinationPort'
810
+ property :old_source_ip, as: 'oldSourceIp'
811
+ property :old_source_port, as: 'oldSourcePort'
812
+ property :protocol, as: 'protocol'
813
+ property :subnet_uri, as: 'subnetUri'
814
+ end
815
+ end
816
+
747
817
  class ReachabilityDetails
748
818
  # @private
749
819
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -837,9 +907,15 @@ module Google
837
907
 
838
908
  property :load_balancer, as: 'loadBalancer', class: Google::Apis::NetworkmanagementV1::LoadBalancerInfo, decorator: Google::Apis::NetworkmanagementV1::LoadBalancerInfo::Representation
839
909
 
910
+ property :load_balancer_backend_info, as: 'loadBalancerBackendInfo', class: Google::Apis::NetworkmanagementV1::LoadBalancerBackendInfo, decorator: Google::Apis::NetworkmanagementV1::LoadBalancerBackendInfo::Representation
911
+
912
+ property :nat, as: 'nat', class: Google::Apis::NetworkmanagementV1::NatInfo, decorator: Google::Apis::NetworkmanagementV1::NatInfo::Representation
913
+
840
914
  property :network, as: 'network', class: Google::Apis::NetworkmanagementV1::NetworkInfo, decorator: Google::Apis::NetworkmanagementV1::NetworkInfo::Representation
841
915
 
842
916
  property :project_id, as: 'projectId'
917
+ property :proxy_connection, as: 'proxyConnection', class: Google::Apis::NetworkmanagementV1::ProxyConnectionInfo, decorator: Google::Apis::NetworkmanagementV1::ProxyConnectionInfo::Representation
918
+
843
919
  property :route, as: 'route', class: Google::Apis::NetworkmanagementV1::RouteInfo, decorator: Google::Apis::NetworkmanagementV1::RouteInfo::Representation
844
920
 
845
921
  property :state, as: 'state'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkmanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.34.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-19 00:00:00.000000000 Z
11
+ date: 2023-12-17 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.34.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.36.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1
63
63
  post_install_message:
64
64
  rdoc_options: []