class Google::Apis::OsconfigV1alpha::InventoryWindowsUpdatePackage

Details related to a Windows Update package. Field data and names are taken from Windows Update API IUpdate Interface: 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.

Attributes

categories[RW]

The categories that are associated with this update package. Corresponds to the JSON property `categories` @return [Array<Google::Apis::OsconfigV1alpha::InventoryWindowsUpdatePackageWindowsUpdateCategory>]

description[RW]

The localized description of the update package. Corresponds to the JSON property `description` @return [String]

kb_article_ids[RW]

A collection of Microsoft Knowledge Base article IDs that are associated with the update package. Corresponds to the JSON property `kbArticleIds` @return [Array<String>]

last_deployment_change_time[RW]

The last published date of the update, in (UTC) date and time. Corresponds to the JSON property `lastDeploymentChangeTime` @return [String]

more_info_urls[RW]

A collection of URLs that provide more information about the update package. Corresponds to the JSON property `moreInfoUrls` @return [Array<String>]

revision_number[RW]

The revision number of this update package. Corresponds to the JSON property `revisionNumber` @return [Fixnum]

support_url[RW]

A hyperlink to the language-specific support information for the update. Corresponds to the JSON property `supportUrl` @return [String]

title[RW]

The localized title of the update package. Corresponds to the JSON property `title` @return [String]

update_id[RW]

Gets the identifier of an update package. Stays the same across revisions. Corresponds to the JSON property `updateId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/osconfig_v1alpha/classes.rb, line 753
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/osconfig_v1alpha/classes.rb, line 758
def update!(**args)
  @categories = args[:categories] if args.key?(:categories)
  @description = args[:description] if args.key?(:description)
  @kb_article_ids = args[:kb_article_ids] if args.key?(:kb_article_ids)
  @last_deployment_change_time = args[:last_deployment_change_time] if args.key?(:last_deployment_change_time)
  @more_info_urls = args[:more_info_urls] if args.key?(:more_info_urls)
  @revision_number = args[:revision_number] if args.key?(:revision_number)
  @support_url = args[:support_url] if args.key?(:support_url)
  @title = args[:title] if args.key?(:title)
  @update_id = args[:update_id] if args.key?(:update_id)
end