You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.2 KiB
58 lines
2.2 KiB
6 years ago
|
// Copyright 2019 Google LLC.
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License.
|
||
|
// You may obtain a copy of the License at
|
||
|
//
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
//
|
||
|
|
||
|
syntax = "proto3";
|
||
|
|
||
|
package google.cloud.phishingprotection.v1beta1;
|
||
|
|
||
|
import "google/api/annotations.proto";
|
||
|
|
||
|
option csharp_namespace = "Google.Cloud.PhishingProtection.V1Beta1";
|
||
|
option go_package = "google.golang.org/genproto/googleapis/cloud/phishingprotection/v1beta1;phishingprotection";
|
||
|
option java_multiple_files = true;
|
||
|
option java_outer_classname = "PhishingProtectionProto";
|
||
|
option java_package = "com.google.phishingprotection.v1beta1";
|
||
|
option objc_class_prefix = "GCPP";
|
||
|
option php_namespace = "Google\\Cloud\\PhishingProtection\\V1beta1";
|
||
|
|
||
|
// Service to report phishing URIs.
|
||
|
service PhishingProtectionServiceV1Beta1 {
|
||
|
// Reports a URI suspected of containing phishing content to be reviewed. Once
|
||
|
// the report review is completed, if its result verifies the existince of
|
||
|
// malicious phishing content, the site will be added the to [Google's Social
|
||
|
// Engineering lists](https://support.google.com/webmasters/answer/6350487/)
|
||
|
// in order to protect users that could get exposed to this threat in
|
||
|
// the future.
|
||
|
rpc ReportPhishing(ReportPhishingRequest) returns (ReportPhishingResponse) {
|
||
|
option (google.api.http) = {
|
||
|
post: "/v1beta1/{parent=projects/*}/phishing:report"
|
||
|
body: "*"
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// The ReportPhishing request message.
|
||
|
message ReportPhishingRequest {
|
||
|
// Required. The name of the project for which the report will be created,
|
||
|
// in the format "projects/{project_number}".
|
||
|
string parent = 1;
|
||
|
|
||
|
// The URI that is being reported for phishing content to be analyzed.
|
||
|
string uri = 2;
|
||
|
}
|
||
|
|
||
|
// The ReportPhishing (empty) response message.
|
||
|
message ReportPhishingResponse {}
|