From db9e97500ee1448e4b15a6afb864b54055f3ab27 Mon Sep 17 00:00:00 2001 From: Xing Yang Date: Sun, 19 Aug 2018 10:14:37 -0700 Subject: [PATCH] Add generated deepcopy file --- .../v1alpha1/zz_generated.deepcopy.go | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/pkg/apis/volumesnapshot/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/volumesnapshot/v1alpha1/zz_generated.deepcopy.go index a7dad6ef..2d2f352f 100644 --- a/pkg/apis/volumesnapshot/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/volumesnapshot/v1alpha1/zz_generated.deepcopy.go @@ -29,6 +29,16 @@ import ( // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *CSIVolumeSnapshotSource) DeepCopyInto(out *CSIVolumeSnapshotSource) { *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 } @@ -278,7 +288,7 @@ func (in *VolumeSnapshotSource) DeepCopyInto(out *VolumeSnapshotSource) { if in.CSI != nil { in, out := &in.CSI, &out.CSI *out = new(CSIVolumeSnapshotSource) - **out = **in + (*in).DeepCopyInto(*out) } return } @@ -321,6 +331,11 @@ func (in *VolumeSnapshotStatus) DeepCopyInto(out *VolumeSnapshotStatus) { in, out := &in.CreationTime, &out.CreationTime *out = (*in).DeepCopy() } + if in.Size != nil { + in, out := &in.Size, &out.Size + x := (*in).DeepCopy() + *out = &x + } if in.Error != nil { in, out := &in.Error, &out.Error *out = new(v1beta1.VolumeError)