|
|
@@ -994,7 +994,13 @@ func (in *SecretSink) DeepCopyObject() runtime.Object {
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
func (in *SecretSinkData) DeepCopyInto(out *SecretSinkData) {
|
|
|
*out = *in
|
|
|
- in.Match.DeepCopyInto(&out.Match)
|
|
|
+ if in.Match != nil {
|
|
|
+ in, out := &in.Match, &out.Match
|
|
|
+ *out = make([]SecretSinkMatch, len(*in))
|
|
|
+ for i := range *in {
|
|
|
+ (*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretSinkData.
|
|
|
@@ -1108,6 +1114,11 @@ func (in *SecretSinkSelector) DeepCopy() *SecretSinkSelector {
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
func (in *SecretSinkSpec) DeepCopyInto(out *SecretSinkSpec) {
|
|
|
*out = *in
|
|
|
+ if in.SecretStoreRefs != nil {
|
|
|
+ in, out := &in.SecretStoreRefs, &out.SecretStoreRefs
|
|
|
+ *out = make([]SecretSinkStoreRef, len(*in))
|
|
|
+ copy(*out, *in)
|
|
|
+ }
|
|
|
out.Selector = in.Selector
|
|
|
if in.Data != nil {
|
|
|
in, out := &in.Data, &out.Data
|
|
|
@@ -1167,6 +1178,21 @@ func (in *SecretSinkStatusCondition) DeepCopy() *SecretSinkStatusCondition {
|
|
|
return out
|
|
|
}
|
|
|
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+func (in *SecretSinkStoreRef) DeepCopyInto(out *SecretSinkStoreRef) {
|
|
|
+ *out = *in
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretSinkStoreRef.
|
|
|
+func (in *SecretSinkStoreRef) DeepCopy() *SecretSinkStoreRef {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(SecretSinkStoreRef)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
func (in *SecretStore) DeepCopyInto(out *SecretStore) {
|
|
|
*out = *in
|