class Google::Apis::OsconfigV1::InventoryWindowsQuickFixEngineeringPackage
Information related to a Quick Fix Engineering package. Fields are taken from Windows QuickFixEngineering Interface and match the source names: docs. microsoft.com/en-us/windows/win32/cimwin32prov/win32-quickfixengineering
Attributes
caption[RW]
A short textual description of the QFE update. Corresponds to the JSON property `caption` @return [String]
description[RW]
A textual description of the QFE update. Corresponds to the JSON property `description` @return [String]
hot_fix_id[RW]
Unique identifier associated with a particular QFE update. Corresponds to the JSON property `hotFixId` @return [String]
install_time[RW]
Date that the QFE update was installed. Mapped from installed_on field. Corresponds to the JSON property `installTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/osconfig_v1/classes.rb, line 671 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_v1/classes.rb, line 676 def update!(**args) @caption = args[:caption] if args.key?(:caption) @description = args[:description] if args.key?(:description) @hot_fix_id = args[:hot_fix_id] if args.key?(:hot_fix_id) @install_time = args[:install_time] if args.key?(:install_time) end