Class: Google::Apis::WebsecurityscannerV1::VulnerableHeaders

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

Overview

Information about vulnerable or missing HTTP Headers.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VulnerableHeaders

Returns a new instance of VulnerableHeaders.



955
956
957
# File 'lib/google/apis/websecurityscanner_v1/classes.rb', line 955

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

Instance Attribute Details

#headersArray<Google::Apis::WebsecurityscannerV1::Header>

List of vulnerable headers. Corresponds to the JSON property headers



948
949
950
# File 'lib/google/apis/websecurityscanner_v1/classes.rb', line 948

def headers
  @headers
end

#missing_headersArray<Google::Apis::WebsecurityscannerV1::Header>

List of missing headers. Corresponds to the JSON property missingHeaders



953
954
955
# File 'lib/google/apis/websecurityscanner_v1/classes.rb', line 953

def missing_headers
  @missing_headers
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



960
961
962
963
# File 'lib/google/apis/websecurityscanner_v1/classes.rb', line 960

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