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

BackgroundJobLogEntry

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

Execution log of a background job.

interface BackgroundJobLogEntry {
readonly applyJobDetails?: ApplyJobDetails;
readonly completionComment?: string;
readonly completionState?: "JOB_COMPLETION_STATE_UNSPECIFIED" | "SUCCEEDED" | "FAILED";
readonly convertJobDetails?: ConvertJobDetails;
finishTime?: Date;
id?: string;
readonly importRulesJobDetails?: ImportRulesJobDetails;
jobType?:
| "BACKGROUND_JOB_TYPE_UNSPECIFIED"
| "BACKGROUND_JOB_TYPE_SOURCE_SEED"
| "BACKGROUND_JOB_TYPE_CONVERT"
| "BACKGROUND_JOB_TYPE_APPLY_DESTINATION"
| "BACKGROUND_JOB_TYPE_IMPORT_RULES_FILE";
readonly requestAutocommit?: boolean;
readonly seedJobDetails?: SeedJobDetails;
startTime?: Date;
}

§Properties

§
readonly applyJobDetails?: ApplyJobDetails
[src]

Output only. Apply job details.

§
readonly completionComment?: string
[src]

Output only. Job completion comment, such as how many entities were seeded, how many warnings were found during conversion, and similar information.

§
readonly completionState?: "JOB_COMPLETION_STATE_UNSPECIFIED" | "SUCCEEDED" | "FAILED"
[src]

Output only. Job completion state, i.e. the final state after the job completed.

§
readonly convertJobDetails?: ConvertJobDetails
[src]

Output only. Convert job details.

§
finishTime?: Date
[src]

The timestamp when the background job was finished.

§
id?: string
[src]

The background job log entry ID.

§
readonly importRulesJobDetails?: ImportRulesJobDetails
[src]

Output only. Import rules job details.

§
jobType?: "BACKGROUND_JOB_TYPE_UNSPECIFIED" | "BACKGROUND_JOB_TYPE_SOURCE_SEED" | "BACKGROUND_JOB_TYPE_CONVERT" | "BACKGROUND_JOB_TYPE_APPLY_DESTINATION" | "BACKGROUND_JOB_TYPE_IMPORT_RULES_FILE"
[src]

The type of job that was executed.

§
readonly requestAutocommit?: boolean
[src]

Output only. Whether the client requested the conversion workspace to be committed after a successful completion of the job.

§
readonly seedJobDetails?: SeedJobDetails
[src]

Output only. Seed job details.

§
startTime?: Date
[src]

The timestamp when the background job was started.