Class: Google::Apis::WebsecurityscannerV1::ScanRunErrorTrace

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

Output only. Defines an error trace message for a ScanRun.

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) ⇒ ScanRunErrorTrace

Returns a new instance of ScanRunErrorTrace.



824
825
826
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 824

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

Instance Attribute Details

#codeString

Output only. Indicates the error reason code. Corresponds to the JSON property code

Returns:

  • (String)


806
807
808
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 806

def code
  @code
end

#most_common_http_error_codeFixnum

Output only. If the scan encounters TOO_MANY_HTTP_ERRORS, this field indicates the most common HTTP error code, if such is available. For example, if this code is 404, the scan has encountered too many NOT_FOUND responses. Corresponds to the JSON property mostCommonHttpErrorCode

Returns:

  • (Fixnum)


814
815
816
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 814

def most_common_http_error_code
  @most_common_http_error_code
end

#scan_config_errorGoogle::Apis::WebsecurityscannerV1::ScanConfigError

Defines a custom error message used by CreateScanConfig and UpdateScanConfig APIs when scan configuration validation fails. It is also reported as part of a ScanRunErrorTrace message if scan validation fails due to a scan configuration error. Corresponds to the JSON property scanConfigError



822
823
824
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 822

def scan_config_error
  @scan_config_error
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



829
830
831
832
833
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 829

def update!(**args)
  @code = args[:code] if args.key?(:code)
  @most_common_http_error_code = args[:most_common_http_error_code] if args.key?(:most_common_http_error_code)
  @scan_config_error = args[:scan_config_error] if args.key?(:scan_config_error)
end