View source: R/droplet-actions.R
droplet_snapshot | R Documentation |
Take a snapshot of the droplet once it has been powered off, which can later be restored or used to create a new droplet from the same image.
List available snapshots
List available snapshots
Restore a droplet with a previous image or snapshot. This will be a mirror copy of the image or snapshot to your droplet. Be sure you have backed up any necessary information prior to restore.
droplet_snapshot(droplet, name = NULL, wait = TRUE, ...)
droplet_snapshots_list(droplet, ...)
droplet_restore(droplet, image, ...)
droplet_backups_list(droplet, ...)
droplet |
A droplet number or the result from a call to
|
name |
(character) Optional. Name of the new snapshot you want to create. If not set, the snapshot name will default to the current date/time |
wait |
If |
... |
Additional options passed down to |
image |
(optional) The image ID of the backup image that you would like to restore. |
## Not run:
d <- droplet_create()
d %>% droplet_snapshots_list()
d %>% droplet_backups_list()
d %>%
droplet_snapshot() %>%
droplet_power_on() %>%
droplet_snapshots_list()
# To delete safely
d %>%
droplet_snapshot() %>%
droplet_delete() %>%
action_wait()
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.