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.



91
92
93
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 91

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

Instance Attribute Details

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

The packages to analyze. Corresponds to the JSON property packages



84
85
86
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 84

def packages
  @packages
end

#resource_uriString

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

Returns:

  • (String)


89
90
91
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 89

def resource_uri
  @resource_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



96
97
98
99
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 96

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