Get a specific backup
curl --request GET \
--url http://localhost:3000/api/clusters/{clusterName}/backups/{backupName} \
--cookie token=import requests
url = "http://localhost:3000/api/clusters/{clusterName}/backups/{backupName}"
headers = {"cookie": "token="}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {cookie: 'token='}};
fetch('http://localhost:3000/api/clusters/{clusterName}/backups/{backupName}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "3000",
CURLOPT_URL => "http://localhost:3000/api/clusters/{clusterName}/backups/{backupName}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_COOKIE => "token=",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost:3000/api/clusters/{clusterName}/backups/{backupName}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("cookie", "token=")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost:3000/api/clusters/{clusterName}/backups/{backupName}")
.header("cookie", "token=")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:3000/api/clusters/{clusterName}/backups/{backupName}")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["cookie"] = 'token='
response = http.request(request)
puts response.read_body{
"name": "<string>",
"cluster": "<string>",
"namespace": "<string>",
"status": "pending",
"source": "manual",
"repository": "<string>",
"startTime": "<string>",
"canRestore": true,
"backupPolicyName": "<string>",
"backupMethodName": "datafile",
"type": "snapshot",
"size": "<string>",
"completionTime": "<string>",
"expirationDate": "<string>",
"retentionPeriod": "<string>",
"deletionPolicy": "<string>",
"parentBackupName": "<string>",
"parameters": {},
"restoreNotReadyReason": "<string>"
}{
"error": "<string>",
"statusCode": 123,
"message": "<string>"
}{
"error": "<string>",
"statusCode": 123,
"message": "<string>"
}Backups
Get a specific backup
GET
/
api
/
clusters
/
{clusterName}
/
backups
/
{backupName}
Get a specific backup
curl --request GET \
--url http://localhost:3000/api/clusters/{clusterName}/backups/{backupName} \
--cookie token=import requests
url = "http://localhost:3000/api/clusters/{clusterName}/backups/{backupName}"
headers = {"cookie": "token="}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {cookie: 'token='}};
fetch('http://localhost:3000/api/clusters/{clusterName}/backups/{backupName}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "3000",
CURLOPT_URL => "http://localhost:3000/api/clusters/{clusterName}/backups/{backupName}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_COOKIE => "token=",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost:3000/api/clusters/{clusterName}/backups/{backupName}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("cookie", "token=")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost:3000/api/clusters/{clusterName}/backups/{backupName}")
.header("cookie", "token=")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:3000/api/clusters/{clusterName}/backups/{backupName}")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["cookie"] = 'token='
response = http.request(request)
puts response.read_body{
"name": "<string>",
"cluster": "<string>",
"namespace": "<string>",
"status": "pending",
"source": "manual",
"repository": "<string>",
"startTime": "<string>",
"canRestore": true,
"backupPolicyName": "<string>",
"backupMethodName": "datafile",
"type": "snapshot",
"size": "<string>",
"completionTime": "<string>",
"expirationDate": "<string>",
"retentionPeriod": "<string>",
"deletionPolicy": "<string>",
"parentBackupName": "<string>",
"parameters": {},
"restoreNotReadyReason": "<string>"
}{
"error": "<string>",
"statusCode": 123,
"message": "<string>"
}{
"error": "<string>",
"statusCode": 123,
"message": "<string>"
}Authorizations
JWT token stored in HTTP-only cookie
Path Parameters
Query Parameters
Response
Default Response
status
Option 1 · enum<string>Option 2 · enum<string>Option 3 · enum<string>Option 4 · enum<string>
required
Available options:
pending Available options:
manual Available options:
datafile Available options:
snapshot Show child attributes
Show child attributes
⌘I