mirror of
https://github.com/rancher/types.git
synced 2025-07-31 04:49:37 +00:00
update generate file
This commit is contained in:
parent
e7c8b74b4c
commit
d127d05384
@ -39,6 +39,10 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
||||
in.(*AlertStatus).DeepCopyInto(out.(*AlertStatus))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&AlertStatus{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*AlertSystemImages).DeepCopyInto(out.(*AlertSystemImages))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&AlertSystemImages{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*AuthAppInput).DeepCopyInto(out.(*AuthAppInput))
|
||||
return nil
|
||||
@ -391,6 +395,10 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
||||
in.(*LoggingStatus).DeepCopyInto(out.(*LoggingStatus))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&LoggingStatus{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*LoggingSystemImages).DeepCopyInto(out.(*LoggingSystemImages))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&LoggingSystemImages{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*NetworkConfig).DeepCopyInto(out.(*NetworkConfig))
|
||||
return nil
|
||||
@ -539,6 +547,10 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
||||
in.(*PipelineStatus).DeepCopyInto(out.(*PipelineStatus))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&PipelineStatus{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*PipelineSystemImages).DeepCopyInto(out.(*PipelineSystemImages))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&PipelineSystemImages{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*PodSecurityPolicyTemplate).DeepCopyInto(out.(*PodSecurityPolicyTemplate))
|
||||
return nil
|
||||
@ -977,6 +989,22 @@ func (in *AlertStatus) DeepCopy() *AlertStatus {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *AlertSystemImages) DeepCopyInto(out *AlertSystemImages) {
|
||||
*out = *in
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlertSystemImages.
|
||||
func (in *AlertSystemImages) DeepCopy() *AlertSystemImages {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(AlertSystemImages)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *AuthAppInput) DeepCopyInto(out *AuthAppInput) {
|
||||
*out = *in
|
||||
@ -3299,6 +3327,22 @@ func (in *LoggingStatus) DeepCopy() *LoggingStatus {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *LoggingSystemImages) DeepCopyInto(out *LoggingSystemImages) {
|
||||
*out = *in
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LoggingSystemImages.
|
||||
func (in *LoggingSystemImages) DeepCopy() *LoggingSystemImages {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(LoggingSystemImages)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *NetworkConfig) DeepCopyInto(out *NetworkConfig) {
|
||||
*out = *in
|
||||
@ -4404,6 +4448,22 @@ func (in *PipelineStatus) DeepCopy() *PipelineStatus {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *PipelineSystemImages) DeepCopyInto(out *PipelineSystemImages) {
|
||||
*out = *in
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PipelineSystemImages.
|
||||
func (in *PipelineSystemImages) DeepCopy() *PipelineSystemImages {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(PipelineSystemImages)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *PodSecurityPolicyTemplate) DeepCopyInto(out *PodSecurityPolicyTemplate) {
|
||||
*out = *in
|
||||
|
Loading…
Reference in New Issue
Block a user