|
|
@@ -857,6 +857,31 @@ func (in *SecretStoreRef) DeepCopy() *SecretStoreRef {
|
|
|
}
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+func (in *SecretStoreRetrySettings) DeepCopyInto(out *SecretStoreRetrySettings) {
|
|
|
+ *out = *in
|
|
|
+ if in.MaxRetries != nil {
|
|
|
+ in, out := &in.MaxRetries, &out.MaxRetries
|
|
|
+ *out = new(int32)
|
|
|
+ **out = **in
|
|
|
+ }
|
|
|
+ if in.RetryInterval != nil {
|
|
|
+ in, out := &in.RetryInterval, &out.RetryInterval
|
|
|
+ *out = new(string)
|
|
|
+ **out = **in
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreRetrySettings.
|
|
|
+func (in *SecretStoreRetrySettings) DeepCopy() *SecretStoreRetrySettings {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(SecretStoreRetrySettings)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
func (in *SecretStoreSpec) DeepCopyInto(out *SecretStoreSpec) {
|
|
|
*out = *in
|
|
|
if in.Provider != nil {
|
|
|
@@ -864,6 +889,11 @@ func (in *SecretStoreSpec) DeepCopyInto(out *SecretStoreSpec) {
|
|
|
*out = new(SecretStoreProvider)
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
}
|
|
|
+ if in.RetrySettings != nil {
|
|
|
+ in, out := &in.RetrySettings, &out.RetrySettings
|
|
|
+ *out = new(SecretStoreRetrySettings)
|
|
|
+ (*in).DeepCopyInto(*out)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreSpec.
|