/mgmt/status/default/LicenseStatus GET
Use the HTTP GET method with the
/mgmt/status/default/
resource to request information
about available and enabled features.LicenseStatus
Resource URL
https://host:port/mgmt/status/default/LicenseStatus
Where
port is 5554 by default.Request headers
The following header must be sent with the request:
- Authorization
- This header must be sent to perform authentication.
Request body format
None.
Security requirements
The caller must be authenticated as an appliance user with sufficient authority. For more information about security, see Types of user and how they are authenticated and User authorization, credential mapping, and access profiles.
Response status codes
- 200
- Status information retrieved successfully.
- 400
- Invalid data provided.
- 401
- Not authenticated.
- 403
- Not authorized.
Response headers
- Content-Type
- This header is returned with a value of
application/json
.
Response body format
The response is in JSON format. The response includes information about appliance features. Each
object contains the following fields:
- Feature
- String.
- Enabled
- The enabled status of this feature. Set to Yes, No, or Error.
- Available
- The availability of this feature. A feature is unavailable when the installed firmware image does not include the code to support the feature. Set to Yes or No.
Examples
The following example requests information about appliance features.
The following URL is used with the HTTP GET
method:
https://localhost:5554/mgmt/status/default/LicenseStatus
The following listing shows an example received response:
{
"_links": {
"self": {
"href": "/mgmt/status/default/LicenseStatus"
},
"doc": {
"href": "/mgmt/docs/status/LicenseStatus"
}
},
"LicenseStatus": [
{
"Feature": "DataGlue",
"Enabled": "Yes",
"Available": "Yes"
},
{
"Feature": "RaidVolume",
"Enabled": "Yes",
"Available": "Yes"
},
{
"Feature": "LocateLED",
"Enabled": "Yes",
"Available": "Yes"
},
{
"Feature": "IPMI",
"Enabled": "Yes",
"Available": "Yes"
},
{
"Feature": "RaidVolumeSr",
"Enabled": "Yes",
"Available": "Yes"
},
{
"Feature": "IntrusionDetection",
"Enabled": "Yes",
"Available": "Yes"
},
{
"Feature": "IPMI-LAN",
"Enabled": "Yes",
"Available": "Yes"
},
{
"Feature": "IPv6",
"Enabled": "Yes",
"Available": "Yes"
},
{
"Feature": "RealHardware",
"Enabled": "Yes",
"Available": "Yes"
},
{
"Feature": "RealRaid",
"Enabled": "Yes",
"Available": "Yes"
},
{
"Feature": "Language",
"Enabled": "Yes",
"Available": "Yes"
},
{
"Feature": "IMQA",
"Enabled": "Yes",
"Available": "Yes"
}
]
}