2020-08-05 20:58:03 +00:00
|
|
|
// +build !ignore_autogenerated
|
|
|
|
|
|
|
|
/*
|
|
|
|
Copyright 2020 VMware, Inc.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Code generated by deepcopy-gen. DO NOT EDIT.
|
|
|
|
|
|
|
|
package v1alpha1
|
|
|
|
|
|
|
|
import (
|
|
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
2020-08-21 16:55:44 +00:00
|
|
|
func (in *CredentialIssuerConfig) DeepCopyInto(out *CredentialIssuerConfig) {
|
2020-08-05 20:58:03 +00:00
|
|
|
*out = *in
|
|
|
|
out.TypeMeta = in.TypeMeta
|
|
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
|
|
out.Spec = in.Spec
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-08-21 16:55:44 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CredentialIssuerConfig.
|
|
|
|
func (in *CredentialIssuerConfig) DeepCopy() *CredentialIssuerConfig {
|
2020-08-05 20:58:03 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2020-08-21 16:55:44 +00:00
|
|
|
out := new(CredentialIssuerConfig)
|
2020-08-05 20:58:03 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
2020-08-21 16:55:44 +00:00
|
|
|
func (in *CredentialIssuerConfig) DeepCopyObject() runtime.Object {
|
2020-08-05 20:58:03 +00:00
|
|
|
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.
|
2020-08-21 16:55:44 +00:00
|
|
|
func (in *CredentialIssuerConfigList) DeepCopyInto(out *CredentialIssuerConfigList) {
|
2020-08-05 20:58:03 +00:00
|
|
|
*out = *in
|
|
|
|
out.TypeMeta = in.TypeMeta
|
|
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
|
|
if in.Items != nil {
|
|
|
|
in, out := &in.Items, &out.Items
|
2020-08-21 16:55:44 +00:00
|
|
|
*out = make([]CredentialIssuerConfig, len(*in))
|
2020-08-05 20:58:03 +00:00
|
|
|
for i := range *in {
|
|
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-08-21 16:55:44 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CredentialIssuerConfigList.
|
|
|
|
func (in *CredentialIssuerConfigList) DeepCopy() *CredentialIssuerConfigList {
|
2020-08-05 20:58:03 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2020-08-21 16:55:44 +00:00
|
|
|
out := new(CredentialIssuerConfigList)
|
2020-08-05 20:58:03 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
2020-08-21 16:55:44 +00:00
|
|
|
func (in *CredentialIssuerConfigList) DeepCopyObject() runtime.Object {
|
2020-08-05 20:58:03 +00:00
|
|
|
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.
|
2020-08-21 16:55:44 +00:00
|
|
|
func (in *CredentialIssuerConfigSpec) DeepCopyInto(out *CredentialIssuerConfigSpec) {
|
2020-08-05 20:58:03 +00:00
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-08-21 16:55:44 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CredentialIssuerConfigSpec.
|
|
|
|
func (in *CredentialIssuerConfigSpec) DeepCopy() *CredentialIssuerConfigSpec {
|
2020-08-05 20:58:03 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2020-08-21 16:55:44 +00:00
|
|
|
out := new(CredentialIssuerConfigSpec)
|
2020-08-05 20:58:03 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|