google-cloud-web_security_scanner-v1 0.3.1 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1d2f29d1166a20987db74283ec141cbaf16d417745d0f622b22fff45185dfb5e
4
- data.tar.gz: f35b318bf46a7f0456820aed96cb1372ad168e155b0a841ffb74c8c297b2e2fe
3
+ metadata.gz: 3a57ad2d35247ed15b709cda9168037814e87e3aae01bb227ca5e21b4b0d20b9
4
+ data.tar.gz: b59aa4e519a711522c331c450334139b3161628cb2254065c15d73736424712d
5
5
  SHA512:
6
- metadata.gz: 28e2e18e680d6f193e900b09c2f1ca72227d846c108b55910e2212f847003558c9d670409081cd13c5fa731bff5055769eb5f1ea0178cdf05dd39967fd98e83a
7
- data.tar.gz: 3084f38c393360929a1b3af7310fe1901aabab98bf492d6c876fe244ff9ad6fc58235f754726b742965dd73f4f8c45d4f62f514012061f74262cd5e37e5998c0
6
+ metadata.gz: fb92ed9b37ea90a32c3cf69b139f48ad2d3c6b1e97cfbb668f00a5523b52c5650154f54de5352f0a15f6c2d690b0532462d92ffe516462adeb615f2f9851e2df
7
+ data.tar.gz: 676e60f78b6f811dff98775fc093e07d67017add4fc0237f5ab3357d6401f7c94077a8ea9f7694003b9caff720b6f21d010477149a7aec04285762991c79f05b
data/AUTHENTICATION.md CHANGED
@@ -66,11 +66,11 @@ The environment variables that google-cloud-web_security_scanner-v1
66
66
  checks for credentials are configured on the service Credentials class (such as
67
67
  {::Google::Cloud::WebSecurityScanner::V1::WebSecurityScanner::Credentials}):
68
68
 
69
- 1. `WEB_SECURITY_SCANNER_CREDENTIALS` - Path to JSON file, or JSON contents
70
- 2. `WEB_SECURITY_SCANNER_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
+ * `WEB_SECURITY_SCANNER_CREDENTIALS` - Path to JSON file, or JSON contents
70
+ * `WEB_SECURITY_SCANNER_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_security_scanner/v1"
@@ -82,8 +82,8 @@ client = ::Google::Cloud::WebSecurityScanner::V1::WebSecurityScanner::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_security_scanner/v1"
@@ -93,7 +93,7 @@ client = ::Google::Cloud::WebSecurityScanner::V1::WebSecurityScanner::Client.new
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_security_scanner/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_security_scanner/v1"
34
34
 
35
35
  client = ::Google::Cloud::WebSecurityScanner::V1::WebSecurityScanner::Client.new
36
- request = my_create_request
36
+ request = ::Google::Cloud::WebSecurityScanner::V1::CreateScanConfigRequest.new # (request fields as keyword arguments...)
37
37
  response = client.create_scan_config request
38
38
  ```
39
39
 
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module WebSecurityScanner
23
23
  module V1
24
- VERSION = "0.3.1"
24
+ VERSION = "0.3.2"
25
25
  end
26
26
  end
27
27
  end
@@ -69,26 +69,17 @@ module Google
69
69
 
70
70
  default_config.rpcs.delete_scan_config.timeout = 600.0
71
71
  default_config.rpcs.delete_scan_config.retry_policy = {
72
- initial_delay: 0.1,
73
- max_delay: 60.0,
74
- multiplier: 1.3,
75
- retry_codes: [4, 14]
72
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
76
73
  }
77
74
 
78
75
  default_config.rpcs.get_scan_config.timeout = 600.0
79
76
  default_config.rpcs.get_scan_config.retry_policy = {
80
- initial_delay: 0.1,
81
- max_delay: 60.0,
82
- multiplier: 1.3,
83
- retry_codes: [4, 14]
77
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
84
78
  }
85
79
 
86
80
  default_config.rpcs.list_scan_configs.timeout = 600.0
87
81
  default_config.rpcs.list_scan_configs.retry_policy = {
88
- initial_delay: 0.1,
89
- max_delay: 60.0,
90
- multiplier: 1.3,
91
- retry_codes: [4, 14]
82
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
92
83
  }
93
84
 
94
85
  default_config.rpcs.update_scan_config.timeout = 600.0
@@ -97,52 +88,34 @@ module Google
97
88
 
98
89
  default_config.rpcs.get_scan_run.timeout = 600.0
99
90
  default_config.rpcs.get_scan_run.retry_policy = {
100
- initial_delay: 0.1,
101
- max_delay: 60.0,
102
- multiplier: 1.3,
103
- retry_codes: [4, 14]
91
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
104
92
  }
105
93
 
106
94
  default_config.rpcs.list_scan_runs.timeout = 600.0
107
95
  default_config.rpcs.list_scan_runs.retry_policy = {
108
- initial_delay: 0.1,
109
- max_delay: 60.0,
110
- multiplier: 1.3,
111
- retry_codes: [4, 14]
96
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
112
97
  }
113
98
 
114
99
  default_config.rpcs.stop_scan_run.timeout = 600.0
115
100
 
116
101
  default_config.rpcs.list_crawled_urls.timeout = 600.0
117
102
  default_config.rpcs.list_crawled_urls.retry_policy = {
118
- initial_delay: 0.1,
119
- max_delay: 60.0,
120
- multiplier: 1.3,
121
- retry_codes: [4, 14]
103
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
122
104
  }
123
105
 
124
106
  default_config.rpcs.get_finding.timeout = 600.0
125
107
  default_config.rpcs.get_finding.retry_policy = {
126
- initial_delay: 0.1,
127
- max_delay: 60.0,
128
- multiplier: 1.3,
129
- retry_codes: [4, 14]
108
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
130
109
  }
131
110
 
132
111
  default_config.rpcs.list_findings.timeout = 600.0
133
112
  default_config.rpcs.list_findings.retry_policy = {
134
- initial_delay: 0.1,
135
- max_delay: 60.0,
136
- multiplier: 1.3,
137
- retry_codes: [4, 14]
113
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
138
114
  }
139
115
 
140
116
  default_config.rpcs.list_finding_type_stats.timeout = 600.0
141
117
  default_config.rpcs.list_finding_type_stats.retry_policy = {
142
- initial_delay: 0.1,
143
- max_delay: 60.0,
144
- multiplier: 1.3,
145
- retry_codes: [4, 14]
118
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
146
119
  }
147
120
 
148
121
  default_config
@@ -213,7 +186,7 @@ module Google
213
186
  !@config.endpoint.split(".").first.include?("-")
214
187
  credentials ||= Credentials.default scope: @config.scope,
215
188
  enable_self_signed_jwt: enable_self_signed_jwt
216
- if credentials.is_a?(String) || credentials.is_a?(Hash)
189
+ if credentials.is_a?(::String) || credentials.is_a?(::Hash)
217
190
  credentials = Credentials.new credentials, scope: @config.scope
218
191
  end
219
192
  @quota_project_id = @config.quota_project
@@ -29,7 +29,7 @@ module Google
29
29
  # attempts to exercise as many user inputs and event handlers as possible.
30
30
  class Service
31
31
 
32
- include ::GRPC::GenericService
32
+ include GRPC::GenericService
33
33
 
34
34
  self.marshal_class_method = :encode
35
35
  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_security_scanner-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.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