Class: Google::Apis::OndemandscanningV1beta1::AnalyzePackagesRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/ondemandscanning_v1beta1/classes.rb,
lib/google/apis/ondemandscanning_v1beta1/representations.rb,
lib/google/apis/ondemandscanning_v1beta1/representations.rb

Overview

AnalyzePackagesRequest is the request to analyze a list of packages and create Vulnerability Occurrences for it.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AnalyzePackagesRequest

Returns a new instance of AnalyzePackagesRequest.



137
138
139
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 137

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#packagesArray<Google::Apis::OndemandscanningV1beta1::PackageData>

The packages to analyze. Corresponds to the JSON property packages



130
131
132
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 130

def packages
  @packages
end

#resource_uriString

Required. The resource URI of the container image being scanned. Corresponds to the JSON property resourceUri

Returns:

  • (String)


135
136
137
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 135

def resource_uri
  @resource_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



142
143
144
145
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 142

def update!(**args)
  @packages = args[:packages] if args.key?(:packages)
  @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
end