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

Inventory

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

This API resource represents the available inventory data for a Compute Engine virtual machine (VM) instance at a given point in time. You can use this API resource to determine the inventory data of your VM. For more information, see Information provided by OS inventory management.

interface Inventory {
items?: {
[key: string]: InventoryItem;
}
;
readonly name?: string;
osInfo?: InventoryOsInfo;
readonly updateTime?: Date;
}

§Properties

§
items?: {
[key: string]: InventoryItem;
}
[src]

Inventory items related to the VM keyed by an opaque unique identifier for each inventory item. The identifier is unique to each distinct and addressable inventory item and will change, when there is a new package version.

§
readonly name?: string
[src]

Output only. The Inventory API resource name. Format: projects/{project_number}/locations/{location}/instances/{instance_id}/inventory

§

Base level operating system information for the VM.

§
readonly updateTime?: Date
[src]

Output only. Timestamp of the last reported inventory for the VM.