google_api_web_security_scanner v0.6.0 GoogleApi.WebSecurityScanner.V1alpha.Model.ScanRun View Source

A ScanRun is a output-only resource representing an actual run of the scan.

Attributes

  • endTime (type: DateTime.t, default: nil) - Output only. The time at which the ScanRun reached termination state - that the ScanRun is either finished or stopped by user.
  • executionState (type: String.t, default: nil) - Output only. The execution state of the ScanRun.
  • hasVulnerabilities (type: boolean(), default: nil) - Output only. Whether the scan run has found any vulnerabilities.
  • name (type: String.t, default: nil) - Output only. The resource name of the ScanRun. The name follows the format of 'projects/{projectId}/scanConfigs/{scanConfigId}/scanRuns/{scanRunId}'. The ScanRun IDs are generated by the system.
  • progressPercent (type: integer(), default: nil) - Output only. The percentage of total completion ranging from 0 to 100. If the scan is in queue, the value is 0. If the scan is running, the value ranges from 0 to 100. If the scan is finished, the value is 100.
  • resultState (type: String.t, default: nil) - Output only. The result state of the ScanRun. This field is only available after the execution state reaches "FINISHED".
  • startTime (type: DateTime.t, default: nil) - Output only. The time at which the ScanRun started.
  • urlsCrawledCount (type: String.t, default: nil) - Output only. The number of URLs crawled during this ScanRun. If the scan is in progress, the value represents the number of URLs crawled up to now.
  • urlsTestedCount (type: String.t, default: nil) - Output only. The number of URLs tested during this ScanRun. If the scan is in progress, the value represents the number of URLs tested up to now. The number of URLs tested is usually larger than the number URLS crawled because typically a crawled URL is tested with multiple test payloads.

Link to this section Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Link to this section Types

Link to this type

t()

View Source
t() :: %GoogleApi.WebSecurityScanner.V1alpha.Model.ScanRun{
  endTime: DateTime.t(),
  executionState: String.t(),
  hasVulnerabilities: boolean(),
  name: String.t(),
  progressPercent: integer(),
  resultState: String.t(),
  startTime: DateTime.t(),
  urlsCrawledCount: String.t(),
  urlsTestedCount: String.t()
}

Link to this section Functions

Link to this function

decode(value, options)

View Source
decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.