google-cloud-webrisk 0.3.0 → 0.3.1
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/webrisk/v1beta1/doc/google/cloud/webrisk/v1beta1/webrisk.rb +4 -4
- data/lib/google/cloud/webrisk/v1beta1/web_risk_service_v1_beta1_client.rb +3 -3
- data/lib/google/cloud/webrisk/v1beta1/webrisk_pb.rb +2 -0
- data/lib/google/cloud/webrisk/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a9a934efc1c8939bae49f4f952e53dcaa79a3c91aae2a1c6df97c9c3731bdf24
|
|
4
|
+
data.tar.gz: d71dcbbb50d21de71d808314b3965705ce7f80c6202322b78b39062643b8ec5c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0e82051055be11601fde8d882ef14825a3233af1f30541256101db14981469fb0154df46599b9ffa598a925121d3f74615cf7d4cfc17f845008c4837001f9052
|
|
7
|
+
data.tar.gz: 49e3151e0eaa82304cd8feadd67507ff8e8102eb7d7d58e7d01ad304d51155de455d3aa1b36c67a2b9f7270d4ba6050b9260bccdd6b7c101a7c7a01daa158f3f
|
|
@@ -20,14 +20,14 @@ module Google
|
|
|
20
20
|
# Describes an API diff request.
|
|
21
21
|
# @!attribute [rw] threat_type
|
|
22
22
|
# @return [Google::Cloud::Webrisk::V1beta1::ThreatType]
|
|
23
|
-
#
|
|
23
|
+
# The ThreatList to update.
|
|
24
24
|
# @!attribute [rw] version_token
|
|
25
25
|
# @return [String]
|
|
26
26
|
# The current version token of the client for the requested list (the
|
|
27
27
|
# client version that was received from the last successful diff).
|
|
28
28
|
# @!attribute [rw] constraints
|
|
29
29
|
# @return [Google::Cloud::Webrisk::V1beta1::ComputeThreatListDiffRequest::Constraints]
|
|
30
|
-
# The constraints associated with this request.
|
|
30
|
+
# Required. The constraints associated with this request.
|
|
31
31
|
class ComputeThreatListDiffRequest
|
|
32
32
|
# The constraints for this diff.
|
|
33
33
|
# @!attribute [rw] max_diff_entries
|
|
@@ -48,7 +48,7 @@ module Google
|
|
|
48
48
|
|
|
49
49
|
# @!attribute [rw] response_type
|
|
50
50
|
# @return [Google::Cloud::Webrisk::V1beta1::ComputeThreatListDiffResponse::ResponseType]
|
|
51
|
-
# The type of response. This may indicate that an action
|
|
51
|
+
# The type of response. This may indicate that an action must be taken by the
|
|
52
52
|
# client when the response is received.
|
|
53
53
|
# @!attribute [rw] additions
|
|
54
54
|
# @return [Google::Cloud::Webrisk::V1beta1::ThreatEntryAdditions]
|
|
@@ -98,7 +98,7 @@ module Google
|
|
|
98
98
|
# Request to check URI entries against threatLists.
|
|
99
99
|
# @!attribute [rw] uri
|
|
100
100
|
# @return [String]
|
|
101
|
-
# The URI to be checked for matches.
|
|
101
|
+
# Required. The URI to be checked for matches.
|
|
102
102
|
# @!attribute [rw] threat_types
|
|
103
103
|
# @return [Array<Google::Cloud::Webrisk::V1beta1::ThreatType>]
|
|
104
104
|
# Required. The ThreatLists to search in.
|
|
@@ -190,9 +190,9 @@ module Google
|
|
|
190
190
|
# Gets the most recent threat list diffs.
|
|
191
191
|
#
|
|
192
192
|
# @param threat_type [Google::Cloud::Webrisk::V1beta1::ThreatType]
|
|
193
|
-
#
|
|
193
|
+
# The ThreatList to update.
|
|
194
194
|
# @param constraints [Google::Cloud::Webrisk::V1beta1::ComputeThreatListDiffRequest::Constraints | Hash]
|
|
195
|
-
# The constraints associated with this request.
|
|
195
|
+
# Required. The constraints associated with this request.
|
|
196
196
|
# A hash of the same form as `Google::Cloud::Webrisk::V1beta1::ComputeThreatListDiffRequest::Constraints`
|
|
197
197
|
# can also be provided.
|
|
198
198
|
# @param version_token [String]
|
|
@@ -236,7 +236,7 @@ module Google
|
|
|
236
236
|
# This method is used to check whether a URI is on a given threatList.
|
|
237
237
|
#
|
|
238
238
|
# @param uri [String]
|
|
239
|
-
# The URI to be checked for matches.
|
|
239
|
+
# Required. The URI to be checked for matches.
|
|
240
240
|
# @param threat_types [Array<Google::Cloud::Webrisk::V1beta1::ThreatType>]
|
|
241
241
|
# Required. The ThreatLists to search in.
|
|
242
242
|
# @param options [Google::Gax::CallOptions]
|
|
@@ -5,6 +5,8 @@
|
|
|
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'
|
|
8
10
|
require 'google/protobuf/timestamp_pb'
|
|
9
11
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
10
12
|
add_message "google.cloud.webrisk.v1beta1.ComputeThreatListDiffRequest" do
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-webrisk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
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-10-
|
|
11
|
+
date: 2019-10-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-gax
|
|
@@ -133,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
133
133
|
- !ruby/object:Gem::Version
|
|
134
134
|
version: '0'
|
|
135
135
|
requirements: []
|
|
136
|
-
rubygems_version: 3.0.
|
|
136
|
+
rubygems_version: 3.0.6
|
|
137
137
|
signing_key:
|
|
138
138
|
specification_version: 4
|
|
139
139
|
summary: API Client library for Web Risk API
|