google-apis-networkmanagement_v1beta1 0.70.0 → 0.72.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5bf72b5c019b0f9870cda34028f17a50a50a4e293b504e6f6bd4633834550a83
|
|
4
|
+
data.tar.gz: 848ef1237092023883522623925d61aeecfda896fb03698d1686f64746f837bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0b701d247326456ddb324bf8c60a463b42c437e35ed8e136ab83a453f5928037ab251eeb0734d16067bcb61c3e274a4f205122f001c200a6d6039b81e2ce231d
|
|
7
|
+
data.tar.gz: '09d9aa8ae43935b72fd97ecdbb9413efeb2f47cbae3396604fb812da68eb08b3fc402ebbc16393c10a97810c1bb9e6b9f334b8bbb0cc519b29a30a97b590bddc'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.72.0 (2026-01-25)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260114
|
|
6
|
+
|
|
7
|
+
### v0.71.0 (2026-01-18)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260110
|
|
10
|
+
|
|
3
11
|
### v0.70.0 (2025-12-14)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251203
|
|
@@ -962,13 +962,14 @@ module Google
|
|
|
962
962
|
# @return [String]
|
|
963
963
|
attr_accessor :load_balancer_type
|
|
964
964
|
|
|
965
|
-
# A VPC network URI.
|
|
965
|
+
# A VPC network URI. Used according to the `network_type`. Relevant only for the
|
|
966
|
+
# source endpoints.
|
|
966
967
|
# Corresponds to the JSON property `network`
|
|
967
968
|
# @return [String]
|
|
968
969
|
attr_accessor :network
|
|
969
970
|
|
|
970
|
-
# Type of the network where the endpoint is located.
|
|
971
|
-
#
|
|
971
|
+
# Type of the network where the endpoint is located. Relevant only for the
|
|
972
|
+
# source endpoints.
|
|
972
973
|
# Corresponds to the JSON property `networkType`
|
|
973
974
|
# @return [String]
|
|
974
975
|
attr_accessor :network_type
|
|
@@ -979,13 +980,8 @@ module Google
|
|
|
979
980
|
# @return [Fixnum]
|
|
980
981
|
attr_accessor :port
|
|
981
982
|
|
|
982
|
-
#
|
|
983
|
-
# the
|
|
984
|
-
# where you may need to provide the project ID: 1. Only the IP address is
|
|
985
|
-
# specified, and the IP address is within a Google Cloud project. 2. When you
|
|
986
|
-
# are using Shared VPC and the IP address that you provide is from the service
|
|
987
|
-
# project. In this case, the network that the IP address resides in is defined
|
|
988
|
-
# in the host project.
|
|
983
|
+
# Endpoint project ID. Used according to the `network_type`. Relevant only for
|
|
984
|
+
# the source endpoints.
|
|
989
985
|
# Corresponds to the JSON property `projectId`
|
|
990
986
|
# @return [String]
|
|
991
987
|
attr_accessor :project_id
|
|
@@ -1402,6 +1398,81 @@ module Google
|
|
|
1402
1398
|
end
|
|
1403
1399
|
end
|
|
1404
1400
|
|
|
1401
|
+
# For display only. Metadata associated with a Google Kubernetes Engine (GKE)
|
|
1402
|
+
# Pod.
|
|
1403
|
+
class GkePodInfo
|
|
1404
|
+
include Google::Apis::Core::Hashable
|
|
1405
|
+
|
|
1406
|
+
# IP address of a GKE Pod. If the Pod is dual-stack, this is the IP address
|
|
1407
|
+
# relevant to the trace.
|
|
1408
|
+
# Corresponds to the JSON property `ipAddress`
|
|
1409
|
+
# @return [String]
|
|
1410
|
+
attr_accessor :ip_address
|
|
1411
|
+
|
|
1412
|
+
# URI of the network containing the GKE Pod.
|
|
1413
|
+
# Corresponds to the JSON property `networkUri`
|
|
1414
|
+
# @return [String]
|
|
1415
|
+
attr_accessor :network_uri
|
|
1416
|
+
|
|
1417
|
+
# URI of a GKE Pod. For Pods in regional Clusters, the URI format is: `projects/`
|
|
1418
|
+
# project`/locations/`location`/clusters/`cluster`/k8s/namespaces/`namespace`/
|
|
1419
|
+
# pods/`pod`` For Pods in zonal Clusters, the URI format is: `projects/`project`/
|
|
1420
|
+
# zones/`zone`/clusters/`cluster`/k8s/namespaces/`namespace`/pods/`pod``
|
|
1421
|
+
# Corresponds to the JSON property `podUri`
|
|
1422
|
+
# @return [String]
|
|
1423
|
+
attr_accessor :pod_uri
|
|
1424
|
+
|
|
1425
|
+
def initialize(**args)
|
|
1426
|
+
update!(**args)
|
|
1427
|
+
end
|
|
1428
|
+
|
|
1429
|
+
# Update properties of this object
|
|
1430
|
+
def update!(**args)
|
|
1431
|
+
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
|
1432
|
+
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
|
1433
|
+
@pod_uri = args[:pod_uri] if args.key?(:pod_uri)
|
|
1434
|
+
end
|
|
1435
|
+
end
|
|
1436
|
+
|
|
1437
|
+
# For display only. Metadata associated with ARRIVE_AT_GOOGLE_MANAGED_SERVICE
|
|
1438
|
+
# state.
|
|
1439
|
+
class GoogleManagedServiceInfo
|
|
1440
|
+
include Google::Apis::Core::Hashable
|
|
1441
|
+
|
|
1442
|
+
# IP address of the Google-managed service endpoint.
|
|
1443
|
+
# Corresponds to the JSON property `ipAddress`
|
|
1444
|
+
# @return [String]
|
|
1445
|
+
attr_accessor :ip_address
|
|
1446
|
+
|
|
1447
|
+
# URI of the Google-managed service endpoint network, it is empty if the IP
|
|
1448
|
+
# address is a public IP address.
|
|
1449
|
+
# Corresponds to the JSON property `networkUri`
|
|
1450
|
+
# @return [String]
|
|
1451
|
+
attr_accessor :network_uri
|
|
1452
|
+
|
|
1453
|
+
# Type of a Google-managed service.
|
|
1454
|
+
# Corresponds to the JSON property `serviceType`
|
|
1455
|
+
# @return [String]
|
|
1456
|
+
attr_accessor :service_type
|
|
1457
|
+
|
|
1458
|
+
# URI of the Google-managed service.
|
|
1459
|
+
# Corresponds to the JSON property `serviceUri`
|
|
1460
|
+
# @return [String]
|
|
1461
|
+
attr_accessor :service_uri
|
|
1462
|
+
|
|
1463
|
+
def initialize(**args)
|
|
1464
|
+
update!(**args)
|
|
1465
|
+
end
|
|
1466
|
+
|
|
1467
|
+
# Update properties of this object
|
|
1468
|
+
def update!(**args)
|
|
1469
|
+
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
|
1470
|
+
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
|
1471
|
+
@service_type = args[:service_type] if args.key?(:service_type)
|
|
1472
|
+
@service_uri = args[:service_uri] if args.key?(:service_uri)
|
|
1473
|
+
end
|
|
1474
|
+
end
|
|
1475
|
+
|
|
1405
1476
|
# For display only. Details of a Google Service sending packets to a VPC network.
|
|
1406
1477
|
# Although the source IP might be a publicly routable address, some Google
|
|
1407
1478
|
# Services use special routes within Google production infrastructure to reach
|
|
@@ -1598,6 +1669,34 @@ module Google
|
|
|
1598
1669
|
end
|
|
1599
1670
|
end
|
|
1600
1671
|
|
|
1672
|
+
# For display only. Contains information about why IP masquerading was skipped
|
|
1673
|
+
# for the packet.
|
|
1674
|
+
class IpMasqueradingSkippedInfo
|
|
1675
|
+
include Google::Apis::Core::Hashable
|
|
1676
|
+
|
|
1677
|
+
# The matched non-masquerade IP range. Only set if reason is
|
|
1678
|
+
# DESTINATION_IP_IN_CONFIGURED_NON_MASQUERADE_RANGE or
|
|
1679
|
+
# DESTINATION_IP_IN_DEFAULT_NON_MASQUERADE_RANGE.
|
|
1680
|
+
# Corresponds to the JSON property `nonMasqueradeRange`
|
|
1681
|
+
# @return [String]
|
|
1682
|
+
attr_accessor :non_masquerade_range
|
|
1683
|
+
|
|
1684
|
+
# Reason why IP masquerading was not applied.
|
|
1685
|
+
# Corresponds to the JSON property `reason`
|
|
1686
|
+
# @return [String]
|
|
1687
|
+
attr_accessor :reason
|
|
1688
|
+
|
|
1689
|
+
def initialize(**args)
|
|
1690
|
+
update!(**args)
|
|
1691
|
+
end
|
|
1692
|
+
|
|
1693
|
+
# Update properties of this object
|
|
1694
|
+
def update!(**args)
|
|
1695
|
+
@non_masquerade_range = args[:non_masquerade_range] if args.key?(:non_masquerade_range)
|
|
1696
|
+
@reason = args[:reason] if args.key?(:reason)
|
|
1697
|
+
end
|
|
1698
|
+
end
|
|
1699
|
+
|
|
1601
1700
|
# Describes measured latency distribution.
|
|
1602
1701
|
class LatencyDistribution
|
|
1603
1702
|
include Google::Apis::Core::Hashable
|
|
@@ -3163,6 +3262,18 @@ module Google
|
|
|
3163
3262
|
# @return [Google::Apis::NetworkmanagementV1beta1::GkeMasterInfo]
|
|
3164
3263
|
attr_accessor :gke_master
|
|
3165
3264
|
|
|
3265
|
+
# For display only. Metadata associated with a Google Kubernetes Engine (GKE)
|
|
3266
|
+
# Pod.
|
|
3267
|
+
# Corresponds to the JSON property `gkePod`
|
|
3268
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::GkePodInfo]
|
|
3269
|
+
attr_accessor :gke_pod
|
|
3270
|
+
|
|
3271
|
+
# For display only. Metadata associated with ARRIVE_AT_GOOGLE_MANAGED_SERVICE
|
|
3272
|
+
# state.
|
|
3273
|
+
# Corresponds to the JSON property `googleManagedService`
|
|
3274
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::GoogleManagedServiceInfo]
|
|
3275
|
+
attr_accessor :google_managed_service
|
|
3276
|
+
|
|
3166
3277
|
# For display only. Details of a Google Service sending packets to a VPC network.
|
|
3167
3278
|
# Although the source IP might be a publicly routable address, some Google
|
|
3168
3279
|
# Services use special routes within Google production infrastructure to reach
|
|
@@ -3187,6 +3298,12 @@ module Google
|
|
|
3187
3298
|
# @return [Google::Apis::NetworkmanagementV1beta1::InterconnectAttachmentInfo]
|
|
3188
3299
|
attr_accessor :interconnect_attachment
|
|
3189
3300
|
|
|
3301
|
+
# For display only. Contains information about why IP masquerading was skipped
|
|
3302
|
+
# for the packet.
|
|
3303
|
+
# Corresponds to the JSON property `ipMasqueradingSkipped`
|
|
3304
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::IpMasqueradingSkippedInfo]
|
|
3305
|
+
attr_accessor :ip_masquerading_skipped
|
|
3306
|
+
|
|
3190
3307
|
# For display only. Metadata associated with a load balancer.
|
|
3191
3308
|
# Corresponds to the JSON property `loadBalancer`
|
|
3192
3309
|
# @return [Google::Apis::NetworkmanagementV1beta1::LoadBalancerInfo]
|
|
@@ -3289,10 +3406,13 @@ module Google
|
|
|
3289
3406
|
@forward = args[:forward] if args.key?(:forward)
|
|
3290
3407
|
@forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
|
|
3291
3408
|
@gke_master = args[:gke_master] if args.key?(:gke_master)
|
|
3409
|
+
@gke_pod = args[:gke_pod] if args.key?(:gke_pod)
|
|
3410
|
+
@google_managed_service = args[:google_managed_service] if args.key?(:google_managed_service)
|
|
3292
3411
|
@google_service = args[:google_service] if args.key?(:google_service)
|
|
3293
3412
|
@hybrid_subnet = args[:hybrid_subnet] if args.key?(:hybrid_subnet)
|
|
3294
3413
|
@instance = args[:instance] if args.key?(:instance)
|
|
3295
3414
|
@interconnect_attachment = args[:interconnect_attachment] if args.key?(:interconnect_attachment)
|
|
3415
|
+
@ip_masquerading_skipped = args[:ip_masquerading_skipped] if args.key?(:ip_masquerading_skipped)
|
|
3296
3416
|
@load_balancer = args[:load_balancer] if args.key?(:load_balancer)
|
|
3297
3417
|
@load_balancer_backend_info = args[:load_balancer_backend_info] if args.key?(:load_balancer_backend_info)
|
|
3298
3418
|
@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.
|
|
19
|
+
GEM_VERSION = "0.72.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 = "
|
|
25
|
+
REVISION = "20260114"
|
|
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
|
|
@@ -1168,6 +1213,10 @@ module Google
|
|
|
1168
1213
|
|
|
1169
1214
|
property :gke_master, as: 'gkeMaster', class: Google::Apis::NetworkmanagementV1beta1::GkeMasterInfo, decorator: Google::Apis::NetworkmanagementV1beta1::GkeMasterInfo::Representation
|
|
1170
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
|
+
|
|
1171
1220
|
property :google_service, as: 'googleService', class: Google::Apis::NetworkmanagementV1beta1::GoogleServiceInfo, decorator: Google::Apis::NetworkmanagementV1beta1::GoogleServiceInfo::Representation
|
|
1172
1221
|
|
|
1173
1222
|
property :hybrid_subnet, as: 'hybridSubnet', class: Google::Apis::NetworkmanagementV1beta1::HybridSubnetInfo, decorator: Google::Apis::NetworkmanagementV1beta1::HybridSubnetInfo::Representation
|
|
@@ -1176,6 +1225,8 @@ module Google
|
|
|
1176
1225
|
|
|
1177
1226
|
property :interconnect_attachment, as: 'interconnectAttachment', class: Google::Apis::NetworkmanagementV1beta1::InterconnectAttachmentInfo, decorator: Google::Apis::NetworkmanagementV1beta1::InterconnectAttachmentInfo::Representation
|
|
1178
1227
|
|
|
1228
|
+
property :ip_masquerading_skipped, as: 'ipMasqueradingSkipped', class: Google::Apis::NetworkmanagementV1beta1::IpMasqueradingSkippedInfo, decorator: Google::Apis::NetworkmanagementV1beta1::IpMasqueradingSkippedInfo::Representation
|
|
1229
|
+
|
|
1179
1230
|
property :load_balancer, as: 'loadBalancer', class: Google::Apis::NetworkmanagementV1beta1::LoadBalancerInfo, decorator: Google::Apis::NetworkmanagementV1beta1::LoadBalancerInfo::Representation
|
|
1180
1231
|
|
|
1181
1232
|
property :load_balancer_backend_info, as: 'loadBalancerBackendInfo', class: Google::Apis::NetworkmanagementV1beta1::LoadBalancerBackendInfo, decorator: Google::Apis::NetworkmanagementV1beta1::LoadBalancerBackendInfo::Representation
|
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.
|
|
4
|
+
version: 0.72.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.72.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:
|