Add generated deepcopy file
This commit is contained in:
@@ -29,6 +29,16 @@ import (
|
|||||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||||
func (in *CSIVolumeSnapshotSource) DeepCopyInto(out *CSIVolumeSnapshotSource) {
|
func (in *CSIVolumeSnapshotSource) DeepCopyInto(out *CSIVolumeSnapshotSource) {
|
||||||
*out = *in
|
*out = *in
|
||||||
|
if in.CreationTime != nil {
|
||||||
|
in, out := &in.CreationTime, &out.CreationTime
|
||||||
|
*out = new(int64)
|
||||||
|
**out = **in
|
||||||
|
}
|
||||||
|
if in.Size != nil {
|
||||||
|
in, out := &in.Size, &out.Size
|
||||||
|
x := (*in).DeepCopy()
|
||||||
|
*out = &x
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -278,7 +288,7 @@ func (in *VolumeSnapshotSource) DeepCopyInto(out *VolumeSnapshotSource) {
|
|||||||
if in.CSI != nil {
|
if in.CSI != nil {
|
||||||
in, out := &in.CSI, &out.CSI
|
in, out := &in.CSI, &out.CSI
|
||||||
*out = new(CSIVolumeSnapshotSource)
|
*out = new(CSIVolumeSnapshotSource)
|
||||||
**out = **in
|
(*in).DeepCopyInto(*out)
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -321,6 +331,11 @@ func (in *VolumeSnapshotStatus) DeepCopyInto(out *VolumeSnapshotStatus) {
|
|||||||
in, out := &in.CreationTime, &out.CreationTime
|
in, out := &in.CreationTime, &out.CreationTime
|
||||||
*out = (*in).DeepCopy()
|
*out = (*in).DeepCopy()
|
||||||
}
|
}
|
||||||
|
if in.Size != nil {
|
||||||
|
in, out := &in.Size, &out.Size
|
||||||
|
x := (*in).DeepCopy()
|
||||||
|
*out = &x
|
||||||
|
}
|
||||||
if in.Error != nil {
|
if in.Error != nil {
|
||||||
in, out := &in.Error, &out.Error
|
in, out := &in.Error, &out.Error
|
||||||
*out = new(v1beta1.VolumeError)
|
*out = new(v1beta1.VolumeError)
|
||||||
|
Reference in New Issue
Block a user