google-apis-networkmanagement_v1 0.65.0 → 0.67.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: 363dadd03703847db7dd0aa1c2bd06819676d65c3f323f6460f12dd0f8293de4
4
- data.tar.gz: 2a0a9d12ddcf4d1b834c07e4d7145cfb6aa71a893686b6a9038eda152255ccac
3
+ metadata.gz: 8f51e3e914932bd8f77fc74376800d3d04234ee233b1f0ccb222efea4ef62712
4
+ data.tar.gz: 4ede762dec8e164f3886658b40ffe9819ce5a2977f36e69f1277a7d47fd952e7
5
5
  SHA512:
6
- metadata.gz: 2b7242d81f6045dc35099d2371de5ea9ef19d42df1c3fd1a85d7d46f26597d5a0d25f8157b2d772e1254dabf67b3758a55df0c1d98544e3c260052c21b96a491
7
- data.tar.gz: ee56b7c37caaae22478ffabedda3f21c067eb6933c28997daefb4f285abadebf2a6539caa1ed4f506c6b9691d458a3f0f94cbb8b03427035a1de3fccd0ad7e9c
6
+ metadata.gz: 7c594c6a35a721c7d2462c7922849df22f45de0c7ebe31252d4317fd9593baa5c715e8e781fb454bbb3d3c8f6ea1c278232397ea90bd64d3f9a1889c85ef9c81
7
+ data.tar.gz: b4b7e859e067601141b9a9034e0cdd08ef87b604850b801384f1f3340c981213ec10b012b3e39c875c295cf7935588324f6ceb6c497838e2b98d94a588b3d14e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkmanagement_v1
2
2
 
3
+ ### v0.67.0 (2025-08-17)
4
+
5
+ * Regenerated from discovery document revision 20250806
6
+
7
+ ### v0.66.0 (2025-08-03)
8
+
9
+ * Regenerated from discovery document revision 20250723
10
+
3
11
  ### v0.65.0 (2025-07-27)
4
12
 
5
13
  * Regenerated from discovery document revision 20250716
@@ -685,6 +685,11 @@ module Google
685
685
  # @return [String]
686
686
  attr_accessor :cause
687
687
 
688
+ # Geolocation (region code) of the destination IP address (if relevant).
689
+ # Corresponds to the JSON property `destinationGeolocationCode`
690
+ # @return [String]
691
+ attr_accessor :destination_geolocation_code
692
+
688
693
  # Destination IP address of the dropped packet (if relevant).
689
694
  # Corresponds to the JSON property `destinationIp`
690
695
  # @return [String]
@@ -700,6 +705,11 @@ module Google
700
705
  # @return [String]
701
706
  attr_accessor :resource_uri
702
707
 
708
+ # Geolocation (region code) of the source IP address (if relevant).
709
+ # Corresponds to the JSON property `sourceGeolocationCode`
710
+ # @return [String]
711
+ attr_accessor :source_geolocation_code
712
+
703
713
  # Source IP address of the dropped packet (if relevant).
704
714
  # Corresponds to the JSON property `sourceIp`
705
715
  # @return [String]
@@ -712,9 +722,11 @@ module Google
712
722
  # Update properties of this object
713
723
  def update!(**args)
714
724
  @cause = args[:cause] if args.key?(:cause)
725
+ @destination_geolocation_code = args[:destination_geolocation_code] if args.key?(:destination_geolocation_code)
715
726
  @destination_ip = args[:destination_ip] if args.key?(:destination_ip)
716
727
  @region = args[:region] if args.key?(:region)
717
728
  @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
729
+ @source_geolocation_code = args[:source_geolocation_code] if args.key?(:source_geolocation_code)
718
730
  @source_ip = args[:source_ip] if args.key?(:source_ip)
719
731
  end
720
732
  end
@@ -1079,6 +1091,11 @@ module Google
1079
1091
  # @return [Array<String>]
1080
1092
  attr_accessor :target_tags
1081
1093
 
1094
+ # Target type of the firewall rule.
1095
+ # Corresponds to the JSON property `targetType`
1096
+ # @return [String]
1097
+ attr_accessor :target_type
1098
+
1082
1099
  # The URI of the firewall rule. This field is not applicable to implied VPC
