Show / Hide Table of Contents

Class ScanRunErrorTrace

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

Inheritance
System.Object
ScanRunErrorTrace
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.WebSecurityScanner.v1.Data
Assembly: Google.Apis.WebSecurityScanner.v1.dll
Syntax
public class ScanRunErrorTrace : IDirectResponseSchema

Properties

Code

Output only. Indicates the error reason code.

Declaration
[JsonProperty("code")]
public virtual string Code { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

MostCommonHttpErrorCode

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.

Declaration
[JsonProperty("mostCommonHttpErrorCode")]
public virtual int? MostCommonHttpErrorCode { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ScanConfigError

Output only. If the scan encounters SCAN_CONFIG_ISSUE error, this field has the error message encountered during scan configuration validation that is performed before each scan run.

Declaration
[JsonProperty("scanConfigError")]
public virtual ScanConfigError ScanConfigError { get; set; }
Property Value
Type Description
ScanConfigError

Implements

IDirectResponseSchema
Back to top