class Google::Apis::CloudassetV1::WindowsUpdatePackage
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
The categories that are associated with this update package. Corresponds to the JSON property `categories` @return [Array<Google::Apis::CloudassetV1::WindowsUpdateCategory>]
The localized description of the update package. Corresponds to the JSON property `description` @return [String]
A collection of Microsoft Knowledge Base article IDs that are associated with the update package. Corresponds to the JSON property `kbArticleIds` @return [Array<String>]
The last published date of the update, in (UTC) date and time. Corresponds to the JSON property `lastDeploymentChangeTime` @return [String]
A collection of URLs that provide more information about the update package. Corresponds to the JSON property `moreInfoUrls` @return [Array<String>]
The revision number of this update package. Corresponds to the JSON property `revisionNumber` @return [Fixnum]
A hyperlink to the language-specific support information for the update. Corresponds to the JSON property `supportUrl` @return [String]
The localized title of the update package. Corresponds to the JSON property `title` @return [String]
Gets the identifier of an update package. Stays the same across revisions. Corresponds to the JSON property `updateId` @return [String]
Public Class Methods
# File lib/google/apis/cloudasset_v1/classes.rb, line 4671 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/cloudasset_v1/classes.rb, line 4676 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