1083
1100
  # firewall rules.
1084
1101
  # Corresponds to the JSON property `uri`
@@ -1102,6 +1119,7 @@ module Google
1102
1119
  @priority = args[:priority] if args.key?(:priority)
1103
1120
  @target_service_accounts = args[:target_service_accounts] if args.key?(:target_service_accounts)
1104
1121
  @target_tags = args[:target_tags] if args.key?(:target_tags)
1122
+ @target_type = args[:target_type] if args.key?(:target_type)
1105
1123
  @uri = args[:uri] if args.key?(:uri)
1106
1124
  end
1107
1125
  end
@@ -1261,6 +1279,31 @@ module Google
1261
1279
  end
1262
1280
  end
1263
1281
 
1282
+ # The geographical location of the MonitoringPoint.
1283
+ class GeoLocation
1284
+ include Google::Apis::Core::Hashable
1285
+
1286
+ # Country.
1287
+ # Corresponds to the JSON property `country`
1288
+ # @return [String]
1289
+ attr_accessor :country
1290
+
1291
+ # Formatted address.
1292
+ # Corresponds to the JSON property `formattedAddress`
1293
+ # @return [String]
1294
+ attr_accessor :formatted_address
1295
+
1296
+ def initialize(**args)
1297
+ update!(**args)
1298
+ end
1299
+
1300
+ # Update properties of this object
1301
+ def update!(**args)
1302
+ @country = args[:country] if args.key?(:country)
1303
+ @formatted_address = args[:formatted_address] if args.key?(:formatted_address)
1304
+ end
1305
+ end
1306
+
1264
1307
  # For display only. Details of a Google Service sending packets to a VPC network.
1265
1308
  # Although the source IP might be a publicly routable address, some Google
1266
1309
  # Services use special routes within Google production infrastructure to reach
@@ -1319,6 +1362,11 @@ module Google
1319
1362
  # @return [Array<String>]
1320
1363
  attr_accessor :cloud_virtual_network_ids
1321
1364
 
1365
+ # Output only. The id of Virtual Private Cloud (VPC) of the host.
1366
+ # Corresponds to the JSON property `cloudVpcId`
1367
+ # @return [String]
1368
+ attr_accessor :cloud_vpc_id
1369
+
1322
1370
  # Output only. The cloud zone of the host.
1323
1371
  # Corresponds to the JSON property `cloudZone`
1324
1372
  # @return [String]
@@ -1340,6 +1388,7 @@ module Google
1340
1388
  @cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
1341
1389
  @cloud_region = args[:cloud_region] if args.key?(:cloud_region)
1342
1390
  @cloud_virtual_network_ids = args[:cloud_virtual_network_ids] if args.key?(:cloud_virtual_network_ids)
1391
+ @cloud_vpc_id = args[:cloud_vpc_id] if args.key?(:cloud_vpc_id)
1343
1392
  @cloud_zone = args[:cloud_zone] if args.key?(:cloud_zone)
1344
1393
  @os = args[:os] if args.key?(:os)
1345
1394
  end
@@ -1426,6 +1475,49 @@ module Google
1426
1475
  end
1427
1476
  end
1428
1477
 
1478
+ # For display only. Metadata associated with an Interconnect attachment.
1479
+ class InterconnectAttachmentInfo
1480
+ include Google::Apis::Core::Hashable
1481
+
1482
+ # URI of the Cloud Router to be used for dynamic routing.
1483
+ # Corresponds to the JSON property `cloudRouterUri`
1484
+ # @return [String]
1485
+ attr_accessor :cloud_router_uri
1486
+
1487
+ # Name of an Interconnect attachment.
1488
+ # Corresponds to the JSON property `displayName`
1489
+ # @return [String]
1490
+ attr_accessor :display_name
1491
+
1492
+ # URI of the Interconnect where the Interconnect attachment is configured.
1493
+ # Corresponds to the JSON property `interconnectUri`
1494
+ # @return [String]
1495
+ attr_accessor :interconnect_uri
1496
+
1497
+ # Name of a Google Cloud region where the Interconnect attachment is configured.
1498
+ # Corresponds to the JSON property `region`
1499
+ # @return [String]
1500
+ attr_accessor :region
1501
+
1502
+ # URI of an Interconnect attachment.
1503
+ # Corresponds to the JSON property `uri`
1504
+ # @return [String]
1505
+ attr_accessor :uri
1506
+
1507
+ def initialize(**args)
1508
+ update!(**args)
1509
+ end
1510
+
1511
+ # Update properties of this object
1512
+ def update!(**args)
1513
+ @cloud_router_uri = args[:cloud_router_uri] if args.key?(:cloud_router_uri)
1514
+ @display_name = args[:display_name] if args.key?(:display_name)
1515
+ @interconnect_uri = args[:interconnect_uri] if args.key?(:interconnect_uri)
1516
+ @region = args[:region] if args.key?(:region)
1517
+ @uri = args[:uri] if args.key?(:uri)
1518
+ end
1519
+ end
1520
+
1429
1521
  # Describes measured latency distribution.
