123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- syntax = "proto3";
- package google.cloud.websecurityscanner.v1alpha;
- import "google/api/resource.proto";
- import "google/protobuf/timestamp.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/websecurityscanner/v1alpha;websecurityscanner";
- option java_multiple_files = true;
- option java_outer_classname = "ScanRunProto";
- option java_package = "com.google.cloud.websecurityscanner.v1alpha";
- message ScanRun {
- option (google.api.resource) = {
- type: "websecurityscanner.googleapis.com/ScanRun"
- pattern: "projects/{project}/scanConfigs/{scan_config}/scanRuns/{scan_run}"
- };
-
- enum ExecutionState {
-
-
- EXECUTION_STATE_UNSPECIFIED = 0;
-
- QUEUED = 1;
-
- SCANNING = 2;
-
- FINISHED = 3;
- }
-
- enum ResultState {
-
-
- RESULT_STATE_UNSPECIFIED = 0;
-
- SUCCESS = 1;
-
- ERROR = 2;
-
- KILLED = 3;
- }
-
-
-
- string name = 1;
-
- ExecutionState execution_state = 2;
-
-
- ResultState result_state = 3;
-
- google.protobuf.Timestamp start_time = 4;
-
-
- google.protobuf.Timestamp end_time = 5;
-
-
- int64 urls_crawled_count = 6;
-
-
-
-
- int64 urls_tested_count = 7;
-
- bool has_vulnerabilities = 8;
-
-
-
-
- int32 progress_percent = 9;
- }
|