Deleting a disk snapshot schedule
To delete a disk snapshot schedule:
- In the management console
, select the folder containing the schedule. - Go to Compute Cloud.
- In the left-hand panel, select
Snapshots. - Navigate to the Snapshot schedules tab.
- Next to the schedule to delete, click
and select Delete. - Confirm the schedule deletion.
If you do not have the Yandex Cloud CLI yet, install and initialize it.
The folder used by default is the one specified when creating the CLI profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also specify a different folder for any command using --folder-name or --folder-id. If you access a resource by its name, the search will be limited to the default folder. If you access a resource by its ID, the search will be global, i.e., through all folders based on access permissions.
-
See the description of the CLI commands for managing schedules:
yc compute snapshot-schedule --help yc compute snapshot-schedule delete --help -
Get a list of schedules in the default folder:
yc compute snapshot-schedule list --format yamlResult:
- id: fc852cvb1ipd5******** folder_id: e1ea8s8l71li******** created_at: "2022-09-28T13:25:02Z" ... expression: 10 19 ? * * snapshot_count: "7" snapshot_spec: {} -
Delete the selected schedule:
yc compute snapshot-schedule delete <schedule_name_or_ID>Result:
done (5s)
If you do not have Terraform yet, install it and configure the Yandex Cloud provider.
-
Open the Terraform configuration file and delete the section specifying the schedule:
Example of specifying a schedule in Terraform configuration
resource "yandex_compute_snapshot_schedule" "default" { name = "my-name" schedule_policy { expression = "0 0 * * *" } snapshot_count = 1 snapshot_spec { description = "snapshot-description" labels = { snapshot-label = "my-snapshot-label-value" } } disk_ids = ["test_disk_id", "another_test_disk_id"] } -
Apply the changes:
-
In the terminal, navigate to the configuration file directory.
-
Make sure the configuration is correct using this command:
terraform validateIf the configuration is valid, you will get this message:
Success! The configuration is valid. -
Run this command:
terraform planYou will see a list of resources and their properties. No changes will be made at this step. Terraform will show any errors in the configuration.
-
Apply the configuration changes:
terraform apply -
Type
yesand press Enter to confirm the changes.
-
You can check the schedule deletion using the management console
yc compute snapshot-schedule list
- Get a list of schedules using the list REST API method for the SnapshotSchedule resource or the SnapshotScheduleService/List gRPC API call.
- Delete the snapshot schedule using the delete REST API method for the
SnapshotScheduleresource or the SnapshotScheduleService/Delete gRPC API call.
All snapshot creation and deletion operations that started prior to deleting the schedule will be completed.