1430
1522
  class LatencyDistribution
1431
1523
  include Google::Apis::Core::Hashable
@@ -1930,10 +2022,9 @@ module Google
1930
2022
  # @return [Array<String>]
1931
2023
  attr_accessor :errors
1932
2024
 
1933
- # Output only. The geographical location of the MonitoringPoint. Examples: - "
1934
- # New York, NY, USA" - "Berlin, Germany"
2025
+ # The geographical location of the MonitoringPoint.
1935
2026
  # Corresponds to the JSON property `geoLocation`
1936
- # @return [String]
2027
+ # @return [Google::Apis::NetworkmanagementV1::GeoLocation]
1937
2028
  attr_accessor :geo_location
1938
2029
 
1939
2030
  # Message describing information about the host.
@@ -1978,6 +2069,12 @@ module Google
1978
2069
  # @return [String]
1979
2070
  attr_accessor :update_time
1980
2071
 
2072
+ # Output only. Indicates if an upgrade is available for the MonitoringPoint.
2073
+ # Corresponds to the JSON property `upgradeAvailable`
2074
+ # @return [Boolean]
2075
+ attr_accessor :upgrade_available
2076
+ alias_method :upgrade_available?, :upgrade_available
2077
+
1981
2078
  # Output only. The type of upgrade available for the MonitoringPoint.
1982
2079
  # Corresponds to the JSON property `upgradeType`
1983
2080
  # @return [String]
@@ -2008,6 +2105,7 @@ module Google
2008
2105
  @provider_tags = args[:provider_tags] if args.key?(:provider_tags)
2009
2106
  @type = args[:type] if args.key?(:type)
2010
2107
  @update_time = args[:update_time] if args.key?(:update_time)
2108
+ @upgrade_available = args[:upgrade_available] if args.key?(:upgrade_available)
2011
2109
  @upgrade_type = args[:upgrade_type] if args.key?(:upgrade_type)
2012
2110
  @version = args[:version] if args.key?(:version)
2013
2111
  end
@@ -2213,6 +2311,12 @@ module Google
2213
2311
  # @return [String]
2214
2312
  attr_accessor :create_time
2215
2313
 
2314
+ # Output only. The list of error messages detected for the
2315
+ # NetworkMonitoringProvider.
2316
+ # Corresponds to the JSON property `errors`
2317
+ # @return [Array<String>]
2318
+ attr_accessor :errors
2319
+
2216
2320
  # Output only. Identifier. Name of the resource. Format: `projects/`project`/
2217
2321
  # locations/`location`/networkMonitoringProviders/`network_monitoring_provider``
2218
2322
  # Corresponds to the JSON property `name`
@@ -2246,6 +2350,7 @@ module Google
2246
2350
  # Update properties of this object
2247
2351
  def update!(**args)
2248
2352
  @create_time = args[:create_time] if args.key?(:create_time)
2353
+ @errors = args[:errors] if args.key?(:errors)
2249
2354
  @name = args[:name] if args.key?(:name)
2250
2355
  @provider_type = args[:provider_type] if args.key?(:provider_type)
2251
2356
  @provider_uri = args[:provider_uri] if args.key?(:provider_uri)
@@ -2268,9 +2373,9 @@ module Google
2268
2373
  # @return [String]
2269
2374
  attr_accessor :destination
2270
2375
 
