Class: Google::Cloud::WebSecurityScanner::V1beta::ScanRunWarningTrace
- Inherits:
-
Object
- Object
- Google::Cloud::WebSecurityScanner::V1beta::ScanRunWarningTrace
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/websecurityscanner/v1beta/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
-
#code ⇒ ::Google::Cloud::WebSecurityScanner::V1beta::ScanRunWarningTrace::Code
Indicates the warning code.
Instance Attribute Details
#code ⇒ ::Google::Cloud::WebSecurityScanner::V1beta::ScanRunWarningTrace::Code
Returns Indicates the warning code.
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 |
# File 'proto_docs/google/cloud/websecurityscanner/v1beta/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 end end |