WindowsUpdate

Windows Update represents the metadata about the update for the Windows operating system. The fields in this message come from the Windows Update API documented at https://docs.microsoft.com/en-us/windows/win32/api/wuapi/nn-wuapi-iupdate.

JSON representation
{
  "identity": {
    object (Identity)
  },
  "title": string,
  "description": string,
  "categories": [
    {
      object (Category)
    }
  ],
  "kbArticleIds": [
    string
  ],
  "supportUrl": string,
  "lastPublishedTimestamp": string
}
Fields
identity

object (Identity)

Required - The unique identifier for the update.

title

string

The localized title of the update.

description

string

The localized description of the update.

categories[]

object (Category)

The list of categories to which the update belongs.

kbArticleIds[]

string

The Microsoft Knowledge Base article IDs that are associated with the update.

supportUrl

string

The hyperlink to the support information for the update.

lastPublishedTimestamp

string (Timestamp format)

The last published timestamp of the update.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

Identity

The unique identifier of the update.

JSON representation
{
  "updateId": string,
  "revision": integer
}
Fields
updateId

string

The revision independent identifier of the update.

revision

integer

The revision number of the update.

Category

The category to which the update belongs.

JSON representation
{
  "categoryId": string,
  "name": string
}
Fields
categoryId

string

The identifier of the category.

name

string

The localized name of the category.