|
|
@@ -72,6 +72,64 @@ func (in *AWSSMProvider) DeepCopy() *AWSSMProvider {
|
|
|
}
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+func (in *ClusterSecretStore) DeepCopyInto(out *ClusterSecretStore) {
|
|
|
+ *out = *in
|
|
|
+ out.TypeMeta = in.TypeMeta
|
|
|
+ in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
|
+ in.Spec.DeepCopyInto(&out.Spec)
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretStore.
|
|
|
+func (in *ClusterSecretStore) DeepCopy() *ClusterSecretStore {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(ClusterSecretStore)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
|
+func (in *ClusterSecretStore) 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 *ClusterSecretStoreList) DeepCopyInto(out *ClusterSecretStoreList) {
|
|
|
+ *out = *in
|
|
|
+ out.TypeMeta = in.TypeMeta
|
|
|
+ in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
|
+ if in.Items != nil {
|
|
|
+ in, out := &in.Items, &out.Items
|
|
|
+ *out = make([]ClusterSecretStore, len(*in))
|
|
|
+ for i := range *in {
|
|
|
+ (*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretStoreList.
|
|
|
+func (in *ClusterSecretStoreList) DeepCopy() *ClusterSecretStoreList {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(ClusterSecretStoreList)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
|
+func (in *ClusterSecretStoreList) 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 *ExternalSecret) DeepCopyInto(out *ExternalSecret) {
|
|
|
*out = *in
|
|
|
out.TypeMeta = in.TypeMeta
|
|
|
@@ -288,26 +346,6 @@ func (in *ExternalSecretTemplateMetadata) DeepCopy() *ExternalSecretTemplateMeta
|
|
|
}
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
-func (in *SecretKeySelector) DeepCopyInto(out *SecretKeySelector) {
|
|
|
- *out = *in
|
|
|
- if in.Namespace != nil {
|
|
|
- in, out := &in.Namespace, &out.Namespace
|
|
|
- *out = new(string)
|
|
|
- **out = **in
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretKeySelector.
|
|
|
-func (in *SecretKeySelector) DeepCopy() *SecretKeySelector {
|
|
|
- if in == nil {
|
|
|
- return nil
|
|
|
- }
|
|
|
- out := new(SecretKeySelector)
|
|
|
- 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
|
|
|
out.TypeMeta = in.TypeMeta
|