google-apis-networkmanagement_v1beta1 0.69.0 → 0.71.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: 4c94386399eebc9544ee852540e2b5dff07f2a39afb2703374e3de682b47d3e3
4
- data.tar.gz: 688249959fae405f9810db4faafb22fc12dfb8ad77af091b0380827532dc7f6f
3
+ metadata.gz: 9bc542873110b6576d4e032b9d6744e1f8b0ab3d1c3f08403703eed0b3183f75
4
+ data.tar.gz: f18a89ed28716188021c399a71e830374f46f0a5577fa18c12c8b2af2d3cec8b
5
5
  SHA512:
6
- metadata.gz: cb807b532538d1a0c98850886053699a0adb92faeace932e82e01e016058e0da19ef5036aead58f6cacba7ac3091c363aafd97edcd4f347b7e802067b9e55f2b
7
- data.tar.gz: 668667c6b94ba6e8e1addc3dfd790b57cc310e1e8a6b87c05797f609e0f7c383ae64a00f33a1fb4ff1b76b1b06c894f004e1a1fc24cd97a3b63022eab43263cd
6
+ metadata.gz: b18fe974115e5bac59965786d8afa66e8655f22ec55c0ab0d71ae8b3f116649e49acb51c03404e5e639682f6a4857382294cec002b9ebb222e880d477856e43a
7
+ data.tar.gz: 720c81db052a9f626ec1c401ebca125a20061f443243480a7ce947f7e730e4deceef20f8b6d7b352aeb618b63b63d4e63f4f0a88cca7e8508ace93e3eee6c451
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkmanagement_v1beta1
2
2
 
3
+ ### v0.71.0 (2026-01-18)
4
+
5
+ * Regenerated from discovery document revision 20260110
6
+
7
+ ### v0.70.0 (2025-12-14)
8
+
9
+ * Regenerated from discovery document revision 20251203
10
+
3
11
  ### v0.69.0 (2025-11-16)
4
12
 
5
13
  * Regenerated from discovery document revision 20251105
@@ -1402,6 +1402,81 @@ module Google
1402
1402
  end
1403
1403
  end
1404
1404
 
1405
+ # For display only. Metadata associated with a Google Kubernetes Engine (GKE)
1406
+ # Pod.
1407
+ class GkePodInfo
1408
+ include Google::Apis::Core::Hashable
1409
+
1410
+ # IP address of a GKE Pod. If the Pod is dual-stack, this is the IP address
1411
+ # relevant to the trace.
1412
+ # Corresponds to the JSON property `ipAddress`
1413
+ # @return [String]
1414
+ attr_accessor :ip_address
1415
+
1416
+ # URI of the network containing the GKE Pod.
1417
+ # Corresponds to the JSON property `networkUri`
1418
+ # @return [String]
1419
+ attr_accessor :network_uri
1420
+
1421
+ # URI of a GKE Pod. For Pods in regional Clusters, the URI format is: `projects/`
1422
+ # project`/locations/`location`/clusters/`cluster`/k8s/namespaces/`namespace`/
1423
+ # pods/`pod`` For Pods in zonal Clusters, the URI format is: `projects/`project`/
1424
+ # zones/`zone`/clusters/`cluster`/k8s/namespaces/`namespace`/pods/`pod``
1425
+ # Corresponds to the JSON property `podUri`
1426
+ # @return [String]
1427
+ attr_accessor :pod_uri
1428
+
1429
+ def initialize(**args)
1430
+ update!(**args)
1431
+ end
1432
+
1433
+ # Update properties of this object
1434
+ def update!(**args)
1435
+ @ip_address = args[:ip_address] if args.key?(:ip_address)
1436
+ @network_uri = args[:network_uri] if args.key?(:network_uri)
1437
+ @pod_uri = args[:pod_uri] if args.key?(:pod_uri)
1438
+ end
1439
+ end
1440
+
1441
+ # For display only. Metadata associated with ARRIVE_AT_GOOGLE_MANAGED_SERVICE
1442
+ # state.
1443
+ class GoogleManagedServiceInfo
1444
+ include Google::Apis::Core::Hashable
1445
+
1446
+ # IP address of the Google-managed service endpoint.
1447
+ # Corresponds to the JSON property `ipAddress`
1448
+ # @return [String]
1449
+ attr_accessor :ip_address
1450
+
1451
+ # URI of the Google-managed service endpoint network, it is empty if the IP
1452
+ # address is a public IP address.
1453
+ # Corresponds to the JSON property `networkUri`
1454
+ # @return [String]
1455
+ attr_accessor :network_uri
1456
+
1457
+ # Type of a Google-managed service.
1458
+ # Corresponds to the JSON property `serviceType`
1459
+ # @return [String]
1460
+ attr_accessor :service_type
1461
+
1462
+ # URI of the Google-managed service.
1463
+ # Corresponds to the JSON property `serviceUri`
1464
+ # @return [String]
1465
+ attr_accessor :service_uri
1466
+
1467
+ def initialize(**args)
1468
+ update!(**args)
1469
+ end
1470
+
1471
+ # Update properties of this object
1472
+ def update!(**args)
1473
+ @ip_address = args[:ip_address] if args.key?(:ip_address)
1474
+ @network_uri = args[:network_uri] if args.key?(:network_uri)
1475
+ @service_type = args[:service_type] if args.key?(:service_type)
1476
+ @service_uri = args[:service_uri] if args.key?(:service_uri)
1477
+ end
1478
+ end
1479
+
1405
1480
  # For display only. Details of a Google Service sending packets to a VPC network.
