|
|
@@ -776,6 +776,79 @@ func (in *SecretKeySelector) DeepCopy() *SecretKeySelector {
|
|
|
}
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+func (in *UUID) DeepCopyInto(out *UUID) {
|
|
|
+ *out = *in
|
|
|
+ out.TypeMeta = in.TypeMeta
|
|
|
+ in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
|
+ out.Spec = in.Spec
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UUID.
|
|
|
+func (in *UUID) DeepCopy() *UUID {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(UUID)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
|
+func (in *UUID) DeepCopyObject() runtime.Object {
|
|
|
+ if c := in.DeepCopy(); c != nil {
|
|
|
+ return c
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+func (in *UUIDList) DeepCopyInto(out *UUIDList) {
|
|
|
+ *out = *in
|
|
|
+ out.TypeMeta = in.TypeMeta
|
|
|
+ in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
|
+ if in.Items != nil {
|
|
|
+ in, out := &in.Items, &out.Items
|
|
|
+ *out = make([]Password, len(*in))
|
|
|
+ for i := range *in {
|
|
|
+ (*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UUIDList.
|
|
|
+func (in *UUIDList) DeepCopy() *UUIDList {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(UUIDList)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
|
+func (in *UUIDList) DeepCopyObject() runtime.Object {
|
|
|
+ if c := in.DeepCopy(); c != nil {
|
|
|
+ return c
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+func (in *UUIDSpec) DeepCopyInto(out *UUIDSpec) {
|
|
|
+ *out = *in
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UUIDSpec.
|
|
|
+func (in *UUIDSpec) DeepCopy() *UUIDSpec {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(UUIDSpec)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
func (in *VaultDynamicSecret) DeepCopyInto(out *VaultDynamicSecret) {
|
|
|
*out = *in
|
|
|
out.TypeMeta = in.TypeMeta
|