1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-16 12:22:03 +00:00
gcloud-help/gcloud/alpha/firestore/backups/schedules/delete

53 lines
1.8 KiB
Text
Raw Normal View History

2023-09-07 10:42:28 +00:00
NAME
gcloud alpha firestore backups schedules delete - deletes a Cloud Firestore
backup schedule
SYNOPSIS
gcloud alpha firestore backups schedules delete
--backup-schedule=BACKUP_SCHEDULE --database=DATABASE
[GCLOUD_WIDE_FLAG ...]
EXAMPLES
To delete backup schedule 'cf9f748a-7980-4703-b1a1-d1ffff591db0' under
database testdb.
$ gcloud alpha firestore backups schedules delete \
--database='testdb' \
--backup-schedule='cf9f748a-7980-4703-b1a1-d1ffff591db0'
REQUIRED FLAGS
--backup-schedule=BACKUP_SCHEDULE
The backup schedule to operate on.
For example, to operate on backup schedule
091a49a0-223f-4c98-8c69-a284abbdb26b:
$ gcloud alpha firestore backups schedules delete \
--backup-schedule='091a49a0-223f-4c98-8c69-a284abbdb26b'
--database=DATABASE
2024-01-10 10:17:49 +00:00
The database to operate on.
2023-09-07 10:42:28 +00:00
For example, to operate on database foo:
$ gcloud alpha firestore backups schedules delete --database='foo'
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,
--help, --impersonate-service-account, --log-http, --project, --quiet,
--trace-token, --user-output-enabled, --verbosity.
Run $ gcloud help for details.
NOTES
This command is currently in alpha and might change without notice. If this
command fails with API permission errors despite specifying the correct
project, you might be trying to access an API with an invitation-only early
2024-05-30 09:26:18 +00:00
access allowlist. These variants are also available:
$ gcloud firestore backups schedules delete
$ gcloud beta firestore backups schedules delete
2023-09-07 10:42:28 +00:00