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

Source

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

Source represents an object from which asset information is streamed to Migration Center.

interface Source {
readonly createTime?: Date;
description?: string;
displayName?: string;
readonly errorFrameCount?: number;
managed?: boolean;
readonly name?: string;
readonly pendingFrameCount?: number;
priority?: number;
readonly state?:
| "STATE_UNSPECIFIED"
| "ACTIVE"
| "DELETING"
| "INVALID";
type?:
| "SOURCE_TYPE_UNKNOWN"
| "SOURCE_TYPE_UPLOAD"
| "SOURCE_TYPE_GUEST_OS_SCAN"
| "SOURCE_TYPE_INVENTORY_SCAN"
| "SOURCE_TYPE_CUSTOM"
| "SOURCE_TYPE_DISCOVERY_CLIENT";
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. The timestamp when the source was created.

§
description?: string
[src]

Free-text description.

§
displayName?: string
[src]

User-friendly display name.

§
readonly errorFrameCount?: number
[src]

Output only. The number of frames that were reported by the source and contained errors.

§
managed?: boolean
[src]

If true, the source is managed by other service(s).

§
readonly name?: string
[src]

Output only. The full name of the source.

§
readonly pendingFrameCount?: number
[src]

Output only. Number of frames that are still being processed.

§
priority?: number
[src]

The information confidence of the source. The higher the value, the higher the confidence.

§
readonly state?: "STATE_UNSPECIFIED" | "ACTIVE" | "DELETING" | "INVALID"
[src]

Output only. The state of the source.

§
type?: "SOURCE_TYPE_UNKNOWN" | "SOURCE_TYPE_UPLOAD" | "SOURCE_TYPE_GUEST_OS_SCAN" | "SOURCE_TYPE_INVENTORY_SCAN" | "SOURCE_TYPE_CUSTOM" | "SOURCE_TYPE_DISCOVERY_CLIENT"
[src]

Data source type.

§
readonly updateTime?: Date
[src]

Output only. The timestamp when the source was last updated.