|
|
@@ -969,6 +969,8 @@ func (in *SecretSink) DeepCopyInto(out *SecretSink) {
|
|
|
*out = *in
|
|
|
out.TypeMeta = in.TypeMeta
|
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
|
+ in.Spec.DeepCopyInto(&out.Spec)
|
|
|
+ in.Status.DeepCopyInto(&out.Status)
|
|
|
}
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretSink.
|
|
|
@@ -1021,6 +1023,65 @@ 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 *SecretSinkSpec) DeepCopyInto(out *SecretSinkSpec) {
|
|
|
+ *out = *in
|
|
|
+ if in.Data != nil {
|
|
|
+ in, out := &in.Data, &out.Data
|
|
|
+ *out = make([]string, len(*in))
|
|
|
+ copy(*out, *in)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretSinkSpec.
|
|
|
+func (in *SecretSinkSpec) DeepCopy() *SecretSinkSpec {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(SecretSinkSpec)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+func (in *SecretSinkStatus) DeepCopyInto(out *SecretSinkStatus) {
|
|
|
+ *out = *in
|
|
|
+ in.RefreshTime.DeepCopyInto(&out.RefreshTime)
|
|
|
+ if in.Conditions != nil {
|
|
|
+ in, out := &in.Conditions, &out.Conditions
|
|
|
+ *out = make([]SecretSinkStatusCondition, len(*in))
|
|
|
+ for i := range *in {
|
|
|
+ (*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretSinkStatus.
|
|
|
+func (in *SecretSinkStatus) DeepCopy() *SecretSinkStatus {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(SecretSinkStatus)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+func (in *SecretSinkStatusCondition) DeepCopyInto(out *SecretSinkStatusCondition) {
|
|
|
+ *out = *in
|
|
|
+ in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretSinkStatusCondition.
|
|
|
+func (in *SecretSinkStatusCondition) DeepCopy() *SecretSinkStatusCondition {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(SecretSinkStatusCondition)
|
|
|
+ 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
|