google-apis-networkmanagement_v1beta1 0.62.0 → 0.64.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: 0423e9907f452c42d5dee7db160d43b9b96ba060d58bc87415b6dc1f84f7e361
4
- data.tar.gz: a099b040ea702ccb9cc978ecc7a36197c37cfe9073ee0d7431a9a59051e43a3a
3
+ metadata.gz: ff27060c15bfa4565b42e60081de4bf0867fa00ca7d5a041824ab68d2b8645e3
4
+ data.tar.gz: 267a1c9cd7e6b2f9bcd994107e711ed79b59904895efcb42f93211391348bf37
5
5
  SHA512:
6
- metadata.gz: ed76490ecfa5e60ea63b2ad8b6d82a5bca6187b3bd84551bd8a43c1f76c04a30650398eaf765fe3ff7d9682fe8341648747f4479678af4c265eea03e9e0c2796
7
- data.tar.gz: 05f77d364d36842bf865faee424b4e12eaad56789625cc436a775ef4376b6a7b4272d6203143c6807c4de203f3de48bd86a9b696eca78113e06167a86adfc553
6
+ metadata.gz: 142f13f3dcc3dc41144606ba318fa9ac07eebf449dd4c6282c8b0aa864b46cb7282cdc794cb9f0e180982af3774f4717eb9806882abb2462409042ea6542dd71
7
+ data.tar.gz: 52bf718ac049cc6b43e7190d97d36679580dc354695c072edc27261bd4aaf4657ecd8cb6e77c6a5a3aee6dcaf0ed771251bf7360fe1ff1911f1fc01e98726819
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkmanagement_v1beta1
2
2
 
3
+ ### v0.64.0 (2025-08-24)
4
+
5
+ * Regenerated from discovery document revision 20250813
6
+
7
+ ### v0.63.0 (2025-08-17)
8
+
9
+ * Regenerated from discovery document revision 20250806
10
+
3
11
  ### v0.62.0 (2025-07-06)
4
12
 
5
13
  * Regenerated from discovery document revision 20250625
@@ -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
@@ -788,8 +800,8 @@ module Google
788
800
  # configuration of a Google Cloud load balancer. Forwarding rules are also used
789
801
  # for protocol forwarding, Private Service Connect and other network services to
790
802
  # provide forwarding information in the control plane. Applicable only to
791
- # destination endpoint. Format: projects/`project`/global/forwardingRules/`id`
792
- # or projects/`project`/regions/`region`/forwardingRules/`id`
803
+ # destination endpoint. Format: `projects/`project`/global/forwardingRules/`id``
804
+ # or `projects/`project`/regions/`region`/forwardingRules/`id``
793
805
  # Corresponds to the JSON property `forwardingRule`
794
806
  # @return [String]
795
807
  attr_accessor :forwarding_rule
@@ -1085,6 +1097,11 @@ module Google
1085
1097
  # @return [Array<String>]
1086
1098
  attr_accessor :target_tags
1087
1099
 
1100
+ # Target type of the firewall rule.
1101
+ # Corresponds to the JSON property `targetType`
1102
+ # @return [String]
1103
+ attr_accessor :target_type
1104
+
1088
1105
  # The URI of the firewall rule. This field is not applicable to implied VPC
1089
1106
  # firewall rules.
1090
1107
  # Corresponds to the JSON property `uri`
@@ -1108,6 +1125,7 @@ module Google
1108
1125
  @priority = args[:priority] if args.key?(:priority)
1109
1126
  @target_service_accounts = args[:target_service_accounts] if args.key?(:target_service_accounts)
1110
1127
  @target_tags = args[:target_tags] if args.key?(:target_tags)
1128
+ @target_type = args[:target_type] if args.key?(:target_type)
1111
1129
  @uri = args[:uri] if args.key?(:uri)
1112
1130
  end
1113
1131
  end
@@ -1377,6 +1395,49 @@ module Google
1377
1395
  end
1378
1396
  end
1379
1397
 
