@@ -37,6 +37,7 @@ class LKEClusterControlPlaneACLAddressesOptions(JSONObject):
37
37
"""
38
38
39
39
ipv4 : Optional [List [str ]] = None
40
+
40
41
ipv6 : Optional [List [str ]] = None
41
42
42
43
@@ -45,6 +46,8 @@ class LKEClusterControlPlaneACLOptions(JSONObject):
45
46
"""
46
47
LKEClusterControlPlaneACLOptions is used to set
47
48
the ACL configuration of an LKE cluster's control plane.
49
+
50
+ NOTE: Control Plane ACLs may not currently be available to all users.
48
51
"""
49
52
50
53
enabled : Optional [bool ] = None
@@ -78,6 +81,8 @@ class LKEClusterControlPlaneACL(JSONObject):
78
81
"""
79
82
LKEClusterControlPlaneACL describes the ACL configuration of an LKE cluster's
80
83
control plane.
84
+
85
+ NOTE: Control Plane ACLs may not currently be available to all users.
81
86
"""
82
87
83
88
enabled : bool = False
@@ -264,6 +269,8 @@ def control_plane_acl(self) -> LKEClusterControlPlaneACL:
264
269
"""
265
270
Gets the ACL configuration of this cluster's control plane.
266
271
272
+ NOTE: Control Plane ACLs may not currently be available to all users.
273
+
267
274
API Documentation: TODO
268
275
269
276
:returns: The cluster's control plane ACL configuration.
@@ -435,6 +442,8 @@ def control_plane_acl_update(
435
442
"""
436
443
Updates the ACL configuration for this cluster's control plane.
437
444
445
+ NOTE: Control Plane ACLs may not currently be available to all users.
446
+
438
447
API Documentation: TODO
439
448
440
449
:param acl: The ACL configuration to apply to this cluster.
@@ -464,6 +473,8 @@ def control_plane_acl_delete(self):
464
473
This has the same effect as calling control_plane_acl_update with the `enabled` field
465
474
set to False. Access controls are disabled and all rules are deleted.
466
475
476
+ NOTE: Control Plane ACLs may not currently be available to all users.
477
+
467
478
API Documentation: TODO
468
479
"""
469
480
self ._client .delete (
0 commit comments