Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions linode_api4/objects/lke.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,6 @@ class LKEClusterControlPlaneACLOptions(JSONObject):
"""
LKEClusterControlPlaneACLOptions is used to set
the ACL configuration of an LKE cluster's control plane.

NOTE: Control Plane ACLs may not currently be available to all users.
"""

enabled: Optional[bool] = None
Expand Down Expand Up @@ -116,8 +114,6 @@ class LKEClusterControlPlaneACL(JSONObject):
"""
LKEClusterControlPlaneACL describes the ACL configuration of an LKE cluster's
control plane.

NOTE: Control Plane ACLs may not currently be available to all users.
"""

include_none_values = True
Expand Down Expand Up @@ -337,8 +333,6 @@ def control_plane_acl(self) -> LKEClusterControlPlaneACL:
"""
Gets the ACL configuration of this cluster's control plane.

NOTE: Control Plane ACLs may not currently be available to all users.

API Documentation: https://techdocs.akamai.com/linode-api/reference/get-lke-cluster-acl

:returns: The cluster's control plane ACL configuration.
Expand Down Expand Up @@ -558,8 +552,6 @@ def control_plane_acl_update(
"""
Updates the ACL configuration for this cluster's control plane.

NOTE: Control Plane ACLs may not currently be available to all users.

API Documentation: https://techdocs.akamai.com/linode-api/reference/put-lke-cluster-acl

:param acl: The ACL configuration to apply to this cluster.
Expand Down Expand Up @@ -589,8 +581,6 @@ def control_plane_acl_delete(self):
This has the same effect as calling control_plane_acl_update with the `enabled` field
set to False. Access controls are disabled and all rules are deleted.

NOTE: Control Plane ACLs may not currently be available to all users.

API Documentation: https://techdocs.akamai.com/linode-api/reference/delete-lke-cluster-acl
"""
self._client.delete(
Expand Down