GET backups

Returns a list of all backups created for vbr configuration (*.ini) files that reside in /opt/vertica/config and provides details about each backup.

Resource URL

https://<NODE>:5444/backups

Authentication

Requires a VerticaAPIKey in the request header.

The API key must have restricted level security or higher.

Parameters

None.

Example Request

GET
https://<NODE>:5444/backups

Response:

[
    {
        "backups": [
            {
                "backup": "backup3_20140707_114852",
                "epoch": "61",
                "hosts": "v_vmart_node0001(10.20.100.247)",
                "objects": ""
            }
        ],
        "config_file": "/opt/vertica/config/backup3.ini",
        "num_backups": 1
    },
    {
        "backups": [
            {
                "backup": "backup_20140707_113737",
                "epoch": "61",
                "hosts": "v_vmart_node0001(10.20.100.247)",
                "objects": ""
            },
            {
                "backup": "backup_archive20140707_113645",
                "epoch": "60",
                "hosts": "v_vmart_node0001(10.20.100.247)",
                "objects": ""
            }
        ],
        "config_file": "/opt/vertica/config/backup.ini",
        "num_backups": 2
    }
]