class Google::Apis::OndemandscanningV1::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::OndemandscanningV1::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/ondemandscanning_v1/classes.rb, line 1638
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/ondemandscanning_v1/classes.rb, line 1643
def update!(**args)
  @location = args[:location] if args.key?(:location)
  @name = args[:name] if args.key?(:name)
end