class Google::Apis::WebsecurityscannerV1alpha::OutdatedLibrary

Information reported for an outdated library.

Attributes

learn_more_urls[RW]

URLs to learn more information about the vulnerabilities in the library. Corresponds to the JSON property `learnMoreUrls` @return [Array<String>]

library_name[RW]

The name of the outdated library. Corresponds to the JSON property `libraryName` @return [String]

version[RW]

The version number. Corresponds to the JSON property `version` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/websecurityscanner_v1alpha/classes.rb, line 463
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/websecurityscanner_v1alpha/classes.rb, line 468
def update!(**args)
  @learn_more_urls = args[:learn_more_urls] if args.key?(:learn_more_urls)
  @library_name = args[:library_name] if args.key?(:library_name)
  @version = args[:version] if args.key?(:version)
end