pub struct Inventory {
pub items: Option<HashMap<String, Item>>,
pub name: Option<String>,
pub os_info: Option<OsInfo>,
pub update_time: Option<DateTime<Utc>>,
}Expand description
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.
This type is not used in any activity, and only used as part of another schema.
Fields§
§items: Option<HashMap<String, Item>>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.
name: Option<String>Output only. The Inventory API resource name. Format: projects/{project_number}/locations/{location}/instances/{instance_id}/inventory
os_info: Option<OsInfo>Base level operating system information for the VM.
update_time: Option<DateTime<Utc>>Output only. Timestamp of the last reported inventory for the VM.