mirror of
https://github.com/rancher/types.git
synced 2025-09-16 23:08:25 +00:00
run go generate
This commit is contained in:
@@ -29,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.(*AzureADProvider).DeepCopyInto(out.(*AzureADProvider))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&AzureADProvider{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*BasicLogin).DeepCopyInto(out.(*BasicLogin))
|
||||
return nil
|
||||
@@ -141,6 +145,34 @@ 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 *AzureADProvider) DeepCopyInto(out *AzureADProvider) {
|
||||
*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 AzureADProvider.
|
||||
func (in *AzureADProvider) DeepCopy() *AzureADProvider {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(AzureADProvider)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
||||
func (in *AzureADProvider) 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 *BasicLogin) DeepCopyInto(out *BasicLogin) {
|
||||
*out = *in
|
||||
|
Reference in New Issue
Block a user