Get SSE
GET /feature/ServerSideEncryption
returns the feed for the details of ServerSideEncryption feature
Required Roles
Requires one of the following roles:
SYSTEM_ADMIN
SYSTEM_MONITOR
NAMESPACE_ADMIN
Response Body
Field |
Description |
Type |
Notes |
ServerSideEncryption |
|
|
|
disable_reason |
|
String |
|
is_encryption_enabled |
enablement status of the SSE feature |
Boolean |
|
Examples
Request
GET https://192.168.0.0:4443/feature/ServerSideEncryption HTTP/1.1
Content-Type: application/xml
X-SDS-AUTH-TOKEN: <AUTH_TOKEN>
Response
HTTP/1.1 200 OK
Content-Type: application/xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ServerSideEncryption>
<is_encryption_enabled>false</is_encryption_enabled>
<disable_reason>unknown</disable_reason>
</ServerSideEncryption>
Request
GET https://192.168.0.0:4443/feature/ServerSideEncryption HTTP/1.1
Content-Type: application/json
X-SDS-AUTH-TOKEN: <AUTH_TOKEN>
Response
HTTP/1.1 200 OK
Content-Type: application/json
{
"ServerSideEncryption": {
"is_encryption_enabled": false,
"disable_reason": "unknown"
}
}
Request
curl -H $token -H "Content-Type: application/xml" -X GET https://$nodeIp:4443/feature/ServerSideEncryption
Response
HTTP/1.1 200 OK
Content-Type: application/xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ServerSideEncryption>
<is_encryption_enabled>false</is_encryption_enabled>
<disable_reason>unknown</disable_reason>
</ServerSideEncryption>