From f802165c28f71b7c9e486f20beb7eb889229b3a3 Mon Sep 17 00:00:00 2001 From: Josh De Winne Date: Thu, 25 Jul 2024 15:38:37 -0700 Subject: [PATCH] fix case (#402) --- pkg/kotsclient/cluster_create.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/kotsclient/cluster_create.go b/pkg/kotsclient/cluster_create.go index 7418c25d..0b9a1cf2 100644 --- a/pkg/kotsclient/cluster_create.go +++ b/pkg/kotsclient/cluster_create.go @@ -35,7 +35,7 @@ type CreateClusterResponse struct { type CreateClusterDryRunResponse struct { TotalCost *int64 `json:"total_cost"` TTL *string `json:"ttl"` - Error CreateClusterErrorError `json:"Error"` + Error CreateClusterErrorError `json:"error"` } type CreateClusterOpts struct { @@ -65,7 +65,7 @@ type NodeGroup struct { } type CreateClusterErrorResponse struct { - Error CreateClusterErrorError `json:"Error"` + Error CreateClusterErrorError `json:"error"` } type CreateClusterErrorError struct {