Class: Google::Apis::WebsecurityscannerV1beta::ScanRunErrorTrace
- Inherits:
-
Object
- Object
- Google::Apis::WebsecurityscannerV1beta::ScanRunErrorTrace
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/websecurityscanner_v1beta/classes.rb,
lib/google/apis/websecurityscanner_v1beta/representations.rb,
lib/google/apis/websecurityscanner_v1beta/representations.rb
Overview
Output only. Defines an error trace message for a ScanRun.
Instance Attribute Summary collapse
-
#code ⇒ String
Indicates the error reason code.
-
#most_common_http_error_code ⇒ Fixnum
If the scan encounters TOO_MANY_HTTP_ERRORS, this field indicates the most common HTTP error code, if such is available.
-
#scan_config_error ⇒ Google::Apis::WebsecurityscannerV1beta::ScanConfigError
Defines a custom error message used by CreateScanConfig and UpdateScanConfig APIs when scan configuration validation fails.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ScanRunErrorTrace
constructor
A new instance of ScanRunErrorTrace.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ScanRunErrorTrace
Returns a new instance of ScanRunErrorTrace.
825 826 827 |
# File 'lib/google/apis/websecurityscanner_v1beta/classes.rb', line 825 def initialize(**args) update!(**args) end |
Instance Attribute Details
#code ⇒ String
Indicates the error reason code.
Corresponds to the JSON property code
808 809 810 |
# File 'lib/google/apis/websecurityscanner_v1beta/classes.rb', line 808 def code @code end |
#most_common_http_error_code ⇒ Fixnum
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
815 816 817 |
# File 'lib/google/apis/websecurityscanner_v1beta/classes.rb', line 815 def most_common_http_error_code @most_common_http_error_code end |
#scan_config_error ⇒ Google::Apis::WebsecurityscannerV1beta::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
823 824 825 |
# File 'lib/google/apis/websecurityscanner_v1beta/classes.rb', line 823 def scan_config_error @scan_config_error end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
830 831 832 833 834 |
# File 'lib/google/apis/websecurityscanner_v1beta/classes.rb', line 830 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 |