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

Asset

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

An asset represents a resource in your environment. Asset types include virtual machines and databases.

interface Asset {
readonly assignedGroups?: string[];
attributes?: {
[key: string]: string;
}
;
readonly createTime?: Date;
readonly insightList?: InsightList;
labels?: {
[key: string]: string;
}
;
readonly machineDetails?: MachineDetails;
readonly name?: string;
readonly performanceData?: AssetPerformanceData;
readonly sources?: string[];
readonly updateTime?: Date;
}

§Properties

§
readonly assignedGroups?: string[]
[src]

Output only. The list of groups that the asset is assigned to.

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

Generic asset attributes.

§
readonly createTime?: Date
[src]

Output only. The timestamp when the asset was created.

§
readonly insightList?: InsightList
[src]

Output only. The list of insights associated with the asset.

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

Labels as key value pairs.

§
readonly machineDetails?: MachineDetails
[src]

Output only. Asset information specific for virtual and physical machines.

§
readonly name?: string
[src]

Output only. The full name of the asset.

§
readonly performanceData?: AssetPerformanceData
[src]

Output only. Performance data for the asset.

§
readonly sources?: string[]
[src]

Output only. The list of sources contributing to the asset.

§
readonly updateTime?: Date
[src]

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