google-apis-networkmanagement_v1beta1 0.70.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9bc542873110b6576d4e032b9d6744e1f8b0ab3d1c3f08403703eed0b3183f75
|
|
4
|
+
data.tar.gz: f18a89ed28716188021c399a71e830374f46f0a5577fa18c12c8b2af2d3cec8b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b18fe974115e5bac59965786d8afa66e8655f22ec55c0ab0d71ae8b3f116649e49acb51c03404e5e639682f6a4857382294cec002b9ebb222e880d477856e43a
|
|
7
|
+
data.tar.gz: 720c81db052a9f626ec1c401ebca125a20061f443243480a7ce947f7e730e4deceef20f8b6d7b352aeb618b63b63d4e63f4f0a88cca7e8508ace93e3eee6c451
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
@@ -3163,6 +3266,18 @@ module Google
|
|
|
3163
3266
|
# @return [Google::Apis::NetworkmanagementV1beta1::GkeMasterInfo]
|
|
3164
3267
|
attr_accessor :gke_master
|
|
3165
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
|
+
|
|
3166
3281
|
# For display only. Details of a Google Service sending packets to a VPC network.
|
|
3167
3282
|
# Although the source IP might be a publicly routable address, some Google
|
|
3168
3283
|
# Services use special routes within Google production infrastructure to reach
|
|
@@ -3187,6 +3302,12 @@ module Google
|
|
|
3187
3302
|
# @return [Google::Apis::NetworkmanagementV1beta1::InterconnectAttachmentInfo]
|
|
3188
3303
|
attr_accessor :interconnect_attachment
|
|
3189
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
|
+
|
|
3190
3311
|
# For display only. Metadata associated with a load balancer.
|
|
3191
3312
|
# Corresponds to the JSON property `loadBalancer`
|
|
3192
3313
|
# @return [Google::Apis::NetworkmanagementV1beta1::LoadBalancerInfo]
|
|
@@ -3289,10 +3410,13 @@ module Google
|
|
|
3289
3410
|
@forward = args[:forward] if args.key?(:forward)
|
|
3290
3411
|
@forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
|
|
3291
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)
|
|
3292
3415
|
@google_service = args[:google_service] if args.key?(:google_service)
|
|
3293
3416
|
@hybrid_subnet = args[:hybrid_subnet] if args.key?(:hybrid_subnet)
|
|
3294
3417
|
@instance = args[:instance] if args.key?(:instance)
|
|
3295
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)
|
|
3296
3420
|
@load_balancer = args[:load_balancer] if args.key?(:load_balancer)
|
|
3297
3421
|
@load_balancer_backend_info = args[:load_balancer_backend_info] if args.key?(:load_balancer_backend_info)
|
|
3298
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.
|
|
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 = "
|
|
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
|
|
@@ -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.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.
|
|
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:
|