1// Copyright 2022 Google LLC 2// 3// Licensed under the Apache License, Version 2.0 (the "License"); 4// you may not use this file except in compliance with the License. 5// You may obtain a copy of the License at 6// 7// http://www.apache.org/licenses/LICENSE-2.0 8// 9// Unless required by applicable law or agreed to in writing, software 10// distributed under the License is distributed on an "AS IS" BASIS, 11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12// See the License for the specific language governing permissions and 13// limitations under the License. 14 15syntax = "proto3"; 16 17package google.cloud.websecurityscanner.v1; 18 19option csharp_namespace = "Google.Cloud.WebSecurityScanner.V1"; 20option go_package = "cloud.google.com/go/websecurityscanner/apiv1/websecurityscannerpb;websecurityscannerpb"; 21option java_multiple_files = true; 22option java_outer_classname = "CrawledUrlProto"; 23option java_package = "com.google.cloud.websecurityscanner.v1"; 24option php_namespace = "Google\\Cloud\\WebSecurityScanner\\V1"; 25option ruby_package = "Google::Cloud::WebSecurityScanner::V1"; 26 27// A CrawledUrl resource represents a URL that was crawled during a ScanRun. Web 28// Security Scanner Service crawls the web applications, following all links 29// within the scope of sites, to find the URLs to test against. 30message CrawledUrl { 31 // Output only. The http method of the request that was used to visit the URL, in 32 // uppercase. 33 string http_method = 1; 34 35 // Output only. The URL that was crawled. 36 string url = 2; 37 38 // Output only. The body of the request that was used to visit the URL. 39 string body = 3; 40} 41