class Google::Apis::WebsecurityscannerV1alpha::VulnerableHeaders

Information about vulnerable or missing HTTP Headers.

Attributes

headers[RW]

List of vulnerable headers. Corresponds to the JSON property `headers` @return [Array<Google::Apis::WebsecurityscannerV1alpha::Header>]

missing_headers[RW]

List of missing headers. Corresponds to the JSON property `missingHeaders` @return [Array<Google::Apis::WebsecurityscannerV1alpha::Header>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/websecurityscanner_v1alpha/classes.rb, line 728
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 733
def update!(**args)
  @headers = args[:headers] if args.key?(:headers)
  @missing_headers = args[:missing_headers] if args.key?(:missing_headers)
end