diff --git a/pkg/apis/habitat/v1beta1/zz_generated.deepcopy.go b/pkg/apis/habitat/v1beta1/zz_generated.deepcopy.go index e61c19dc..e5ac5caa 100644 --- a/pkg/apis/habitat/v1beta1/zz_generated.deepcopy.go +++ b/pkg/apis/habitat/v1beta1/zz_generated.deepcopy.go @@ -111,12 +111,12 @@ func (in *HabitatSpec) DeepCopyInto(out *HabitatSpec) { (*in)[i].DeepCopyInto(&(*out)[i]) } } - if in.Persistence != nil { - in, out := &in.Persistence, &out.Persistence + if in.PersistentStorage != nil { + in, out := &in.PersistentStorage, &out.PersistentStorage if *in == nil { *out = nil } else { - *out = new(Persistence) + *out = new(PersistentStorage) **out = **in } } @@ -150,17 +150,17 @@ func (in *HabitatStatus) DeepCopy() *HabitatStatus { } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *Persistence) DeepCopyInto(out *Persistence) { +func (in *PersistentStorage) DeepCopyInto(out *PersistentStorage) { *out = *in return } -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Persistence. -func (in *Persistence) DeepCopy() *Persistence { +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PersistentStorage. +func (in *PersistentStorage) DeepCopy() *PersistentStorage { if in == nil { return nil } - out := new(Persistence) + out := new(PersistentStorage) in.DeepCopyInto(out) return out }