Get Fips Status
Returns the FIPS mode of a single appliance and its Cloud Director cell
Request
URI
GET
https://{api_host}/api/1.0.0/fips/{node-name}
COPY
Path Parameters
string
node-name
Required
Node name of the machine to retreive the FIPS of.
Responses
200
OK
Returns
FipsStatus
of type(s)
application/json
{
"name": "string",
"ip": "string",
"applianceFips": "string",
"cellFips": "string"
}
string
name
Optional
Node name of the appliance.
string
ip
Optional
eth0 IP of the appliance.
string
applianceFips
Optional
FIPS mode of the appliance's operating system. Possible values are:
- ON
- OFF
string
cellFips
Optional
FIPS mode of the appliance's Cloud Director server. Possible values are:
- ON
- ON_PENDING_RESTART
- OFF
- OFF_PENDING_RESTART
- UNKNOWN
Code Samples
COPY
curl -H 'Authorization: <value>' https://{api_host}/api/1.0.0/fips/{node-name}