Skip to content

Commit 8a6e2d1

Browse files
Add note about limited LKE ACL availability (#415)
1 parent 7ccc16c commit 8a6e2d1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

linode_api4/objects/lke.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ class LKEClusterControlPlaneACLAddressesOptions(JSONObject):
3737
"""
3838

3939
ipv4: Optional[List[str]] = None
40+
4041
ipv6: Optional[List[str]] = None
4142

4243

@@ -45,6 +46,8 @@ class LKEClusterControlPlaneACLOptions(JSONObject):
4546
"""
4647
LKEClusterControlPlaneACLOptions is used to set
4748
the ACL configuration of an LKE cluster's control plane.
49+
50+
NOTE: Control Plane ACLs may not currently be available to all users.
4851
"""
4952

5053
enabled: Optional[bool] = None
@@ -78,6 +81,8 @@ class LKEClusterControlPlaneACL(JSONObject):
7881
"""
7982
LKEClusterControlPlaneACL describes the ACL configuration of an LKE cluster's
8083
control plane.
84+
85+
NOTE: Control Plane ACLs may not currently be available to all users.
8186
"""
8287

8388
enabled: bool = False
@@ -264,6 +269,8 @@ def control_plane_acl(self) -> LKEClusterControlPlaneACL:
264269
"""
265270
Gets the ACL configuration of this cluster's control plane.
266271
272+
NOTE: Control Plane ACLs may not currently be available to all users.
273+
267274
API Documentation: TODO
268275
269276
:returns: The cluster's control plane ACL configuration.
@@ -435,6 +442,8 @@ def control_plane_acl_update(
435442
"""
436443
Updates the ACL configuration for this cluster's control plane.
437444
445+
NOTE: Control Plane ACLs may not currently be available to all users.
446+
438447
API Documentation: TODO
439448
440449
:param acl: The ACL configuration to apply to this cluster.
@@ -464,6 +473,8 @@ def control_plane_acl_delete(self):
464473
This has the same effect as calling control_plane_acl_update with the `enabled` field
465474
set to False. Access controls are disabled and all rules are deleted.
466475
476+
NOTE: Control Plane ACLs may not currently be available to all users.
477+
467478
API Documentation: TODO
468479
"""
469480
self._client.delete(

0 commit comments

Comments
 (0)