From fc0f68501e1cb574f4afa057fb28ba9cda505ef7 Mon Sep 17 00:00:00 2001 From: Feny Mehta Date: Mon, 6 Jul 2026 12:34:57 +0530 Subject: [PATCH] chore: regenerate deepcopy and api docs Run make generate to sync generated files with current types. Co-authored-by: Cursor --- api/v1alpha1/docs/apiref.adoc | 40 +++++++++++++++++++++++++++ api/v1alpha1/zz_generated.deepcopy.go | 35 +++++++++++++++++++++++ 2 files changed, 75 insertions(+) diff --git a/api/v1alpha1/docs/apiref.adoc b/api/v1alpha1/docs/apiref.adoc index d9a0e95a..95ab3d83 100644 --- a/api/v1alpha1/docs/apiref.adoc +++ b/api/v1alpha1/docs/apiref.adoc @@ -65,6 +65,46 @@ Package v1alpha1 contains API Schema definitions for the toolchain.dev.openshift +[id="{anchor_prefix}-github-com-codeready-toolchain-api-api-v1alpha1-accountverifierreason"] +==== AccountVerifierReason + + + + + + + +.Appears In: +**** +- xref:{anchor_prefix}-github-com-codeready-toolchain-api-api-v1alpha1-accountverifierresponse[$$AccountVerifierResponse$$] +**** + +[cols="20a,50a,15a,15a", options="header"] +|=== +| Field | Description | Default | Validation +| *`check`* __string__ | | | +| *`detail`* __string__ | | | +|=== + + + + +[id="{anchor_prefix}-github-com-codeready-toolchain-api-api-v1alpha1-accountverifierresult"] +==== AccountVerifierResult + +_Underlying type:_ _string_ + + + + + +.Appears In: +**** +- xref:{anchor_prefix}-github-com-codeready-toolchain-api-api-v1alpha1-accountverifierresponse[$$AccountVerifierResponse$$] +**** + + + [id="{anchor_prefix}-github-com-codeready-toolchain-api-api-v1alpha1-authconfig"] ==== AuthConfig diff --git a/api/v1alpha1/zz_generated.deepcopy.go b/api/v1alpha1/zz_generated.deepcopy.go index faca0885..f12dc336 100644 --- a/api/v1alpha1/zz_generated.deepcopy.go +++ b/api/v1alpha1/zz_generated.deepcopy.go @@ -8,6 +8,41 @@ import ( "k8s.io/apimachinery/pkg/runtime" ) +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *AccountVerifierReason) DeepCopyInto(out *AccountVerifierReason) { + *out = *in +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AccountVerifierReason. +func (in *AccountVerifierReason) DeepCopy() *AccountVerifierReason { + if in == nil { + return nil + } + out := new(AccountVerifierReason) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *AccountVerifierResponse) DeepCopyInto(out *AccountVerifierResponse) { + *out = *in + if in.Reasons != nil { + in, out := &in.Reasons, &out.Reasons + *out = make([]AccountVerifierReason, len(*in)) + copy(*out, *in) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AccountVerifierResponse. +func (in *AccountVerifierResponse) DeepCopy() *AccountVerifierResponse { + if in == nil { + return nil + } + out := new(AccountVerifierResponse) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *AuthConfig) DeepCopyInto(out *AuthConfig) { *out = *in