create_from_url
Create Vultr snapshots from URL sources to backup or migrate cloud infrastructure. Provide a valid snapshot URL and optional description to generate new snapshots.
Instructions
Create a snapshot from a URL.
Args: url: The URL of the snapshot to create (must be a valid snapshot URL) description: Description for the snapshot (optional)
Returns: Created snapshot information
Note: The URL must point to a valid Vultr snapshot file.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| description | No | ||
| url | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "description": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Description"
    },
    "url": {
      "title": "Url",
      "type": "string"
    }
  },
  "required": [
    "url"
  ],
  "type": "object"
}