google-cloud-web_risk-v1beta1 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,307 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2020 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
20
+ module Google
21
+ module Cloud
22
+ module WebRisk
23
+ module V1beta1
24
+ # Describes an API diff request.
25
+ # @!attribute [rw] threat_type
26
+ # @return [Google::Cloud::WebRisk::V1beta1::ThreatType]
27
+ # The ThreatList to update.
28
+ # @!attribute [rw] version_token
29
+ # @return [String]
30
+ # The current version token of the client for the requested list (the
31
+ # client version that was received from the last successful diff).
32
+ # @!attribute [rw] constraints
33
+ # @return [Google::Cloud::WebRisk::V1beta1::ComputeThreatListDiffRequest::Constraints]
34
+ # Required. The constraints associated with this request.
35
+ class ComputeThreatListDiffRequest
36
+ include Google::Protobuf::MessageExts
37
+ extend Google::Protobuf::MessageExts::ClassMethods
38
+
39
+ # The constraints for this diff.
40
+ # @!attribute [rw] max_diff_entries
41
+ # @return [Integer]
42
+ # The maximum size in number of entries. The diff will not contain more
43
+ # entries than this value. This should be a power of 2 between 2**10 and
44
+ # 2**20. If zero, no diff size limit is set.
45
+ # @!attribute [rw] max_database_entries
46
+ # @return [Integer]
47
+ # Sets the maximum number of entries that the client is willing to have
48
+ # in the local database. This should be a power of 2 between 2**10 and
49
+ # 2**20. If zero, no database size limit is set.
50
+ # @!attribute [rw] supported_compressions
51
+ # @return [Array<Google::Cloud::WebRisk::V1beta1::CompressionType>]
52
+ # The compression types supported by the client.
53
+ class Constraints
54
+ include Google::Protobuf::MessageExts
55
+ extend Google::Protobuf::MessageExts::ClassMethods
56
+ end
57
+ end
58
+
59
+ # @!attribute [rw] response_type
60
+ # @return [Google::Cloud::WebRisk::V1beta1::ComputeThreatListDiffResponse::ResponseType]
61
+ # The type of response. This may indicate that an action must be taken by the
62
+ # client when the response is received.
63
+ # @!attribute [rw] additions
64
+ # @return [Google::Cloud::WebRisk::V1beta1::ThreatEntryAdditions]
65
+ # A set of entries to add to a local threat type's list.
66
+ # @!attribute [rw] removals
67
+ # @return [Google::Cloud::WebRisk::V1beta1::ThreatEntryRemovals]
68
+ # A set of entries to remove from a local threat type's list.
69
+ # This field may be empty.
70
+ # @!attribute [rw] new_version_token
71
+ # @return [String]
72
+ # The new opaque client version token.
73
+ # @!attribute [rw] checksum
74
+ # @return [Google::Cloud::WebRisk::V1beta1::ComputeThreatListDiffResponse::Checksum]
75
+ # The expected SHA256 hash of the client state; that is, of the sorted list
76
+ # of all hashes present in the database after applying the provided diff.
77
+ # If the client state doesn't match the expected state, the client must
78
+ # disregard this diff and retry later.
79
+ # @!attribute [rw] recommended_next_diff
80
+ # @return [Google::Protobuf::Timestamp]
81
+ # The soonest the client should wait before issuing any diff
82
+ # request. Querying sooner is unlikely to produce a meaningful diff.
83
+ # Waiting longer is acceptable considering the use case.
84
+ # If this field is not set clients may update as soon as they want.
85
+ class ComputeThreatListDiffResponse
86
+ include Google::Protobuf::MessageExts
87
+ extend Google::Protobuf::MessageExts::ClassMethods
88
+
89
+ # The expected state of a client's local database.
90
+ # @!attribute [rw] sha256
91
+ # @return [String]
92
+ # The SHA256 hash of the client state; that is, of the sorted list of all
93
+ # hashes present in the database.
94
+ class Checksum
95
+ include Google::Protobuf::MessageExts
96
+ extend Google::Protobuf::MessageExts::ClassMethods
97
+ end
98
+
99
+ # The type of response sent to the client.
100
+ module ResponseType
101
+ # Unknown.
102
+ RESPONSE_TYPE_UNSPECIFIED = 0
103
+
104
+ # Partial updates are applied to the client's existing local database.
105
+ DIFF = 1
106
+
107
+ # Full updates resets the client's entire local database. This means
108
+ # that either the client had no state, was seriously out-of-date,
109
+ # or the client is believed to be corrupt.
110
+ RESET = 2
111
+ end
112
+ end
113
+
114
+ # Request to check URI entries against threatLists.
115
+ # @!attribute [rw] uri
116
+ # @return [String]
117
+ # Required. The URI to be checked for matches.
118
+ # @!attribute [rw] threat_types
119
+ # @return [Array<Google::Cloud::WebRisk::V1beta1::ThreatType>]
120
+ # Required. The ThreatLists to search in.
121
+ class SearchUrisRequest
122
+ include Google::Protobuf::MessageExts
123
+ extend Google::Protobuf::MessageExts::ClassMethods
124
+ end
125
+
126
+ # @!attribute [rw] threat
127
+ # @return [Google::Cloud::WebRisk::V1beta1::SearchUrisResponse::ThreatUri]
128
+ # The threat list matches. This may be empty if the URI is on no list.
129
+ class SearchUrisResponse
130
+ include Google::Protobuf::MessageExts
131
+ extend Google::Protobuf::MessageExts::ClassMethods
132
+
133
+ # Contains threat information on a matching uri.
134
+ # @!attribute [rw] threat_types
135
+ # @return [Array<Google::Cloud::WebRisk::V1beta1::ThreatType>]
136
+ # The ThreatList this threat belongs to.
137
+ # @!attribute [rw] expire_time
138
+ # @return [Google::Protobuf::Timestamp]
139
+ # The cache lifetime for the returned match. Clients must not cache this
140
+ # response past this timestamp to avoid false positives.
141
+ class ThreatUri
142
+ include Google::Protobuf::MessageExts
143
+ extend Google::Protobuf::MessageExts::ClassMethods
144
+ end
145
+ end
146
+
147
+ # Request to return full hashes matched by the provided hash prefixes.
148
+ # @!attribute [rw] hash_prefix
149
+ # @return [String]
150
+ # A hash prefix, consisting of the most significant 4-32 bytes of a SHA256
151
+ # hash. For JSON requests, this field is base64-encoded.
152
+ # @!attribute [rw] threat_types
153
+ # @return [Array<Google::Cloud::WebRisk::V1beta1::ThreatType>]
154
+ # Required. The ThreatLists to search in.
155
+ class SearchHashesRequest
156
+ include Google::Protobuf::MessageExts
157
+ extend Google::Protobuf::MessageExts::ClassMethods
158
+ end
159
+
160
+ # @!attribute [rw] threats
161
+ # @return [Array<Google::Cloud::WebRisk::V1beta1::SearchHashesResponse::ThreatHash>]
162
+ # The full hashes that matched the requested prefixes.
163
+ # The hash will be populated in the key.
164
+ # @!attribute [rw] negative_expire_time
165
+ # @return [Google::Protobuf::Timestamp]
166
+ # For requested entities that did not match the threat list, how long to
167
+ # cache the response until.
168
+ class SearchHashesResponse
169
+ include Google::Protobuf::MessageExts
170
+ extend Google::Protobuf::MessageExts::ClassMethods
171
+
172
+ # Contains threat information on a matching hash.
173
+ # @!attribute [rw] threat_types
174
+ # @return [Array<Google::Cloud::WebRisk::V1beta1::ThreatType>]
175
+ # The ThreatList this threat belongs to.
176
+ # This must contain at least one entry.
177
+ # @!attribute [rw] hash
178
+ # @return [String]
179
+ # A 32 byte SHA256 hash. This field is in binary format. For JSON
180
+ # requests, hashes are base64-encoded.
181
+ # @!attribute [rw] expire_time
182
+ # @return [Google::Protobuf::Timestamp]
183
+ # The cache lifetime for the returned match. Clients must not cache this
184
+ # response past this timestamp to avoid false positives.
185
+ class ThreatHash
186
+ include Google::Protobuf::MessageExts
187
+ extend Google::Protobuf::MessageExts::ClassMethods
188
+ end
189
+ end
190
+
191
+ # Contains the set of entries to add to a local database.
192
+ # May contain a combination of compressed and raw data in a single response.
193
+ # @!attribute [rw] raw_hashes
194
+ # @return [Array<Google::Cloud::WebRisk::V1beta1::RawHashes>]
195
+ # The raw SHA256-formatted entries.
196
+ # Repeated to allow returning sets of hashes with different prefix sizes.
197
+ # @!attribute [rw] rice_hashes
198
+ # @return [Google::Cloud::WebRisk::V1beta1::RiceDeltaEncoding]
199
+ # The encoded 4-byte prefixes of SHA256-formatted entries, using a
200
+ # Golomb-Rice encoding. The hashes are converted to uint32, sorted in
201
+ # ascending order, then delta encoded and stored as encoded_data.
202
+ class ThreatEntryAdditions
203
+ include Google::Protobuf::MessageExts
204
+ extend Google::Protobuf::MessageExts::ClassMethods
205
+ end
206
+
207
+ # Contains the set of entries to remove from a local database.
208
+ # @!attribute [rw] raw_indices
209
+ # @return [Google::Cloud::WebRisk::V1beta1::RawIndices]
210
+ # The raw removal indices for a local list.
211
+ # @!attribute [rw] rice_indices
212
+ # @return [Google::Cloud::WebRisk::V1beta1::RiceDeltaEncoding]
213
+ # The encoded local, lexicographically-sorted list indices, using a
214
+ # Golomb-Rice encoding. Used for sending compressed removal indices. The
215
+ # removal indices (uint32) are sorted in ascending order, then delta encoded
216
+ # and stored as encoded_data.
217
+ class ThreatEntryRemovals
218
+ include Google::Protobuf::MessageExts
219
+ extend Google::Protobuf::MessageExts::ClassMethods
220
+ end
221
+
222
+ # A set of raw indices to remove from a local list.
223
+ # @!attribute [rw] indices
224
+ # @return [Array<Integer>]
225
+ # The indices to remove from a lexicographically-sorted local list.
226
+ class RawIndices
227
+ include Google::Protobuf::MessageExts
228
+ extend Google::Protobuf::MessageExts::ClassMethods
229
+ end
230
+
231
+ # The uncompressed threat entries in hash format.
232
+ # Hashes can be anywhere from 4 to 32 bytes in size. A large majority are 4
233
+ # bytes, but some hashes are lengthened if they collide with the hash of a
234
+ # popular URI.
235
+ #
236
+ # Used for sending ThreatEntryAdditons to clients that do not support
237
+ # compression, or when sending non-4-byte hashes to clients that do support
238
+ # compression.
239
+ # @!attribute [rw] prefix_size
240
+ # @return [Integer]
241
+ # The number of bytes for each prefix encoded below. This field can be
242
+ # anywhere from 4 (shortest prefix) to 32 (full SHA256 hash).
243
+ # @!attribute [rw] raw_hashes
244
+ # @return [String]
245
+ # The hashes, in binary format, concatenated into one long string. Hashes are
246
+ # sorted in lexicographic order. For JSON API users, hashes are
247
+ # base64-encoded.
248
+ class RawHashes
249
+ include Google::Protobuf::MessageExts
250
+ extend Google::Protobuf::MessageExts::ClassMethods
251
+ end
252
+
253
+ # The Rice-Golomb encoded data. Used for sending compressed 4-byte hashes or
254
+ # compressed removal indices.
255
+ # @!attribute [rw] first_value
256
+ # @return [Integer]
257
+ # The offset of the first entry in the encoded data, or, if only a single
258
+ # integer was encoded, that single integer's value. If the field is empty or
259
+ # missing, assume zero.
260
+ # @!attribute [rw] rice_parameter
261
+ # @return [Integer]
262
+ # The Golomb-Rice parameter, which is a number between 2 and 28. This field
263
+ # is missing (that is, zero) if `num_entries` is zero.
264
+ # @!attribute [rw] entry_count
265
+ # @return [Integer]
266
+ # The number of entries that are delta encoded in the encoded data. If only a
267
+ # single integer was encoded, this will be zero and the single value will be
268
+ # stored in `first_value`.
269
+ # @!attribute [rw] encoded_data
270
+ # @return [String]
271
+ # The encoded deltas that are encoded using the Golomb-Rice coder.
272
+ class RiceDeltaEncoding
273
+ include Google::Protobuf::MessageExts
274
+ extend Google::Protobuf::MessageExts::ClassMethods
275
+ end
276
+
277
+ # The type of threat. This maps dirrectly to the threat list a threat may
278
+ # belong to.
279
+ module ThreatType
280
+ # Unknown.
281
+ THREAT_TYPE_UNSPECIFIED = 0
282
+
283
+ # Malware targeting any platform.
284
+ MALWARE = 1
285
+
286
+ # Social engineering targeting any platform.
287
+ SOCIAL_ENGINEERING = 2
288
+
289
+ # Unwanted software targeting any platform.
290
+ UNWANTED_SOFTWARE = 3
291
+ end
292
+
293
+ # The ways in which threat entry sets can be compressed.
294
+ module CompressionType
295
+ # Unknown.
296
+ COMPRESSION_TYPE_UNSPECIFIED = 0
297
+
298
+ # Raw, uncompressed data.
299
+ RAW = 1
300
+
301
+ # Rice-Golomb encoded data.
302
+ RICE = 2
303
+ end
304
+ end
305
+ end
306
+ end
307
+ end
@@ -0,0 +1,120 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2020 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
20
+ module Google
21
+ module Protobuf
22
+ # A Timestamp represents a point in time independent of any time zone or local
23
+ # calendar, encoded as a count of seconds and fractions of seconds at
24
+ # nanosecond resolution. The count is relative to an epoch at UTC midnight on
25
+ # January 1, 1970, in the proleptic Gregorian calendar which extends the
26
+ # Gregorian calendar backwards to year one.
27
+ #
28
+ # All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap
29
+ # second table is needed for interpretation, using a [24-hour linear
30
+ # smear](https://developers.google.com/time/smear).
31
+ #
32
+ # The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By
33
+ # restricting to that range, we ensure that we can convert to and from [RFC
34
+ # 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.
35
+ #
36
+ # # Examples
37
+ #
38
+ # Example 1: Compute Timestamp from POSIX `time()`.
39
+ #
40
+ # Timestamp timestamp;
41
+ # timestamp.set_seconds(time(NULL));
42
+ # timestamp.set_nanos(0);
43
+ #
44
+ # Example 2: Compute Timestamp from POSIX `gettimeofday()`.
45
+ #
46
+ # struct timeval tv;
47
+ # gettimeofday(&tv, NULL);
48
+ #
49
+ # Timestamp timestamp;
50
+ # timestamp.set_seconds(tv.tv_sec);
51
+ # timestamp.set_nanos(tv.tv_usec * 1000);
52
+ #
53
+ # Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.
54
+ #
55
+ # FILETIME ft;
56
+ # GetSystemTimeAsFileTime(&ft);
57
+ # UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;
58
+ #
59
+ # // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
60
+ # // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
61
+ # Timestamp timestamp;
62
+ # timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));
63
+ # timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));
64
+ #
65
+ # Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.
66
+ #
67
+ # long millis = System.currentTimeMillis();
68
+ #
69
+ # Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
70
+ # .setNanos((int) ((millis % 1000) * 1000000)).build();
71
+ #
72
+ #
73
+ # Example 5: Compute Timestamp from current time in Python.
74
+ #
75
+ # timestamp = Timestamp()
76
+ # timestamp.GetCurrentTime()
77
+ #
78
+ # # JSON Mapping
79
+ #
80
+ # In JSON format, the Timestamp type is encoded as a string in the
81
+ # [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the
82
+ # format is "\\{year}-\\{month}-\\{day}T\\{hour}:\\{min}:\\{sec}[.\\{frac_sec}]Z"
83
+ # where \\{year} is always expressed using four digits while \\{month}, \\{day},
84
+ # \\{hour}, \\{min}, and \\{sec} are zero-padded to two digits each. The fractional
85
+ # seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),
86
+ # are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
87
+ # is required. A proto3 JSON serializer should always use UTC (as indicated by
88
+ # "Z") when printing the Timestamp type and a proto3 JSON parser should be
89
+ # able to accept both UTC and other timezones (as indicated by an offset).
90
+ #
91
+ # For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
92
+ # 01:30 UTC on January 15, 2017.
93
+ #
94
+ # In JavaScript, one can convert a Date object to this format using the
95
+ # standard
96
+ # [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
97
+ # method. In Python, a standard `datetime.datetime` object can be converted
98
+ # to this format using
99
+ # [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
100
+ # the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
101
+ # the Joda Time's [`ISODateTimeFormat.dateTime()`](
102
+ # http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
103
+ # ) to obtain a formatter capable of generating timestamps in this format.
104
+ # @!attribute [rw] seconds
105
+ # @return [Integer]
106
+ # Represents seconds of UTC time since Unix epoch
107
+ # 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
108
+ # 9999-12-31T23:59:59Z inclusive.
109
+ # @!attribute [rw] nanos
110
+ # @return [Integer]
111
+ # Non-negative fractions of a second at nanosecond resolution. Negative
112
+ # second values with fractions must still have non-negative nanos values
113
+ # that count forward in time. Must be from 0 to 999,999,999
114
+ # inclusive.
115
+ class Timestamp
116
+ include Google::Protobuf::MessageExts
117
+ extend Google::Protobuf::MessageExts::ClassMethods
118
+ end
119
+ end
120
+ end
metadata ADDED
@@ -0,0 +1,172 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: google-cloud-web_risk-v1beta1
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Google LLC
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-04-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: gapic-common
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.2'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.2'
27
+ - !ruby/object:Gem::Dependency
28
+ name: google-cloud-errors
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: google-style
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.24.0
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.24.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: minitest
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '5.10'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '5.10'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '12.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '12.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: redcarpet
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '3.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '3.0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: simplecov
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '0.18'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '0.18'
111
+ - !ruby/object:Gem::Dependency
112
+ name: yard
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '0.9'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '0.9'
125
+ description: Web Risk is an enterprise security product that lets your client applications
126
+ check URLs against Google's constantly updated lists of unsafe web resources.
127
+ email: googleapis-packages@google.com
128
+ executables: []
129
+ extensions: []
130
+ extra_rdoc_files: []
131
+ files:
132
+ - ".yardopts"
133
+ - AUTHENTICATION.md
134
+ - LICENSE.md
135
+ - README.md
136
+ - lib/google-cloud-web_risk-v1beta1.rb
137
+ - lib/google/cloud/web_risk/v1beta1.rb
138
+ - lib/google/cloud/web_risk/v1beta1/version.rb
139
+ - lib/google/cloud/web_risk/v1beta1/web_risk_service.rb
140
+ - lib/google/cloud/web_risk/v1beta1/web_risk_service/client.rb
141
+ - lib/google/cloud/web_risk/v1beta1/web_risk_service/credentials.rb
142
+ - lib/google/cloud/webrisk/v1beta1/webrisk_pb.rb
143
+ - lib/google/cloud/webrisk/v1beta1/webrisk_services_pb.rb
144
+ - proto_docs/README.md
145
+ - proto_docs/google/api/field_behavior.rb
146
+ - proto_docs/google/api/resource.rb
147
+ - proto_docs/google/cloud/webrisk/v1beta1/webrisk.rb
148
+ - proto_docs/google/protobuf/timestamp.rb
149
+ homepage: https://github.com/googleapis/google-cloud-ruby
150
+ licenses:
151
+ - Apache-2.0
152
+ metadata: {}
153
+ post_install_message:
154
+ rdoc_options: []
155
+ require_paths:
156
+ - lib
157
+ required_ruby_version: !ruby/object:Gem::Requirement
158
+ requirements:
159
+ - - ">="
160
+ - !ruby/object:Gem::Version
161
+ version: '2.4'
162
+ required_rubygems_version: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ requirements: []
168
+ rubygems_version: 3.0.6
169
+ signing_key:
170
+ specification_version: 4
171
+ summary: API Client library for the Web Risk V1beta1 API
172
+ test_files: []