google-cloud-web_risk-v1beta1 0.4.1 → 0.4.5
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/.yardopts +1 -1
- data/AUTHENTICATION.md +15 -33
- data/README.md +1 -1
- data/lib/google/cloud/web_risk/v1beta1/version.rb +1 -1
- data/lib/google/cloud/web_risk/v1beta1/web_risk_service/client.rb +87 -52
- data/lib/google/cloud/webrisk/v1beta1/webrisk_pb.rb +2 -2
- data/proto_docs/google/api/field_behavior.rb +7 -1
- data/proto_docs/google/api/resource.rb +10 -71
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 318d5e1dc45c3a08add742f6bc33c21dc2ea59f578555e6a14f730d3830c1211
|
4
|
+
data.tar.gz: 0ef9c5edc34066259a40b67da1393810b070a48675b9e389efb26410e9eb06a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 408126ea1f5f3b4f70e45d1c0fd6b50b38a2a0d7d88e488a396c69e3a286aae42e67aa9d2b89e994605f75c4bb1cb77ebe9174252f47a6d76fe54034cca9faaa
|
7
|
+
data.tar.gz: efe4dd26828909d59872755e74a444e855baf26a8378cffef6c12d20dd44812f1138853e2ceba36fc8278d7bf9d85a1fa66530711458f4ac8110173ed9e1a993
|
data/.yardopts
CHANGED
data/AUTHENTICATION.md
CHANGED
@@ -66,11 +66,11 @@ The environment variables that google-cloud-web_risk-v1beta1
|
|
66
66
|
checks for credentials are configured on the service Credentials class (such as
|
67
67
|
{::Google::Cloud::WebRisk::V1beta1::WebRiskService::Credentials}):
|
68
68
|
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
69
|
+
* `WEBRISK_CREDENTIALS` - Path to JSON file, or JSON contents
|
70
|
+
* `WEBRISK_KEYFILE` - Path to JSON file, or JSON contents
|
71
|
+
* `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
|
72
|
+
* `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents
|
73
|
+
* `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
|
74
74
|
|
75
75
|
```ruby
|
76
76
|
require "google/cloud/web_risk/v1beta1"
|
@@ -82,8 +82,8 @@ client = ::Google::Cloud::WebRisk::V1beta1::WebRiskService::Client.new
|
|
82
82
|
|
83
83
|
### Configuration
|
84
84
|
|
85
|
-
The **Credentials JSON** can be configured instead of
|
86
|
-
environment
|
85
|
+
The path to the **Credentials JSON** file can be configured instead of storing
|
86
|
+
it in an environment variable. Either on an individual client initialization:
|
87
87
|
|
88
88
|
```ruby
|
89
89
|
require "google/cloud/web_risk/v1beta1"
|
@@ -93,7 +93,7 @@ client = ::Google::Cloud::WebRisk::V1beta1::WebRiskService::Client.new do |confi
|
|
93
93
|
end
|
94
94
|
```
|
95
95
|
|
96
|
-
Or
|
96
|
+
Or globally for all clients:
|
97
97
|
|
98
98
|
```ruby
|
99
99
|
require "google/cloud/web_risk/v1beta1"
|
@@ -120,15 +120,6 @@ To configure your system for this, simply:
|
|
120
120
|
**NOTE:** This is _not_ recommended for running in production. The Cloud SDK
|
121
121
|
*should* only be used during development.
|
122
122
|
|
123
|
-
[gce-how-to]: https://cloud.google.com/compute/docs/authentication#using
|
124
|
-
[dev-console]: https://console.cloud.google.com/project
|
125
|
-
|
126
|
-
[enable-apis]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/enable-apis.png
|
127
|
-
|
128
|
-
[create-new-service-account]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/create-new-service-account.png
|
129
|
-
[create-new-service-account-existing-keys]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/create-new-service-account-existing-keys.png
|
130
|
-
[reuse-service-account]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/reuse-service-account.png
|
131
|
-
|
132
123
|
## Creating a Service Account
|
133
124
|
|
134
125
|
Google Cloud requires **Service Account Credentials** to
|
@@ -139,31 +130,22 @@ If you are not running this client within
|
|
139
130
|
[Google Cloud Platform environments](#google-cloud-platform-environments), you
|
140
131
|
need a Google Developers service account.
|
141
132
|
|
142
|
-
1. Visit the [Google
|
133
|
+
1. Visit the [Google Cloud Console](https://console.cloud.google.com/project).
|
143
134
|
2. Create a new project or click on an existing project.
|
144
|
-
3. Activate the
|
135
|
+
3. Activate the menu in the upper left and select **APIs & Services**. From
|
145
136
|
here, you will enable the APIs that your application requires.
|
146
137
|
|
147
|
-
![Enable the APIs that your application requires][enable-apis]
|
148
|
-
|
149
138
|
*Note: You may need to enable billing in order to use these services.*
|
150
139
|
|
151
140
|
4. Select **Credentials** from the side navigation.
|
152
141
|
|
153
|
-
|
154
|
-
|
155
|
-
![Create a new service account][create-new-service-account]
|
156
|
-
|
157
|
-
![Create a new service account With Existing Keys][create-new-service-account-existing-keys]
|
158
|
-
|
159
|
-
Find the "Add credentials" drop down and select "Service account" to be
|
160
|
-
guided through downloading a new JSON key file.
|
142
|
+
Find the "Create credentials" drop down near the top of the page, and select
|
143
|
+
"Service account" to be guided through downloading a new JSON key file.
|
161
144
|
|
162
145
|
If you want to re-use an existing service account, you can easily generate a
|
163
|
-
new key file. Just select the account you wish to re-use,
|
164
|
-
|
165
|
-
|
166
|
-
![Re-use an existing service account][reuse-service-account]
|
146
|
+
new key file. Just select the account you wish to re-use, click the pencil
|
147
|
+
tool on the right side to edit the service account, select the **Keys** tab,
|
148
|
+
and then select **Add Key**.
|
167
149
|
|
168
150
|
The key file you download will be used by this library to authenticate API
|
169
151
|
requests and should be stored in a secure location.
|
data/README.md
CHANGED
@@ -33,7 +33,7 @@ In order to use this library, you first need to go through the following steps:
|
|
33
33
|
require "google/cloud/web_risk/v1beta1"
|
34
34
|
|
35
35
|
client = ::Google::Cloud::WebRisk::V1beta1::WebRiskService::Client.new
|
36
|
-
request =
|
36
|
+
request = ::Google::Cloud::WebRisk::V1beta1::ComputeThreatListDiffRequest.new # (request fields as keyword arguments...)
|
37
37
|
response = client.compute_threat_list_diff request
|
38
38
|
```
|
39
39
|
|
@@ -40,13 +40,12 @@ module Google
|
|
40
40
|
# See {::Google::Cloud::WebRisk::V1beta1::WebRiskService::Client::Configuration}
|
41
41
|
# for a description of the configuration fields.
|
42
42
|
#
|
43
|
-
#
|
43
|
+
# @example
|
44
44
|
#
|
45
|
-
#
|
46
|
-
#
|
47
|
-
#
|
48
|
-
#
|
49
|
-
# end
|
45
|
+
# # Modify the configuration for all WebRiskService clients
|
46
|
+
# ::Google::Cloud::WebRisk::V1beta1::WebRiskService::Client.configure do |config|
|
47
|
+
# config.timeout = 10.0
|
48
|
+
# end
|
50
49
|
#
|
51
50
|
# @yield [config] Configure the Client client.
|
52
51
|
# @yieldparam config [Client::Configuration]
|
@@ -66,26 +65,17 @@ module Google
|
|
66
65
|
|
67
66
|
default_config.rpcs.compute_threat_list_diff.timeout = 600.0
|
68
67
|
default_config.rpcs.compute_threat_list_diff.retry_policy = {
|
69
|
-
initial_delay: 0.1,
|
70
|
-
max_delay: 60.0,
|
71
|
-
multiplier: 1.3,
|
72
|
-
retry_codes: [4, 14]
|
68
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
73
69
|
}
|
74
70
|
|
75
71
|
default_config.rpcs.search_uris.timeout = 600.0
|
76
72
|
default_config.rpcs.search_uris.retry_policy = {
|
77
|
-
initial_delay: 0.1,
|
78
|
-
max_delay: 60.0,
|
79
|
-
multiplier: 1.3,
|
80
|
-
retry_codes: [4, 14]
|
73
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
81
74
|
}
|
82
75
|
|
83
76
|
default_config.rpcs.search_hashes.timeout = 600.0
|
84
77
|
default_config.rpcs.search_hashes.retry_policy = {
|
85
|
-
initial_delay: 0.1,
|
86
|
-
max_delay: 60.0,
|
87
|
-
multiplier: 1.3,
|
88
|
-
retry_codes: [4, 14]
|
78
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
89
79
|
}
|
90
80
|
|
91
81
|
default_config
|
@@ -117,19 +107,15 @@ module Google
|
|
117
107
|
##
|
118
108
|
# Create a new WebRiskService client object.
|
119
109
|
#
|
120
|
-
#
|
121
|
-
#
|
122
|
-
# To create a new WebRiskService client with the default
|
123
|
-
# configuration:
|
110
|
+
# @example
|
124
111
|
#
|
125
|
-
#
|
112
|
+
# # Create a client using the default configuration
|
113
|
+
# client = ::Google::Cloud::WebRisk::V1beta1::WebRiskService::Client.new
|
126
114
|
#
|
127
|
-
#
|
128
|
-
#
|
129
|
-
#
|
130
|
-
#
|
131
|
-
# config.timeout = 10.0
|
132
|
-
# end
|
115
|
+
# # Create a client using a custom configuration
|
116
|
+
# client = ::Google::Cloud::WebRisk::V1beta1::WebRiskService::Client.new do |config|
|
117
|
+
# config.timeout = 10.0
|
118
|
+
# end
|
133
119
|
#
|
134
120
|
# @yield [config] Configure the WebRiskService client.
|
135
121
|
# @yieldparam config [Client::Configuration]
|
@@ -149,14 +135,13 @@ module Google
|
|
149
135
|
|
150
136
|
# Create credentials
|
151
137
|
credentials = @config.credentials
|
152
|
-
# Use self-signed JWT if the
|
138
|
+
# Use self-signed JWT if the endpoint is unchanged from default,
|
153
139
|
# but only if the default endpoint does not have a region prefix.
|
154
|
-
enable_self_signed_jwt = @config.
|
155
|
-
@config.endpoint == Client.configure.endpoint &&
|
140
|
+
enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
|
156
141
|
!@config.endpoint.split(".").first.include?("-")
|
157
142
|
credentials ||= Credentials.default scope: @config.scope,
|
158
143
|
enable_self_signed_jwt: enable_self_signed_jwt
|
159
|
-
if credentials.is_a?(String) || credentials.is_a?(Hash)
|
144
|
+
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
160
145
|
credentials = Credentials.new credentials, scope: @config.scope
|
161
146
|
end
|
162
147
|
@quota_project_id = @config.quota_project
|
@@ -207,6 +192,21 @@ module Google
|
|
207
192
|
#
|
208
193
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
209
194
|
#
|
195
|
+
# @example Basic example
|
196
|
+
# require "google/cloud/web_risk/v1beta1"
|
197
|
+
#
|
198
|
+
# # Create a client object. The client can be reused for multiple calls.
|
199
|
+
# client = Google::Cloud::WebRisk::V1beta1::WebRiskService::Client.new
|
200
|
+
#
|
201
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
202
|
+
# request = Google::Cloud::WebRisk::V1beta1::ComputeThreatListDiffRequest.new
|
203
|
+
#
|
204
|
+
# # Call the compute_threat_list_diff method.
|
205
|
+
# result = client.compute_threat_list_diff request
|
206
|
+
#
|
207
|
+
# # The returned object is of type Google::Cloud::WebRisk::V1beta1::ComputeThreatListDiffResponse.
|
208
|
+
# p result
|
209
|
+
#
|
210
210
|
def compute_threat_list_diff request, options = nil
|
211
211
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
212
212
|
|
@@ -227,7 +227,9 @@ module Google
|
|
227
227
|
options.apply_defaults timeout: @config.rpcs.compute_threat_list_diff.timeout,
|
228
228
|
metadata: metadata,
|
229
229
|
retry_policy: @config.rpcs.compute_threat_list_diff.retry_policy
|
230
|
-
|
230
|
+
|
231
|
+
options.apply_defaults timeout: @config.timeout,
|
232
|
+
metadata: @config.metadata,
|
231
233
|
retry_policy: @config.retry_policy
|
232
234
|
|
233
235
|
@web_risk_service_stub.call_rpc :compute_threat_list_diff, request, options: options do |response, operation|
|
@@ -269,6 +271,21 @@ module Google
|
|
269
271
|
#
|
270
272
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
271
273
|
#
|
274
|
+
# @example Basic example
|
275
|
+
# require "google/cloud/web_risk/v1beta1"
|
276
|
+
#
|
277
|
+
# # Create a client object. The client can be reused for multiple calls.
|
278
|
+
# client = Google::Cloud::WebRisk::V1beta1::WebRiskService::Client.new
|
279
|
+
#
|
280
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
281
|
+
# request = Google::Cloud::WebRisk::V1beta1::SearchUrisRequest.new
|
282
|
+
#
|
283
|
+
# # Call the search_uris method.
|
284
|
+
# result = client.search_uris request
|
285
|
+
#
|
286
|
+
# # The returned object is of type Google::Cloud::WebRisk::V1beta1::SearchUrisResponse.
|
287
|
+
# p result
|
288
|
+
#
|
272
289
|
def search_uris request, options = nil
|
273
290
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
274
291
|
|
@@ -289,7 +306,9 @@ module Google
|
|
289
306
|
options.apply_defaults timeout: @config.rpcs.search_uris.timeout,
|
290
307
|
metadata: metadata,
|
291
308
|
retry_policy: @config.rpcs.search_uris.retry_policy
|
292
|
-
|
309
|
+
|
310
|
+
options.apply_defaults timeout: @config.timeout,
|
311
|
+
metadata: @config.metadata,
|
293
312
|
retry_policy: @config.retry_policy
|
294
313
|
|
295
314
|
@web_risk_service_stub.call_rpc :search_uris, request, options: options do |response, operation|
|
@@ -336,6 +355,21 @@ module Google
|
|
336
355
|
#
|
337
356
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
338
357
|
#
|
358
|
+
# @example Basic example
|
359
|
+
# require "google/cloud/web_risk/v1beta1"
|
360
|
+
#
|
361
|
+
# # Create a client object. The client can be reused for multiple calls.
|
362
|
+
# client = Google::Cloud::WebRisk::V1beta1::WebRiskService::Client.new
|
363
|
+
#
|
364
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
365
|
+
# request = Google::Cloud::WebRisk::V1beta1::SearchHashesRequest.new
|
366
|
+
#
|
367
|
+
# # Call the search_hashes method.
|
368
|
+
# result = client.search_hashes request
|
369
|
+
#
|
370
|
+
# # The returned object is of type Google::Cloud::WebRisk::V1beta1::SearchHashesResponse.
|
371
|
+
# p result
|
372
|
+
#
|
339
373
|
def search_hashes request, options = nil
|
340
374
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
341
375
|
|
@@ -356,7 +390,9 @@ module Google
|
|
356
390
|
options.apply_defaults timeout: @config.rpcs.search_hashes.timeout,
|
357
391
|
metadata: metadata,
|
358
392
|
retry_policy: @config.rpcs.search_hashes.retry_policy
|
359
|
-
|
393
|
+
|
394
|
+
options.apply_defaults timeout: @config.timeout,
|
395
|
+
metadata: @config.metadata,
|
360
396
|
retry_policy: @config.retry_policy
|
361
397
|
|
362
398
|
@web_risk_service_stub.call_rpc :search_hashes, request, options: options do |response, operation|
|
@@ -380,22 +416,21 @@ module Google
|
|
380
416
|
# Configuration can be applied globally to all clients, or to a single client
|
381
417
|
# on construction.
|
382
418
|
#
|
383
|
-
#
|
384
|
-
#
|
385
|
-
#
|
386
|
-
# to 20 seconds,
|
387
|
-
#
|
388
|
-
#
|
389
|
-
#
|
390
|
-
#
|
391
|
-
#
|
392
|
-
#
|
393
|
-
#
|
394
|
-
#
|
395
|
-
#
|
396
|
-
#
|
397
|
-
#
|
398
|
-
# end
|
419
|
+
# @example
|
420
|
+
#
|
421
|
+
# # Modify the global config, setting the timeout for
|
422
|
+
# # compute_threat_list_diff to 20 seconds,
|
423
|
+
# # and all remaining timeouts to 10 seconds.
|
424
|
+
# ::Google::Cloud::WebRisk::V1beta1::WebRiskService::Client.configure do |config|
|
425
|
+
# config.timeout = 10.0
|
426
|
+
# config.rpcs.compute_threat_list_diff.timeout = 20.0
|
427
|
+
# end
|
428
|
+
#
|
429
|
+
# # Apply the above configuration only to a new client.
|
430
|
+
# client = ::Google::Cloud::WebRisk::V1beta1::WebRiskService::Client.new do |config|
|
431
|
+
# config.timeout = 10.0
|
432
|
+
# config.rpcs.compute_threat_list_diff.timeout = 20.0
|
433
|
+
# end
|
399
434
|
#
|
400
435
|
# @!attribute [rw] endpoint
|
401
436
|
# The hostname or hostname:port of the service endpoint.
|
@@ -1,12 +1,12 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/webrisk/v1beta1/webrisk.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'google/api/annotations_pb'
|
7
5
|
require 'google/api/client_pb'
|
8
6
|
require 'google/api/field_behavior_pb'
|
9
7
|
require 'google/protobuf/timestamp_pb'
|
8
|
+
require 'google/protobuf'
|
9
|
+
|
10
10
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
11
11
|
add_file("google/cloud/webrisk/v1beta1/webrisk.proto", :syntax => :proto3) do
|
12
12
|
add_message "google.cloud.webrisk.v1beta1.ComputeThreatListDiffRequest" do
|
@@ -57,9 +57,15 @@ module Google
|
|
57
57
|
|
58
58
|
# Denotes that a (repeated) field is an unordered list.
|
59
59
|
# This indicates that the service may provide the elements of the list
|
60
|
-
# in any arbitrary
|
60
|
+
# in any arbitrary order, rather than the order the user originally
|
61
61
|
# provided. Additionally, the list's order may or may not be stable.
|
62
62
|
UNORDERED_LIST = 6
|
63
|
+
|
64
|
+
# Denotes that this field returns a non-empty default value if not set.
|
65
|
+
# This indicates that if the user provides the empty value in a request,
|
66
|
+
# a non-empty value will be returned. The user will not be aware of what
|
67
|
+
# non-empty value to expect.
|
68
|
+
NON_EMPTY_DEFAULT = 7
|
63
69
|
end
|
64
70
|
end
|
65
71
|
end
|
@@ -33,11 +33,7 @@ module Google
|
|
33
33
|
# // For Kubernetes resources, the format is {api group}/{kind}.
|
34
34
|
# option (google.api.resource) = {
|
35
35
|
# type: "pubsub.googleapis.com/Topic"
|
36
|
-
#
|
37
|
-
# pattern: "projects/{project}/topics/{topic}"
|
38
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Project"
|
39
|
-
# parent_name_extractor: "projects/{project}"
|
40
|
-
# }
|
36
|
+
# pattern: "projects/{project}/topics/{topic}"
|
41
37
|
# };
|
42
38
|
# }
|
43
39
|
#
|
@@ -45,10 +41,7 @@ module Google
|
|
45
41
|
#
|
46
42
|
# resources:
|
47
43
|
# - type: "pubsub.googleapis.com/Topic"
|
48
|
-
#
|
49
|
-
# - pattern: "projects/{project}/topics/{topic}"
|
50
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Project"
|
51
|
-
# parent_name_extractor: "projects/{project}"
|
44
|
+
# pattern: "projects/{project}/topics/{topic}"
|
52
45
|
#
|
53
46
|
# Sometimes, resources have multiple patterns, typically because they can
|
54
47
|
# live under multiple parents.
|
@@ -58,26 +51,10 @@ module Google
|
|
58
51
|
# message LogEntry {
|
59
52
|
# option (google.api.resource) = {
|
60
53
|
# type: "logging.googleapis.com/LogEntry"
|
61
|
-
#
|
62
|
-
#
|
63
|
-
#
|
64
|
-
#
|
65
|
-
# }
|
66
|
-
# name_descriptor: {
|
67
|
-
# pattern: "folders/{folder}/logs/{log}"
|
68
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Folder"
|
69
|
-
# parent_name_extractor: "folders/{folder}"
|
70
|
-
# }
|
71
|
-
# name_descriptor: {
|
72
|
-
# pattern: "organizations/{organization}/logs/{log}"
|
73
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Organization"
|
74
|
-
# parent_name_extractor: "organizations/{organization}"
|
75
|
-
# }
|
76
|
-
# name_descriptor: {
|
77
|
-
# pattern: "billingAccounts/{billing_account}/logs/{log}"
|
78
|
-
# parent_type: "billing.googleapis.com/BillingAccount"
|
79
|
-
# parent_name_extractor: "billingAccounts/{billing_account}"
|
80
|
-
# }
|
54
|
+
# pattern: "projects/{project}/logs/{log}"
|
55
|
+
# pattern: "folders/{folder}/logs/{log}"
|
56
|
+
# pattern: "organizations/{organization}/logs/{log}"
|
57
|
+
# pattern: "billingAccounts/{billing_account}/logs/{log}"
|
81
58
|
# };
|
82
59
|
# }
|
83
60
|
#
|
@@ -85,48 +62,10 @@ module Google
|
|
85
62
|
#
|
86
63
|
# resources:
|
87
64
|
# - type: 'logging.googleapis.com/LogEntry'
|
88
|
-
#
|
89
|
-
#
|
90
|
-
#
|
91
|
-
#
|
92
|
-
# - pattern: "folders/{folder}/logs/{log}"
|
93
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Folder"
|
94
|
-
# parent_name_extractor: "folders/{folder}"
|
95
|
-
# - pattern: "organizations/{organization}/logs/{log}"
|
96
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Organization"
|
97
|
-
# parent_name_extractor: "organizations/{organization}"
|
98
|
-
# - pattern: "billingAccounts/{billing_account}/logs/{log}"
|
99
|
-
# parent_type: "billing.googleapis.com/BillingAccount"
|
100
|
-
# parent_name_extractor: "billingAccounts/{billing_account}"
|
101
|
-
#
|
102
|
-
# For flexible resources, the resource name doesn't contain parent names, but
|
103
|
-
# the resource itself has parents for policy evaluation.
|
104
|
-
#
|
105
|
-
# Example:
|
106
|
-
#
|
107
|
-
# message Shelf {
|
108
|
-
# option (google.api.resource) = {
|
109
|
-
# type: "library.googleapis.com/Shelf"
|
110
|
-
# name_descriptor: {
|
111
|
-
# pattern: "shelves/{shelf}"
|
112
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Project"
|
113
|
-
# }
|
114
|
-
# name_descriptor: {
|
115
|
-
# pattern: "shelves/{shelf}"
|
116
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Folder"
|
117
|
-
# }
|
118
|
-
# };
|
119
|
-
# }
|
120
|
-
#
|
121
|
-
# The ResourceDescriptor Yaml config will look like:
|
122
|
-
#
|
123
|
-
# resources:
|
124
|
-
# - type: 'library.googleapis.com/Shelf'
|
125
|
-
# name_descriptor:
|
126
|
-
# - pattern: "shelves/{shelf}"
|
127
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Project"
|
128
|
-
# - pattern: "shelves/{shelf}"
|
129
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Folder"
|
65
|
+
# pattern: "projects/{project}/logs/{log}"
|
66
|
+
# pattern: "folders/{folder}/logs/{log}"
|
67
|
+
# pattern: "organizations/{organization}/logs/{log}"
|
68
|
+
# pattern: "billingAccounts/{billing_account}/logs/{log}"
|
130
69
|
# @!attribute [rw] type
|
131
70
|
# @return [::String]
|
132
71
|
# The resource type. It must be in the format of
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-web_risk-v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.7'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.7'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -202,7 +202,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
202
202
|
- !ruby/object:Gem::Version
|
203
203
|
version: '0'
|
204
204
|
requirements: []
|
205
|
-
rubygems_version: 3.
|
205
|
+
rubygems_version: 3.3.4
|
206
206
|
signing_key:
|
207
207
|
specification_version: 4
|
208
208
|
summary: API Client library for the Web Risk V1beta1 API
|