class Google::Apis::ContaineranalysisV1beta1::Installation
This represents how a particular software package may be installed on a system.
Attributes
location[RW]
Required. All of the places within the filesystem versions of this package have been found. Corresponds to the JSON property `location` @return [Array<Google::Apis::ContaineranalysisV1beta1::Location>]
name[RW]
Output only. The name of the installed package. Corresponds to the JSON property `name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/containeranalysis_v1beta1/classes.rb, line 2074 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/containeranalysis_v1beta1/classes.rb, line 2079 def update!(**args) @location = args[:location] if args.key?(:location) @name = args[:name] if args.key?(:name) end