1// Copyright 2019 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// 15 16syntax = "proto3"; 17 18package google.cloud.websecurityscanner.v1beta; 19 20option csharp_namespace = "Google.Cloud.WebSecurityScanner.V1Beta"; 21option go_package = "cloud.google.com/go/websecurityscanner/apiv1beta/websecurityscannerpb;websecurityscannerpb"; 22option java_multiple_files = true; 23option java_outer_classname = "CrawledUrlProto"; 24option java_package = "com.google.cloud.websecurityscanner.v1beta"; 25option php_namespace = "Google\\Cloud\\WebSecurityScanner\\V1beta"; 26option ruby_package = "Google::Cloud::WebSecurityScanner::V1beta"; 27 28// A CrawledUrl resource represents a URL that was crawled during a ScanRun. Web 29// Security Scanner Service crawls the web applications, following all links 30// within the scope of sites, to find the URLs to test against. 31message CrawledUrl { 32 // The http method of the request that was used to visit the URL, in 33 // uppercase. 34 string http_method = 1; 35 36 // The URL that was crawled. 37 string url = 2; 38 39 // The body of the request that was used to visit the URL. 40 string body = 3; 41} 42