Class: Google::Apis::CloudassetV1::WindowsQuickFixEngineeringPackage
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1::WindowsQuickFixEngineeringPackage
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/cloudasset_v1/classes.rb,
generated/google/apis/cloudasset_v1/representations.rb,
generated/google/apis/cloudasset_v1/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) ⇒ WindowsQuickFixEngineeringPackage
constructor
A new instance of WindowsQuickFixEngineeringPackage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WindowsQuickFixEngineeringPackage
Returns a new instance of WindowsQuickFixEngineeringPackage.
3482 3483 3484 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 3482 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
3465 3466 3467 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 3465 def @caption end |
#description ⇒ String
A textual description of the QFE update.
Corresponds to the JSON property description
3470 3471 3472 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 3470 def description @description end |
#hot_fix_id ⇒ String
Unique identifier associated with a particular QFE update.
Corresponds to the JSON property hotFixId
3475 3476 3477 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 3475 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
3480 3481 3482 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 3480 def install_time @install_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3487 3488 3489 3490 3491 3492 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 3487 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 |