class Google::Apis::ContaineranalysisV1::PackageOccurrence
Details on how a particular software package was 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::ContaineranalysisV1::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_v1/classes.rb, line 3859 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_v1/classes.rb, line 3864 def update!(**args) @location = args[:location] if args.key?(:location) @name = args[:name] if args.key?(:name) end