DiskMigrationJob
import type { DiskMigrationJob } from "https://googleapis.deno.dev/v1/vmmigration:v1.ts";
Describes the disk which will be migrated from the source environment. The source disk has to be unattached.
interface DiskMigrationJob {
awsSourceDiskDetails?: AwsSourceDiskDetails;
readonly createTime?: Date;
readonly errors?: Status[];
readonly name?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "READY"
| "RUNNING"
| "SUCCEEDED"
| "CANCELLING"
| "CANCELLED"
| "FAILED";
readonly steps?: DiskMigrationStep[];
targetDetails?: DiskMigrationJobTargetDetails;
readonly updateTime?: Date;
}§Properties
§
awsSourceDiskDetails?: AwsSourceDiskDetails
[src]Details of the unattached AWS source disk.
§
readonly state?: "STATE_UNSPECIFIED" | "READY" | "RUNNING" | "SUCCEEDED" | "CANCELLING" | "CANCELLED" | "FAILED"
[src]Output only. State of the DiskMigrationJob.
§
readonly steps?: DiskMigrationStep[]
[src]Output only. The disk migration steps list representing its progress.
§
targetDetails?: DiskMigrationJobTargetDetails
[src]Required. Details of the target Disk in Compute Engine.