google-cloud-phishing_protection 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/google/cloud/phishing_protection/v1beta1/doc/google/cloud/phishingprotection/v1beta1/phishingprotection.rb +1 -1
- data/lib/google/cloud/phishing_protection/v1beta1/phishing_protection_client.rb +7 -6
- data/lib/google/cloud/phishing_protection/version.rb +1 -1
- data/lib/google/cloud/phishingprotection/v1beta1/phishingprotection_pb.rb +3 -0
- data/lib/google/cloud/phishingprotection/v1beta1/phishingprotection_services_pb.rb +6 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 70c2dca7892d316df308806a3fb321f312384cdfd3c162e0fb6e181805fe1ae2
|
|
4
|
+
data.tar.gz: 92dce865143ae5f361fef1a11a2b74f89a0790c9b1e0522b4c88930641d1afff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '057496db32bcbe0ea8572efebeb718c66192d75bb79d787273c890d25e8371253eb772a3713e6d3052267622f2ab35631172bf1ce0130ecf4059787817ad4579'
|
|
7
|
+
data.tar.gz: 000d2fbd20e70109ce331d60233ab44458e291b91588350d6d67beeb4a0ca5259a53f2cbbcdfce3ccc52b8441c408ea04659a4093b077b59f8fa0f13f0f18f0e
|
|
@@ -24,7 +24,7 @@ module Google
|
|
|
24
24
|
# in the format "projects/\\{project_number}".
|
|
25
25
|
# @!attribute [rw] uri
|
|
26
26
|
# @return [String]
|
|
27
|
-
# The URI that is being reported for phishing content to be analyzed.
|
|
27
|
+
# Required. The URI that is being reported for phishing content to be analyzed.
|
|
28
28
|
class ReportPhishingRequest; end
|
|
29
29
|
|
|
30
30
|
# The ReportPhishing (empty) response message.
|
|
@@ -195,17 +195,18 @@ module Google
|
|
|
195
195
|
# Service calls
|
|
196
196
|
|
|
197
197
|
# Reports a URI suspected of containing phishing content to be reviewed. Once
|
|
198
|
-
# the report review is
|
|
199
|
-
#
|
|
200
|
-
#
|
|
201
|
-
#
|
|
202
|
-
#
|
|
198
|
+
# the report review is complete, its result can be found in the Cloud
|
|
199
|
+
# Security Command Center findings dashboard for Phishing Protection. If the
|
|
200
|
+
# result verifies the existence of malicious phishing content, the site will
|
|
201
|
+
# be added the to [Google's Social Engineering
|
|
202
|
+
# lists](https://support.google.com/webmasters/answer/6350487/) in order to
|
|
203
|
+
# protect users that could get exposed to this threat in the future.
|
|
203
204
|
#
|
|
204
205
|
# @param parent [String]
|
|
205
206
|
# Required. The name of the project for which the report will be created,
|
|
206
207
|
# in the format "projects/\\{project_number}".
|
|
207
208
|
# @param uri [String]
|
|
208
|
-
# The URI that is being reported for phishing content to be analyzed.
|
|
209
|
+
# Required. The URI that is being reported for phishing content to be analyzed.
|
|
209
210
|
# @param options [Google::Gax::CallOptions]
|
|
210
211
|
# Overrides the default settings for this call, e.g, timeout,
|
|
211
212
|
# retries, etc.
|
|
@@ -5,6 +5,9 @@
|
|
|
5
5
|
require 'google/protobuf'
|
|
6
6
|
|
|
7
7
|
require 'google/api/annotations_pb'
|
|
8
|
+
require 'google/api/client_pb'
|
|
9
|
+
require 'google/api/field_behavior_pb'
|
|
10
|
+
require 'google/api/resource_pb'
|
|
8
11
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
9
12
|
add_message "google.cloud.phishingprotection.v1beta1.ReportPhishingRequest" do
|
|
10
13
|
optional :parent, :string, 1
|
|
@@ -36,11 +36,12 @@ module Google
|
|
|
36
36
|
self.service_name = 'google.cloud.phishingprotection.v1beta1.PhishingProtection'
|
|
37
37
|
|
|
38
38
|
# Reports a URI suspected of containing phishing content to be reviewed. Once
|
|
39
|
-
# the report review is
|
|
40
|
-
#
|
|
41
|
-
#
|
|
42
|
-
#
|
|
43
|
-
#
|
|
39
|
+
# the report review is complete, its result can be found in the Cloud
|
|
40
|
+
# Security Command Center findings dashboard for Phishing Protection. If the
|
|
41
|
+
# result verifies the existence of malicious phishing content, the site will
|
|
42
|
+
# be added the to [Google's Social Engineering
|
|
43
|
+
# lists](https://support.google.com/webmasters/answer/6350487/) in order to
|
|
44
|
+
# protect users that could get exposed to this threat in the future.
|
|
44
45
|
rpc :ReportPhishing, ReportPhishingRequest, ReportPhishingResponse
|
|
45
46
|
end
|
|
46
47
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-phishing_protection
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-10-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-gax
|