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

ImageImportJob

import type { ImageImportJob } from "https://googleapis.deno.dev/v1/vmmigration:v1.ts";

ImageImportJob describes the progress and result of an image import.

interface ImageImportJob {
readonly cloudStorageUri?: string;
readonly createdResources?: string[];
readonly createTime?: Date;
readonly diskImageTargetDetails?: DiskImageTargetDetails;
readonly endTime?: Date;
readonly errors?: Status[];
readonly name?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "PENDING"
| "RUNNING"
| "SUCCEEDED"
| "FAILED"
| "CANCELLING"
| "CANCELLED";
readonly steps?: ImageImportStep[];
readonly warnings?: MigrationWarning[];
}

§Properties

§
readonly cloudStorageUri?: string
[src]

Output only. The path to the Cloud Storage file from which the image should be imported.

§
readonly createdResources?: string[]
[src]

Output only. The resource paths of the resources created by the image import job.

§
readonly createTime?: Date
[src]

Output only. The time the image import was created (as an API call, not when it was actually created in the target).

§
readonly diskImageTargetDetails?: DiskImageTargetDetails
[src]

Output only. Target details used to import a disk image.

§
readonly endTime?: Date
[src]

Output only. The time the image import was ended.

§
readonly errors?: Status[]
[src]

Output only. Provides details on the error that led to the image import state in case of an error.

§
readonly name?: string
[src]

Output only. The resource path of the ImageImportJob.

§
readonly state?: "STATE_UNSPECIFIED" | "PENDING" | "RUNNING" | "SUCCEEDED" | "FAILED" | "CANCELLING" | "CANCELLED"
[src]

Output only. The state of the image import.

§
readonly steps?: ImageImportStep[]
[src]

Output only. The image import steps list representing its progress.

§
readonly warnings?: MigrationWarning[]
[src]

Output only. Warnings that occurred during the image import.