Skip to content

Commit

Permalink
Remove LKE ACL LA notices (#684)
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarber-akamai authored Feb 25, 2025
1 parent e4c1b76 commit 9f33446
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions lke_clusters_control_plane.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ type LKEClusterControlPlaneACLAddresses struct {

// LKEClusterControlPlaneACL describes the ACL configuration
// for an LKE cluster's control plane.
// NOTE: Control Plane ACLs may not currently be available to all users.
type LKEClusterControlPlaneACL struct {
Enabled bool `json:"enabled"`
Addresses *LKEClusterControlPlaneACLAddresses `json:"addresses"`
Expand All @@ -32,7 +31,6 @@ type LKEClusterControlPlaneACLAddressesOptions struct {

// LKEClusterControlPlaneACLOptions represents the options used when
// configuring an LKE cluster's control plane ACL policy.
// NOTE: Control Plane ACLs may not currently be available to all users.
type LKEClusterControlPlaneACLOptions struct {
Enabled *bool `json:"enabled,omitempty"`
Addresses *LKEClusterControlPlaneACLAddressesOptions `json:"addresses,omitempty"`
Expand All @@ -49,7 +47,6 @@ type LKEClusterControlPlaneOptions struct {
// LKEClusterControlPlaneACLUpdateOptions represents the options
// available when updating the ACL configuration of an LKE cluster's
// control plane.
// NOTE: Control Plane ACLs may not currently be available to all users.
type LKEClusterControlPlaneACLUpdateOptions struct {
ACL LKEClusterControlPlaneACLOptions `json:"acl"`
}
Expand All @@ -62,7 +59,6 @@ type LKEClusterControlPlaneACLResponse struct {

// GetLKEClusterControlPlaneACL gets the ACL configuration for the
// given cluster's control plane.
// NOTE: Control Plane ACLs may not currently be available to all users.
func (c *Client) GetLKEClusterControlPlaneACL(ctx context.Context, clusterID int) (*LKEClusterControlPlaneACLResponse, error) {
return doGETRequest[LKEClusterControlPlaneACLResponse](
ctx,
Expand All @@ -73,7 +69,6 @@ func (c *Client) GetLKEClusterControlPlaneACL(ctx context.Context, clusterID int

// UpdateLKEClusterControlPlaneACL updates the ACL configuration for the
// given cluster's control plane.
// NOTE: Control Plane ACLs may not currently be available to all users.
func (c *Client) UpdateLKEClusterControlPlaneACL(
ctx context.Context,
clusterID int,
Expand Down

0 comments on commit 9f33446

Please sign in to comment.