google-apis-networkmanagement_v1 0.74.0 → 0.75.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: 6ae96a207de74c35ec99969c7f6f39694b003085493cfdf73dc6802c514a26f5
|
|
4
|
+
data.tar.gz: f7497bfc5bccf88f2d020ccd96d4400bb26f0131280b2cf94cca4c2244b057f9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 11f103fe2f9cd849e18a629fd8417f5a8348c577d5306e5b3ecb225556328f9cb7dce0a1609e7026999351f70dcba1805a3699fd88212763b67d2befc3df9b25
|
|
7
|
+
data.tar.gz: 2cbce576742994441b40fc1fa55ad54a0b532c82416c794870059964fe4ddae48b4e4c29d7eea2ac7702bb08dba37d9c70682b7516151bd7a3a1e28dba2c93ca
|
data/CHANGELOG.md
CHANGED
|
@@ -931,6 +931,11 @@ module Google
|
|
|
931
931
|
# @return [String]
|
|
932
932
|
attr_accessor :gke_master_cluster
|
|
933
933
|
|
|
934
|
+
# A [GKE Pod](https://cloud.google.com/kubernetes-engine/docs/concepts/pod) URI.
|
|
935
|
+
# Corresponds to the JSON property `gkePod`
|
|
936
|
+
# @return [String]
|
|
937
|
+
attr_accessor :gke_pod
|
|
938
|
+
|
|
934
939
|
# A Compute Engine instance URI.
|
|
935
940
|
# Corresponds to the JSON property `instance`
|
|
936
941
|
# @return [String]
|
|
@@ -1006,6 +1011,7 @@ module Google
|
|
|
1006
1011
|
@forwarding_rule_target = args[:forwarding_rule_target] if args.key?(:forwarding_rule_target)
|
|
1007
1012
|
@fqdn = args[:fqdn] if args.key?(:fqdn)
|
|
1008
1013
|
@gke_master_cluster = args[:gke_master_cluster] if args.key?(:gke_master_cluster)
|
|
1014
|
+
@gke_pod = args[:gke_pod] if args.key?(:gke_pod)
|
|
1009
1015
|
@instance = args[:instance] if args.key?(:instance)
|
|
1010
1016
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
|
1011
1017
|
@load_balancer_id = args[:load_balancer_id] if args.key?(:load_balancer_id)
|
|
@@ -1390,6 +1396,81 @@ module Google
|
|
|
1390
1396
|
end
|
|
1391
1397
|
end
|
|
1392
1398
|
|
|
1399
|
+
# For display only. Metadata associated with a Google Kubernetes Engine (GKE)
|
|
1400
|
+
# Pod.
|
|
1401
|
+
class GkePodInfo
|
|
1402
|
+
include Google::Apis::Core::Hashable
|
|
1403
|
+
|
|
1404
|
+
# IP address of a GKE Pod. If the Pod is dual-stack, this is the IP address
|
|
1405
|
+
# relevant to the trace.
|
|
1406
|
+
# Corresponds to the JSON property `ipAddress`
|
|
1407
|
+
# @return [String]
|
|
1408
|
+
attr_accessor :ip_address
|
|
1409
|
+
|
|
1410
|
+
# URI of the network containing the GKE Pod.
|
|
1411
|
+
# Corresponds to the JSON property `networkUri`
|
|
1412
|
+
# @return [String]
|
|
1413
|
+
attr_accessor :network_uri
|
|
1414
|
+
|
|
1415
|
+
# URI of a GKE Pod. For Pods in regional Clusters, the URI format is: `projects/`
|
|
1416
|
+
# project`/locations/`location`/clusters/`cluster`/k8s/namespaces/`namespace`/
|
|
1417
|
+
# pods/`pod`` For Pods in zonal Clusters, the URI format is: `projects/`project`/
|
|
1418
|
+
# zones/`zone`/clusters/`cluster`/k8s/namespaces/`namespace`/pods/`pod``
|
|
1419
|
+
# Corresponds to the JSON property `podUri`
|
|
1420
|
+
# @return [String]
|
|
1421
|
+
attr_accessor :pod_uri
|
|
1422
|
+
|
|
1423
|
+
def initialize(**args)
|
|
1424
|
+
update!(**args)
|
|
1425
|
+
end
|
|
1426
|
+
|
|
1427
|
+
# Update properties of this object
|
|
1428
|
+
def update!(**args)
|
|
1429
|
+
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
|
1430
|
+
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
|
1431
|
+
@pod_uri = args[:pod_uri] if args.key?(:pod_uri)
|
|
1432
|
+
end
|
|
1433
|
+
end
|
|
1434
|
+
|
|
1435
|
+
# For display only. Metadata associated with ARRIVE_AT_GOOGLE_MANAGED_SERVICE
|
|
1436
|
+
# state.
|
|
1437
|
+
class GoogleManagedServiceInfo
|
|
1438
|
+
include Google::Apis::Core::Hashable
|
|
1439
|
+
|
|
1440
|
+
# IP address of the Google-managed service endpoint.
|
|
1441
|
+
# Corresponds to the JSON property `ipAddress`
|
|
1442
|
+
# @return [String]
|
|
1443
|
+
attr_accessor :ip_address
|
|
1444
|
+
|
|
1445
|
+
# URI of the Google-managed service endpoint network, it is empty if the IP
|
|
1446
|
+
# address is a public IP address.
|
|
1447
|
+
# Corresponds to the JSON property `networkUri`
|
|
1448
|
+
# @return [String]
|
|
1449
|
+
attr_accessor :network_uri
|
|
1450
|
+
|
|
1451
|
+
# Type of a Google-managed service.
|
|
1452
|
+
# Corresponds to the JSON property `serviceType`
|
|
1453
|
+
# @return [String]
|
|
1454
|
+
attr_accessor :service_type
|
|
1455
|
+
|
|
1456
|
+
# URI of the Google-managed service.
|
|
1457
|
+
# Corresponds to the JSON property `serviceUri`
|
|
1458
|
+
# @return [String]
|
|
1459
|
+
attr_accessor :service_uri
|
|
1460
|
+
|
|
1461
|
+
def initialize(**args)
|
|
1462
|
+
update!(**args)
|
|
1463
|
+
end
|
|
1464
|
+
|
|
1465
|
+
# Update properties of this object
|
|
1466
|
+
def update!(**args)
|
|
1467
|
+
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
|
1468
|
+
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
|
1469
|
+
@service_type = args[:service_type] if args.key?(:service_type)
|
|
1470
|
+
@service_uri = args[:service_uri] if args.key?(:service_uri)
|
|
1471
|
+
end
|
|
1472
|
+
end
|
|
1473
|
+
|
|
1393
1474
|
# For display only. Details of a Google Service sending packets to a VPC network.
|
|
1394
1475
|
# Although the source IP might be a publicly routable address, some Google
|
|
1395
1476
|
# Services use special routes within Google production infrastructure to reach
|
|
@@ -1586,6 +1667,34 @@ module Google
|
|
|
1586
1667
|
end
|
|
1587
1668
|
end
|
|
1588
1669
|
|
|
1670
|
+
# For display only. Contains information about why IP masquerading was skipped
|
|
1671
|
+
# for the packet.
|
|
1672
|
+
class IpMasqueradingSkippedInfo
|
|
1673
|
+
include Google::Apis::Core::Hashable
|
|
1674
|
+
|
|
1675
|
+
# The matched non-masquerade IP range. Only set if reason is
|
|
1676
|
+
# DESTINATION_IP_IN_CONFIGURED_NON_MASQUERADE_RANGE or
|
|
1677
|
+
# DESTINATION_IP_IN_DEFAULT_NON_MASQUERADE_RANGE.
|
|
1678
|
+
# Corresponds to the JSON property `nonMasqueradeRange`
|
|
1679
|
+
# @return [String]
|
|
1680
|
+
attr_accessor :non_masquerade_range
|
|
1681
|
+
|
|
1682
|
+
# Reason why IP masquerading was not applied.
|
|
1683
|
+
# Corresponds to the JSON property `reason`
|
|
1684
|
+
# @return [String]
|
|
1685
|
+
attr_accessor :reason
|
|
1686
|
+
|
|
1687
|
+
def initialize(**args)
|
|
1688
|
+
update!(**args)
|
|
1689
|
+
end
|
|
1690
|
+
|
|
1691
|
+
# Update properties of this object
|
|
1692
|
+
def update!(**args)
|
|
1693
|
+
@non_masquerade_range = args[:non_masquerade_range] if args.key?(:non_masquerade_range)
|
|
1694
|
+
@reason = args[:reason] if args.key?(:reason)
|
|
1695
|
+
end
|
|
1696
|
+
end
|
|
1697
|
+
|
|
1589
1698
|
# Describes measured latency distribution.
|
|
1590
1699
|
class LatencyDistribution
|
|
1591
1700
|
include Google::Apis::Core::Hashable
|
|
@@ -3151,6 +3260,18 @@ module Google
|
|
|
3151
3260
|
# @return [Google::Apis::NetworkmanagementV1::GkeMasterInfo]
|
|
3152
3261
|
attr_accessor :gke_master
|
|
3153
3262
|
|
|
3263
|
+
# For display only. Metadata associated with a Google Kubernetes Engine (GKE)
|
|
3264
|
+
# Pod.
|
|
3265
|
+
# Corresponds to the JSON property `gkePod`
|
|
3266
|
+
# @return [Google::Apis::NetworkmanagementV1::GkePodInfo]
|
|
3267
|
+
attr_accessor :gke_pod
|
|
3268
|
+
|
|
3269
|
+
# For display only. Metadata associated with ARRIVE_AT_GOOGLE_MANAGED_SERVICE
|
|
3270
|
+
# state.
|
|
3271
|
+
# Corresponds to the JSON property `googleManagedService`
|
|
3272
|
+
# @return [Google::Apis::NetworkmanagementV1::GoogleManagedServiceInfo]
|
|
3273
|
+
attr_accessor :google_managed_service
|
|
3274
|
+
|
|
3154
3275
|
# For display only. Details of a Google Service sending packets to a VPC network.
|
|
3155
3276
|
# Although the source IP might be a publicly routable address, some Google
|
|
3156
3277
|
# Services use special routes within Google production infrastructure to reach
|
|
@@ -3175,6 +3296,12 @@ module Google
|
|
|
3175
3296
|
# @return [Google::Apis::NetworkmanagementV1::InterconnectAttachmentInfo]
|
|
3176
3297
|
attr_accessor :interconnect_attachment
|
|
3177
3298
|
|
|
3299
|
+
# For display only. Contains information about why IP masquerading was skipped
|
|
3300
|
+
# for the packet.
|
|
3301
|
+
# Corresponds to the JSON property `ipMasqueradingSkipped`
|
|
3302
|
+
# @return [Google::Apis::NetworkmanagementV1::IpMasqueradingSkippedInfo]
|
|
3303
|
+
attr_accessor :ip_masquerading_skipped
|
|
3304
|
+
|
|
3178
3305
|
# For display only. Metadata associated with a load balancer.
|
|
3179
3306
|
# Corresponds to the JSON property `loadBalancer`
|
|
3180
3307
|
# @return [Google::Apis::NetworkmanagementV1::LoadBalancerInfo]
|
|
@@ -3277,10 +3404,13 @@ module Google
|
|
|
3277
3404
|
@forward = args[:forward] if args.key?(:forward)
|
|
3278
3405
|
@forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
|
|
3279
3406
|
@gke_master = args[:gke_master] if args.key?(:gke_master)
|
|
3407
|
+
@gke_pod = args[:gke_pod] if args.key?(:gke_pod)
|
|
3408
|
+
@google_managed_service = args[:google_managed_service] if args.key?(:google_managed_service)
|
|
3280
3409
|
@google_service = args[:google_service] if args.key?(:google_service)
|
|
3281
3410
|
@hybrid_subnet = args[:hybrid_subnet] if args.key?(:hybrid_subnet)
|
|
3282
3411
|
@instance = args[:instance] if args.key?(:instance)
|
|
3283
3412
|
@interconnect_attachment = args[:interconnect_attachment] if args.key?(:interconnect_attachment)
|
|
3413
|
+
@ip_masquerading_skipped = args[:ip_masquerading_skipped] if args.key?(:ip_masquerading_skipped)
|
|
3284
3414
|
@load_balancer = args[:load_balancer] if args.key?(:load_balancer)
|
|
3285
3415
|
@load_balancer_backend_info = args[:load_balancer_backend_info] if args.key?(:load_balancer_backend_info)
|
|
3286
3416
|
@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.
|
|
19
|
+
GEM_VERSION = "0.75.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
|
|
|
@@ -645,6 +663,7 @@ module Google
|
|
|
645
663
|
property :forwarding_rule_target, as: 'forwardingRuleTarget'
|
|
646
664
|
property :fqdn, as: 'fqdn'
|
|
647
665
|
property :gke_master_cluster, as: 'gkeMasterCluster'
|
|
666
|
+
property :gke_pod, as: 'gkePod'
|
|
648
667
|
property :instance, as: 'instance'
|
|
649
668
|
property :ip_address, as: 'ipAddress'
|
|
650
669
|
property :load_balancer_id, as: 'loadBalancerId'
|
|
@@ -738,6 +757,25 @@ module Google
|
|
|
738
757
|
end
|
|
739
758
|
end
|
|
740
759
|
|
|
760
|
+
class GkePodInfo
|
|
761
|
+
# @private
|
|
762
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
763
|
+
property :ip_address, as: 'ipAddress'
|
|
764
|
+
property :network_uri, as: 'networkUri'
|
|
765
|
+
property :pod_uri, as: 'podUri'
|
|
766
|
+
end
|
|
767
|
+
end
|
|
768
|
+
|
|
769
|
+
class GoogleManagedServiceInfo
|
|
770
|
+
# @private
|
|
771
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
772
|
+
property :ip_address, as: 'ipAddress'
|
|
773
|
+
property :network_uri, as: 'networkUri'
|
|
774
|
+
property :service_type, as: 'serviceType'
|
|
775
|
+
property :service_uri, as: 'serviceUri'
|
|
776
|
+
end
|
|
777
|
+
end
|
|
778
|
+
|
|
741
779
|
class GoogleServiceInfo
|
|
742
780
|
# @private
|
|
743
781
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -785,6 +823,14 @@ module Google
|
|
|
785
823
|
end
|
|
786
824
|
end
|
|
787
825
|
|
|
826
|
+
class IpMasqueradingSkippedInfo
|
|
827
|
+
# @private
|
|
828
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
829
|
+
property :non_masquerade_range, as: 'nonMasqueradeRange'
|
|
830
|
+
property :reason, as: 'reason'
|
|
831
|
+
end
|
|
832
|
+
end
|
|
833
|
+
|
|
788
834
|
class LatencyDistribution
|
|
789
835
|
# @private
|
|
790
836
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1166,6 +1212,10 @@ module Google
|
|
|
1166
1212
|
|
|
1167
1213
|
property :gke_master, as: 'gkeMaster', class: Google::Apis::NetworkmanagementV1::GkeMasterInfo, decorator: Google::Apis::NetworkmanagementV1::GkeMasterInfo::Representation
|
|
1168
1214
|
|
|
1215
|
+
property :gke_pod, as: 'gkePod', class: Google::Apis::NetworkmanagementV1::GkePodInfo, decorator: Google::Apis::NetworkmanagementV1::GkePodInfo::Representation
|
|
1216
|
+
|
|
1217
|
+
property :google_managed_service, as: 'googleManagedService', class: Google::Apis::NetworkmanagementV1::GoogleManagedServiceInfo, decorator: Google::Apis::NetworkmanagementV1::GoogleManagedServiceInfo::Representation
|
|
1218
|
+
|
|
1169
1219
|
property :google_service, as: 'googleService', class: Google::Apis::NetworkmanagementV1::GoogleServiceInfo, decorator: Google::Apis::NetworkmanagementV1::GoogleServiceInfo::Representation
|
|
1170
1220
|
|
|
1171
1221
|
property :hybrid_subnet, as: 'hybridSubnet', class: Google::Apis::NetworkmanagementV1::HybridSubnetInfo, decorator: Google::Apis::NetworkmanagementV1::HybridSubnetInfo::Representation
|
|
@@ -1174,6 +1224,8 @@ module Google
|
|
|
1174
1224
|
|
|
1175
1225
|
property :interconnect_attachment, as: 'interconnectAttachment', class: Google::Apis::NetworkmanagementV1::InterconnectAttachmentInfo, decorator: Google::Apis::NetworkmanagementV1::InterconnectAttachmentInfo::Representation
|
|
1176
1226
|
|
|
1227
|
+
property :ip_masquerading_skipped, as: 'ipMasqueradingSkipped', class: Google::Apis::NetworkmanagementV1::IpMasqueradingSkippedInfo, decorator: Google::Apis::NetworkmanagementV1::IpMasqueradingSkippedInfo::Representation
|
|
1228
|
+
|
|
1177
1229
|
property :load_balancer, as: 'loadBalancer', class: Google::Apis::NetworkmanagementV1::LoadBalancerInfo, decorator: Google::Apis::NetworkmanagementV1::LoadBalancerInfo::Representation
|
|
1178
1230
|
|
|
1179
1231
|
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.
|
|
4
|
+
version: 0.75.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.75.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:
|