class Google::Apis::OndemandscanningV1beta1::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

categories[RW]

The list of categories to which the update belongs. Corresponds to the JSON property `categories` @return [Array<Google::Apis::OndemandscanningV1beta1::Category>]

description[RW]

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

identity[RW]

The unique identifier of the update. Corresponds to the JSON property `identity` @return [Google::Apis::OndemandscanningV1beta1::Identity]

kb_article_ids[RW]

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

last_published_timestamp[RW]

The last published timestamp of the update. Corresponds to the JSON property `lastPublishedTimestamp` @return [String]

support_url[RW]

The hyperlink to the support information for the update. Corresponds to the JSON property `supportUrl` @return [String]

title[RW]

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

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/ondemandscanning_v1beta1/classes.rb, line 2261
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