2271
- # Output only. Geographical location of the destination MonitoringPoint.
2376
+ # The geographical location of the MonitoringPoint.
2272
2377
  # Corresponds to the JSON property `destinationGeoLocation`
2273
- # @return [String]
2378
+ # @return [Google::Apis::NetworkmanagementV1::GeoLocation]
2274
2379
  attr_accessor :destination_geo_location
2275
2380
 
2276
2381
  # Output only. The display name of the network path.
@@ -3390,6 +3495,11 @@ module Google
3390
3495
  # @return [Google::Apis::NetworkmanagementV1::InstanceInfo]
3391
3496
  attr_accessor :instance
3392
3497
 
3498
+ # For display only. Metadata associated with an Interconnect attachment.
3499
+ # Corresponds to the JSON property `interconnectAttachment`
3500
+ # @return [Google::Apis::NetworkmanagementV1::InterconnectAttachmentInfo]
3501
+ attr_accessor :interconnect_attachment
3502
+
3393
3503
  # For display only. Metadata associated with a load balancer.
3394
3504
  # Corresponds to the JSON property `loadBalancer`
3395
3505
  # @return [Google::Apis::NetworkmanagementV1::LoadBalancerInfo]
@@ -3494,6 +3604,7 @@ module Google
3494
3604
  @gke_master = args[:gke_master] if args.key?(:gke_master)
3495
3605
  @google_service = args[:google_service] if args.key?(:google_service)
3496
3606
  @instance = args[:instance] if args.key?(:instance)
3607
+ @interconnect_attachment = args[:interconnect_attachment] if args.key?(:interconnect_attachment)
3497
3608
  @load_balancer = args[:load_balancer] if args.key?(:load_balancer)
3498
3609
  @load_balancer_backend_info = args[:load_balancer_backend_info] if args.key?(:load_balancer_backend_info)
3499
3610
  @nat = args[:nat] if args.key?(:nat)
@@ -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.65.0"
19
+ GEM_VERSION = "0.67.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250716"
25
+ REVISION = "20250806"
26
26
  end
27
27
  end
28
28
  end
@@ -172,6 +172,12 @@ module Google
172
172
  include Google::Apis::Core::JsonObjectSupport
173
173
  end
174
174
 
175
+ class GeoLocation
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
175
181
  class GoogleServiceInfo
176
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
183
 
@@ -190,6 +196,12 @@ module Google
190
196
  include Google::Apis::Core::JsonObjectSupport
191
197
  end
192
198
 
199
+ class InterconnectAttachmentInfo
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
193
205
  class LatencyDistribution
194
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
207
 
@@ -626,9 +638,11 @@ module Google
626
638
  # @private
627
639
  class Representation < Google::Apis::Core::JsonRepresentation
628
640
  property :cause, as: 'cause'
641
+ property :destination_geolocation_code, as: 'destinationGeolocationCode'
629
642
  property :destination_ip, as: 'destinationIp'
630
643
  property :region, as: 'region'
631
644
  property :resource_uri, as: 'resourceUri'
645
+ property :source_geolocation_code, as: 'sourceGeolocationCode'
632
646
  property :source_ip, as: 'sourceIp'
633
647
  end
634
648
  end
@@ -711,6 +725,7 @@ module Google
711
725
  property :priority, as: 'priority'
712
726
  collection :target_service_accounts, as: 'targetServiceAccounts'
713
727
  collection :target_tags, as: 'targetTags'
728
+ property :target_type, as: 'targetType'
714
729
  property :uri, as: 'uri'
715
730
  end
716
731
  end
@@ -752,6 +767,14 @@ module Google
752
767
  end
753
768
  end
754
769
 
770
+ class GeoLocation
771
+ # @private
772
+ class Representation < Google::Apis::Core::JsonRepresentation
773
+ property :country, as: 'country'
774
+ property :formatted_address, as: 'formattedAddress'
775
+ end
776
+ end
777
+
755
778
  class GoogleServiceInfo
756
779
  # @private
757
780
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -768,6 +791,7 @@ module Google
768
791
  property :cloud_provider, as: 'cloudProvider'
769
792
  property :cloud_region, as: 'cloudRegion'
770
793
  collection :cloud_virtual_network_ids, as: 'cloudVirtualNetworkIds'
