Class: Google::Cloud::WebSecurityScanner::V1::ScanRunWarningTrace

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/websecurityscanner/v1/scan_run_warning_trace.rb

Overview

Output only. Defines a warning trace message for ScanRun. Warning traces provide customers with useful information that helps make the scanning process more effective.

Defined Under Namespace

Modules: Code

Instance Attribute Summary collapse

Instance Attribute Details

#code::Google::Cloud::WebSecurityScanner::V1::ScanRunWarningTrace::Code

Returns Output only. Indicates the warning code.

Returns:



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'proto_docs/google/cloud/websecurityscanner/v1/scan_run_warning_trace.rb', line 30

class ScanRunWarningTrace
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only.
  # Defines a warning message code.
  # Next id: 6
  module Code
    # Default value is never used.
    CODE_UNSPECIFIED = 0

    # Indicates that a scan discovered an unexpectedly low number of URLs. This
    # is sometimes caused by complex navigation features or by using a single
    # URL for numerous pages.
    INSUFFICIENT_CRAWL_RESULTS = 1

    # Indicates that a scan discovered too many URLs to test, or excessive
    # redundant URLs.
    TOO_MANY_CRAWL_RESULTS = 2

    # Indicates that too many tests have been generated for the scan. Customer
    # should try reducing the number of starting URLs, increasing the QPS rate,
    # or narrowing down the scope of the scan using the excluded patterns.
    TOO_MANY_FUZZ_TASKS = 3

    # Indicates that a scan is blocked by IAP.
    BLOCKED_BY_IAP = 4

    # Indicates that no seeds is found for a scan
    NO_STARTING_URL_FOUND_FOR_MANAGED_SCAN = 5
  end
end