google-apis-networkmanagement_v1 0.66.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: 7e93571f86cad9db1a40628cfe6ba0074b79243bc95e65d9355f03a3b6431744
4
- data.tar.gz: f14ccf3ed37d305ce9497fcd7a7f0ca4c12b59a665d711fe522f57d27d8c05b2
3
+ metadata.gz: 8f51e3e914932bd8f77fc74376800d3d04234ee233b1f0ccb222efea4ef62712
4
+ data.tar.gz: 4ede762dec8e164f3886658b40ffe9819ce5a2977f36e69f1277a7d47fd952e7
5
5
  SHA512:
6
- metadata.gz: a9c41abcf8b303bce8bdd05cf9519a7b8e30cdfa2b7ea3abdfa8f60006e80421a43cc6dce18f8f04f36c114fbebee0e10f633f4bd20ddbfc1302c5768a4e048e
7
- data.tar.gz: 4d071e9bf89d243ea8ba66af650fc613ffd8b078c11a159d25664d01b33c111ce1113263e1dbcd0f1cbce72cbfca088c85006a644ebd4a80c4eb7ec39c0a5311
6
+ metadata.gz: 7c594c6a35a721c7d2462c7922849df22f45de0c7ebe31252d4317fd9593baa5c715e8e781fb454bbb3d3c8f6ea1c278232397ea90bd64d3f9a1889c85ef9c81
7
+ data.tar.gz: b4b7e859e067601141b9a9034e0cdd08ef87b604850b801384f1f3340c981213ec10b012b3e39c875c295cf7935588324f6ceb6c497838e2b98d94a588b3d14e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.66.0 (2025-08-03)
4
8
 
5
9
  * Regenerated from discovery document revision 20250723
@@ -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
@@ -1432,6 +1475,49 @@ module Google
1432
1475
  end
1433
1476
  end
1434
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
+
1435
1521
  # Describes measured latency distribution.
1436
1522
  class LatencyDistribution
1437
1523
  include Google::Apis::Core::Hashable
@@ -1936,10 +2022,9 @@ module Google
1936
2022
  # @return [Array<String>]
1937
2023
  attr_accessor :errors
1938
2024
 
1939
- # Output only. The geographical location of the MonitoringPoint. Examples: - "
1940
- # New York, NY, USA" - "Berlin, Germany"
2025
+ # The geographical location of the MonitoringPoint.
1941
2026
  # Corresponds to the JSON property `geoLocation`
1942
- # @return [String]
2027
+ # @return [Google::Apis::NetworkmanagementV1::GeoLocation]
1943
2028
  attr_accessor :geo_location
1944
2029
 
1945
2030
  # Message describing information about the host.
@@ -1984,6 +2069,12 @@ module Google
1984
2069
  # @return [String]
1985
2070
  attr_accessor :update_time
1986
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
+
1987
2078
  # Output only. The type of upgrade available for the MonitoringPoint.
1988
2079
  # Corresponds to the JSON property `upgradeType`
1989
2080
  # @return [String]
@@ -2014,6 +2105,7 @@ module Google
2014
2105
  @provider_tags = args[:provider_tags] if args.key?(:provider_tags)
2015
2106
  @type = args[:type] if args.key?(:type)
2016
2107
  @update_time = args[:update_time] if args.key?(:update_time)
2108
+ @upgrade_available = args[:upgrade_available] if args.key?(:upgrade_available)
2017
2109
  @upgrade_type = args[:upgrade_type] if args.key?(:upgrade_type)
2018
2110
  @version = args[:version] if args.key?(:version)
2019
2111
  end
@@ -2219,6 +2311,12 @@ module Google
2219
2311
  # @return [String]
2220
2312
  attr_accessor :create_time
2221
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
+
2222
2320
  # Output only. Identifier. Name of the resource. Format: `projects/`project`/
2223
2321
  # locations/`location`/networkMonitoringProviders/`network_monitoring_provider``
2224
2322
  # Corresponds to the JSON property `name`
@@ -2252,6 +2350,7 @@ module Google
2252
2350
  # Update properties of this object
2253
2351
  def update!(**args)
2254
2352
  @create_time = args[:create_time] if args.key?(:create_time)
2353
+ @errors = args[:errors] if args.key?(:errors)
2255
2354
  @name = args[:name] if args.key?(:name)
2256
2355
  @provider_type = args[:provider_type] if args.key?(:provider_type)
2257
2356
  @provider_uri = args[:provider_uri] if args.key?(:provider_uri)
@@ -2274,9 +2373,9 @@ module Google
2274
2373
  # @return [String]
