mirror of
https://github.com/rancher/types.git
synced 2025-09-25 04:12:02 +00:00
generated code
This commit is contained in:
@@ -23,6 +23,14 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
||||
in.(*Action).DeepCopyInto(out.(*Action))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&Action{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*ActiveDirectoryConfig).DeepCopyInto(out.(*ActiveDirectoryConfig))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&ActiveDirectoryConfig{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*ActiveDirectoryTestAndApplyInput).DeepCopyInto(out.(*ActiveDirectoryTestAndApplyInput))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&ActiveDirectoryTestAndApplyInput{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*AlertCommonSpec).DeepCopyInto(out.(*AlertCommonSpec))
|
||||
return nil
|
||||
@@ -822,6 +830,56 @@ func (in *Action) DeepCopy() *Action {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *ActiveDirectoryConfig) DeepCopyInto(out *ActiveDirectoryConfig) {
|
||||
*out = *in
|
||||
out.TypeMeta = in.TypeMeta
|
||||
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
||||
in.AuthConfig.DeepCopyInto(&out.AuthConfig)
|
||||
if in.Servers != nil {
|
||||
in, out := &in.Servers, &out.Servers
|
||||
*out = make([]string, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActiveDirectoryConfig.
|
||||
func (in *ActiveDirectoryConfig) DeepCopy() *ActiveDirectoryConfig {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(ActiveDirectoryConfig)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
||||
func (in *ActiveDirectoryConfig) DeepCopyObject() runtime.Object {
|
||||
if c := in.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 *ActiveDirectoryTestAndApplyInput) DeepCopyInto(out *ActiveDirectoryTestAndApplyInput) {
|
||||
*out = *in
|
||||
in.ActiveDirectoryConfig.DeepCopyInto(&out.ActiveDirectoryConfig)
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActiveDirectoryTestAndApplyInput.
|
||||
func (in *ActiveDirectoryTestAndApplyInput) DeepCopy() *ActiveDirectoryTestAndApplyInput {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(ActiveDirectoryTestAndApplyInput)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *AlertCommonSpec) DeepCopyInto(out *AlertCommonSpec) {
|
||||
*out = *in
|
||||
|
@@ -17,6 +17,10 @@ func init() {
|
||||
// Deprecated: deepcopy registration will go away when static deepcopy is fully implemented.
|
||||
func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
||||
return scheme.AddGeneratedDeepCopyFuncs(
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*ActiveDirectoryProvider).DeepCopyInto(out.(*ActiveDirectoryProvider))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&ActiveDirectoryProvider{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*AuthProvider).DeepCopyInto(out.(*AuthProvider))
|
||||
return nil
|
||||
@@ -25,6 +29,10 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
||||
in.(*AuthProviderList).DeepCopyInto(out.(*AuthProviderList))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&AuthProviderList{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*BasicLogin).DeepCopyInto(out.(*BasicLogin))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&BasicLogin{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*GenericLogin).DeepCopyInto(out.(*GenericLogin))
|
||||
return nil
|
||||
@@ -37,10 +45,6 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
||||
in.(*GithubProvider).DeepCopyInto(out.(*GithubProvider))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&GithubProvider{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*LocalLogin).DeepCopyInto(out.(*LocalLogin))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&LocalLogin{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*LocalProvider).DeepCopyInto(out.(*LocalProvider))
|
||||
return nil
|
||||
@@ -48,6 +52,34 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
||||
)
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *ActiveDirectoryProvider) DeepCopyInto(out *ActiveDirectoryProvider) {
|
||||
*out = *in
|
||||
out.TypeMeta = in.TypeMeta
|
||||
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
||||
in.AuthProvider.DeepCopyInto(&out.AuthProvider)
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActiveDirectoryProvider.
|
||||
func (in *ActiveDirectoryProvider) DeepCopy() *ActiveDirectoryProvider {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(ActiveDirectoryProvider)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
||||
func (in *ActiveDirectoryProvider) DeepCopyObject() runtime.Object {
|
||||
if c := in.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 *AuthProvider) DeepCopyInto(out *AuthProvider) {
|
||||
*out = *in
|
||||
@@ -109,6 +141,23 @@ func (in *AuthProviderList) DeepCopyObject() runtime.Object {
|
||||
}
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *BasicLogin) DeepCopyInto(out *BasicLogin) {
|
||||
*out = *in
|
||||
out.GenericLogin = in.GenericLogin
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BasicLogin.
|
||||
func (in *BasicLogin) DeepCopy() *BasicLogin {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(BasicLogin)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *GenericLogin) DeepCopyInto(out *GenericLogin) {
|
||||
*out = *in
|
||||
@@ -170,23 +219,6 @@ func (in *GithubProvider) DeepCopyObject() runtime.Object {
|
||||
}
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *LocalLogin) DeepCopyInto(out *LocalLogin) {
|
||||
*out = *in
|
||||
out.GenericLogin = in.GenericLogin
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocalLogin.
|
||||
func (in *LocalLogin) DeepCopy() *LocalLogin {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(LocalLogin)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *LocalProvider) DeepCopyInto(out *LocalProvider) {
|
||||
*out = *in
|
||||
|
Reference in New Issue
Block a user