794
+ property :cloud_vpc_id, as: 'cloudVpcId'
771
795
  property :cloud_zone, as: 'cloudZone'
772
796
  property :os, as: 'os'
773
797
  end
@@ -790,6 +814,17 @@ module Google
790
814
  end
791
815
  end
792
816
 
817
+ class InterconnectAttachmentInfo
818
+ # @private
819
+ class Representation < Google::Apis::Core::JsonRepresentation
820
+ property :cloud_router_uri, as: 'cloudRouterUri'
821
+ property :display_name, as: 'displayName'
822
+ property :interconnect_uri, as: 'interconnectUri'
823
+ property :region, as: 'region'
824
+ property :uri, as: 'uri'
825
+ end
826
+ end
827
+
793
828
  class LatencyDistribution
794
829
  # @private
795
830
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -938,7 +973,8 @@ module Google
938
973
  property :create_time, as: 'createTime'
939
974
  property :display_name, as: 'displayName'
940
975
  collection :errors, as: 'errors'
941
- property :geo_location, as: 'geoLocation'
976
+ property :geo_location, as: 'geoLocation', class: Google::Apis::NetworkmanagementV1::GeoLocation, decorator: Google::Apis::NetworkmanagementV1::GeoLocation::Representation
977
+
942
978
  property :host, as: 'host', class: Google::Apis::NetworkmanagementV1::Host, decorator: Google::Apis::NetworkmanagementV1::Host::Representation
943
979
 
944
980
  property :hostname, as: 'hostname'
@@ -950,6 +986,7 @@ module Google
950
986
 
951
987
  property :type, as: 'type'
952
988
  property :update_time, as: 'updateTime'
989
+ property :upgrade_available, as: 'upgradeAvailable'
953
990
  property :upgrade_type, as: 'upgradeType'
954
991
  property :version, as: 'version'
955
992
  end
@@ -1002,6 +1039,7 @@ module Google
1002
1039
  # @private
1003
1040
  class Representation < Google::Apis::Core::JsonRepresentation
1004
1041
  property :create_time, as: 'createTime'
1042
+ collection :errors, as: 'errors'
1005
1043
  property :name, as: 'name'
1006
1044
  property :provider_type, as: 'providerType'
1007
1045
  property :provider_uri, as: 'providerUri'
@@ -1015,7 +1053,8 @@ module Google
1015
1053
  class Representation < Google::Apis::Core::JsonRepresentation
1016
1054
  property :create_time, as: 'createTime'
1017
1055
  property :destination, as: 'destination'
1018
- property :destination_geo_location, as: 'destinationGeoLocation'
1056
+ property :destination_geo_location, as: 'destinationGeoLocation', class: Google::Apis::NetworkmanagementV1::GeoLocation, decorator: Google::Apis::NetworkmanagementV1::GeoLocation::Representation
1057
+
1019
1058
  property :display_name, as: 'displayName'
1020
1059
  property :dual_ended, as: 'dualEnded'
1021
1060
  property :monitoring_enabled, as: 'monitoringEnabled'
@@ -1270,6 +1309,8 @@ module Google
1270
1309
 
1271
1310
  property :instance, as: 'instance', class: Google::Apis::NetworkmanagementV1::InstanceInfo, decorator: Google::Apis::NetworkmanagementV1::InstanceInfo::Representation
1272
1311
 
1312
+ property :interconnect_attachment, as: 'interconnectAttachment', class: Google::Apis::NetworkmanagementV1::InterconnectAttachmentInfo, decorator: Google::Apis::NetworkmanagementV1::InterconnectAttachmentInfo::Representation
1313
+
1273
1314
  property :load_balancer, as: 'loadBalancer', class: Google::Apis::NetworkmanagementV1::LoadBalancerInfo, decorator: Google::Apis::NetworkmanagementV1::LoadBalancerInfo::Representation
1274
1315
 
1275
1316
  property :load_balancer_backend_info, as: 'loadBalancerBackendInfo', class: Google::Apis::NetworkmanagementV1::LoadBalancerBackendInfo, decorator: Google::Apis::NetworkmanagementV1::LoadBalancerBackendInfo::Representation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkmanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.65.0
4
+ version: 0.67.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.65.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.67.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1
62
62
  rdoc_options: []
63
63
  require_paths: