|
|
@@ -991,6 +991,22 @@ func (in *SecretSink) DeepCopyObject() runtime.Object {
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
+// 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)
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretSinkData.
|
|
|
+func (in *SecretSinkData) DeepCopy() *SecretSinkData {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(SecretSinkData)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
func (in *SecretSinkList) DeepCopyInto(out *SecretSinkList) {
|
|
|
*out = *in
|
|
|
@@ -1023,13 +1039,82 @@ func (in *SecretSinkList) DeepCopyObject() runtime.Object {
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+func (in *SecretSinkMatch) DeepCopyInto(out *SecretSinkMatch) {
|
|
|
+ *out = *in
|
|
|
+ if in.RemoteRefs != nil {
|
|
|
+ in, out := &in.RemoteRefs, &out.RemoteRefs
|
|
|
+ *out = make([]SecretSinkRemoteRefs, len(*in))
|
|
|
+ copy(*out, *in)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretSinkMatch.
|
|
|
+func (in *SecretSinkMatch) DeepCopy() *SecretSinkMatch {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(SecretSinkMatch)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+func (in *SecretSinkRemoteRefs) DeepCopyInto(out *SecretSinkRemoteRefs) {
|
|
|
+ *out = *in
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretSinkRemoteRefs.
|
|
|
+func (in *SecretSinkRemoteRefs) DeepCopy() *SecretSinkRemoteRefs {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(SecretSinkRemoteRefs)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+func (in *SecretSinkSecret) DeepCopyInto(out *SecretSinkSecret) {
|
|
|
+ *out = *in
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretSinkSecret.
|
|
|
+func (in *SecretSinkSecret) DeepCopy() *SecretSinkSecret {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(SecretSinkSecret)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+func (in *SecretSinkSelector) DeepCopyInto(out *SecretSinkSelector) {
|
|
|
+ *out = *in
|
|
|
+ out.Secret = in.Secret
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretSinkSelector.
|
|
|
+func (in *SecretSinkSelector) DeepCopy() *SecretSinkSelector {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(SecretSinkSelector)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
// 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
|
|
|
+ out.Selector = in.Selector
|
|
|
if in.Data != nil {
|
|
|
in, out := &in.Data, &out.Data
|
|
|
- *out = make([]string, len(*in))
|
|
|
- copy(*out, *in)
|
|
|
+ *out = make([]SecretSinkData, len(*in))
|
|
|
+ for i := range *in {
|
|
|
+ (*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|