|
|
@@ -964,6 +964,235 @@ func (in *OracleSecretRef) DeepCopy() *OracleSecretRef {
|
|
|
return out
|
|
|
}
|
|
|
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+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.
|
|
|
+func (in *SecretSink) DeepCopy() *SecretSink {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(SecretSink)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
|
+func (in *SecretSink) 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 *SecretSinkData) DeepCopyInto(out *SecretSinkData) {
|
|
|
+ *out = *in
|
|
|
+ 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.
|
|
|
+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
|
|
|
+ out.TypeMeta = in.TypeMeta
|
|
|
+ in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
|
+ if in.Items != nil {
|
|
|
+ in, out := &in.Items, &out.Items
|
|
|
+ *out = make([]SecretSink, len(*in))
|
|
|
+ for i := range *in {
|
|
|
+ (*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretSinkList.
|
|
|
+func (in *SecretSinkList) DeepCopy() *SecretSinkList {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(SecretSinkList)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
|
+func (in *SecretSinkList) 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 *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
|
|
|
+ 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
|
|
|
+ *out = make([]SecretSinkData, len(*in))
|
|
|
+ for i := range *in {
|
|
|
+ (*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// 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 *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
|