1398
+ # For display only. Metadata associated with an Interconnect attachment.
1399
+ class InterconnectAttachmentInfo
1400
+ include Google::Apis::Core::Hashable
1401
+
1402
+ # URI of the Cloud Router to be used for dynamic routing.
1403
+ # Corresponds to the JSON property `cloudRouterUri`
1404
+ # @return [String]
1405
+ attr_accessor :cloud_router_uri
1406
+
1407
+ # Name of an Interconnect attachment.
1408
+ # Corresponds to the JSON property `displayName`
1409
+ # @return [String]
1410
+ attr_accessor :display_name
1411
+
1412
+ # URI of the Interconnect where the Interconnect attachment is configured.
1413
+ # Corresponds to the JSON property `interconnectUri`
1414
+ # @return [String]
1415
+ attr_accessor :interconnect_uri
1416
+
1417
+ # Name of a Google Cloud region where the Interconnect attachment is configured.
1418
+ # Corresponds to the JSON property `region`
1419
+ # @return [String]
1420
+ attr_accessor :region
1421
+
1422
+ # URI of an Interconnect attachment.
1423
+ # Corresponds to the JSON property `uri`
1424
+ # @return [String]
1425
+ attr_accessor :uri
1426
+
1427
+ def initialize(**args)
1428
+ update!(**args)
1429
+ end
1430
+
1431
+ # Update properties of this object
1432
+ def update!(**args)
1433
+ @cloud_router_uri = args[:cloud_router_uri] if args.key?(:cloud_router_uri)
1434
+ @display_name = args[:display_name] if args.key?(:display_name)
1435
+ @interconnect_uri = args[:interconnect_uri] if args.key?(:interconnect_uri)
1436
+ @region = args[:region] if args.key?(:region)
1437
+ @uri = args[:uri] if args.key?(:uri)
1438
+ end
1439
+ end
1440
+
1380
1441
  # Describes measured latency distribution.
1381
1442
  class LatencyDistribution
1382
1443
  include Google::Apis::Core::Hashable
@@ -2910,6 +2971,11 @@ module Google
2910
2971
  # @return [Google::Apis::NetworkmanagementV1beta1::InstanceInfo]
2911
2972
  attr_accessor :instance
2912
2973
 
2974
+ # For display only. Metadata associated with an Interconnect attachment.
2975
+ # Corresponds to the JSON property `interconnectAttachment`
2976
+ # @return [Google::Apis::NetworkmanagementV1beta1::InterconnectAttachmentInfo]
2977
+ attr_accessor :interconnect_attachment
2978
+
2913
2979
  # For display only. Metadata associated with a load balancer.
2914
2980
  # Corresponds to the JSON property `loadBalancer`
2915
2981
  # @return [Google::Apis::NetworkmanagementV1beta1::LoadBalancerInfo]
@@ -3014,6 +3080,7 @@ module Google
3014
3080
  @gke_master = args[:gke_master] if args.key?(:gke_master)
3015
3081
  @google_service = args[:google_service] if args.key?(:google_service)
3016
3082
  @instance = args[:instance] if args.key?(:instance)
3083
+ @interconnect_attachment = args[:interconnect_attachment] if args.key?(:interconnect_attachment)
3017
3084
  @load_balancer = args[:load_balancer] if args.key?(:load_balancer)
3018
3085
  @load_balancer_backend_info = args[:load_balancer_backend_info] if args.key?(:load_balancer_backend_info)
3019
3086
  @nat = args[:nat] if args.key?(:nat)
@@ -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.62.0"
19
+ GEM_VERSION = "0.64.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 = "20250625"
25
+ REVISION = "20250813"
26
26
  end
27
27
  end
28
28
  end
@@ -184,6 +184,12 @@ module Google
184
184
  include Google::Apis::Core::JsonObjectSupport
185
185
  end
186
186
 
187
+ class InterconnectAttachmentInfo
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
187
193
  class LatencyDistribution
188
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
189
195
 
