DescribeBackup
In this article:
DescribeBackup#
Description#
Request to describe a PaaS service backup.
Request Parameters#
backupId — The backup ID.
Type: String
Required: Yes
Response Elements#
backup — The backup description.
Type: Backup object
Examples#
Managing PaaS services in K2 Cloud via API requires a customized version of the boto3 library:
import boto3
session = boto3.Session(
aws_access_key_id="<AWS_ACCESS_KEY_ID>",
aws_secret_access_key="<AWS_SECRET_ACCESS_KEY>",
region_name="",
)
paas_client = session.client(
'paas',
endpoint_url='https://paas.k2.cloud/',
)
paas_client.describe_backup(
backupId='paas-backup-F16D2D6C',
)
Or c2-paas utility from K2 Cloud API Client software suite:
c2-paas DescribeBackup backupId paas-backup-F16D2D6C