9e1922f1ed
Signed-off-by: Matt Moyer <moyerm@vmware.com>
111 lines
3.2 KiB
Go
Generated
111 lines
3.2 KiB
Go
Generated
// +build !ignore_autogenerated
|
|
|
|
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
|
// 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.
|
|
func (in *OIDCProviderConfig) DeepCopyInto(out *OIDCProviderConfig) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
out.Spec = in.Spec
|
|
in.Status.DeepCopyInto(&out.Status)
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OIDCProviderConfig.
|
|
func (in *OIDCProviderConfig) DeepCopy() *OIDCProviderConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(OIDCProviderConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *OIDCProviderConfig) 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 *OIDCProviderConfigList) DeepCopyInto(out *OIDCProviderConfigList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]OIDCProviderConfig, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OIDCProviderConfigList.
|
|
func (in *OIDCProviderConfigList) DeepCopy() *OIDCProviderConfigList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(OIDCProviderConfigList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *OIDCProviderConfigList) 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 *OIDCProviderConfigSpec) DeepCopyInto(out *OIDCProviderConfigSpec) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OIDCProviderConfigSpec.
|
|
func (in *OIDCProviderConfigSpec) DeepCopy() *OIDCProviderConfigSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(OIDCProviderConfigSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *OIDCProviderConfigStatus) DeepCopyInto(out *OIDCProviderConfigStatus) {
|
|
*out = *in
|
|
if in.LastUpdateTime != nil {
|
|
in, out := &in.LastUpdateTime, &out.LastUpdateTime
|
|
*out = (*in).DeepCopy()
|
|
}
|
|
out.JWKSSecret = in.JWKSSecret
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OIDCProviderConfigStatus.
|
|
func (in *OIDCProviderConfigStatus) DeepCopy() *OIDCProviderConfigStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(OIDCProviderConfigStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|