Class: Google::Apis::WebsecurityscannerV1::OutdatedLibrary

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

Overview

Information reported for an outdated library.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ OutdatedLibrary

Returns a new instance of OutdatedLibrary.



555
556
557
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 555

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

Instance Attribute Details

#learn_more_urlsArray<String>

URLs to learn more information about the vulnerabilities in the library. Corresponds to the JSON property learnMoreUrls

Returns:

  • (Array<String>)


543
544
545
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 543

def learn_more_urls
  @learn_more_urls
end

#library_nameString

The name of the outdated library. Corresponds to the JSON property libraryName

Returns:

  • (String)


548
549
550
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 548

def library_name
  @library_name
end

#versionString

The version number. Corresponds to the JSON property version

Returns:

  • (String)


553
554
555
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 553

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



560
561
562
563
564
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 560

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