178 lines
5.1 KiB
Go
178 lines
5.1 KiB
Go
//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 (
|
|
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 *HydraAdmin) DeepCopyInto(out *HydraAdmin) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HydraAdmin.
|
|
func (in *HydraAdmin) DeepCopy() *HydraAdmin {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(HydraAdmin)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *OAuth2Client) DeepCopyInto(out *OAuth2Client) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
out.Status = in.Status
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OAuth2Client.
|
|
func (in *OAuth2Client) DeepCopy() *OAuth2Client {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(OAuth2Client)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *OAuth2Client) 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 *OAuth2ClientList) DeepCopyInto(out *OAuth2ClientList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]OAuth2Client, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OAuth2ClientList.
|
|
func (in *OAuth2ClientList) DeepCopy() *OAuth2ClientList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(OAuth2ClientList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *OAuth2ClientList) 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 *OAuth2ClientSpec) DeepCopyInto(out *OAuth2ClientSpec) {
|
|
*out = *in
|
|
if in.GrantTypes != nil {
|
|
in, out := &in.GrantTypes, &out.GrantTypes
|
|
*out = make([]GrantType, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.ResponseTypes != nil {
|
|
in, out := &in.ResponseTypes, &out.ResponseTypes
|
|
*out = make([]ResponseType, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.RedirectURIs != nil {
|
|
in, out := &in.RedirectURIs, &out.RedirectURIs
|
|
*out = make([]RedirectURI, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.PostLogoutRedirectURIs != nil {
|
|
in, out := &in.PostLogoutRedirectURIs, &out.PostLogoutRedirectURIs
|
|
*out = make([]RedirectURI, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.AllowedCorsOrigins != nil {
|
|
in, out := &in.AllowedCorsOrigins, &out.AllowedCorsOrigins
|
|
*out = make([]RedirectURI, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.Audience != nil {
|
|
in, out := &in.Audience, &out.Audience
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
out.HydraAdmin = in.HydraAdmin
|
|
in.Metadata.DeepCopyInto(&out.Metadata)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OAuth2ClientSpec.
|
|
func (in *OAuth2ClientSpec) DeepCopy() *OAuth2ClientSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(OAuth2ClientSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *OAuth2ClientStatus) DeepCopyInto(out *OAuth2ClientStatus) {
|
|
*out = *in
|
|
out.ReconciliationError = in.ReconciliationError
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OAuth2ClientStatus.
|
|
func (in *OAuth2ClientStatus) DeepCopy() *OAuth2ClientStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(OAuth2ClientStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ReconciliationError) DeepCopyInto(out *ReconciliationError) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ReconciliationError.
|
|
func (in *ReconciliationError) DeepCopy() *ReconciliationError {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ReconciliationError)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|