google-apis-networkmanagement_v1 0.78.0 → 0.80.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: 38118d64f2488a8cf8949f7796b8af972c74d4428fc95bcb0b425813b2b4f99e
|
|
4
|
+
data.tar.gz: b4761023aafd2649e298fd24ff5cb279573c7f4683d3eea2c18098a1f9fda7d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f875ed8aeda1df62496a65fa75d7b1c1245f98a7f6b182d508db88d307a42594fa5d4beb17204d9e346f6ce74cc1c0450d23812bab5dd79134dcb3a17df87d9d
|
|
7
|
+
data.tar.gz: 7fb37b6b6d89c890a50f5c94276ae53314ec9e96f803f5ec50bf414bc88a0cc3cc5aee523e1f1b57fd9c1d7eb309ea0bf45b57613794094bd194d8e13a41b5b7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1
|
|
2
2
|
|
|
3
|
+
### v0.80.0 (2026-03-08)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260225
|
|
6
|
+
|
|
7
|
+
### v0.79.0 (2026-02-22)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260211
|
|
10
|
+
|
|
3
11
|
### v0.78.0 (2026-02-08)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260130
|
|
@@ -1393,6 +1393,66 @@ module Google
|
|
|
1393
1393
|
end
|
|
1394
1394
|
end
|
|
1395
1395
|
|
|
1396
|
+
# For display only. Metadata associated with a GKE Network Policy.
|
|
1397
|
+
class GkeNetworkPolicyInfo
|
|
1398
|
+
include Google::Apis::Core::Hashable
|
|
1399
|
+
|
|
1400
|
+
# Possible values: ALLOW, DENY
|
|
1401
|
+
# Corresponds to the JSON property `action`
|
|
1402
|
+
# @return [String]
|
|
1403
|
+
attr_accessor :action
|
|
1404
|
+
|
|
1405
|
+
# Possible values: INGRESS, EGRESS
|
|
1406
|
+
# Corresponds to the JSON property `direction`
|
|
1407
|
+
# @return [String]
|
|
1408
|
+
attr_accessor :direction
|
|
1409
|
+
|
|
1410
|
+
# The name of the Network Policy.
|
|
1411
|
+
# Corresponds to the JSON property `displayName`
|
|
1412
|
+
# @return [String]
|
|
1413
|
+
attr_accessor :display_name
|
|
1414
|
+
|
|
1415
|
+
# The URI of the Network Policy. Format for a Network Policy in a zonal cluster:
|
|
1416
|
+
# `projects//zones//clusters//k8s/namespaces//networking.k8s.io/networkpolicies/`
|
|
1417
|
+
# Format for a Network Policy in a regional cluster: `projects//locations//
|
|
1418
|
+
# clusters//k8s/namespaces//networking.k8s.io/networkpolicies/`
|
|
1419
|
+
# Corresponds to the JSON property `uri`
|
|
1420
|
+
# @return [String]
|
|
1421
|
+
attr_accessor :uri
|
|
1422
|
+
|
|
1423
|
+
def initialize(**args)
|
|
1424
|
+
update!(**args)
|
|
1425
|
+
end
|
|
1426
|
+
|
|
1427
|
+
# Update properties of this object
|
|
1428
|
+
def update!(**args)
|
|
1429
|
+
@action = args[:action] if args.key?(:action)
|
|
1430
|
+
@direction = args[:direction] if args.key?(:direction)
|
|
1431
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
1432
|
+
@uri = args[:uri] if args.key?(:uri)
|
|
1433
|
+
end
|
|
1434
|
+
end
|
|
1435
|
+
|
|
1436
|
+
# For display only. Contains information about why GKE Network Policy evaluation
|
|
1437
|
+
# was skipped.
|
|
1438
|
+
class GkeNetworkPolicySkippedInfo
|
|
1439
|
+
include Google::Apis::Core::Hashable
|
|
1440
|
+
|
|
1441
|
+
# Reason why Network Policy evaluation was skipped.
|
|
1442
|
+
# Corresponds to the JSON property `reason`
|
|
1443
|
+
# @return [String]
|
|
1444
|
+
attr_accessor :reason
|
|
1445
|
+
|
|
1446
|
+
def initialize(**args)
|
|
1447
|
+
update!(**args)
|
|
1448
|
+
end
|
|
1449
|
+
|
|
1450
|
+
# Update properties of this object
|
|
1451
|
+
def update!(**args)
|
|
1452
|
+
@reason = args[:reason] if args.key?(:reason)
|
|
1453
|
+
end
|
|
1454
|
+
end
|
|
1455
|
+
|
|
1396
1456
|
# For display only. Metadata associated with a Google Kubernetes Engine (GKE)
|
|
1397
1457
|
# Pod.
|
|
1398
1458
|
class GkePodInfo
|
|
@@ -2176,6 +2236,27 @@ module Google
|
|
|
2176
2236
|
end
|
|
2177
2237
|
end
|
|
2178
2238
|
|
|
2239
|
+
# For display only. Metadata associated with a layer 7 packet inspection by the
|
|
2240
|
+
# firewall.
|
|
2241
|
+
class NgfwPacketInspectionInfo
|
|
2242
|
+
include Google::Apis::Core::Hashable
|
|
2243
|
+
|
|
2244
|
+
# URI of the security profile group associated with this firewall packet
|
|
2245
|
+
# inspection.
|
|
2246
|
+
# Corresponds to the JSON property `securityProfileGroupUri`
|
|
2247
|
+
# @return [String]
|
|
2248
|
+
attr_accessor :security_profile_group_uri
|
|
2249
|
+
|
|
2250
|
+
def initialize(**args)
|
|
2251
|
+
update!(**args)
|
|
2252
|
+
end
|
|
2253
|
+
|
|
2254
|
+
# Update properties of this object
|
|
2255
|
+
def update!(**args)
|
|
2256
|
+
@security_profile_group_uri = args[:security_profile_group_uri] if args.key?(:security_profile_group_uri)
|
|
2257
|
+
end
|
|
2258
|
+
end
|
|
2259
|
+
|
|
2179
2260
|
# This resource represents a long-running operation that is the result of a
|
|
2180
2261
|
# network API call.
|
|
2181
2262
|
class Operation
|
|
@@ -3218,6 +3299,17 @@ module Google
|
|
|
3218
3299
|
# @return [Google::Apis::NetworkmanagementV1::GkeMasterInfo]
|
|
3219
3300
|
attr_accessor :gke_master
|
|
3220
3301
|
|
|
3302
|
+
# For display only. Metadata associated with a GKE Network Policy.
|
|
3303
|
+
# Corresponds to the JSON property `gkeNetworkPolicy`
|
|
3304
|
+
# @return [Google::Apis::NetworkmanagementV1::GkeNetworkPolicyInfo]
|
|
3305
|
+
attr_accessor :gke_network_policy
|
|
3306
|
+
|
|
3307
|
+
# For display only. Contains information about why GKE Network Policy evaluation
|
|
3308
|
+
# was skipped.
|
|
3309
|
+
# Corresponds to the JSON property `gkeNetworkPolicySkipped`
|
|
3310
|
+
# @return [Google::Apis::NetworkmanagementV1::GkeNetworkPolicySkippedInfo]
|
|
3311
|
+
attr_accessor :gke_network_policy_skipped
|
|
3312
|
+
|
|
3221
3313
|
# For display only. Metadata associated with a Google Kubernetes Engine (GKE)
|
|
3222
3314
|
# Pod.
|
|
3223
3315
|
# Corresponds to the JSON property `gkePod`
|
|
@@ -3274,6 +3366,12 @@ module Google
|
|
|
3274
3366
|
# @return [Google::Apis::NetworkmanagementV1::NetworkInfo]
|
|
3275
3367
|
attr_accessor :network
|
|
3276
3368
|
|
|
3369
|
+
# For display only. Metadata associated with a layer 7 packet inspection by the
|
|
3370
|
+
# firewall.
|
|
3371
|
+
# Corresponds to the JSON property `ngfwPacketInspection`
|
|
3372
|
+
# @return [Google::Apis::NetworkmanagementV1::NgfwPacketInspectionInfo]
|
|
3373
|
+
attr_accessor :ngfw_packet_inspection
|
|
3374
|
+
|
|
3277
3375
|
# Project ID that contains the configuration this step is validating.
|
|
3278
3376
|
# Corresponds to the JSON property `projectId`
|
|
3279
3377
|
# @return [String]
|
|
@@ -3356,6 +3454,8 @@ module Google
|
|
|
3356
3454
|
@forward = args[:forward] if args.key?(:forward)
|
|
3357
3455
|
@forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
|
|
3358
3456
|
@gke_master = args[:gke_master] if args.key?(:gke_master)
|
|
3457
|
+
@gke_network_policy = args[:gke_network_policy] if args.key?(:gke_network_policy)
|
|
3458
|
+
@gke_network_policy_skipped = args[:gke_network_policy_skipped] if args.key?(:gke_network_policy_skipped)
|
|
3359
3459
|
@gke_pod = args[:gke_pod] if args.key?(:gke_pod)
|
|
3360
3460
|
@google_service = args[:google_service] if args.key?(:google_service)
|
|
3361
3461
|
@hybrid_subnet = args[:hybrid_subnet] if args.key?(:hybrid_subnet)
|
|
@@ -3366,6 +3466,7 @@ module Google
|
|
|
3366
3466
|
@load_balancer_backend_info = args[:load_balancer_backend_info] if args.key?(:load_balancer_backend_info)
|
|
3367
3467
|
@nat = args[:nat] if args.key?(:nat)
|
|
3368
3468
|
@network = args[:network] if args.key?(:network)
|
|
3469
|
+
@ngfw_packet_inspection = args[:ngfw_packet_inspection] if args.key?(:ngfw_packet_inspection)
|
|
3369
3470
|
@project_id = args[:project_id] if args.key?(:project_id)
|
|
3370
3471
|
@proxy_connection = args[:proxy_connection] if args.key?(:proxy_connection)
|
|
3371
3472
|
@redis_cluster = args[:redis_cluster] if args.key?(:redis_cluster)
|
|
@@ -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.80.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 = "20260225"
|
|
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 GkeNetworkPolicyInfo
|
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
183
|
+
|
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
185
|
+
end
|
|
186
|
+
|
|
187
|
+
class GkeNetworkPolicySkippedInfo
|
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
189
|
+
|
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
191
|
+
end
|
|
192
|
+
|
|
181
193
|
class GkePodInfo
|
|
182
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
183
195
|
|
|
@@ -286,6 +298,12 @@ module Google
|
|
|
286
298
|
include Google::Apis::Core::JsonObjectSupport
|
|
287
299
|
end
|
|
288
300
|
|
|
301
|
+
class NgfwPacketInspectionInfo
|
|
302
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
303
|
+
|
|
304
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
305
|
+
end
|
|
306
|
+
|
|
289
307
|
class Operation
|
|
290
308
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
291
309
|
|
|
@@ -751,6 +769,23 @@ module Google
|
|
|
751
769
|
end
|
|
752
770
|
end
|
|
753
771
|
|
|
772
|
+
class GkeNetworkPolicyInfo
|
|
773
|
+
# @private
|
|
774
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
775
|
+
property :action, as: 'action'
|
|
776
|
+
property :direction, as: 'direction'
|
|
777
|
+
property :display_name, as: 'displayName'
|
|
778
|
+
property :uri, as: 'uri'
|
|
779
|
+
end
|
|
780
|
+
end
|
|
781
|
+
|
|
782
|
+
class GkeNetworkPolicySkippedInfo
|
|
783
|
+
# @private
|
|
784
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
785
|
+
property :reason, as: 'reason'
|
|
786
|
+
end
|
|
787
|
+
end
|
|
788
|
+
|
|
754
789
|
class GkePodInfo
|
|
755
790
|
# @private
|
|
756
791
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -951,6 +986,13 @@ module Google
|
|
|
951
986
|
end
|
|
952
987
|
end
|
|
953
988
|
|
|
989
|
+
class NgfwPacketInspectionInfo
|
|
990
|
+
# @private
|
|
991
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
992
|
+
property :security_profile_group_uri, as: 'securityProfileGroupUri'
|
|
993
|
+
end
|
|
994
|
+
end
|
|
995
|
+
|
|
954
996
|
class Operation
|
|
955
997
|
# @private
|
|
956
998
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1196,6 +1238,10 @@ module Google
|
|
|
1196
1238
|
|
|
1197
1239
|
property :gke_master, as: 'gkeMaster', class: Google::Apis::NetworkmanagementV1::GkeMasterInfo, decorator: Google::Apis::NetworkmanagementV1::GkeMasterInfo::Representation
|
|
1198
1240
|
|
|
1241
|
+
property :gke_network_policy, as: 'gkeNetworkPolicy', class: Google::Apis::NetworkmanagementV1::GkeNetworkPolicyInfo, decorator: Google::Apis::NetworkmanagementV1::GkeNetworkPolicyInfo::Representation
|
|
1242
|
+
|
|
1243
|
+
property :gke_network_policy_skipped, as: 'gkeNetworkPolicySkipped', class: Google::Apis::NetworkmanagementV1::GkeNetworkPolicySkippedInfo, decorator: Google::Apis::NetworkmanagementV1::GkeNetworkPolicySkippedInfo::Representation
|
|
1244
|
+
|
|
1199
1245
|
property :gke_pod, as: 'gkePod', class: Google::Apis::NetworkmanagementV1::GkePodInfo, decorator: Google::Apis::NetworkmanagementV1::GkePodInfo::Representation
|
|
1200
1246
|
|
|
1201
1247
|
property :google_service, as: 'googleService', class: Google::Apis::NetworkmanagementV1::GoogleServiceInfo, decorator: Google::Apis::NetworkmanagementV1::GoogleServiceInfo::Representation
|
|
@@ -1216,6 +1262,8 @@ module Google
|
|
|
1216
1262
|
|
|
1217
1263
|
property :network, as: 'network', class: Google::Apis::NetworkmanagementV1::NetworkInfo, decorator: Google::Apis::NetworkmanagementV1::NetworkInfo::Representation
|
|
1218
1264
|
|
|
1265
|
+
property :ngfw_packet_inspection, as: 'ngfwPacketInspection', class: Google::Apis::NetworkmanagementV1::NgfwPacketInspectionInfo, decorator: Google::Apis::NetworkmanagementV1::NgfwPacketInspectionInfo::Representation
|
|
1266
|
+
|
|
1219
1267
|
property :project_id, as: 'projectId'
|
|
1220
1268
|
property :proxy_connection, as: 'proxyConnection', class: Google::Apis::NetworkmanagementV1::ProxyConnectionInfo, decorator: Google::Apis::NetworkmanagementV1::ProxyConnectionInfo::Representation
|
|
1221
1269
|
|
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.80.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.80.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:
|