action digitalocean_databases_get_migration_status { label: "Retrieve the Status of an Online Migration" description: "To retrieve the status of the most recent online migration, send a GET request to `/v2/databases/$DATABASE_ID/online-migration`. " provider: digitalocean method: GET path: "/v2/databases/{database_cluster_uuid}/online-migration" encoding: json input: { type: "object" properties: { database_cluster_uuid: { type: "string" format: "uuid" } } required: ["database_cluster_uuid"] additionalProperties: false } output: { type: "object" properties: { created_at: { type: "string" description: "The time the migration was initiated, in ISO 8601 format." } id: { type: "string" description: "The ID of the most recent migration." } status: { type: "string" description: "The current status of the migration." enum: ["running", "canceled", "error", "done"] } } } }