Class: Google::Apis::OsconfigV1::InventoryZypperPatch
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1::InventoryZypperPatch
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/osconfig_v1/classes.rb,
lib/google/apis/osconfig_v1/representations.rb,
lib/google/apis/osconfig_v1/representations.rb
Overview
Details related to a Zypper Patch.
Instance Attribute Summary collapse
-
#category ⇒ String
The category of the patch.
-
#patch_name ⇒ String
The name of the patch.
-
#severity ⇒ String
The severity specified for this patch Corresponds to the JSON property
severity. -
#summary ⇒ String
Any summary information provided about this patch.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InventoryZypperPatch
constructor
A new instance of InventoryZypperPatch.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InventoryZypperPatch
Returns a new instance of InventoryZypperPatch.
918 919 920 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 918 def initialize(**args) update!(**args) end |
Instance Attribute Details
#category ⇒ String
The category of the patch.
Corresponds to the JSON property category
901 902 903 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 901 def category @category end |
#patch_name ⇒ String
The name of the patch.
Corresponds to the JSON property patchName
906 907 908 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 906 def patch_name @patch_name end |
#severity ⇒ String
The severity specified for this patch
Corresponds to the JSON property severity
911 912 913 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 911 def severity @severity end |
#summary ⇒ String
Any summary information provided about this patch.
Corresponds to the JSON property summary
916 917 918 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 916 def summary @summary end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
923 924 925 926 927 928 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 923 def update!(**args) @category = args[:category] if args.key?(:category) @patch_name = args[:patch_name] if args.key?(:patch_name) @severity = args[:severity] if args.key?(:severity) @summary = args[:summary] if args.key?(:summary) end |