1406
1481
  # Although the source IP might be a publicly routable address, some Google
1407
1482
  # Services use special routes within Google production infrastructure to reach
@@ -1598,6 +1673,34 @@ module Google
1598
1673
  end
1599
1674
  end
1600
1675
 
1676
+ # For display only. Contains information about why IP masquerading was skipped
1677
+ # for the packet.
1678
+ class IpMasqueradingSkippedInfo
1679
+ include Google::Apis::Core::Hashable
1680
+
1681
+ # The matched non-masquerade IP range. Only set if reason is
1682
+ # DESTINATION_IP_IN_CONFIGURED_NON_MASQUERADE_RANGE or
1683
+ # DESTINATION_IP_IN_DEFAULT_NON_MASQUERADE_RANGE.
1684
+ # Corresponds to the JSON property `nonMasqueradeRange`
1685
+ # @return [String]
1686
+ attr_accessor :non_masquerade_range
1687
+
1688
+ # Reason why IP masquerading was not applied.
1689
+ # Corresponds to the JSON property `reason`
1690
+ # @return [String]
1691
+ attr_accessor :reason
1692
+
1693
+ def initialize(**args)
1694
+ update!(**args)
1695
+ end
1696
+
1697
+ # Update properties of this object
1698
+ def update!(**args)
1699
+ @non_masquerade_range = args[:non_masquerade_range] if args.key?(:non_masquerade_range)
1700
+ @reason = args[:reason] if args.key?(:reason)
1701
+ end
1702
+ end
1703
+
1601
1704
  # Describes measured latency distribution.
1602
1705
  class LatencyDistribution
1603
1706
  include Google::Apis::Core::Hashable
@@ -1714,8 +1817,9 @@ module Google
1714
1817
  attr_accessor :operations
1715
1818
 
1716
1819
  # Unordered list. Unreachable resources. Populated when the request sets `
1717
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
1718
- # when attempting to list all resources across all supported locations.
1820
+ # ListOperationsRequest.return_partial_success` and reads across collections.
1821
+ # For example, when attempting to list all resources across all supported
1822
+ # locations.
1719
1823
  # Corresponds to the JSON property `unreachable`
1720
1824
  # @return [Array<String>]
1721
1825
  attr_accessor :unreachable
@@ -1983,6 +2087,11 @@ module Google
1983
2087
  class NatInfo
1984
2088
  include Google::Apis::Core::Hashable
1985
2089
 
2090
+ # Type of Cloud NAT gateway. Only valid when `type` is CLOUD_NAT.
2091
+ # Corresponds to the JSON property `cloudNatGatewayType`
2092
+ # @return [String]
2093
+ attr_accessor :cloud_nat_gateway_type
2094
+
1986
2095
  # The name of Cloud NAT Gateway. Only valid when type is CLOUD_NAT.
1987
2096
  # Corresponds to the JSON property `natGatewayName`
1988
2097
  # @return [String]
@@ -2055,6 +2164,7 @@ module Google
2055
2164
 
2056
2165
  # Update properties of this object
2057
2166
  def update!(**args)
2167
+ @cloud_nat_gateway_type = args[:cloud_nat_gateway_type] if args.key?(:cloud_nat_gateway_type)
2058
2168
  @nat_gateway_name = args[:nat_gateway_name] if args.key?(:nat_gateway_name)
2059
2169
  @network_uri = args[:network_uri] if args.key?(:network_uri)
2060
2170
  @new_destination_ip = args[:new_destination_ip] if args.key?(:new_destination_ip)
@@ -3156,6 +3266,18 @@ module Google
3156
3266
  # @return [Google::Apis::NetworkmanagementV1beta1::GkeMasterInfo]
3157
3267
  attr_accessor :gke_master
3158
3268
 
