You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: An object that represents a certificate
9
+
linkTitle: certificates
10
+
weight: $weight
11
+
---
12
+
13
+
An API object that represents a certificate used by a Redis Enterprise Software cluster.
14
+
15
+
| Name | Type/Value | Description |
16
+
|------|------------|-------------|
17
+
| name |`cm`<br />`api`<br />`mtls_trusted_ca`<br />`proxy`<br />`metrics_exporter`<br />`syncer`<br />`ldap_client`<br />`ccs_internode_encryption`<br />`data_internode_encryption`| Certificate type.<br />See the [certificates table]({{< relref "/operate/rs/security/certificates" >}}) for the list of cluster certificates and their descriptions. |
18
+
| certificate | string | The certificate in PEM format |
Replaces multiple cluster certificates with the provided certificates on all nodes within the cluster. This endpoint validates all provided certificates before actually updating the cluster.
76
+
77
+
See the [certificates table]({{< relref "/operate/rs/security/certificates" >}}) for the list of cluster certificates and their descriptions.
This REST API path is deprecated as of Redis Enterprise Software 7.22.2 and will be removed in a future version. Use [`PUT /v1/cluster/certificates`](#put-cluster-certificates) instead.
141
+
{{</note>}}
142
+
74
143
Replaces an existing certificate on all nodes within the cluster with a new certificate. The new certificate must pass validation before it can replace the old certificate.
75
144
76
145
See the [certificates table]({{< relref "/operate/rs/security/certificates" >}}) for the list of cluster certificates and their descriptions.
@@ -105,12 +174,12 @@ Otherwise, retry the certificate update in case the failure was due to a tempora
105
174
106
175
| Code | Description |
107
176
|------|-------------|
108
-
|[200 OK](http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.2.1)| No error |
109
-
|[400 Bad Request](http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.1)| Failed, invalid certificate. |
|[404 Not Found](https://www.rfc-editor.org/rfc/rfc9110.html#name-404-not-found)| Failed, requested deletion of an unknown certificate |
217
+
|[403 Forbidden](https://www.rfc-editor.org/rfc/rfc9110.html#name-403-forbidden)| Failed, requested deletion of a required certificate |
218
+
|[500 Internal Server Error](https://www.rfc-editor.org/rfc/rfc9110.html#name-500-internal-server-error)| Failed, error while deleting certificate from disk |
0 commit comments