class Google::Apis::OsconfigV1alpha::InventoryZypperPatch
Details related to a Zypper Patch.
Attributes
category[RW]
The category of the patch. Corresponds to the JSON property `category` @return [String]
patch_name[RW]
The name of the patch. Corresponds to the JSON property `patchName` @return [String]
severity[RW]
The severity specified for this patch Corresponds to the JSON property `severity` @return [String]
summary[RW]
Any summary information provided about this patch. Corresponds to the JSON property `summary` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/osconfig_v1alpha/classes.rb, line 820 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_v1alpha/classes.rb, line 825 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