3269
+ # For display only. Metadata associated with a Google Kubernetes Engine (GKE)
3270
+ # Pod.
3271
+ # Corresponds to the JSON property `gkePod`
3272
+ # @return [Google::Apis::NetworkmanagementV1beta1::GkePodInfo]
3273
+ attr_accessor :gke_pod
3274
+
3275
+ # For display only. Metadata associated with ARRIVE_AT_GOOGLE_MANAGED_SERVICE
3276
+ # state.
3277
+ # Corresponds to the JSON property `googleManagedService`
3278
+ # @return [Google::Apis::NetworkmanagementV1beta1::GoogleManagedServiceInfo]
3279
+ attr_accessor :google_managed_service
3280
+
3159
3281
  # For display only. Details of a Google Service sending packets to a VPC network.
3160
3282
  # Although the source IP might be a publicly routable address, some Google
3161
3283
  # Services use special routes within Google production infrastructure to reach
@@ -3180,6 +3302,12 @@ module Google
3180
3302
  # @return [Google::Apis::NetworkmanagementV1beta1::InterconnectAttachmentInfo]
3181
3303
  attr_accessor :interconnect_attachment
3182
3304
 
3305
+ # For display only. Contains information about why IP masquerading was skipped
3306
+ # for the packet.
3307
+ # Corresponds to the JSON property `ipMasqueradingSkipped`
3308
+ # @return [Google::Apis::NetworkmanagementV1beta1::IpMasqueradingSkippedInfo]
3309
+ attr_accessor :ip_masquerading_skipped
3310
+
3183
3311
  # For display only. Metadata associated with a load balancer.
3184
3312
  # Corresponds to the JSON property `loadBalancer`
3185
3313
  # @return [Google::Apis::NetworkmanagementV1beta1::LoadBalancerInfo]
@@ -3282,10 +3410,13 @@ module Google
3282
3410
  @forward = args[:forward] if args.key?(:forward)
3283
3411
  @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
3284
3412
  @gke_master = args[:gke_master] if args.key?(:gke_master)
3413
+ @gke_pod = args[:gke_pod] if args.key?(:gke_pod)
3414
+ @google_managed_service = args[:google_managed_service] if args.key?(:google_managed_service)
3285
3415
  @google_service = args[:google_service] if args.key?(:google_service)
3286
3416
  @hybrid_subnet = args[:hybrid_subnet] if args.key?(:hybrid_subnet)
3287
3417
  @instance = args[:instance] if args.key?(:instance)
3288
3418
  @interconnect_attachment = args[:interconnect_attachment] if args.key?(:interconnect_attachment)
3419
+ @ip_masquerading_skipped = args[:ip_masquerading_skipped] if args.key?(:ip_masquerading_skipped)
3289
3420
  @load_balancer = args[:load_balancer] if args.key?(:load_balancer)
3290
3421
  @load_balancer_backend_info = args[:load_balancer_backend_info] if args.key?(:load_balancer_backend_info)
3291
3422
  @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.69.0"
19
+ GEM_VERSION = "0.71.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 = "20251105"
25
+ REVISION = "20260110"
26
26
  end
27
27
  end
28
28
  end
@@ -178,6 +178,18 @@ module Google
178
178
  include Google::Apis::Core::JsonObjectSupport
179
179
  end
180
180
 
181
+ class GkePodInfo
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
187
+ class GoogleManagedServiceInfo
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
181
193
  class GoogleServiceInfo
182
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
195
 
@@ -202,6 +214,12 @@ module Google
202
214
  include Google::Apis::Core::JsonObjectSupport
203
215
  end
204
216
 
217
+ class IpMasqueradingSkippedInfo
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
205
223
  class LatencyDistribution
206
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
225
 
@@ -740,6 +758,25 @@ module Google
740
758
  end
741
759
  end
742
760
 
761
+ class GkePodInfo
762
+ # @private
763
+ class Representation < Google::Apis::Core::JsonRepresentation
764
+ property :ip_address, as: 'ipAddress'
765
+ property :network_uri, as: 'networkUri'
766
+ property :pod_uri, as: 'podUri'
767
+ end
768
+ end
769
+
770
+ class GoogleManagedServiceInfo
771
+ # @private
772
+ class Representation < Google::Apis::Core::JsonRepresentation
773
+ property :ip_address, as: 'ipAddress'
774
+ property :network_uri, as: 'networkUri'
775
+ property :service_type, as: 'serviceType'
776
+ property :service_uri, as: 'serviceUri'
777
+ end
778
+ end
779
+
743
780
  class GoogleServiceInfo
744
781
  # @private
745
782
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -787,6 +824,14 @@ module Google
787
824
  end
788
825
  end
789
826
 
827
+ class IpMasqueradingSkippedInfo
828
+ # @private
829
+ class Representation < Google::Apis::Core::JsonRepresentation
830
+ property :non_masquerade_range, as: 'nonMasqueradeRange'
831
+ property :reason, as: 'reason'
832
+ end
833
+ end
834
+
790
835
  class LatencyDistribution
791
836
  # @private
