Class: Google::Apis::OsconfigV1alpha::InventoryWindowsQuickFixEngineeringPackage
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1alpha::InventoryWindowsQuickFixEngineeringPackage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/osconfig_v1alpha/classes.rb,
lib/google/apis/osconfig_v1alpha/representations.rb,
lib/google/apis/osconfig_v1alpha/representations.rb
Overview
Information related to a Quick Fix Engineering package. Fields are taken from Windows QuickFixEngineering Interface and match the source names: https://docs. microsoft.com/en-us/windows/win32/cimwin32prov/win32-quickfixengineering
Instance Attribute Summary collapse
-
#caption ⇒ String
A short textual description of the QFE update.
-
#description ⇒ String
A textual description of the QFE update.
-
#hot_fix_id ⇒ String
Unique identifier associated with a particular QFE update.
-
#install_time ⇒ String
Date that the QFE update was installed.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InventoryWindowsQuickFixEngineeringPackage
constructor
A new instance of InventoryWindowsQuickFixEngineeringPackage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InventoryWindowsQuickFixEngineeringPackage
Returns a new instance of InventoryWindowsQuickFixEngineeringPackage.
731 732 733 |
# File 'lib/google/apis/osconfig_v1alpha/classes.rb', line 731 def initialize(**args) update!(**args) end |
Instance Attribute Details
#caption ⇒ String
A short textual description of the QFE update.
Corresponds to the JSON property caption
714 715 716 |
# File 'lib/google/apis/osconfig_v1alpha/classes.rb', line 714 def caption @caption end |
#description ⇒ String
A textual description of the QFE update.
Corresponds to the JSON property description
719 720 721 |
# File 'lib/google/apis/osconfig_v1alpha/classes.rb', line 719 def description @description end |
#hot_fix_id ⇒ String
Unique identifier associated with a particular QFE update.
Corresponds to the JSON property hotFixId
724 725 726 |
# File 'lib/google/apis/osconfig_v1alpha/classes.rb', line 724 def hot_fix_id @hot_fix_id end |
#install_time ⇒ String
Date that the QFE update was installed. Mapped from installed_on field.
Corresponds to the JSON property installTime
729 730 731 |
# File 'lib/google/apis/osconfig_v1alpha/classes.rb', line 729 def install_time @install_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
736 737 738 739 740 741 |
# File 'lib/google/apis/osconfig_v1alpha/classes.rb', line 736 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 |