2022-03-01 18:39:58 +00:00
|
|
|
//go:build !ignore_autogenerated
|
2020-10-30 20:09:14 +00:00
|
|
|
// +build !ignore_autogenerated
|
|
|
|
|
2022-03-01 01:58:48 +00:00
|
|
|
// Copyright 2020-2022 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
|
|
|
|
}
|
2022-06-13 22:48:54 +00:00
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *OIDCClient) DeepCopyInto(out *OIDCClient) {
|
|
|
|
*out = *in
|
|
|
|
out.TypeMeta = in.TypeMeta
|
|
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
|
|
out.Status = in.Status
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OIDCClient.
|
|
|
|
func (in *OIDCClient) DeepCopy() *OIDCClient {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(OIDCClient)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
|
|
func (in *OIDCClient) 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 *OIDCClientList) DeepCopyInto(out *OIDCClientList) {
|
|
|
|
*out = *in
|
|
|
|
out.TypeMeta = in.TypeMeta
|
|
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
|
|
if in.Items != nil {
|
|
|
|
in, out := &in.Items, &out.Items
|
|
|
|
*out = make([]OIDCClient, len(*in))
|
|
|
|
for i := range *in {
|
|
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OIDCClientList.
|
|
|
|
func (in *OIDCClientList) DeepCopy() *OIDCClientList {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(OIDCClientList)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
|
|
func (in *OIDCClientList) 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 *OIDCClientSpec) DeepCopyInto(out *OIDCClientSpec) {
|
|
|
|
*out = *in
|
|
|
|
if in.AllowedRedirectURIs != nil {
|
|
|
|
in, out := &in.AllowedRedirectURIs, &out.AllowedRedirectURIs
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
if in.AllowedGrantTypes != nil {
|
|
|
|
in, out := &in.AllowedGrantTypes, &out.AllowedGrantTypes
|
|
|
|
*out = make([]GrantType, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
if in.AllowedScopes != nil {
|
|
|
|
in, out := &in.AllowedScopes, &out.AllowedScopes
|
|
|
|
*out = make([]Scope, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OIDCClientSpec.
|
|
|
|
func (in *OIDCClientSpec) DeepCopy() *OIDCClientSpec {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(OIDCClientSpec)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *OIDCClientStatus) DeepCopyInto(out *OIDCClientStatus) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OIDCClientStatus.
|
|
|
|
func (in *OIDCClientStatus) DeepCopy() *OIDCClientStatus {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(OIDCClientStatus)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|