792
837
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -895,6 +940,7 @@ module Google
895
940
  class NatInfo
896
941
  # @private
897
942
  class Representation < Google::Apis::Core::JsonRepresentation
943
+ property :cloud_nat_gateway_type, as: 'cloudNatGatewayType'
898
944
  property :nat_gateway_name, as: 'natGatewayName'
899
945
  property :network_uri, as: 'networkUri'
900
946
  property :new_destination_ip, as: 'newDestinationIp'
@@ -1167,6 +1213,10 @@ module Google
1167
1213
 
1168
1214
  property :gke_master, as: 'gkeMaster', class: Google::Apis::NetworkmanagementV1beta1::GkeMasterInfo, decorator: Google::Apis::NetworkmanagementV1beta1::GkeMasterInfo::Representation
1169
1215
 
1216
+ property :gke_pod, as: 'gkePod', class: Google::Apis::NetworkmanagementV1beta1::GkePodInfo, decorator: Google::Apis::NetworkmanagementV1beta1::GkePodInfo::Representation
1217
+
1218
+ property :google_managed_service, as: 'googleManagedService', class: Google::Apis::NetworkmanagementV1beta1::GoogleManagedServiceInfo, decorator: Google::Apis::NetworkmanagementV1beta1::GoogleManagedServiceInfo::Representation
1219
+
1170
1220
  property :google_service, as: 'googleService', class: Google::Apis::NetworkmanagementV1beta1::GoogleServiceInfo, decorator: Google::Apis::NetworkmanagementV1beta1::GoogleServiceInfo::Representation
1171
1221
 
1172
1222
  property :hybrid_subnet, as: 'hybridSubnet', class: Google::Apis::NetworkmanagementV1beta1::HybridSubnetInfo, decorator: Google::Apis::NetworkmanagementV1beta1::HybridSubnetInfo::Representation
@@ -1175,6 +1225,8 @@ module Google
1175
1225
 
1176
1226
  property :interconnect_attachment, as: 'interconnectAttachment', class: Google::Apis::NetworkmanagementV1beta1::InterconnectAttachmentInfo, decorator: Google::Apis::NetworkmanagementV1beta1::InterconnectAttachmentInfo::Representation
1177
1227
 
1228
+ property :ip_masquerading_skipped, as: 'ipMasqueradingSkipped', class: Google::Apis::NetworkmanagementV1beta1::IpMasqueradingSkippedInfo, decorator: Google::Apis::NetworkmanagementV1beta1::IpMasqueradingSkippedInfo::Representation
1229
+
1178
1230
  property :load_balancer, as: 'loadBalancer', class: Google::Apis::NetworkmanagementV1beta1::LoadBalancerInfo, decorator: Google::Apis::NetworkmanagementV1beta1::LoadBalancerInfo::Representation
1179
1231
 
1180
1232
  property :load_balancer_backend_info, as: 'loadBalancerBackendInfo', class: Google::Apis::NetworkmanagementV1beta1::LoadBalancerBackendInfo, decorator: Google::Apis::NetworkmanagementV1beta1::LoadBalancerBackendInfo::Representation
@@ -245,11 +245,12 @@ module Google
245
245
  # The standard list page token.
246
246
  # @param [Boolean] return_partial_success
247
247
  # When set to `true`, operations that are reachable are returned as normal, and
248
- # those that are unreachable are returned in the [ListOperationsResponse.
249
- # unreachable] field. This can only be `true` when reading across collections e.
250
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
251
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
252
- # explicitly documented otherwise in service or product specific documentation.
248
+ # those that are unreachable are returned in the ListOperationsResponse.
249
+ # unreachable field. This can only be `true` when reading across collections.
250
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
251
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
252
+ # if set unless explicitly documented otherwise in service or product specific
253
+ # documentation.
253
254
  # @param [String] fields
254
255
  # Selector specifying which fields to include in a partial response.
255
256
  # @param [String] quota_user
@@ -1054,11 +1055,12 @@ module Google
1054
1055
  # The standard list page token.
1055
1056
  # @param [Boolean] return_partial_success
1056
1057
  # When set to `true`, operations that are reachable are returned as normal, and
1057
- # those that are unreachable are returned in the [ListOperationsResponse.
1058
- # unreachable] field. This can only be `true` when reading across collections e.
1059
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1060
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1061
- # explicitly documented otherwise in service or product specific documentation.
1058
+ # those that are unreachable are returned in the ListOperationsResponse.
1059
+ # unreachable field. This can only be `true` when reading across collections.
1060
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
1061
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
1062
+ # if set unless explicitly documented otherwise in service or product specific
1063
+ # documentation.
1062
1064
  # @param [String] fields
1063
1065
  # Selector specifying which fields to include in a partial response.
1064
1066
  # @param [String] quota_user
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.69.0
4
+ version: 0.71.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.69.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.71.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: