POST /backup_and_restore/restores/{id}
Updates an existing restore by ID.
Important: All services stop until the restore is completed.
MIME Type |
---|
application/json |
Parameter | Type | Optionality | Data Type | MIME Type | Description |
---|---|---|---|---|---|
id |
path |
Required |
Number (Integer) |
text/plain |
null |
fields |
header |
Optional |
String |
text/plain |
Optional - Use this parameter to specify which fields you would like to get back in the response. Fields that are not named are excluded. Specify subfields in brackets and multiple fields in the same object are separated by commas. |
Parameter | Data Type | MIME Type | Description | Sample |
---|---|---|---|---|
restore |
Object |
application/json |
Required. A single restore object has the following modifiable fields:
|
{ "status": "SUCCESS" } |
HTTP Response Code | Unique Code | Description |
---|---|---|
200 |
The restore was updated. |
|
404 |
1001 |
The restore does not exist. |
409 |
1014 |
Rebalancing is currently in progress. No restore process can be initiated. |
409 |
1015 |
A backup is currently in progress. No new backup or restore processes can be initiated while the current process is running. |
409 |
1016 |
A restore is currently in progress. No new backup or restore processes can be initiated while the current process is running. |
422 |
1012 |
Only restores that are in the PENDING state are updated. |
422 |
1013 |
The 'status' parameter value can only be updated to REQUESTING. |
422 |
1030 |
The restore_site_host_id must have a qflow component. |
422 |
1031 |
The restore_site_host_id must be a valid host ID. |
422 |
1032 |
The restore_site_event_collector_id is not an event collector component. |
422 |
1033 |
The restore_site_event_collector_id does not exist. |
422 |
1034 |
null |
422 |
1035 |
null |
422 |
1036 |
null |
422 |
1037 |
null |
500 |
1000 |
An error occurred during the attempt to update the restore. |
Response Description
- id - Long - The ID of the restore.
- initiated_by - String - The user or authorized service that initiated the restore.
- host_id - Long - The host that was restored. For more information, see the following Hosts API:
- api/config/deployment/hosts
- time_initiated - Long - The number of milliseconds since epoch when the restore was started.
- time_completed - Long - The number of milliseconds since epoch when the restore completed.
- status - Enumeration - The status of the restore. The following values are available: PENDING, REQUESTING, INITIALIZING, IN_PROGRESS, FAILED, SUCCESS.
- PENDING: This is the initial state of the restore once it is created. From this state the restore can be updated to the REQUESTING state.
- REQUESTING: After the status is set to REQUESTING, a restore request is sent to the Backup and Restore Engine to initialize it as a new restore.
- INITIALIZING: After the restore request is received by the Backup and Restore Engine it will update the status to INITIALIZING.
- IN_PROGRESS: After the restore process begins the status will be updated to IN_PROGRESS.
- FAILED: If the restore has completed with errors the status will be updated to FAILED.
- SUCCESS: If the restore has completed without errors the status will be updated to SUCCESS.
- is_cross_deployment_restore - Boolean - If the associated backup is being restored on a different Console with a set of new managed hosts, the condition is set to 'true'; otherwise, the condition is set to 'false'.
- backup_id - Long - The ID of the backup associated with the restore. Once the restore completes this value will be updated to null.
- backup_name - String - The name of the backup that was restored.
- backup_version - String - The QRadar version that corresponds to the backup that was restored.
- backup_type - Enumeration - The backup type that was restored. This value will always be CONFIG.
- backup_filename - String - The filename of the backup that was restored.
- groups - Array of Enumeration - The set of groups that are included with the restore. These groups contain a subset of the following values: CUSTOM_RULES_CONFIG, DEPLOYMENT_CONFIG, USERS_CONFIG, LICENSE_CONFIG, QVM_CONFIG, INSTALLED_APPS_CONFIG, REPORT_TEMPLATES, ASSETS_DATA, OFFENSES_DATA.
- CUSTOM_RULES_CONFIG: Restores custom rules, reference sets, reference data, and saved searches. If you have rules that depend on items other than reference data and saved searches, you need to use DEPLOYMENT_CONFIG in addition to CUSTOM_RULES_CONFIG for rules to be fully functional.
- DEPLOYMENT_CONFIG: Restores the deployment model and administrator controlled settings and content. This group includes, but is not limited to the following content: domains, log sources, flow sources, system settings, and forwarding rules.
- USERS_CONFIG: Restores users, authorized services, user roles, security profiles, and dashboards.
- LICENSE_CONFIG: NEEDS DESCRIPTION
- QVM_CONFIG: NEEDS DESCRIPTION
- INSTALLED_APPS_CONFIG: Restores installed applications.
- REPORT_TEMPLATES: Restores report templates.
- ASSETS_DATA: Restores the asset model.
- OFFENSES_DATA: Restores offenses. All offenses will be restored as closed.
Response Sample
{
"backup_filename": "String",
"backup_id": 42,
"backup_name": "String",
"backup_type": "String",
"backup_version": "String",
"groups": [
"String"
],
"host_id": 42,
"id": 42,
"initiated_by": "String",
"is_cross_deployment_restore": true,
"status": "String",
"time_completed": 42,
"time_initiated": 42
}