mirror of
https://github.com/rancher/types.git
synced 2025-09-16 14:59:16 +00:00
go generate
This commit is contained in:
committed by
Alena Prokharchyk
parent
db9e09126d
commit
d4f2cbed6b
@@ -833,9 +833,9 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&RoleTemplateList{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*RouterOpenstackOpts).DeepCopyInto(out.(*RouterOpenstackOpts))
|
||||
in.(*RouteOpenstackOpts).DeepCopyInto(out.(*RouteOpenstackOpts))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&RouterOpenstackOpts{})},
|
||||
}, InType: reflect.TypeOf(&RouteOpenstackOpts{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*RunPipelineInput).DeepCopyInto(out.(*RunPipelineInput))
|
||||
return nil
|
||||
@@ -4952,7 +4952,7 @@ func (in *OpenstackCloudProvider) DeepCopyInto(out *OpenstackCloudProvider) {
|
||||
out.Global = in.Global
|
||||
out.LoadBalancer = in.LoadBalancer
|
||||
out.BlockStorage = in.BlockStorage
|
||||
out.Router = in.Router
|
||||
out.Route = in.Route
|
||||
out.Metadata = in.Metadata
|
||||
return
|
||||
}
|
||||
@@ -6497,17 +6497,17 @@ func (in *RoleTemplateList) DeepCopyObject() runtime.Object {
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *RouterOpenstackOpts) DeepCopyInto(out *RouterOpenstackOpts) {
|
||||
func (in *RouteOpenstackOpts) DeepCopyInto(out *RouteOpenstackOpts) {
|
||||
*out = *in
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RouterOpenstackOpts.
|
||||
func (in *RouterOpenstackOpts) DeepCopy() *RouterOpenstackOpts {
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RouteOpenstackOpts.
|
||||
func (in *RouteOpenstackOpts) DeepCopy() *RouteOpenstackOpts {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(RouterOpenstackOpts)
|
||||
out := new(RouteOpenstackOpts)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
Reference in New Issue
Block a user