google-cloud-web_risk-v1 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3f4cdd53448a0713d77d66ca7216c519bade0a63ddf336097ffdb005bd4c59bc
4
- data.tar.gz: 36b6aa3458d4130a2cd59782310cdafc9acd45bc1b7633ac5c4f2d85a15a7ea0
3
+ metadata.gz: c3d92a33eda2441acb3cef4daeabc6009a4285f0d995c2cbe3e7e098a3689ef1
4
+ data.tar.gz: 9e5a303842875e42a4cd46f1a9daa30532e80de8fafe07a01909beca171b47fd
5
5
  SHA512:
6
- metadata.gz: 8150216f5e6ae9968362626f5750692a565ea4291c8846990b4e326cf64e082029db08cf0ea0f0582caf9ee36803a4fb64d42d2ac4147f1dfae75afe0a2fdb0e
7
- data.tar.gz: 275f317a92e0a7ec8d32775ff18fe9c1133155c9b02da960b43bcf43e7c62bd709dc593a4dd5ccfabd9bc23ded3d438d9e6228d50326e2b83f979a30d4a0a61a
6
+ metadata.gz: ddbfa8b2fc4b873a7f7e880b666560e01a1b234eb30e0f37f3b28f24fc2a785bb95a8971e1e318f66c1f803ea66e121997d12026b0794f0b77c39a483e5e4d0f
7
+ data.tar.gz: dacf87a443de67449e10976a3b83d5d2b910682bc46333fecb8bb0c250b67210d286356205e9dbe141b370eb3a6f112ea4a6c95b46e8f9c1434101a34afab25a
data/AUTHENTICATION.md CHANGED
@@ -66,11 +66,11 @@ The environment variables that google-cloud-web_risk-v1
66
66
  checks for credentials are configured on the service Credentials class (such as
67
67
  {::Google::Cloud::WebRisk::V1::WebRiskService::Credentials}):
68
68
 
69
- 1. `WEBRISK_CREDENTIALS` - Path to JSON file, or JSON contents
70
- 2. `WEBRISK_KEYFILE` - Path to JSON file, or JSON contents
71
- 3. `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
72
- 4. `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents
73
- 5. `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
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/v1"
@@ -82,8 +82,8 @@ client = ::Google::Cloud::WebRisk::V1::WebRiskService::Client.new
82
82
 
83
83
  ### Configuration
84
84
 
85
- The **Credentials JSON** can be configured instead of placing them in
86
- environment variables. Either on an individual client initialization:
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/v1"
@@ -93,7 +93,7 @@ client = ::Google::Cloud::WebRisk::V1::WebRiskService::Client.new do |config|
93
93
  end
94
94
  ```
95
95
 
96
- Or configured globally for all clients:
96
+ Or globally for all clients:
97
97
 
98
98
  ```ruby
99
99
  require "google/cloud/web_risk/v1"
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/v1"
34
34
 
35
35
  client = ::Google::Cloud::WebRisk::V1::WebRiskService::Client.new
36
- request = my_create_request
36
+ request = ::Google::Cloud::WebRisk::V1::ComputeThreatListDiffRequest.new # (request fields as keyword arguments...)
37
37
  response = client.compute_threat_list_diff request
38
38
  ```
39
39
 
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module WebRisk
23
23
  module V1
24
- VERSION = "0.4.1"
24
+ VERSION = "0.4.2"
25
25
  end
26
26
  end
27
27
  end
@@ -68,26 +68,17 @@ module Google
68
68
 
69
69
  default_config.rpcs.compute_threat_list_diff.timeout = 600.0
70
70
  default_config.rpcs.compute_threat_list_diff.retry_policy = {
71
- initial_delay: 0.1,
72
- max_delay: 60.0,
73
- multiplier: 1.3,
74
- retry_codes: [4, 14]
71
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
75
72
  }
76
73
 
77
74
  default_config.rpcs.search_uris.timeout = 600.0
78
75
  default_config.rpcs.search_uris.retry_policy = {
79
- initial_delay: 0.1,
80
- max_delay: 60.0,
81
- multiplier: 1.3,
82
- retry_codes: [4, 14]
76
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
83
77
  }
84
78
 
85
79
  default_config.rpcs.search_hashes.timeout = 600.0
86
80
  default_config.rpcs.search_hashes.retry_policy = {
87
- initial_delay: 0.1,
88
- max_delay: 60.0,
89
- multiplier: 1.3,
90
- retry_codes: [4, 14]
81
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
91
82
  }
92
83
 
93
84
  default_config.rpcs.create_submission.timeout = 60.0
@@ -160,7 +151,7 @@ module Google
160
151
  !@config.endpoint.split(".").first.include?("-")
161
152
  credentials ||= Credentials.default scope: @config.scope,
162
153
  enable_self_signed_jwt: enable_self_signed_jwt
163
- if credentials.is_a?(String) || credentials.is_a?(Hash)
154
+ if credentials.is_a?(::String) || credentials.is_a?(::Hash)
164
155
  credentials = Credentials.new credentials, scope: @config.scope
165
156
  end
166
157
  @quota_project_id = @config.quota_project
@@ -28,7 +28,7 @@ module Google
28
28
  # website and in client applications.
29
29
  class Service
30
30
 
31
- include ::GRPC::GenericService
31
+ include GRPC::GenericService
32
32
 
33
33
  self.marshal_class_method = :encode
34
34
  self.unmarshal_class_method = :decode
@@ -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 order, rather than the order the user originally
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
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-web_risk-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.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: 2021-06-17 00:00:00.000000000 Z
11
+ date: 2021-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common