e04ed9c211
CF: Deploy Dev Docs / deploy (push) Waiting to run
Sync Labels / build (push) Waiting to run
tests / unit tests (macos-latest) (push) Waiting to run
tests / unit tests (ubuntu-latest) (push) Waiting to run
tests / unit tests (windows-latest) (push) Waiting to run
2.4 KiB
2.4 KiB
title, type, weight, description
| title | type | weight | description |
|---|---|---|---|
| cloud-sql-restore-backup | docs | 10 | Restores a backup of a Cloud SQL instance. |
About
The cloud-sql-restore-backup tool restores a backup on a Cloud SQL instance using the Cloud SQL Admin API.
Compatible Sources
{{< compatible-sources >}}
Parameters
| parameter | type | required | description |
|---|---|---|---|
| target_project | string | true | The project ID of the instance to restore the backup onto. |
| target_instance | string | true | The instance to restore the backup onto. Does not include the project ID. |
| backup_id | string | true | The identifier of the backup being restored. |
| source_project | string | false | (Optional) The project ID of the instance that the backup belongs to. |
| source_instance | string | false | (Optional) Cloud SQL instance ID of the instance that the backup belongs to. |
Example
Basic backup restore
kind: tool
name: backup-restore-basic
type: cloud-sql-restore-backup
source: cloud-sql-admin-source
description: "Restores a backup onto the given Cloud SQL instance."
Reference
| field | type | required | description |
|---|---|---|---|
| type | string | true | Must be "cloud-sql-restore-backup". |
| source | string | true | The name of the cloud-sql-admin source to use. |
| description | string | false | A description of the tool. |
Advanced Usage
- The
backup_idfield can be a BackupRun ID (which will be an int64), backup name, or BackupDR backup name. - If the
backup_idfield contains a BackupRun ID (i.e. an int64), the optional fieldssource_projectandsource_instancemust also be provided.