1
0
mirror of https://github.com/rancher/types.git synced 2025-09-16 23:08:25 +00:00

generated changes

This commit is contained in:
kinarashah
2018-04-02 09:41:07 -07:00
parent a39fd21530
commit 6c475dd739
6 changed files with 36 additions and 2 deletions

View File

@@ -61,6 +61,10 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error {
in.(*ComposeStatus).DeepCopyInto(out.(*ComposeStatus))
return nil
}, InType: reflect.TypeOf(&ComposeStatus{})},
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
in.(*DeploymentRollbackInput).DeepCopyInto(out.(*DeploymentRollbackInput))
return nil
}, InType: reflect.TypeOf(&DeploymentRollbackInput{})},
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
in.(*DockerCredential).DeepCopyInto(out.(*DockerCredential))
return nil
@@ -472,6 +476,22 @@ func (in *ComposeStatus) DeepCopy() *ComposeStatus {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DeploymentRollbackInput) DeepCopyInto(out *DeploymentRollbackInput) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentRollbackInput.
func (in *DeploymentRollbackInput) DeepCopy() *DeploymentRollbackInput {
if in == nil {
return nil
}
out := new(DeploymentRollbackInput)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DockerCredential) DeepCopyInto(out *DockerCredential) {
*out = *in