@@ -566,9 +572,11 @@ module Google
566
572
  # @private
567
573
  class Representation < Google::Apis::Core::JsonRepresentation
568
574
  property :cause, as: 'cause'
575
+ property :destination_geolocation_code, as: 'destinationGeolocationCode'
569
576
  property :destination_ip, as: 'destinationIp'
570
577
  property :region, as: 'region'
571
578
  property :resource_uri, as: 'resourceUri'
579
+ property :source_geolocation_code, as: 'sourceGeolocationCode'
572
580
  property :source_ip, as: 'sourceIp'
573
581
  end
574
582
  end
@@ -652,6 +660,7 @@ module Google
652
660
  property :priority, as: 'priority'
653
661
  collection :target_service_accounts, as: 'targetServiceAccounts'
654
662
  collection :target_tags, as: 'targetTags'
663
+ property :target_type, as: 'targetType'
655
664
  property :uri, as: 'uri'
656
665
  end
657
666
  end
@@ -718,6 +727,17 @@ module Google
718
727
  end
719
728
  end
720
729
 
730
+ class InterconnectAttachmentInfo
731
+ # @private
732
+ class Representation < Google::Apis::Core::JsonRepresentation
733
+ property :cloud_router_uri, as: 'cloudRouterUri'
734
+ property :display_name, as: 'displayName'
735
+ property :interconnect_uri, as: 'interconnectUri'
736
+ property :region, as: 'region'
737
+ property :uri, as: 'uri'
738
+ end
739
+ end
740
+
721
741
  class LatencyDistribution
722
742
  # @private
723
743
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1091,6 +1111,8 @@ module Google
1091
1111
 
1092
1112
  property :instance, as: 'instance', class: Google::Apis::NetworkmanagementV1beta1::InstanceInfo, decorator: Google::Apis::NetworkmanagementV1beta1::InstanceInfo::Representation
1093
1113
 
1114
+ property :interconnect_attachment, as: 'interconnectAttachment', class: Google::Apis::NetworkmanagementV1beta1::InterconnectAttachmentInfo, decorator: Google::Apis::NetworkmanagementV1beta1::InterconnectAttachmentInfo::Representation
1115
+
1094
1116
  property :load_balancer, as: 'loadBalancer', class: Google::Apis::NetworkmanagementV1beta1::LoadBalancerInfo, decorator: Google::Apis::NetworkmanagementV1beta1::LoadBalancerInfo::Representation
1095
1117
 
1096
1118
  property :load_balancer_backend_info, as: 'loadBalancerBackendInfo', class: Google::Apis::NetworkmanagementV1beta1::LoadBalancerBackendInfo, decorator: Google::Apis::NetworkmanagementV1beta1::LoadBalancerBackendInfo::Representation
@@ -86,8 +86,8 @@ module Google
86
86
  # @param [String] name
87
87
  # The resource that owns the locations collection, if applicable.
88
88
  # @param [Array<String>, String] extra_location_types
89
- # Optional. A list of extra location types that should be used as conditions for
90
- # controlling the visibility of the locations.
89
+ # Optional. Do not use this field. It is unsupported and is ignored unless
90
+ # explicitly documented otherwise. This is primarily for internal usage.
91
91
  # @param [String] filter
92
92
  # A filter to narrow down results to a preferred subset. The filtering language
93
93
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -517,8 +517,8 @@ module Google
517
517
  # @param [String] name
518
518
  # The resource that owns the locations collection, if applicable.
519
519
  # @param [Array<String>, String] extra_location_types
520
- # Optional. A list of extra location types that should be used as conditions for
521
- # controlling the visibility of the locations.
520
+ # Optional. Do not use this field. It is unsupported and is ignored unless
521
+ # explicitly documented otherwise. This is primarily for internal usage.
522
522
  # @param [String] filter
523
523
  # A filter to narrow down results to a preferred subset. The filtering language
524
524
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkmanagement_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.62.0
4
+ version: 0.64.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_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.62.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.64.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: