Retrieve the status of an image action
import { DigitalOcean } from 'digitalocean-deno';
const client = new DigitalOcean('your-api-key');
const action = await client.imageActions.getExistingImageAction('image-id', 'action-id');
Generated using TypeDoc
Convert an image (a backup for example) to a snapshot
Example
import { DigitalOcean } from 'digitalocean-deno'; const client = new DigitalOcean('your-api-key'); const action = await client.imageActions.convertImageToSnapshot('image-id');