2275
2374
  attr_accessor :destination
2276
2375
 
2277
- # Output only. Geographical location of the destination MonitoringPoint.
2376
+ # The geographical location of the MonitoringPoint.
2278
2377
  # Corresponds to the JSON property `destinationGeoLocation`
2279
- # @return [String]
2378
+ # @return [Google::Apis::NetworkmanagementV1::GeoLocation]
2280
2379
  attr_accessor :destination_geo_location
2281
2380
 
2282
2381
  # Output only. The display name of the network path.
@@ -3396,6 +3495,11 @@ module Google
3396
3495
  # @return [Google::Apis::NetworkmanagementV1::InstanceInfo]
3397
3496
  attr_accessor :instance
3398
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
+
3399
3503
  # For display only. Metadata associated with a load balancer.
3400
3504
  # Corresponds to the JSON property `loadBalancer`
3401
3505
  # @return [Google::Apis::NetworkmanagementV1::LoadBalancerInfo]
@@ -3500,6 +3604,7 @@ module Google
3500
3604
  @gke_master = args[:gke_master] if args.key?(:gke_master)
3501
3605
  @google_service = args[:google_service] if args.key?(:google_service)
3502
3606
  @instance = args[:instance] if args.key?(:instance)
3607
+ @interconnect_attachment = args[:interconnect_attachment] if args.key?(:interconnect_attachment)
3503
3608
  @load_balancer = args[:load_balancer] if args.key?(:load_balancer)
3504
3609
  @load_balancer_backend_info = args[:load_balancer_backend_info] if args.key?(:load_balancer_backend_info)
3505
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.66.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 = "20250723"
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
@@ -791,6 +814,17 @@ module Google
791
814
  end
792
815
  end
793
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
+
794
828
  class LatencyDistribution
795
829
  # @private
796
830
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -939,7 +973,8 @@ module Google
939
973
  property :create_time, as: 'createTime'
940
974
  property :display_name, as: 'displayName'
941
975
  collection :errors, as: 'errors'
942
- property :geo_location, as: 'geoLocation'
976
+ property :geo_location, as: 'geoLocation', class: Google::Apis::NetworkmanagementV1::GeoLocation, decorator: Google::Apis::NetworkmanagementV1::GeoLocation::Representation
977
+
943
978
  property :host, as: 'host', class: Google::Apis::NetworkmanagementV1::Host, decorator: Google::Apis::NetworkmanagementV1::Host::Representation
944
979
 
945
980
  property :hostname, as: 'hostname'
@@ -951,6 +986,7 @@ module Google
951
986
 
952
987
  property :type, as: 'type'
953
988
  property :update_time, as: 'updateTime'
989
+ property :upgrade_available, as: 'upgradeAvailable'
954
990
  property :upgrade_type, as: 'upgradeType'
955
991
  property :version, as: 'version'
956
992
  end
@@ -1003,6 +1039,7 @@ module Google
1003
1039
  # @private
1004
1040
  class Representation < Google::Apis::Core::JsonRepresentation
1005
1041
  property :create_time, as: 'createTime'
1042
+ collection :errors, as: 'errors'
1006
1043
  property :name, as: 'name'
1007
1044
  property :provider_type, as: 'providerType'
1008
1045
  property :provider_uri, as: 'providerUri'
@@ -1016,7 +1053,8 @@ module Google
1016
1053
  class Representation < Google::Apis::Core::JsonRepresentation
1017
1054
  property :create_time, as: 'createTime'
1018
1055
  property :destination, as: 'destination'
1019
- 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
+
1020
1058
  property :display_name, as: 'displayName'
1021
1059
  property :dual_ended, as: 'dualEnded'
1022
1060
  property :monitoring_enabled, as: 'monitoringEnabled'
@@ -1271,6 +1309,8 @@ module Google
1271
1309
 
1272
1310
  property :instance, as: 'instance', class: Google::Apis::NetworkmanagementV1::InstanceInfo, decorator: Google::Apis::NetworkmanagementV1::InstanceInfo::Representation
1273
1311
 
1312
+ property :interconnect_attachment, as: 'interconnectAttachment', class: Google::Apis::NetworkmanagementV1::InterconnectAttachmentInfo, decorator: Google::Apis::NetworkmanagementV1::InterconnectAttachmentInfo::Representation
1313
+
1274
1314
  property :load_balancer, as: 'loadBalancer', class: Google::Apis::NetworkmanagementV1::LoadBalancerInfo, decorator: Google::Apis::NetworkmanagementV1::LoadBalancerInfo::Representation
1275
1315
 
1276
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.66.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.66.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: