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.v1alpha; 19 20option go_package = "cloud.google.com/go/websecurityscanner/apiv1alpha/websecurityscannerpb;websecurityscannerpb"; 21option java_multiple_files = true; 22option java_outer_classname = "CrawledUrlProto"; 23option java_package = "com.google.cloud.websecurityscanner.v1alpha"; 24 25// A CrawledUrl resource represents a URL that was crawled during a ScanRun. Web 26// Security Scanner Service crawls the web applications, following all links 27// within the scope of sites, to find the URLs to test against. 28message CrawledUrl { 29 // Output only. The http method of the request that was used to visit the URL, in 30 // uppercase. 31 string http_method = 1; 32 33 // Output only. The URL that was crawled. 34 string url = 2; 35 36 // Output only. The body of the request that was used to visit the URL. 37 string body = 3; 38} 39