GET /api/v1/boarding/discoverySettings
Use this method to return the discovery settings.
Authentication
Authentication with username and password is required.
Resource URI
GET https://{orchestrator_server_IP}/api/v1/boarding/discoverySettings
Query parameters
None
Request body
None
Response codes
| Code | Description | Comments |
|---|---|---|
| 200 | OK | The request completed successfully. |
| 500 | Internal Server Error | An internal error occurred. A descriptive error message is returned in the response body. |
Response body
When the request is successful, the following attributes are returned. If the request fails, standard message attributes are returned (see Status messages).
| Attributes | Type | Description | ||
|---|---|---|---|---|
| autoDiscoveryEnabled | Boolean | Indicates whether you can automatically discover baseboard management controllers using the SLP discovery method. This can be one of the following values.
| ||
| encapsulationEnabled | Boolean | Indicates whether encapsulation is enabled during device management. This can be one of the following values.
| ||
| offlineDevicesCleanup | Boolean | Indicates whether Lenovo XClarity Orchestrator automatically unmanages devices that are offline for a specific amount of time. This can be one of the following values.
| ||
| offlineDevicesTimeout | Boolean | Amount of time, in hours, that devices must be offline before they are automatically unmanaged This value can be from 1 – 24 hours. The default is 24 hours. | ||
| registerRequestEnabled | Boolean | Indicates whether Lenovo XClarity Administrator resource managers accept discovery requests from a baseboard management controller when the management controller uses DNS to find Lenovo XClarity Administrator instances.
| ||
| _links | Object | Resource URI (see Links) | ||
{
"autoDiscoveryEnabled": true,
"offlineDevicesCleanup": true,
"offlineDevicesTimeout": 24,
"encapsulationEnabled": true,
"registerRequestEnabled": true,
"_links": {
"rel": "self",
"uri": "/api/v1/boarding/discoverySettings"
}
}