| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040 |
- //go:build !ignore_autogenerated
- /*
- Copyright © 2025 ESO Maintainer Team
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- https://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- // Code generated by controller-gen. DO NOT EDIT.
- package v1alpha1
- import (
- externalsecretsv1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1"
- metav1 "github.com/external-secrets/external-secrets/apis/meta/v1"
- "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
- apismetav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/runtime"
- )
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ACRAccessToken) DeepCopyInto(out *ACRAccessToken) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
- in.Spec.DeepCopyInto(&out.Spec)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ACRAccessToken.
- func (in *ACRAccessToken) DeepCopy() *ACRAccessToken {
- if in == nil {
- return nil
- }
- out := new(ACRAccessToken)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *ACRAccessToken) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ACRAccessTokenList) DeepCopyInto(out *ACRAccessTokenList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]ACRAccessToken, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ACRAccessTokenList.
- func (in *ACRAccessTokenList) DeepCopy() *ACRAccessTokenList {
- if in == nil {
- return nil
- }
- out := new(ACRAccessTokenList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *ACRAccessTokenList) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ACRAccessTokenSpec) DeepCopyInto(out *ACRAccessTokenSpec) {
- *out = *in
- in.Auth.DeepCopyInto(&out.Auth)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ACRAccessTokenSpec.
- func (in *ACRAccessTokenSpec) DeepCopy() *ACRAccessTokenSpec {
- if in == nil {
- return nil
- }
- out := new(ACRAccessTokenSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ACRAuth) DeepCopyInto(out *ACRAuth) {
- *out = *in
- if in.ServicePrincipal != nil {
- in, out := &in.ServicePrincipal, &out.ServicePrincipal
- *out = new(AzureACRServicePrincipalAuth)
- (*in).DeepCopyInto(*out)
- }
- if in.ManagedIdentity != nil {
- in, out := &in.ManagedIdentity, &out.ManagedIdentity
- *out = new(AzureACRManagedIdentityAuth)
- **out = **in
- }
- if in.WorkloadIdentity != nil {
- in, out := &in.WorkloadIdentity, &out.WorkloadIdentity
- *out = new(AzureACRWorkloadIdentityAuth)
- (*in).DeepCopyInto(*out)
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ACRAuth.
- func (in *ACRAuth) DeepCopy() *ACRAuth {
- if in == nil {
- return nil
- }
- out := new(ACRAuth)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *AWSAuth) DeepCopyInto(out *AWSAuth) {
- *out = *in
- if in.SecretRef != nil {
- in, out := &in.SecretRef, &out.SecretRef
- *out = new(AWSAuthSecretRef)
- (*in).DeepCopyInto(*out)
- }
- if in.JWTAuth != nil {
- in, out := &in.JWTAuth, &out.JWTAuth
- *out = new(AWSJWTAuth)
- (*in).DeepCopyInto(*out)
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuth.
- func (in *AWSAuth) DeepCopy() *AWSAuth {
- if in == nil {
- return nil
- }
- out := new(AWSAuth)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *AWSAuthSecretRef) DeepCopyInto(out *AWSAuthSecretRef) {
- *out = *in
- in.AccessKeyID.DeepCopyInto(&out.AccessKeyID)
- in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
- if in.SessionToken != nil {
- in, out := &in.SessionToken, &out.SessionToken
- *out = new(metav1.SecretKeySelector)
- (*in).DeepCopyInto(*out)
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuthSecretRef.
- func (in *AWSAuthSecretRef) DeepCopy() *AWSAuthSecretRef {
- if in == nil {
- return nil
- }
- out := new(AWSAuthSecretRef)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *AWSJWTAuth) DeepCopyInto(out *AWSJWTAuth) {
- *out = *in
- if in.ServiceAccountRef != nil {
- in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
- *out = new(metav1.ServiceAccountSelector)
- (*in).DeepCopyInto(*out)
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSJWTAuth.
- func (in *AWSJWTAuth) DeepCopy() *AWSJWTAuth {
- if in == nil {
- return nil
- }
- out := new(AWSJWTAuth)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *AuthorizationProtocol) DeepCopyInto(out *AuthorizationProtocol) {
- *out = *in
- if in.NTLM != nil {
- in, out := &in.NTLM, &out.NTLM
- *out = new(NTLMProtocol)
- (*in).DeepCopyInto(*out)
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AuthorizationProtocol.
- func (in *AuthorizationProtocol) DeepCopy() *AuthorizationProtocol {
- if in == nil {
- return nil
- }
- out := new(AuthorizationProtocol)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *AzureACRManagedIdentityAuth) DeepCopyInto(out *AzureACRManagedIdentityAuth) {
- *out = *in
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRManagedIdentityAuth.
- func (in *AzureACRManagedIdentityAuth) DeepCopy() *AzureACRManagedIdentityAuth {
- if in == nil {
- return nil
- }
- out := new(AzureACRManagedIdentityAuth)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *AzureACRServicePrincipalAuth) DeepCopyInto(out *AzureACRServicePrincipalAuth) {
- *out = *in
- in.SecretRef.DeepCopyInto(&out.SecretRef)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRServicePrincipalAuth.
- func (in *AzureACRServicePrincipalAuth) DeepCopy() *AzureACRServicePrincipalAuth {
- if in == nil {
- return nil
- }
- out := new(AzureACRServicePrincipalAuth)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *AzureACRServicePrincipalAuthSecretRef) DeepCopyInto(out *AzureACRServicePrincipalAuthSecretRef) {
- *out = *in
- in.ClientID.DeepCopyInto(&out.ClientID)
- in.ClientSecret.DeepCopyInto(&out.ClientSecret)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRServicePrincipalAuthSecretRef.
- func (in *AzureACRServicePrincipalAuthSecretRef) DeepCopy() *AzureACRServicePrincipalAuthSecretRef {
- if in == nil {
- return nil
- }
- out := new(AzureACRServicePrincipalAuthSecretRef)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *AzureACRWorkloadIdentityAuth) DeepCopyInto(out *AzureACRWorkloadIdentityAuth) {
- *out = *in
- if in.ServiceAccountRef != nil {
- in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
- *out = new(metav1.ServiceAccountSelector)
- (*in).DeepCopyInto(*out)
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRWorkloadIdentityAuth.
- func (in *AzureACRWorkloadIdentityAuth) DeepCopy() *AzureACRWorkloadIdentityAuth {
- if in == nil {
- return nil
- }
- out := new(AzureACRWorkloadIdentityAuth)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *CloudsmithAccessToken) DeepCopyInto(out *CloudsmithAccessToken) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
- in.Spec.DeepCopyInto(&out.Spec)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudsmithAccessToken.
- func (in *CloudsmithAccessToken) DeepCopy() *CloudsmithAccessToken {
- if in == nil {
- return nil
- }
- out := new(CloudsmithAccessToken)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *CloudsmithAccessToken) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *CloudsmithAccessTokenList) DeepCopyInto(out *CloudsmithAccessTokenList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]CloudsmithAccessToken, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudsmithAccessTokenList.
- func (in *CloudsmithAccessTokenList) DeepCopy() *CloudsmithAccessTokenList {
- if in == nil {
- return nil
- }
- out := new(CloudsmithAccessTokenList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *CloudsmithAccessTokenList) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *CloudsmithAccessTokenSpec) DeepCopyInto(out *CloudsmithAccessTokenSpec) {
- *out = *in
- in.ServiceAccountRef.DeepCopyInto(&out.ServiceAccountRef)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudsmithAccessTokenSpec.
- func (in *CloudsmithAccessTokenSpec) DeepCopy() *CloudsmithAccessTokenSpec {
- if in == nil {
- return nil
- }
- out := new(CloudsmithAccessTokenSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ClusterGenerator) DeepCopyInto(out *ClusterGenerator) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
- in.Spec.DeepCopyInto(&out.Spec)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterGenerator.
- func (in *ClusterGenerator) DeepCopy() *ClusterGenerator {
- if in == nil {
- return nil
- }
- out := new(ClusterGenerator)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *ClusterGenerator) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ClusterGeneratorList) DeepCopyInto(out *ClusterGeneratorList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]ClusterGenerator, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterGeneratorList.
- func (in *ClusterGeneratorList) DeepCopy() *ClusterGeneratorList {
- if in == nil {
- return nil
- }
- out := new(ClusterGeneratorList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *ClusterGeneratorList) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ClusterGeneratorSpec) DeepCopyInto(out *ClusterGeneratorSpec) {
- *out = *in
- in.Generator.DeepCopyInto(&out.Generator)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterGeneratorSpec.
- func (in *ClusterGeneratorSpec) DeepCopy() *ClusterGeneratorSpec {
- if in == nil {
- return nil
- }
- out := new(ClusterGeneratorSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ControllerClassResource) DeepCopyInto(out *ControllerClassResource) {
- *out = *in
- out.Spec = in.Spec
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerClassResource.
- func (in *ControllerClassResource) DeepCopy() *ControllerClassResource {
- if in == nil {
- return nil
- }
- out := new(ControllerClassResource)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ECRAuthorizationToken) DeepCopyInto(out *ECRAuthorizationToken) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
- in.Spec.DeepCopyInto(&out.Spec)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ECRAuthorizationToken.
- func (in *ECRAuthorizationToken) DeepCopy() *ECRAuthorizationToken {
- if in == nil {
- return nil
- }
- out := new(ECRAuthorizationToken)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *ECRAuthorizationToken) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ECRAuthorizationTokenList) DeepCopyInto(out *ECRAuthorizationTokenList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]ECRAuthorizationToken, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ECRAuthorizationTokenList.
- func (in *ECRAuthorizationTokenList) DeepCopy() *ECRAuthorizationTokenList {
- if in == nil {
- return nil
- }
- out := new(ECRAuthorizationTokenList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *ECRAuthorizationTokenList) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ECRAuthorizationTokenSpec) DeepCopyInto(out *ECRAuthorizationTokenSpec) {
- *out = *in
- in.Auth.DeepCopyInto(&out.Auth)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ECRAuthorizationTokenSpec.
- func (in *ECRAuthorizationTokenSpec) DeepCopy() *ECRAuthorizationTokenSpec {
- if in == nil {
- return nil
- }
- out := new(ECRAuthorizationTokenSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *Fake) DeepCopyInto(out *Fake) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
- in.Spec.DeepCopyInto(&out.Spec)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fake.
- func (in *Fake) DeepCopy() *Fake {
- if in == nil {
- return nil
- }
- out := new(Fake)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *Fake) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *FakeList) DeepCopyInto(out *FakeList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]Fake, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeList.
- func (in *FakeList) DeepCopy() *FakeList {
- if in == nil {
- return nil
- }
- out := new(FakeList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *FakeList) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *FakeSpec) DeepCopyInto(out *FakeSpec) {
- *out = *in
- if in.Data != nil {
- in, out := &in.Data, &out.Data
- *out = make(map[string]string, len(*in))
- for key, val := range *in {
- (*out)[key] = val
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeSpec.
- func (in *FakeSpec) DeepCopy() *FakeSpec {
- if in == nil {
- return nil
- }
- out := new(FakeSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GCPSMAuth) DeepCopyInto(out *GCPSMAuth) {
- *out = *in
- if in.SecretRef != nil {
- in, out := &in.SecretRef, &out.SecretRef
- *out = new(GCPSMAuthSecretRef)
- (*in).DeepCopyInto(*out)
- }
- if in.WorkloadIdentity != nil {
- in, out := &in.WorkloadIdentity, &out.WorkloadIdentity
- *out = new(GCPWorkloadIdentity)
- (*in).DeepCopyInto(*out)
- }
- if in.WorkloadIdentityFederation != nil {
- in, out := &in.WorkloadIdentityFederation, &out.WorkloadIdentityFederation
- *out = new(externalsecretsv1.GCPWorkloadIdentityFederation)
- (*in).DeepCopyInto(*out)
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuth.
- func (in *GCPSMAuth) DeepCopy() *GCPSMAuth {
- if in == nil {
- return nil
- }
- out := new(GCPSMAuth)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GCPSMAuthSecretRef) DeepCopyInto(out *GCPSMAuthSecretRef) {
- *out = *in
- in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuthSecretRef.
- func (in *GCPSMAuthSecretRef) DeepCopy() *GCPSMAuthSecretRef {
- if in == nil {
- return nil
- }
- out := new(GCPSMAuthSecretRef)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GCPWorkloadIdentity) DeepCopyInto(out *GCPWorkloadIdentity) {
- *out = *in
- in.ServiceAccountRef.DeepCopyInto(&out.ServiceAccountRef)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPWorkloadIdentity.
- func (in *GCPWorkloadIdentity) DeepCopy() *GCPWorkloadIdentity {
- if in == nil {
- return nil
- }
- out := new(GCPWorkloadIdentity)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GCRAccessToken) DeepCopyInto(out *GCRAccessToken) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
- in.Spec.DeepCopyInto(&out.Spec)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCRAccessToken.
- func (in *GCRAccessToken) DeepCopy() *GCRAccessToken {
- if in == nil {
- return nil
- }
- out := new(GCRAccessToken)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *GCRAccessToken) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GCRAccessTokenList) DeepCopyInto(out *GCRAccessTokenList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]GCRAccessToken, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCRAccessTokenList.
- func (in *GCRAccessTokenList) DeepCopy() *GCRAccessTokenList {
- if in == nil {
- return nil
- }
- out := new(GCRAccessTokenList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *GCRAccessTokenList) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GCRAccessTokenSpec) DeepCopyInto(out *GCRAccessTokenSpec) {
- *out = *in
- in.Auth.DeepCopyInto(&out.Auth)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCRAccessTokenSpec.
- func (in *GCRAccessTokenSpec) DeepCopy() *GCRAccessTokenSpec {
- if in == nil {
- return nil
- }
- out := new(GCRAccessTokenSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GeneratorSpec) DeepCopyInto(out *GeneratorSpec) {
- *out = *in
- if in.ACRAccessTokenSpec != nil {
- in, out := &in.ACRAccessTokenSpec, &out.ACRAccessTokenSpec
- *out = new(ACRAccessTokenSpec)
- (*in).DeepCopyInto(*out)
- }
- if in.CloudsmithAccessTokenSpec != nil {
- in, out := &in.CloudsmithAccessTokenSpec, &out.CloudsmithAccessTokenSpec
- *out = new(CloudsmithAccessTokenSpec)
- (*in).DeepCopyInto(*out)
- }
- if in.ECRAuthorizationTokenSpec != nil {
- in, out := &in.ECRAuthorizationTokenSpec, &out.ECRAuthorizationTokenSpec
- *out = new(ECRAuthorizationTokenSpec)
- (*in).DeepCopyInto(*out)
- }
- if in.FakeSpec != nil {
- in, out := &in.FakeSpec, &out.FakeSpec
- *out = new(FakeSpec)
- (*in).DeepCopyInto(*out)
- }
- if in.GCRAccessTokenSpec != nil {
- in, out := &in.GCRAccessTokenSpec, &out.GCRAccessTokenSpec
- *out = new(GCRAccessTokenSpec)
- (*in).DeepCopyInto(*out)
- }
- if in.GithubAccessTokenSpec != nil {
- in, out := &in.GithubAccessTokenSpec, &out.GithubAccessTokenSpec
- *out = new(GithubAccessTokenSpec)
- (*in).DeepCopyInto(*out)
- }
- if in.QuayAccessTokenSpec != nil {
- in, out := &in.QuayAccessTokenSpec, &out.QuayAccessTokenSpec
- *out = new(QuayAccessTokenSpec)
- (*in).DeepCopyInto(*out)
- }
- if in.PasswordSpec != nil {
- in, out := &in.PasswordSpec, &out.PasswordSpec
- *out = new(PasswordSpec)
- (*in).DeepCopyInto(*out)
- }
- if in.SSHKeySpec != nil {
- in, out := &in.SSHKeySpec, &out.SSHKeySpec
- *out = new(SSHKeySpec)
- (*in).DeepCopyInto(*out)
- }
- if in.STSSessionTokenSpec != nil {
- in, out := &in.STSSessionTokenSpec, &out.STSSessionTokenSpec
- *out = new(STSSessionTokenSpec)
- (*in).DeepCopyInto(*out)
- }
- if in.UUIDSpec != nil {
- in, out := &in.UUIDSpec, &out.UUIDSpec
- *out = new(UUIDSpec)
- **out = **in
- }
- if in.VaultDynamicSecretSpec != nil {
- in, out := &in.VaultDynamicSecretSpec, &out.VaultDynamicSecretSpec
- *out = new(VaultDynamicSecretSpec)
- (*in).DeepCopyInto(*out)
- }
- if in.WebhookSpec != nil {
- in, out := &in.WebhookSpec, &out.WebhookSpec
- *out = new(WebhookSpec)
- (*in).DeepCopyInto(*out)
- }
- if in.GrafanaSpec != nil {
- in, out := &in.GrafanaSpec, &out.GrafanaSpec
- *out = new(GrafanaSpec)
- (*in).DeepCopyInto(*out)
- }
- if in.MFASpec != nil {
- in, out := &in.MFASpec, &out.MFASpec
- *out = new(MFASpec)
- (*in).DeepCopyInto(*out)
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratorSpec.
- func (in *GeneratorSpec) DeepCopy() *GeneratorSpec {
- if in == nil {
- return nil
- }
- out := new(GeneratorSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GeneratorState) DeepCopyInto(out *GeneratorState) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
- in.Spec.DeepCopyInto(&out.Spec)
- in.Status.DeepCopyInto(&out.Status)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratorState.
- func (in *GeneratorState) DeepCopy() *GeneratorState {
- if in == nil {
- return nil
- }
- out := new(GeneratorState)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *GeneratorState) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GeneratorStateList) DeepCopyInto(out *GeneratorStateList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]GeneratorState, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratorStateList.
- func (in *GeneratorStateList) DeepCopy() *GeneratorStateList {
- if in == nil {
- return nil
- }
- out := new(GeneratorStateList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *GeneratorStateList) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GeneratorStateSpec) DeepCopyInto(out *GeneratorStateSpec) {
- *out = *in
- if in.GarbageCollectionDeadline != nil {
- in, out := &in.GarbageCollectionDeadline, &out.GarbageCollectionDeadline
- *out = (*in).DeepCopy()
- }
- if in.Resource != nil {
- in, out := &in.Resource, &out.Resource
- *out = new(v1.JSON)
- (*in).DeepCopyInto(*out)
- }
- if in.State != nil {
- in, out := &in.State, &out.State
- *out = new(v1.JSON)
- (*in).DeepCopyInto(*out)
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratorStateSpec.
- func (in *GeneratorStateSpec) DeepCopy() *GeneratorStateSpec {
- if in == nil {
- return nil
- }
- out := new(GeneratorStateSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GeneratorStateStatus) DeepCopyInto(out *GeneratorStateStatus) {
- *out = *in
- if in.Conditions != nil {
- in, out := &in.Conditions, &out.Conditions
- *out = make([]GeneratorStateStatusCondition, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratorStateStatus.
- func (in *GeneratorStateStatus) DeepCopy() *GeneratorStateStatus {
- if in == nil {
- return nil
- }
- out := new(GeneratorStateStatus)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GeneratorStateStatusCondition) DeepCopyInto(out *GeneratorStateStatusCondition) {
- *out = *in
- in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratorStateStatusCondition.
- func (in *GeneratorStateStatusCondition) DeepCopy() *GeneratorStateStatusCondition {
- if in == nil {
- return nil
- }
- out := new(GeneratorStateStatusCondition)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GithubAccessToken) DeepCopyInto(out *GithubAccessToken) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
- in.Spec.DeepCopyInto(&out.Spec)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GithubAccessToken.
- func (in *GithubAccessToken) DeepCopy() *GithubAccessToken {
- if in == nil {
- return nil
- }
- out := new(GithubAccessToken)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *GithubAccessToken) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GithubAccessTokenList) DeepCopyInto(out *GithubAccessTokenList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]GithubAccessToken, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GithubAccessTokenList.
- func (in *GithubAccessTokenList) DeepCopy() *GithubAccessTokenList {
- if in == nil {
- return nil
- }
- out := new(GithubAccessTokenList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *GithubAccessTokenList) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GithubAccessTokenSpec) DeepCopyInto(out *GithubAccessTokenSpec) {
- *out = *in
- if in.Repositories != nil {
- in, out := &in.Repositories, &out.Repositories
- *out = make([]string, len(*in))
- copy(*out, *in)
- }
- if in.Permissions != nil {
- in, out := &in.Permissions, &out.Permissions
- *out = make(map[string]string, len(*in))
- for key, val := range *in {
- (*out)[key] = val
- }
- }
- in.Auth.DeepCopyInto(&out.Auth)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GithubAccessTokenSpec.
- func (in *GithubAccessTokenSpec) DeepCopy() *GithubAccessTokenSpec {
- if in == nil {
- return nil
- }
- out := new(GithubAccessTokenSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GithubAuth) DeepCopyInto(out *GithubAuth) {
- *out = *in
- in.PrivateKey.DeepCopyInto(&out.PrivateKey)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GithubAuth.
- func (in *GithubAuth) DeepCopy() *GithubAuth {
- if in == nil {
- return nil
- }
- out := new(GithubAuth)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GithubSecretRef) DeepCopyInto(out *GithubSecretRef) {
- *out = *in
- in.SecretRef.DeepCopyInto(&out.SecretRef)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GithubSecretRef.
- func (in *GithubSecretRef) DeepCopy() *GithubSecretRef {
- if in == nil {
- return nil
- }
- out := new(GithubSecretRef)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *Grafana) DeepCopyInto(out *Grafana) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
- in.Spec.DeepCopyInto(&out.Spec)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Grafana.
- func (in *Grafana) DeepCopy() *Grafana {
- if in == nil {
- return nil
- }
- out := new(Grafana)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *Grafana) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GrafanaAuth) DeepCopyInto(out *GrafanaAuth) {
- *out = *in
- if in.Token != nil {
- in, out := &in.Token, &out.Token
- *out = new(SecretKeySelector)
- **out = **in
- }
- if in.Basic != nil {
- in, out := &in.Basic, &out.Basic
- *out = new(GrafanaBasicAuth)
- **out = **in
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaAuth.
- func (in *GrafanaAuth) DeepCopy() *GrafanaAuth {
- if in == nil {
- return nil
- }
- out := new(GrafanaAuth)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GrafanaBasicAuth) DeepCopyInto(out *GrafanaBasicAuth) {
- *out = *in
- out.Password = in.Password
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaBasicAuth.
- func (in *GrafanaBasicAuth) DeepCopy() *GrafanaBasicAuth {
- if in == nil {
- return nil
- }
- out := new(GrafanaBasicAuth)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GrafanaList) DeepCopyInto(out *GrafanaList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]Grafana, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaList.
- func (in *GrafanaList) DeepCopy() *GrafanaList {
- if in == nil {
- return nil
- }
- out := new(GrafanaList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *GrafanaList) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GrafanaServiceAccount) DeepCopyInto(out *GrafanaServiceAccount) {
- *out = *in
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaServiceAccount.
- func (in *GrafanaServiceAccount) DeepCopy() *GrafanaServiceAccount {
- if in == nil {
- return nil
- }
- out := new(GrafanaServiceAccount)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GrafanaServiceAccountTokenState) DeepCopyInto(out *GrafanaServiceAccountTokenState) {
- *out = *in
- in.ServiceAccount.DeepCopyInto(&out.ServiceAccount)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaServiceAccountTokenState.
- func (in *GrafanaServiceAccountTokenState) DeepCopy() *GrafanaServiceAccountTokenState {
- if in == nil {
- return nil
- }
- out := new(GrafanaServiceAccountTokenState)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GrafanaSpec) DeepCopyInto(out *GrafanaSpec) {
- *out = *in
- in.Auth.DeepCopyInto(&out.Auth)
- out.ServiceAccount = in.ServiceAccount
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaSpec.
- func (in *GrafanaSpec) DeepCopy() *GrafanaSpec {
- if in == nil {
- return nil
- }
- out := new(GrafanaSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *GrafanaStateServiceAccount) DeepCopyInto(out *GrafanaStateServiceAccount) {
- *out = *in
- if in.ServiceAccountID != nil {
- in, out := &in.ServiceAccountID, &out.ServiceAccountID
- *out = new(int64)
- **out = **in
- }
- if in.ServiceAccountLogin != nil {
- in, out := &in.ServiceAccountLogin, &out.ServiceAccountLogin
- *out = new(string)
- **out = **in
- }
- if in.ServiceAccountTokenID != nil {
- in, out := &in.ServiceAccountTokenID, &out.ServiceAccountTokenID
- *out = new(int64)
- **out = **in
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaStateServiceAccount.
- func (in *GrafanaStateServiceAccount) DeepCopy() *GrafanaStateServiceAccount {
- if in == nil {
- return nil
- }
- out := new(GrafanaStateServiceAccount)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *MFA) DeepCopyInto(out *MFA) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
- in.Spec.DeepCopyInto(&out.Spec)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MFA.
- func (in *MFA) DeepCopy() *MFA {
- if in == nil {
- return nil
- }
- out := new(MFA)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *MFA) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *MFAList) DeepCopyInto(out *MFAList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]MFA, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MFAList.
- func (in *MFAList) DeepCopy() *MFAList {
- if in == nil {
- return nil
- }
- out := new(MFAList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *MFAList) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *MFASpec) DeepCopyInto(out *MFASpec) {
- *out = *in
- in.Secret.DeepCopyInto(&out.Secret)
- if in.When != nil {
- in, out := &in.When, &out.When
- *out = (*in).DeepCopy()
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MFASpec.
- func (in *MFASpec) DeepCopy() *MFASpec {
- if in == nil {
- return nil
- }
- out := new(MFASpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *NTLMProtocol) DeepCopyInto(out *NTLMProtocol) {
- *out = *in
- in.UserName.DeepCopyInto(&out.UserName)
- in.Password.DeepCopyInto(&out.Password)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NTLMProtocol.
- func (in *NTLMProtocol) DeepCopy() *NTLMProtocol {
- if in == nil {
- return nil
- }
- out := new(NTLMProtocol)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *Password) DeepCopyInto(out *Password) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
- in.Spec.DeepCopyInto(&out.Spec)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Password.
- func (in *Password) DeepCopy() *Password {
- if in == nil {
- return nil
- }
- out := new(Password)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *Password) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *PasswordList) DeepCopyInto(out *PasswordList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]Password, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PasswordList.
- func (in *PasswordList) DeepCopy() *PasswordList {
- if in == nil {
- return nil
- }
- out := new(PasswordList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *PasswordList) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *PasswordSpec) DeepCopyInto(out *PasswordSpec) {
- *out = *in
- if in.Digits != nil {
- in, out := &in.Digits, &out.Digits
- *out = new(int)
- **out = **in
- }
- if in.Symbols != nil {
- in, out := &in.Symbols, &out.Symbols
- *out = new(int)
- **out = **in
- }
- if in.SymbolCharacters != nil {
- in, out := &in.SymbolCharacters, &out.SymbolCharacters
- *out = new(string)
- **out = **in
- }
- if in.SecretKeys != nil {
- in, out := &in.SecretKeys, &out.SecretKeys
- *out = make([]string, len(*in))
- copy(*out, *in)
- }
- if in.Encoding != nil {
- in, out := &in.Encoding, &out.Encoding
- *out = new(string)
- **out = **in
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PasswordSpec.
- func (in *PasswordSpec) DeepCopy() *PasswordSpec {
- if in == nil {
- return nil
- }
- out := new(PasswordSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *QuayAccessToken) DeepCopyInto(out *QuayAccessToken) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
- in.Spec.DeepCopyInto(&out.Spec)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QuayAccessToken.
- func (in *QuayAccessToken) DeepCopy() *QuayAccessToken {
- if in == nil {
- return nil
- }
- out := new(QuayAccessToken)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *QuayAccessToken) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *QuayAccessTokenList) DeepCopyInto(out *QuayAccessTokenList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]QuayAccessToken, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QuayAccessTokenList.
- func (in *QuayAccessTokenList) DeepCopy() *QuayAccessTokenList {
- if in == nil {
- return nil
- }
- out := new(QuayAccessTokenList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *QuayAccessTokenList) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *QuayAccessTokenSpec) DeepCopyInto(out *QuayAccessTokenSpec) {
- *out = *in
- in.ServiceAccountRef.DeepCopyInto(&out.ServiceAccountRef)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QuayAccessTokenSpec.
- func (in *QuayAccessTokenSpec) DeepCopy() *QuayAccessTokenSpec {
- if in == nil {
- return nil
- }
- out := new(QuayAccessTokenSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *RequestParameters) DeepCopyInto(out *RequestParameters) {
- *out = *in
- if in.SessionDuration != nil {
- in, out := &in.SessionDuration, &out.SessionDuration
- *out = new(int32)
- **out = **in
- }
- if in.SerialNumber != nil {
- in, out := &in.SerialNumber, &out.SerialNumber
- *out = new(string)
- **out = **in
- }
- if in.TokenCode != nil {
- in, out := &in.TokenCode, &out.TokenCode
- *out = new(string)
- **out = **in
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RequestParameters.
- func (in *RequestParameters) DeepCopy() *RequestParameters {
- if in == nil {
- return nil
- }
- out := new(RequestParameters)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *SSHKey) DeepCopyInto(out *SSHKey) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
- in.Spec.DeepCopyInto(&out.Spec)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SSHKey.
- func (in *SSHKey) DeepCopy() *SSHKey {
- if in == nil {
- return nil
- }
- out := new(SSHKey)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *SSHKey) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *SSHKeyList) DeepCopyInto(out *SSHKeyList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]SSHKey, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SSHKeyList.
- func (in *SSHKeyList) DeepCopy() *SSHKeyList {
- if in == nil {
- return nil
- }
- out := new(SSHKeyList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *SSHKeyList) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *SSHKeySpec) DeepCopyInto(out *SSHKeySpec) {
- *out = *in
- if in.KeySize != nil {
- in, out := &in.KeySize, &out.KeySize
- *out = new(int)
- **out = **in
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SSHKeySpec.
- func (in *SSHKeySpec) DeepCopy() *SSHKeySpec {
- if in == nil {
- return nil
- }
- out := new(SSHKeySpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *STSSessionToken) DeepCopyInto(out *STSSessionToken) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
- in.Spec.DeepCopyInto(&out.Spec)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new STSSessionToken.
- func (in *STSSessionToken) DeepCopy() *STSSessionToken {
- if in == nil {
- return nil
- }
- out := new(STSSessionToken)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *STSSessionToken) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *STSSessionTokenList) DeepCopyInto(out *STSSessionTokenList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]STSSessionToken, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new STSSessionTokenList.
- func (in *STSSessionTokenList) DeepCopy() *STSSessionTokenList {
- if in == nil {
- return nil
- }
- out := new(STSSessionTokenList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *STSSessionTokenList) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *STSSessionTokenSpec) DeepCopyInto(out *STSSessionTokenSpec) {
- *out = *in
- in.Auth.DeepCopyInto(&out.Auth)
- if in.RequestParameters != nil {
- in, out := &in.RequestParameters, &out.RequestParameters
- *out = new(RequestParameters)
- (*in).DeepCopyInto(*out)
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new STSSessionTokenSpec.
- func (in *STSSessionTokenSpec) DeepCopy() *STSSessionTokenSpec {
- if in == nil {
- return nil
- }
- out := new(STSSessionTokenSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *SecretKeySelector) DeepCopyInto(out *SecretKeySelector) {
- *out = *in
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretKeySelector.
- func (in *SecretKeySelector) DeepCopy() *SecretKeySelector {
- if in == nil {
- return nil
- }
- out := new(SecretKeySelector)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *UUID) DeepCopyInto(out *UUID) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
- out.Spec = in.Spec
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UUID.
- func (in *UUID) DeepCopy() *UUID {
- if in == nil {
- return nil
- }
- out := new(UUID)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *UUID) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *UUIDList) DeepCopyInto(out *UUIDList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]UUID, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UUIDList.
- func (in *UUIDList) DeepCopy() *UUIDList {
- if in == nil {
- return nil
- }
- out := new(UUIDList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *UUIDList) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *UUIDSpec) DeepCopyInto(out *UUIDSpec) {
- *out = *in
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UUIDSpec.
- func (in *UUIDSpec) DeepCopy() *UUIDSpec {
- if in == nil {
- return nil
- }
- out := new(UUIDSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *VaultDynamicSecret) DeepCopyInto(out *VaultDynamicSecret) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
- in.Spec.DeepCopyInto(&out.Spec)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultDynamicSecret.
- func (in *VaultDynamicSecret) DeepCopy() *VaultDynamicSecret {
- if in == nil {
- return nil
- }
- out := new(VaultDynamicSecret)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *VaultDynamicSecret) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *VaultDynamicSecretList) DeepCopyInto(out *VaultDynamicSecretList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]VaultDynamicSecret, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultDynamicSecretList.
- func (in *VaultDynamicSecretList) DeepCopy() *VaultDynamicSecretList {
- if in == nil {
- return nil
- }
- out := new(VaultDynamicSecretList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *VaultDynamicSecretList) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *VaultDynamicSecretSpec) DeepCopyInto(out *VaultDynamicSecretSpec) {
- *out = *in
- if in.Parameters != nil {
- in, out := &in.Parameters, &out.Parameters
- *out = new(v1.JSON)
- (*in).DeepCopyInto(*out)
- }
- if in.RetrySettings != nil {
- in, out := &in.RetrySettings, &out.RetrySettings
- *out = new(externalsecretsv1.SecretStoreRetrySettings)
- (*in).DeepCopyInto(*out)
- }
- if in.Provider != nil {
- in, out := &in.Provider, &out.Provider
- *out = new(externalsecretsv1.VaultProvider)
- (*in).DeepCopyInto(*out)
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultDynamicSecretSpec.
- func (in *VaultDynamicSecretSpec) DeepCopy() *VaultDynamicSecretSpec {
- if in == nil {
- return nil
- }
- out := new(VaultDynamicSecretSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *Webhook) DeepCopyInto(out *Webhook) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
- in.Spec.DeepCopyInto(&out.Spec)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Webhook.
- func (in *Webhook) DeepCopy() *Webhook {
- if in == nil {
- return nil
- }
- out := new(Webhook)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *Webhook) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *WebhookCAProvider) DeepCopyInto(out *WebhookCAProvider) {
- *out = *in
- if in.Namespace != nil {
- in, out := &in.Namespace, &out.Namespace
- *out = new(string)
- **out = **in
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookCAProvider.
- func (in *WebhookCAProvider) DeepCopy() *WebhookCAProvider {
- if in == nil {
- return nil
- }
- out := new(WebhookCAProvider)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *WebhookList) DeepCopyInto(out *WebhookList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]Webhook, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookList.
- func (in *WebhookList) DeepCopy() *WebhookList {
- if in == nil {
- return nil
- }
- out := new(WebhookList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *WebhookList) DeepCopyObject() runtime.Object {
- if c := in.DeepCopy(); c != nil {
- return c
- }
- return nil
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *WebhookResult) DeepCopyInto(out *WebhookResult) {
- *out = *in
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookResult.
- func (in *WebhookResult) DeepCopy() *WebhookResult {
- if in == nil {
- return nil
- }
- out := new(WebhookResult)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *WebhookSecret) DeepCopyInto(out *WebhookSecret) {
- *out = *in
- out.SecretRef = in.SecretRef
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookSecret.
- func (in *WebhookSecret) DeepCopy() *WebhookSecret {
- if in == nil {
- return nil
- }
- out := new(WebhookSecret)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *WebhookSpec) DeepCopyInto(out *WebhookSpec) {
- *out = *in
- if in.Headers != nil {
- in, out := &in.Headers, &out.Headers
- *out = make(map[string]string, len(*in))
- for key, val := range *in {
- (*out)[key] = val
- }
- }
- if in.Auth != nil {
- in, out := &in.Auth, &out.Auth
- *out = new(AuthorizationProtocol)
- (*in).DeepCopyInto(*out)
- }
- if in.Timeout != nil {
- in, out := &in.Timeout, &out.Timeout
- *out = new(apismetav1.Duration)
- **out = **in
- }
- out.Result = in.Result
- if in.Secrets != nil {
- in, out := &in.Secrets, &out.Secrets
- *out = make([]WebhookSecret, len(*in))
- copy(*out, *in)
- }
- if in.CABundle != nil {
- in, out := &in.CABundle, &out.CABundle
- *out = make([]byte, len(*in))
- copy(*out, *in)
- }
- if in.CAProvider != nil {
- in, out := &in.CAProvider, &out.CAProvider
- *out = new(WebhookCAProvider)
- (*in).DeepCopyInto(*out)
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookSpec.
- func (in *WebhookSpec) DeepCopy() *WebhookSpec {
- if in == nil {
- return nil
- }
- out := new(WebhookSpec)
- in.DeepCopyInto(out)
- return out
- }
|