GET /profiles/status
Use this method to return information about the server-profile status for specific server.
Authentication
Authentication with username and password is required.
Request URL
GET https://{management_server_IP}/profiles/status
Query parameters
Parameters | Required / Optional | Description |
---|---|---|
uuids={uuid_list} | Required | List of server UUIDs, separated by a comma |
The following example retrieves the profile status for two servers.
GET https://192.0.2.0/profiles/status
?uids=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA,BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
Request body
None
Response codes
Code | Description | Comments |
---|---|---|
200 | OK | The request completed successfully. |
400 | Bad Request | A query parameter or request attribute is missing or not valid, or the operation is not supported. A descriptive error message is returned in the response body. |
401 | Unauthorized | The user cannot be authenticated. Authentication has not been provided or has failed. A descriptive error message is returned in the response body. |
403 | Forbidden | The orchestrator server was prevented from fulfilling the request. A descriptive error message is returned in the response body. Ensure that you have privileges to perform the request. For XClarity Administrator advanced functions, ensure that you have active licenses for each managed server that supports the advanced functions. |
404 | Not found | A specified resource cannot be found. A descriptive error message is returned in the response body. |
500 | Internal Server Error | An internal error occurred. A descriptive error message is returned in the response body. |
Response body
Attributes | Type | Description | ||
---|---|---|---|---|
identifier | String | Always set to uuid | ||
items | Array of objects | Configuration status for each server | ||
activationStatus | String | Activation status. This can be one of the following values.
| ||
complianceStatus | String | Compliance status. This can be one of the following values.
| ||
configStatus | String | Configuration status. This can be one of the following values.
| ||
serverName | String | Server name | ||
serverProfileId | String | ID of the server profile that is associated with this server | ||
serverProfileName | String | Name of the server profile that is associated with this server | ||
serverTemplateId | String | ID of the server pattern that was used to create the server profile that is associated with this server | ||
serverTemplateName | String | Name of the server pattern that was used to create the server profile that is associated with this server | ||
uuid | String | Server UUID | ||
virtualAddressStatus | String | Virtual address status. This can be one of the following values.
| ||
label | String | Always set to Server Status |
The following example is returned if the request is successful.
{
"identifier": "uuid",
"items": [{
"activationStatus": "COMPLETED",
"complianceStatus": "VALID ",
"configStatus": "PROFILE_ACTIVATED",
"serverName": "ch02n12-imm",
"serverProfileId": "69",
"serverProfileName": "Flex Virtual Fabric Pattern-profile1",
"serverTemplateId": "68",
"serverTemplateName": "Flex Virtual Fabric Pattern",
"uuid": "BA298CD7BC5311E69A000090FAF46898",
"virtualAddressStatus": "APPLIED"
}]
"label": "Server Status",
}
Give documentation feedback