|
|
@@ -1470,6 +1470,11 @@ func (in *SecretStoreProvider) DeepCopyInto(out *SecretStoreProvider) {
|
|
|
*out = new(FakeProvider)
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
}
|
|
|
+ if in.Doppler != nil {
|
|
|
+ in, out := &in.Doppler, &out.Doppler
|
|
|
+ *out = new(Stub)
|
|
|
+ **out = **in
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreProvider.
|
|
|
@@ -1601,6 +1606,21 @@ func (in *ServiceAccountAuth) DeepCopy() *ServiceAccountAuth {
|
|
|
return out
|
|
|
}
|
|
|
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+func (in *Stub) DeepCopyInto(out *Stub) {
|
|
|
+ *out = *in
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Stub.
|
|
|
+func (in *Stub) DeepCopy() *Stub {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(Stub)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
func (in SyncedPushSecretsMap) DeepCopyInto(out *SyncedPushSecretsMap) {
|
|
|
{
|