Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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[];
readonly updateTime?: Date;
}

§Properties

§
awsSourceDiskDetails?: AwsSourceDiskDetails
[src]

Details of the unattached AWS source disk.

§
readonly createTime?: Date
[src]

Output only. The time the DiskMigrationJob resource was created.

§
readonly errors?: Status[]
[src]

Output only. Provides details on the errors that led to the disk migration job's state in case of an error.

§
readonly name?: string
[src]

Output only. Identifier. The identifier of the DiskMigrationJob.

§
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.

§

Required. Details of the target Disk in Compute Engine.

§
readonly updateTime?: Date
[src]

Output only. The last time the DiskMigrationJob resource was updated.