| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425 |
- //go:build !ignore_autogenerated
- // +build !ignore_autogenerated
- /*
- 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
- http://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 (
- "github.com/external-secrets/external-secrets/apis/meta/v1"
- runtime "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 *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(v1.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 *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 *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
- }
|