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

InventoryItem

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

A single piece of inventory on a VM.

interface InventoryItem {
availablePackage?: InventorySoftwarePackage;
createTime?: Date;
id?: string;
installedPackage?: InventorySoftwarePackage;
originType?: "ORIGIN_TYPE_UNSPECIFIED" | "INVENTORY_REPORT";
type?: "TYPE_UNSPECIFIED" | "INSTALLED_PACKAGE" | "AVAILABLE_PACKAGE";
updateTime?: Date;
}

§Properties

§

Software package available to be installed on the VM instance.

§
createTime?: Date
[src]

When this inventory item was first detected.

§
id?: string
[src]

Identifier for this item, unique across items for this VM.

§

Software package present on the VM instance.

§
originType?: "ORIGIN_TYPE_UNSPECIFIED" | "INVENTORY_REPORT"
[src]

The origin of this inventory item.

§
type?: "TYPE_UNSPECIFIED" | "INSTALLED_PACKAGE" | "AVAILABLE_PACKAGE"
[src]

The specific type of inventory, correlating to its specific details.

§
updateTime?: Date
[src]

When this inventory item was last modified.