class Google::Apis::CloudassetV1::ZypperPatch

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/cloudasset_v1/classes.rb, line 4713
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudasset_v1/classes.rb, line 4718
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