2020-10-30 20:09:14 +00:00
|
|
|
// +build !ignore_autogenerated
|
|
|
|
|
2021-02-11 15:52:01 +00:00
|
|
|
// Copyright 2020-2021 the Pinniped contributors. All Rights Reserved.
|
2020-10-30 20:09:14 +00:00
|
|
|
// 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-12-16 22:27:09 +00:00
|
|
|
func (in *FederationDomain) DeepCopyInto(out *FederationDomain) {
|
2020-10-30 20:09:14 +00:00
|
|
|
*out = *in
|
|
|
|
out.TypeMeta = in.TypeMeta
|
|
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
2020-11-02 22:55:29 +00:00
|
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
2020-10-30 20:09:14 +00:00
|
|
|
in.Status.DeepCopyInto(&out.Status)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-16 22:27:09 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FederationDomain.
|
|
|
|
func (in *FederationDomain) DeepCopy() *FederationDomain {
|
2020-10-30 20:09:14 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2020-12-16 22:27:09 +00:00
|
|
|
out := new(FederationDomain)
|
2020-10-30 20:09:14 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
2020-12-16 22:27:09 +00:00
|
|
|
func (in *FederationDomain) DeepCopyObject() runtime.Object {
|
2020-10-30 20:09:14 +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-12-16 22:27:09 +00:00
|
|
|
func (in *FederationDomainList) DeepCopyInto(out *FederationDomainList) {
|
2020-10-30 20:09:14 +00:00
|
|
|
*out = *in
|
|
|
|
out.TypeMeta = in.TypeMeta
|
|
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
|
|
if in.Items != nil {
|
|
|
|
in, out := &in.Items, &out.Items
|
2020-12-16 22:27:09 +00:00
|
|
|
*out = make([]FederationDomain, len(*in))
|
2020-10-30 20:09:14 +00:00
|
|
|
for i := range *in {
|
|
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-16 22:27:09 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FederationDomainList.
|
|
|
|
func (in *FederationDomainList) DeepCopy() *FederationDomainList {
|
2020-10-30 20:09:14 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2020-12-16 22:27:09 +00:00
|
|
|
out := new(FederationDomainList)
|
2020-10-30 20:09:14 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
2020-12-16 22:27:09 +00:00
|
|
|
func (in *FederationDomainList) DeepCopyObject() runtime.Object {
|
2020-10-30 20:09:14 +00:00
|
|
|
if c := in.DeepCopy(); c != nil {
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-12-15 14:13:01 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
2020-12-16 22:27:09 +00:00
|
|
|
func (in *FederationDomainSecrets) DeepCopyInto(out *FederationDomainSecrets) {
|
2020-12-15 14:13:01 +00:00
|
|
|
*out = *in
|
|
|
|
out.JWKS = in.JWKS
|
|
|
|
out.TokenSigningKey = in.TokenSigningKey
|
|
|
|
out.StateSigningKey = in.StateSigningKey
|
|
|
|
out.StateEncryptionKey = in.StateEncryptionKey
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-16 22:27:09 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FederationDomainSecrets.
|
|
|
|
func (in *FederationDomainSecrets) DeepCopy() *FederationDomainSecrets {
|
2020-12-15 14:13:01 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2020-12-16 22:27:09 +00:00
|
|
|
out := new(FederationDomainSecrets)
|
2020-12-15 14:13:01 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2020-10-30 20:09:14 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
2020-12-16 22:27:09 +00:00
|
|
|
func (in *FederationDomainSpec) DeepCopyInto(out *FederationDomainSpec) {
|
2020-10-30 20:09:14 +00:00
|
|
|
*out = *in
|
2020-11-02 22:55:29 +00:00
|
|
|
if in.TLS != nil {
|
|
|
|
in, out := &in.TLS, &out.TLS
|
2020-12-16 22:27:09 +00:00
|
|
|
*out = new(FederationDomainTLSSpec)
|
2020-11-02 22:55:29 +00:00
|
|
|
**out = **in
|
|
|
|
}
|
2020-10-30 20:09:14 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-16 22:27:09 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FederationDomainSpec.
|
|
|
|
func (in *FederationDomainSpec) DeepCopy() *FederationDomainSpec {
|
2020-10-30 20:09:14 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2020-12-16 22:27:09 +00:00
|
|
|
out := new(FederationDomainSpec)
|
2020-10-30 20:09:14 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
2020-12-16 22:27:09 +00:00
|
|
|
func (in *FederationDomainStatus) DeepCopyInto(out *FederationDomainStatus) {
|
2020-10-30 20:09:14 +00:00
|
|
|
*out = *in
|
|
|
|
if in.LastUpdateTime != nil {
|
|
|
|
in, out := &in.LastUpdateTime, &out.LastUpdateTime
|
|
|
|
*out = (*in).DeepCopy()
|
|
|
|
}
|
2020-12-15 14:13:01 +00:00
|
|
|
out.Secrets = in.Secrets
|
2020-10-30 20:09:14 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-16 22:27:09 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FederationDomainStatus.
|
|
|
|
func (in *FederationDomainStatus) DeepCopy() *FederationDomainStatus {
|
2020-10-30 20:09:14 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2020-12-16 22:27:09 +00:00
|
|
|
out := new(FederationDomainStatus)
|
2020-10-30 20:09:14 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
2020-11-02 22:55:29 +00:00
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
2020-12-16 22:27:09 +00:00
|
|
|
func (in *FederationDomainTLSSpec) DeepCopyInto(out *FederationDomainTLSSpec) {
|
2020-11-02 22:55:29 +00:00
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-16 22:27:09 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FederationDomainTLSSpec.
|
|
|
|
func (in *FederationDomainTLSSpec) DeepCopy() *FederationDomainTLSSpec {
|
2020-11-02 22:55:29 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2020-12-16 22:27:09 +00:00
|
|
|
out := new(FederationDomainTLSSpec)
|
2020-11-02 22:55:29 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|