Delete a cluster network security certificate configuration
DELETE /security/cluster-network/certificates/{node.uuid}
Introduced In: 9.18
Deletes the certificate configuration for cluster network security for a given node.
Required properties
-
node: Node UUID
Related ONTAP commands
-
'security cluster-network certificate delete'
Parameters
| Name | Type | In | Required | Description |
|---|---|---|---|---|
node.uuid |
string |
path |
True |
Node UUID. |
Response
Status: 200, Ok
| Name | Type | Description |
|---|---|---|
_links |
||
certificate |
Security certificate object reference |
|
node |
Example response
{
"_links": {
"self": {
"href": "/api/resourcelink"
}
},
"certificate": {
"_links": {
"self": {
"href": "/api/resourcelink"
}
},
"name": "string",
"uuid": "1cd8a442-86d1-11e0-ae1c-123478563412"
},
"node": {
"_links": {
"self": {
"href": "/api/resourcelink"
}
},
"name": "node1",
"uuid": "1cd8a442-86d1-11e0-ae1c-123478563412"
}
}
Error
Status: Default
ONTAP Error Response Codes
| Error Code | Description |
|---|---|
70320128 |
Modifying the cluster network security configuration requires an effective cluster version of ONTAP 9.18.1 or later. |
70320132 |
The cluster has an out of quorum node, wait until all nodes are in quorum before modifying the cluster network security configuration. |
70320137 |
The specified certificate was not found on the admin SVM |
70320150 |
The certificate table is currently in use. Removing a certificate entry is not allowed. |
Also see the table of common errors in the Response body overview section of this documentation.
| Name | Type | Description |
|---|---|---|
error |
Example error
{
"error": {
"arguments": [
{
"code": "string",
"message": "string"
}
],
"code": "4",
"message": "entry doesn't exist",
"target": "uuid"
}
}
Definitions
See Definitions
href
| Name | Type | Description |
|---|---|---|
href |
string |
_links
| Name | Type | Description |
|---|---|---|
self |
security_certificate_reference
Security certificate object reference
| Name | Type | Description |
|---|---|---|
_links |
||
name |
string |
Certificate name |
uuid |
string |
Certificate UUID |
node_reference
| Name | Type | Description |
|---|---|---|
_links |
||
name |
string |
|
uuid |
string |
error_arguments
| Name | Type | Description |
|---|---|---|
code |
string |
Argument code |
message |
string |
Message argument |
returned_error
| Name | Type | Description |
|---|---|---|
arguments |
array[error_arguments] |
Message arguments |
code |
string |
Error code |
message |
string |
Error message |
target |
string |
The target parameter that caused the error. |