@@ -16,7 +16,6 @@ type LKEClusterControlPlaneACLAddresses struct {
1616
1717// LKEClusterControlPlaneACL describes the ACL configuration
1818// for an LKE cluster's control plane.
19- // NOTE: Control Plane ACLs may not currently be available to all users.
2019type LKEClusterControlPlaneACL struct {
2120 Enabled bool `json:"enabled"`
2221 Addresses * LKEClusterControlPlaneACLAddresses `json:"addresses"`
@@ -32,7 +31,6 @@ type LKEClusterControlPlaneACLAddressesOptions struct {
3231
3332// LKEClusterControlPlaneACLOptions represents the options used when
3433// configuring an LKE cluster's control plane ACL policy.
35- // NOTE: Control Plane ACLs may not currently be available to all users.
3634type LKEClusterControlPlaneACLOptions struct {
3735 Enabled * bool `json:"enabled,omitempty"`
3836 Addresses * LKEClusterControlPlaneACLAddressesOptions `json:"addresses,omitempty"`
@@ -49,7 +47,6 @@ type LKEClusterControlPlaneOptions struct {
4947// LKEClusterControlPlaneACLUpdateOptions represents the options
5048// available when updating the ACL configuration of an LKE cluster's
5149// control plane.
52- // NOTE: Control Plane ACLs may not currently be available to all users.
5350type LKEClusterControlPlaneACLUpdateOptions struct {
5451 ACL LKEClusterControlPlaneACLOptions `json:"acl"`
5552}
@@ -62,7 +59,6 @@ type LKEClusterControlPlaneACLResponse struct {
6259
6360// GetLKEClusterControlPlaneACL gets the ACL configuration for the
6461// given cluster's control plane.
65- // NOTE: Control Plane ACLs may not currently be available to all users.
6662func (c * Client ) GetLKEClusterControlPlaneACL (ctx context.Context , clusterID int ) (* LKEClusterControlPlaneACLResponse , error ) {
6763 return doGETRequest [LKEClusterControlPlaneACLResponse ](
6864 ctx ,
@@ -73,7 +69,6 @@ func (c *Client) GetLKEClusterControlPlaneACL(ctx context.Context, clusterID int
7369
7470// UpdateLKEClusterControlPlaneACL updates the ACL configuration for the
7571// given cluster's control plane.
76- // NOTE: Control Plane ACLs may not currently be available to all users.
7772func (c * Client ) UpdateLKEClusterControlPlaneACL (
7873 ctx context.Context ,
7974 clusterID int ,
0 commit comments