mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 11:58:02 +00:00
147 lines
3.8 KiB
Go
147 lines
3.8 KiB
Go
|
// +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 v1
|
||
|
|
||
|
import (
|
||
|
"github.com/caos/orbos/pkg/tree"
|
||
|
"github.com/caos/zitadel/operator/database/kinds/orb"
|
||
|
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 *Database) DeepCopyInto(out *Database) {
|
||
|
*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 Database.
|
||
|
func (in *Database) DeepCopy() *Database {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(Database)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
||
|
func (in *Database) 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 *DatabaseList) DeepCopyInto(out *DatabaseList) {
|
||
|
*out = *in
|
||
|
out.TypeMeta = in.TypeMeta
|
||
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
||
|
if in.Items != nil {
|
||
|
in, out := &in.Items, &out.Items
|
||
|
*out = make([]Database, len(*in))
|
||
|
for i := range *in {
|
||
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatabaseList.
|
||
|
func (in *DatabaseList) DeepCopy() *DatabaseList {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(DatabaseList)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
||
|
func (in *DatabaseList) 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 *Empty) DeepCopyInto(out *Empty) {
|
||
|
*out = *in
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Empty.
|
||
|
func (in *Empty) DeepCopy() *Empty {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(Empty)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *Spec) DeepCopyInto(out *Spec) {
|
||
|
*out = *in
|
||
|
if in.Common != nil {
|
||
|
in, out := &in.Common, &out.Common
|
||
|
*out = new(tree.Common)
|
||
|
**out = **in
|
||
|
}
|
||
|
if in.Spec != nil {
|
||
|
in, out := &in.Spec, &out.Spec
|
||
|
*out = new(orb.Spec)
|
||
|
(*in).DeepCopyInto(*out)
|
||
|
}
|
||
|
if in.Database != nil {
|
||
|
in, out := &in.Database, &out.Database
|
||
|
*out = new(Empty)
|
||
|
**out = **in
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Spec.
|
||
|
func (in *Spec) DeepCopy() *Spec {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(Spec)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *Status) DeepCopyInto(out *Status) {
|
||
|
*out = *in
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Status.
|
||
|
func (in *Status) DeepCopy() *Status {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(Status)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|