mirror of https://github.com/docker/cli.git
234 lines
6.6 KiB
Go
234 lines
6.6 KiB
Go
// +build !ignore_autogenerated
|
|
|
|
// This file was autogenerated by deepcopy-gen. Do not edit it manually!
|
|
|
|
package compose
|
|
|
|
import (
|
|
reflect "reflect"
|
|
|
|
conversion "k8s.io/apimachinery/pkg/conversion"
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
// Deprecated: register deep-copy functions.
|
|
func init() {
|
|
SchemeBuilder.Register(RegisterDeepCopies)
|
|
}
|
|
|
|
// Deprecated: RegisterDeepCopies adds deep-copy functions to the given scheme. Public
|
|
// to allow building arbitrary schemes.
|
|
func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
|
return scheme.AddGeneratedDeepCopyFuncs(
|
|
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
in.(*ImpersonationConfig).DeepCopyInto(out.(*ImpersonationConfig))
|
|
return nil
|
|
}, InType: reflect.TypeOf(&ImpersonationConfig{})},
|
|
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
in.(*Owner).DeepCopyInto(out.(*Owner))
|
|
return nil
|
|
}, InType: reflect.TypeOf(&Owner{})},
|
|
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
in.(*OwnerList).DeepCopyInto(out.(*OwnerList))
|
|
return nil
|
|
}, InType: reflect.TypeOf(&OwnerList{})},
|
|
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
in.(*Stack).DeepCopyInto(out.(*Stack))
|
|
return nil
|
|
}, InType: reflect.TypeOf(&Stack{})},
|
|
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
in.(*StackList).DeepCopyInto(out.(*StackList))
|
|
return nil
|
|
}, InType: reflect.TypeOf(&StackList{})},
|
|
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
in.(*StackSpec).DeepCopyInto(out.(*StackSpec))
|
|
return nil
|
|
}, InType: reflect.TypeOf(&StackSpec{})},
|
|
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
in.(*StackStatus).DeepCopyInto(out.(*StackStatus))
|
|
return nil
|
|
}, InType: reflect.TypeOf(&StackStatus{})},
|
|
)
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ImpersonationConfig) DeepCopyInto(out *ImpersonationConfig) {
|
|
*out = *in
|
|
if in.Groups != nil {
|
|
in, out := &in.Groups, &out.Groups
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.Extra != nil {
|
|
in, out := &in.Extra, &out.Extra
|
|
*out = make(map[string][]string, len(*in))
|
|
for key, val := range *in {
|
|
if val == nil {
|
|
(*out)[key] = nil
|
|
} else {
|
|
(*out)[key] = make([]string, len(val))
|
|
copy((*out)[key], val)
|
|
}
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new ImpersonationConfig.
|
|
func (x *ImpersonationConfig) DeepCopy() *ImpersonationConfig {
|
|
if x == nil {
|
|
return nil
|
|
}
|
|
out := new(ImpersonationConfig)
|
|
x.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Owner) DeepCopyInto(out *Owner) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Owner.DeepCopyInto(&out.Owner)
|
|
return
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new Owner.
|
|
func (x *Owner) DeepCopy() *Owner {
|
|
if x == nil {
|
|
return nil
|
|
}
|
|
out := new(Owner)
|
|
x.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
func (x *Owner) DeepCopyObject() runtime.Object {
|
|
if c := x.DeepCopy(); c != nil {
|
|
return c
|
|
} else {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *OwnerList) DeepCopyInto(out *OwnerList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
out.ListMeta = in.ListMeta
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]Owner, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new OwnerList.
|
|
func (x *OwnerList) DeepCopy() *OwnerList {
|
|
if x == nil {
|
|
return nil
|
|
}
|
|
out := new(OwnerList)
|
|
x.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Stack) DeepCopyInto(out *Stack) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
out.Status = in.Status
|
|
return
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new Stack.
|
|
func (x *Stack) DeepCopy() *Stack {
|
|
if x == nil {
|
|
return nil
|
|
}
|
|
out := new(Stack)
|
|
x.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (x *Stack) DeepCopyObject() runtime.Object {
|
|
if c := x.DeepCopy(); c != nil {
|
|
return c
|
|
} else {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *StackList) DeepCopyInto(out *StackList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
out.ListMeta = in.ListMeta
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]Stack, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new StackList.
|
|
func (x *StackList) DeepCopy() *StackList {
|
|
if x == nil {
|
|
return nil
|
|
}
|
|
out := new(StackList)
|
|
x.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (x *StackList) DeepCopyObject() runtime.Object {
|
|
if c := x.DeepCopy(); c != nil {
|
|
return c
|
|
} else {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *StackSpec) DeepCopyInto(out *StackSpec) {
|
|
*out = *in
|
|
in.Owner.DeepCopyInto(&out.Owner)
|
|
return
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new StackSpec.
|
|
func (x *StackSpec) DeepCopy() *StackSpec {
|
|
if x == nil {
|
|
return nil
|
|
}
|
|
out := new(StackSpec)
|
|
x.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *StackStatus) DeepCopyInto(out *StackStatus) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new StackStatus.
|
|
func (x *StackStatus) DeepCopy() *StackStatus {
|
|
if x == nil {
|
|
return nil
|
|
}
|
|
out := new(StackStatus)
|
|
x.DeepCopyInto(out)
|
|
return out
|
|
}
|