- Resource: Inventory
- OsInfo
- Item
- OriginType
- Type
- SoftwarePackage
- VersionedPackage
- ZypperPatch
- WindowsUpdatePackage
- WindowsUpdateCategory
- WindowsQuickFixEngineeringPackage
- WindowsApplication
- Methods
Resource: Inventory
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.
JSON representation |
---|
{ "name": string, "osInfo": { object ( |
Fields | |
---|---|
name |
Output only. The Format: |
os |
Output only. Base level operating system information for the VM. |
items |
Output only. 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. An object containing a list of |
update |
Output only. Timestamp of the last reported inventory for the VM. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
OsInfo
Operating system information for the VM.
JSON representation |
---|
{ "hostname": string, "longName": string, "shortName": string, "version": string, "architecture": string, "kernelVersion": string, "kernelRelease": string, "osconfigAgentVersion": string } |
Fields | |
---|---|
hostname |
The VM hostname. |
long |
The operating system long name. For example 'Debian GNU/Linux 9' or 'Microsoft Window Server 2019 Datacenter'. |
short |
The operating system short name. For example, 'windows' or 'debian'. |
version |
The version of the operating system. |
architecture |
The system architecture of the operating system. |
kernel |
The kernel version of the operating system. |
kernel |
The kernel release of the operating system. |
osconfig |
The current version of the OS Config agent running on the VM. |
Item
A single piece of inventory on a VM.
JSON representation |
---|
{ "id": string, "originType": enum ( |
Fields | |
---|---|
id |
Identifier for this item, unique across items for this VM. |
origin |
The origin of this inventory item. |
create |
When this inventory item was first detected. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
update |
When this inventory item was last modified. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
type |
The specific type of inventory, correlating to its specific details. |
Union field details . Specific details of this inventory item based on its type. details can be only one of the following: |
|
installed |
Software package present on the VM instance. |
available |
Software package available to be installed on the VM instance. |
OriginType
The origin of a specific inventory item.
Enums | |
---|---|
ORIGIN_TYPE_UNSPECIFIED |
Invalid. An origin type must be specified. |
INVENTORY_REPORT |
This inventory item was discovered as the result of the agent reporting inventory via the reporting API. |
Type
The different types of inventory that are tracked on a VM.
Enums | |
---|---|
TYPE_UNSPECIFIED |
Invalid. A type must be specified. |
INSTALLED_PACKAGE |
This represents a package that is installed on the VM. |
AVAILABLE_PACKAGE |
This represents an update that is available for a package. |
SoftwarePackage
Software package information of the operating system.
JSON representation |
---|
{ // Union field |
Fields | |
---|---|
Union field details . Information about the different types of software packages. details can be only one of the following: |
|
yum |
Yum package info. For details about the yum package manager, see https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/6/html/deployment_guide/ch-yum. |
apt |
Details of an APT package. For details about the apt package manager, see https://wiki.debian.org/Apt. |
zypper |
Details of a Zypper package. For details about the Zypper package manager, see https://en.opensuse.org/SDB:Zypper_manual. |
googet |
Details of a Googet package. For details about the googet package manager, see https://github.com/google/googet. |
zypper |
Details of a Zypper patch. For details about the Zypper package manager, see https://en.opensuse.org/SDB:Zypper_manual. |
wua |
Details of a Windows Update package. See https://docs.microsoft.com/en-us/windows/win32/api/_wua/ for information about Windows Update. |
qfe |
Details of a Windows Quick Fix engineering package. See https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/win32-quickfixengineering for info in Windows Quick Fix Engineering. |
cos |
Details of a COS package. |
windows |
Details of Windows Application. |
VersionedPackage
Information related to the a standard versioned package. This includes package info for APT, Yum, Zypper, and Googet package managers.
JSON representation |
---|
{ "packageName": string, "architecture": string, "version": string } |
Fields | |
---|---|
package |
The name of the package. |
architecture |
The system architecture this package is intended for. |
version |
The version of the package. |
ZypperPatch
Details related to a Zypper Patch.
JSON representation |
---|
{ "patchName": string, "category": string, "severity": string, "summary": string } |
Fields | |
---|---|
patch |
The name of the patch. |
category |
The category of the patch. |
severity |
The severity specified for this patch |
summary |
Any summary information provided about this patch. |
WindowsUpdatePackage
Details related to a Windows Update package. Field data and names are taken from Windows Update API IUpdate Interface: https://docs.microsoft.com/en-us/windows/win32/api/_wua/ Descriptive fields like title, and description are localized based on the locale of the VM being updated.
JSON representation |
---|
{
"title": string,
"description": string,
"categories": [
{
object ( |
Fields | |
---|---|
title |
The localized title of the update package. |
description |
The localized description of the update package. |
categories[] |
The categories that are associated with this update package. |
kb |
A collection of Microsoft Knowledge Base article IDs that are associated with the update package. |
support |
A hyperlink to the language-specific support information for the update. |
more |
A collection of URLs that provide more information about the update package. |
update |
Gets the identifier of an update package. Stays the same across revisions. |
revision |
The revision number of this update package. |
last |
The last published date of the update, in (UTC) date and time. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
WindowsUpdateCategory
Categories specified by the Windows Update.
JSON representation |
---|
{ "id": string, "name": string } |
Fields | |
---|---|
id |
The identifier of the windows update category. |
name |
The name of the windows update category. |
WindowsQuickFixEngineeringPackage
Information related to a Quick Fix Engineering package. Fields are taken from Windows QuickFixEngineering Interface and match the source names: https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/win32-quickfixengineering
JSON representation |
---|
{ "caption": string, "description": string, "hotFixId": string, "installTime": string } |
Fields | |
---|---|
caption |
A short textual description of the QFE update. |
description |
A textual description of the QFE update. |
hot |
Unique identifier associated with a particular QFE update. |
install |
Date that the QFE update was installed. Mapped from installed_on field. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
WindowsApplication
Contains information about a Windows application that is retrieved from the Windows Registry. For more information about these fields, see: https://docs.microsoft.com/en-us/windows/win32/msi/uninstall-registry-key
JSON representation |
---|
{
"displayName": string,
"displayVersion": string,
"publisher": string,
"installDate": {
object ( |
Fields | |
---|---|
display |
The name of the application or product. |
display |
The version of the product or application in string format. |
publisher |
The name of the manufacturer for the product or application. |
install |
The last time this product received service. The value of this property is replaced each time a patch is applied or removed from the product or the command-line option is used to repair the product. |
help |
The internet address for technical support. |
Methods |
|
---|---|
|
Get inventory data for the specified VM instance. |
|
List inventory data for all VM instances in the specified zone. |