From 269e4cab85f4a7b468c9eedcb9eefe654b35d00e Mon Sep 17 00:00:00 2001 From: Renan Campos Date: Thu, 18 Jul 2024 15:15:53 -0400 Subject: [PATCH] CS: Adding kind and id field to gcp authentication structure --- model/clusters_mgmt/v1/gcp_authentication_type.model | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/model/clusters_mgmt/v1/gcp_authentication_type.model b/model/clusters_mgmt/v1/gcp_authentication_type.model index bf54116f..5f6e3110 100644 --- a/model/clusters_mgmt/v1/gcp_authentication_type.model +++ b/model/clusters_mgmt/v1/gcp_authentication_type.model @@ -16,6 +16,12 @@ limitations under the License. // Google cloud platform authentication method of a cluster. struct GcpAuthentication { - // Self Link + // Indicates the type of this object + Kind String + + // Unique identifier of the object + Id String + + // Self link Href String -} \ No newline at end of file +}