Class: IControl::System::SoftwareManagement::HotFixInformation
- Inherits:
-
Base::Struct
- Object
- Base::Struct
- IControl::System::SoftwareManagement::HotFixInformation
- Defined in:
- lib/icontrol/system/software_management.rb,
lib/icontrol/system/software_management.rb
Overview
A structure that contains the information on hotfixes that have been applied to the system.
Instance Attribute Summary collapse
-
#description ⇒ String
The description of the software fix contained in this hotfix, if available.
-
#id ⇒ String
The unique identifier for this hotfix, i.e.
-
#packages ⇒ StringSequence
The list of the software packages affected and updated by this hotfix.
-
#product ⇒ String
The product name for which this hotfix is applied.
-
#version_resolved ⇒ String
The dot-separated major, minor, and maintenance release level in which the same issue was resolved; i.e.
Instance Attribute Details
#description ⇒ String
The description of the software fix contained in this hotfix, if available.
322 323 324 |
# File 'lib/icontrol/system/software_management.rb', line 322 def description @description end |
#id ⇒ String
The unique identifier for this hotfix, i.e. a related CR or subcase ID.
322 323 324 |
# File 'lib/icontrol/system/software_management.rb', line 322 def id @id end |
#packages ⇒ StringSequence
The list of the software packages affected and updated by this hotfix.
322 323 324 |
# File 'lib/icontrol/system/software_management.rb', line 322 def packages @packages end |
#product ⇒ String
The product name for which this hotfix is applied.
322 323 324 |
# File 'lib/icontrol/system/software_management.rb', line 322 def product @product end |
#version_resolved ⇒ String
The dot-separated major, minor, and maintenance release level in which the same issue was resolved; i.e. the product version in which the original problem no longer occurs. Note that this value is only available when appropriate, due to the fact that at the time the hotfix was created, there might not be exact knowledge of what release the final fix will be in.
322 323 324 |
# File 'lib/icontrol/system/software_management.rb', line 322 def version_resolved @version_resolved end |