|
@@ -774,6 +774,57 @@ func (in *IBMProvider) DeepCopy() *IBMProvider {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
|
+func (in *KubernetesAuth) DeepCopyInto(out *KubernetesAuth) {
|
|
|
|
|
+ *out = *in
|
|
|
|
|
+ in.SecretRef.DeepCopyInto(&out.SecretRef)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesAuth.
|
|
|
|
|
+func (in *KubernetesAuth) DeepCopy() *KubernetesAuth {
|
|
|
|
|
+ if in == nil {
|
|
|
|
|
+ return nil
|
|
|
|
|
+ }
|
|
|
|
|
+ out := new(KubernetesAuth)
|
|
|
|
|
+ in.DeepCopyInto(out)
|
|
|
|
|
+ return out
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
|
+func (in *KubernetesProvider) DeepCopyInto(out *KubernetesProvider) {
|
|
|
|
|
+ *out = *in
|
|
|
|
|
+ in.Auth.DeepCopyInto(&out.Auth)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesProvider.
|
|
|
|
|
+func (in *KubernetesProvider) DeepCopy() *KubernetesProvider {
|
|
|
|
|
+ if in == nil {
|
|
|
|
|
+ return nil
|
|
|
|
|
+ }
|
|
|
|
|
+ out := new(KubernetesProvider)
|
|
|
|
|
+ in.DeepCopyInto(out)
|
|
|
|
|
+ return out
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
|
+func (in *KubernetesSecretRef) DeepCopyInto(out *KubernetesSecretRef) {
|
|
|
|
|
+ *out = *in
|
|
|
|
|
+ in.Certificate.DeepCopyInto(&out.Certificate)
|
|
|
|
|
+ in.Key.DeepCopyInto(&out.Key)
|
|
|
|
|
+ in.CA.DeepCopyInto(&out.CA)
|
|
|
|
|
+ in.BearerToken.DeepCopyInto(&out.BearerToken)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesSecretRef.
|
|
|
|
|
+func (in *KubernetesSecretRef) DeepCopy() *KubernetesSecretRef {
|
|
|
|
|
+ if in == nil {
|
|
|
|
|
+ return nil
|
|
|
|
|
+ }
|
|
|
|
|
+ out := new(KubernetesSecretRef)
|
|
|
|
|
+ in.DeepCopyInto(out)
|
|
|
|
|
+ return out
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
func (in *OracleAuth) DeepCopyInto(out *OracleAuth) {
|
|
func (in *OracleAuth) DeepCopyInto(out *OracleAuth) {
|
|
|
*out = *in
|
|
*out = *in
|
|
|
in.SecretRef.DeepCopyInto(&out.SecretRef)
|
|
in.SecretRef.DeepCopyInto(&out.SecretRef)
|
|
@@ -939,6 +990,11 @@ func (in *SecretStoreProvider) DeepCopyInto(out *SecretStoreProvider) {
|
|
|
*out = new(WebhookProvider)
|
|
*out = new(WebhookProvider)
|
|
|
(*in).DeepCopyInto(*out)
|
|
(*in).DeepCopyInto(*out)
|
|
|
}
|
|
}
|
|
|
|
|
+ if in.Kubernetes != nil {
|
|
|
|
|
+ in, out := &in.Kubernetes, &out.Kubernetes
|
|
|
|
|
+ *out = new(KubernetesProvider)
|
|
|
|
|
+ (*in).DeepCopyInto(*out)
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreProvider.
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreProvider.
|