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

ImportJob

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

A resource that represents the background job that imports asset frames.

interface ImportJob {
assetSource?: string;
readonly completeTime?: Date;
readonly createTime?: Date;
displayName?: string;
readonly executionReport?: ExecutionReport;
labels?: {
[key: string]: string;
}
;
readonly name?: string;
readonly state?:
| "IMPORT_JOB_STATE_UNSPECIFIED"
| "IMPORT_JOB_STATE_PENDING"
| "IMPORT_JOB_STATE_RUNNING"
| "IMPORT_JOB_STATE_COMPLETED"
| "IMPORT_JOB_STATE_FAILED"
| "IMPORT_JOB_STATE_VALIDATING"
| "IMPORT_JOB_STATE_FAILED_VALIDATION"
| "IMPORT_JOB_STATE_READY";
readonly updateTime?: Date;
readonly validationReport?: ValidationReport;
}

§Properties

§
assetSource?: string
[src]

Required. Reference to a source.

§
readonly completeTime?: Date
[src]

Output only. The timestamp when the import job was completed.

§
readonly createTime?: Date
[src]

Output only. The timestamp when the import job was created.

§
displayName?: string
[src]

Optional. User-friendly display name. Maximum length is 256 characters.

§
readonly executionReport?: ExecutionReport
[src]

Output only. The report with the results of running the import job.

§
labels?: {
[key: string]: string;
}
[src]

Labels as key value pairs.

§
readonly name?: string
[src]

Output only. The full name of the import job.

§
readonly state?: "IMPORT_JOB_STATE_UNSPECIFIED" | "IMPORT_JOB_STATE_PENDING" | "IMPORT_JOB_STATE_RUNNING" | "IMPORT_JOB_STATE_COMPLETED" | "IMPORT_JOB_STATE_FAILED" | "IMPORT_JOB_STATE_VALIDATING" | "IMPORT_JOB_STATE_FAILED_VALIDATION" | "IMPORT_JOB_STATE_READY"
[src]

Output only. The state of the import job.

§
readonly updateTime?: Date
[src]

Output only. The timestamp when the import job was last updated.

§
readonly validationReport?: ValidationReport
[src]

Output only. The report with the validation results of the import job.