Viewing the List of All Backups (1.0.0)

Function

This API is used to query the list of all backups.

URI

  • URI format
    GET /v1.0/{project_id}/graphs/backups?offset={offset}&limit={limit}
  • Parameter description
    Table 1 URI parameter description

    Parameter

    Mandatory

    Type

    Description

    project_id

    Yes

    String

    Project ID, which is used for resource isolation. For details, see Obtaining a Project ID.

    offset

    No

    Integer

    Start position of the request. The default value is 0.

    limit

    No

    Integer

    Maximum number of resources displayed on a single page. The default value is 10.

Request

  • Request example
    GET https://Endpoint/v1.0/{project_id}/graphs/backups?offset=0&limit=2

Response

  • Parameter description
    Table 2 Parameter description

    Parameter

    Mandatory

    Type

    Description

    errorMessage

    No

    String

    System prompt. If execution succeeds, this parameter may be left blank. If execution fails, this parameter is used to display the error message.

    errorCode

    No

    String

    System prompt. If execution succeeds, this parameter may be left blank. If execution fails, this parameter is used to display the error code.

    backupCount

    No

    Integer

    Total number of backups. This parameter is left blank when the request fails.

    backupList

    No

    GesBackUp set

    List of all backups under the current project ID. This parameter is left blank when the request fails.

Table 3 GesBackUp data structure

Parameter

Mandatory

Type

Description

id

Yes

String

Backup ID

name

Yes

String

Backup name

backupMethod

Yes

String

Backup method. The value can be auto or manual.

graphId

Yes

String

ID of the graph associated with the backup

graphName

Yes

String

Name of the graph associated with the backup

graphStatus

Yes

String

Status of the graph associated with the backup

graphSizeTypeIndex

Yes

String

Size of the graph associated with the backup

dataStoreVersion

Yes

String

Version of the graph associated with the backup

arch

Yes

String

CPU architecture of the graph node associated with the backup

status

Yes

String

Backup status:

  • backing_up: indicates that a graph is being backed up.
  • success: indicates that a graph is successfully backed up.
  • failed: indicates that a graph fails to be backed up.

startTimestamp

Yes

String

Start timestamp of a backup job

startTime

Yes

String

Backup start time

endTimestamp

Yes

String

End timestamp of a backup job

endTime

Yes

String

Backup end time

size

Yes

Long

Backup file size (MB)

duration

Yes

Long

Backup duration (seconds)

  • Response example (successful request)
    Http Status Code: 200
    {
        "backupCount": 3,
        "backupList": [
            {
                "id": "ada3e720-ab87-48cb-bff7-3ec5ae1a9652",
                "name": "ges060803_nodelete-20210608135513",
                "backupMethod": "manual",
                "graphId": "4c5f882d-a813-4d78-a8e3-6d3212ddd121",
                "graphName": "ges060803_nodelete",
                "graphStatus": "200",
                "graphSizeTypeIndex": "1",
                "dataStoreVersion": "2.2.21"
                "arch": "x86_64",
                "status": "success",
                "startTimestamp": 1623160513000,
                "startTime": "2021-06-08T13:55:13",
                "endTimestamp": 1623160568000,
                "endTime": "2021-06-08T13:56:08",
                "size": 1,
                "duration": 54
            },
            {
                "id": "7ed3f51d-816d-4651-9129-fe21b64b5c91",
                "name": "ges060803_nodelete_20210609203323_auto",
                "backupMethod": "auto",
                "graphId": "4c5f882d-a813-4d78-a8e3-6d3212ddd121",
                "graphName": "ges060803_nodelete",
                "graphStatus": "200",
                "graphSizeTypeIndex": "1",
                "dataStoreVersion": "2.2.21"
                "arch": "x86_64",
                "status": "success",
                "startTimestamp": 1623242004000,
                "startTime": "2021-06-09T12:33:24",
                "endTimestamp": 1623242004000,
                "endTime": "2021-06-09T12:33:24",
                "size": 1,
                "duration": 0
            },
            {
                "id": "604bfb46-04dd-45fc-a9ae-df24a0705b9d",
                "name": "ges060802_nodelete-20210608135523",
                "backupMethod": "manual",
                "graphId": "9b9a05c2-0cdb-41ac-b55f-93caffb0519a",
                "graphName": "ges060802_nodelete",
                "graphStatus": "400",
                "graphSizeTypeIndex": "0",
                "dataStoreVersion": "2.2.23"
                "arch": "x86_64",
                "status": "success",
                "startTimestamp": 1623160524000,
                "startTime": "2021-06-08T13:55:24",
                "endTimestamp": 1623160577000,
                "endTime": "2021-06-08T13:56:17",
                "size": 1,
                "duration": 53
            }
        ]
    }
  • Response example (failed request)
     Http Status: 400
    {
       "errorCode": "GES.7006",
       "errorMessage": "The underlying graph engine has internal error."
    }

Return Value

  • Normal

    200

  • Abnormal
    Table 4 Return code for failed requests

    Return Value

    Description

    400 Bad Request

    Request error.

    401 Unauthorized

    Authentication failed.

    403 Forbidden

    No operation permission.

    404 Not Found

    The requested resource was not found.

    500 Internal Server Error

    Internal service error.

    503 Service Unavailable

    Service unavailable.