diff --git a/apis/management.cattle.io/v3/zz_generated_deepcopy.go b/apis/management.cattle.io/v3/zz_generated_deepcopy.go index de4ff91b..767b56bb 100644 --- a/apis/management.cattle.io/v3/zz_generated_deepcopy.go +++ b/apis/management.cattle.io/v3/zz_generated_deepcopy.go @@ -806,6 +806,7 @@ func (in *CloudCredential) DeepCopyInto(out *CloudCredential) { out.Namespaced = in.Namespaced out.TypeMeta = in.TypeMeta in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) + out.Spec = in.Spec return } @@ -860,6 +861,22 @@ func (in *CloudCredentialList) DeepCopyObject() runtime.Object { return nil } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *CloudCredentialSpec) DeepCopyInto(out *CloudCredentialSpec) { + *out = *in + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudCredentialSpec. +func (in *CloudCredentialSpec) DeepCopy() *CloudCredentialSpec { + if in == nil { + return nil + } + out := new(CloudCredentialSpec) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *CloudProvider) DeepCopyInto(out *CloudProvider) { *out = *in diff --git a/client/management/v3/zz_generated_cloud_credential.go b/client/management/v3/zz_generated_cloud_credential.go index a2480a9f..3b4d7173 100644 --- a/client/management/v3/zz_generated_cloud_credential.go +++ b/client/management/v3/zz_generated_cloud_credential.go @@ -9,7 +9,9 @@ const ( CloudCredentialFieldAnnotations = "annotations" CloudCredentialFieldCreated = "created" CloudCredentialFieldCreatorID = "creatorId" + CloudCredentialFieldDescription = "description" CloudCredentialFieldLabels = "labels" + CloudCredentialFieldName = "name" CloudCredentialFieldOwnerReferences = "ownerReferences" CloudCredentialFieldRemoved = "removed" CloudCredentialFieldUUID = "uuid" @@ -20,7 +22,9 @@ type CloudCredential struct { Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"` Created string `json:"created,omitempty" yaml:"created,omitempty"` CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"` + Description string `json:"description,omitempty" yaml:"description,omitempty"` Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"` + Name string `json:"name,omitempty" yaml:"name,omitempty"` OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" yaml:"ownerReferences,omitempty"` Removed string `json:"removed,omitempty" yaml:"removed,omitempty"` UUID string `json:"uuid,omitempty" yaml:"uuid,omitempty"` diff --git a/client/management/v3/zz_generated_cloud_credential_spec.go b/client/management/v3/zz_generated_cloud_credential_spec.go new file mode 100644 index 00000000..04f66993 --- /dev/null +++ b/client/management/v3/zz_generated_cloud_credential_spec.go @@ -0,0 +1,10 @@ +package client + +const ( + CloudCredentialSpecType = "cloudCredentialSpec" + CloudCredentialSpecFieldDescription = "description" +) + +type CloudCredentialSpec struct { + Description string `json:"description,omitempty" yaml:"description,omitempty"` +}