google-apis-networkmanagement_v1 0.79.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
|
@@ -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
|
|
@@ -3239,6 +3299,17 @@ module Google
|
|
|
3239
3299
|
# @return [Google::Apis::NetworkmanagementV1::GkeMasterInfo]
|
|
3240
3300
|
attr_accessor :gke_master
|
|
3241
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
|
+
|
|
3242
3313
|
# For display only. Metadata associated with a Google Kubernetes Engine (GKE)
|
|
3243
3314
|
# Pod.
|
|
3244
3315
|
# Corresponds to the JSON property `gkePod`
|
|
@@ -3383,6 +3454,8 @@ module Google
|
|
|
3383
3454
|
@forward = args[:forward] if args.key?(:forward)
|
|
3384
3455
|
@forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
|
|
3385
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)
|
|
3386
3459
|
@gke_pod = args[:gke_pod] if args.key?(:gke_pod)
|
|
3387
3460
|
@google_service = args[:google_service] if args.key?(:google_service)
|
|
3388
3461
|
@hybrid_subnet = args[:hybrid_subnet] if args.key?(:hybrid_subnet)
|
|
@@ -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
|
|
|
@@ -757,6 +769,23 @@ module Google
|
|
|
757
769
|
end
|
|
758
770
|
end
|
|
759
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
|
+
|
|
760
789
|
class GkePodInfo
|
|
761
790
|
# @private
|
|
762
791
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1209,6 +1238,10 @@ module Google
|
|
|
1209
1238
|
|
|
1210
1239
|
property :gke_master, as: 'gkeMaster', class: Google::Apis::NetworkmanagementV1::GkeMasterInfo, decorator: Google::Apis::NetworkmanagementV1::GkeMasterInfo::Representation
|
|
1211
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
|
+
|
|
1212
1245
|
property :gke_pod, as: 'gkePod', class: Google::Apis::NetworkmanagementV1::GkePodInfo, decorator: Google::Apis::NetworkmanagementV1::GkePodInfo::Representation
|
|
1213
1246
|
|
|
1214
1247
|
property :google_service, as: 'googleService', class: Google::Apis::NetworkmanagementV1::GoogleServiceInfo, decorator: Google::Apis::NetworkmanagementV1::GoogleServiceInfo::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.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:
|