From cc11ad8f25188b6fc8e3d12205827e7d6b796584 Mon Sep 17 00:00:00 2001 From: Ahmad Ibrahim Date: Fri, 6 Dec 2024 15:09:27 -0800 Subject: [PATCH] chore: fix typo --- client/hybrid.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/hybrid.go b/client/hybrid.go index fcb4f094..b48533ac 100644 --- a/client/hybrid.go +++ b/client/hybrid.go @@ -26,8 +26,8 @@ func (h *V1Client) PutAwsHybridConfig(configUID string, hybridConfig *models.V1A return err } -// GetAwsHybridMachinePools returns the specified AWS Cluster's Edge-Native machine pool configuration -func (h *V1Client) GetAwsHybridMachinePools(configUID, machinePoolName string) (*models.V1HybridEdgeNativeMachinePoolConfig, error) { +// GetAwsHybridMachinePool returns the specified AWS Cluster's Edge-Native machine pool configuration +func (h *V1Client) GetAwsHybridMachinePool(configUID, machinePoolName string) (*models.V1HybridEdgeNativeMachinePoolConfig, error) { params := clientv1.NewV1AwsCloudConfigsEdgeNativeMachinePoolGetParamsWithContext(h.ctx). WithConfigUID(configUID). WithMachinePoolName(machinePoolName)