class Google::Apis::ContaineranalysisV1::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 docs.microsoft.com/en-us/windows/win32/api/wuapi/nn- wuapi-iupdate.
Attributes
The list of categories to which the update belongs. Corresponds to the JSON property ‘categories` @return [Array<Google::Apis::ContaineranalysisV1::Category>]
The localized description of the update. Corresponds to the JSON property ‘description` @return [String]
The unique identifier of the update. Corresponds to the JSON property ‘identity` @return [Google::Apis::ContaineranalysisV1::Identity]
The Microsoft Knowledge Base article IDs that are associated with the update. Corresponds to the JSON property ‘kbArticleIds` @return [Array<String>]
The last published timestamp of the update. Corresponds to the JSON property ‘lastPublishedTimestamp` @return [String]
The hyperlink to the support information for the update. Corresponds to the JSON property ‘supportUrl` @return [String]
The localized title of the update. Corresponds to the JSON property ‘title` @return [String]
Public Class Methods
# File lib/google/apis/containeranalysis_v1/classes.rb, line 5026 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/containeranalysis_v1/classes.rb, line 5031 def update!(**args) @categories = args[:categories] if args.key?(:categories) @description = args[:description] if args.key?(:description) @identity = args[:identity] if args.key?(:identity) @kb_article_ids = args[:kb_article_ids] if args.key?(:kb_article_ids) @last_published_timestamp = args[:last_published_timestamp] if args.key?(:last_published_timestamp) @support_url = args[:support_url] if args.key?(:support_url) @title = args[:title] if args.key?(:title) end