keycloak-operator/api/v1alpha1/zz_generated.deepcopy.go
2021-01-10 23:49:22 +01:00

170 lines
4.7 KiB
Go

// +build !ignore_autogenerated
/*
Copyright 2021.
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 *KeycloakRealm) DeepCopyInto(out *KeycloakRealm) {
*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 KeycloakRealm.
func (in *KeycloakRealm) DeepCopy() *KeycloakRealm {
if in == nil {
return nil
}
out := new(KeycloakRealm)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *KeycloakRealm) 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 *KeycloakRealmList) DeepCopyInto(out *KeycloakRealmList) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ListMeta.DeepCopyInto(&out.ListMeta)
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]KeycloakRealm, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KeycloakRealmList.
func (in *KeycloakRealmList) DeepCopy() *KeycloakRealmList {
if in == nil {
return nil
}
out := new(KeycloakRealmList)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *KeycloakRealmList) 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 *KeycloakRealmSpec) DeepCopyInto(out *KeycloakRealmSpec) {
*out = *in
if in.DisplayName != nil {
in, out := &in.DisplayName, &out.DisplayName
*out = new(string)
**out = **in
}
if in.DisplayNameHTML != nil {
in, out := &in.DisplayNameHTML, &out.DisplayNameHTML
*out = new(string)
**out = **in
}
if in.LoginTheme != nil {
in, out := &in.LoginTheme, &out.LoginTheme
*out = new(string)
**out = **in
}
if in.LoginWithEmailAllowed != nil {
in, out := &in.LoginWithEmailAllowed, &out.LoginWithEmailAllowed
*out = new(bool)
**out = **in
}
if in.RegistrationAllowed != nil {
in, out := &in.RegistrationAllowed, &out.RegistrationAllowed
*out = new(bool)
**out = **in
}
if in.EditUsernameAllowed != nil {
in, out := &in.EditUsernameAllowed, &out.EditUsernameAllowed
*out = new(bool)
**out = **in
}
if in.RegistrationEmailAsUsername != nil {
in, out := &in.RegistrationEmailAsUsername, &out.RegistrationEmailAsUsername
*out = new(bool)
**out = **in
}
if in.ResetPasswordAllowed != nil {
in, out := &in.ResetPasswordAllowed, &out.ResetPasswordAllowed
*out = new(bool)
**out = **in
}
if in.DuplicateEmailsAllowed != nil {
in, out := &in.DuplicateEmailsAllowed, &out.DuplicateEmailsAllowed
*out = new(bool)
**out = **in
}
if in.VerifyEmail != nil {
in, out := &in.VerifyEmail, &out.VerifyEmail
*out = new(bool)
**out = **in
}
if in.RememberMe != nil {
in, out := &in.RememberMe, &out.RememberMe
*out = new(bool)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KeycloakRealmSpec.
func (in *KeycloakRealmSpec) DeepCopy() *KeycloakRealmSpec {
if in == nil {
return nil
}
out := new(KeycloakRealmSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *KeycloakRealmStatus) DeepCopyInto(out *KeycloakRealmStatus) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KeycloakRealmStatus.
func (in *KeycloakRealmStatus) DeepCopy() *KeycloakRealmStatus {
if in == nil {
return nil
}
out := new(KeycloakRealmStatus)
in.DeepCopyInto(out)
return out
}