google-cloud-web_security_scanner-v1 0.3.5 → 0.5.0
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/AUTHENTICATION.md +1 -1
- data/README.md +11 -6
- data/lib/google/cloud/web_security_scanner/v1/version.rb +1 -1
- data/lib/google/cloud/web_security_scanner/v1.rb +2 -0
- data/lib/google/cloud/websecurityscanner/v1/finding_addon_pb.rb +10 -0
- data/lib/google/cloud/websecurityscanner/v1/finding_pb.rb +3 -1
- data/lib/google/cloud/websecurityscanner/v1/scan_config_pb.rb +3 -1
- data/lib/google/cloud/websecurityscanner/v1/scan_run_error_trace_pb.rb +2 -1
- data/lib/google/cloud/websecurityscanner/v1/scan_run_log_pb.rb +32 -0
- data/lib/google/cloud/websecurityscanner/v1/scan_run_pb.rb +2 -1
- data/lib/google/cloud/websecurityscanner/v1/scan_run_warning_trace_pb.rb +1 -0
- data/lib/google/cloud/websecurityscanner/v1/web_security_scanner_pb.rb +3 -2
- data/proto_docs/google/cloud/websecurityscanner/v1/finding.rb +3 -0
- data/proto_docs/google/cloud/websecurityscanner/v1/finding_addon.rb +22 -0
- data/proto_docs/google/cloud/websecurityscanner/v1/scan_config.rb +3 -0
- data/proto_docs/google/cloud/websecurityscanner/v1/scan_run_error_trace.rb +1 -1
- data/proto_docs/google/cloud/websecurityscanner/v1/scan_run_log.rb +56 -0
- data/proto_docs/google/cloud/websecurityscanner/v1/scan_run_warning_trace.rb +3 -0
- data/proto_docs/google/protobuf/empty.rb +0 -2
- metadata +14 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa863bbf83b3277121fc42b09ad751b5d0cc9bee8ea2aa53bd95a3900889d618
|
4
|
+
data.tar.gz: 28b341fad40c792bc86f9f50344e01509d4aa30d381d7362d90f516b9196faae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a792b63d631653ca66ea93aa43459f9481995dfed267c42b2424790b0f58a1ff2e9c02a53e3a33bd3e5b59bf0c0cc80b94435f4156c770751ee5690a0b5cc96
|
7
|
+
data.tar.gz: 0d1b6afb49af0737ab7c67435d3b55746d804bd9865ede25fefc596ec2fc6ba82bb8ecf6153bfa7b420d4c0b4887ad576e4c962c6869146ef76c2ad6eb05ea8c
|
data/AUTHENTICATION.md
CHANGED
@@ -114,7 +114,7 @@ credentials are discovered.
|
|
114
114
|
To configure your system for this, simply:
|
115
115
|
|
116
116
|
1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
|
117
|
-
2. Authenticate using OAuth 2.0 `$ gcloud auth login`
|
117
|
+
2. Authenticate using OAuth 2.0 `$ gcloud auth application-default login`
|
118
118
|
3. Write code as if already authenticated.
|
119
119
|
|
120
120
|
**NOTE:** This is _not_ recommended for running in production. The Cloud SDK
|
data/README.md
CHANGED
@@ -37,7 +37,7 @@ request = ::Google::Cloud::WebSecurityScanner::V1::CreateScanConfigRequest.new #
|
|
37
37
|
response = client.create_scan_config request
|
38
38
|
```
|
39
39
|
|
40
|
-
View the [Client Library Documentation](https://
|
40
|
+
View the [Client Library Documentation](https://cloud.google.com/ruby/docs/reference/google-cloud-web_security_scanner-v1/latest)
|
41
41
|
for class and method documentation.
|
42
42
|
|
43
43
|
See also the [Product Documentation](https://cloud.google.com/security-command-center/docs/concepts-web-security-scanner-overview/)
|
@@ -69,16 +69,21 @@ module GRPC
|
|
69
69
|
end
|
70
70
|
```
|
71
71
|
|
72
|
+
|
73
|
+
## Google Cloud Samples
|
74
|
+
|
75
|
+
To browse ready to use code samples check [Google Cloud Samples](https://cloud.google.com/docs/samples).
|
76
|
+
|
72
77
|
## Supported Ruby Versions
|
73
78
|
|
74
|
-
This library is supported on Ruby 2.
|
79
|
+
This library is supported on Ruby 2.6+.
|
75
80
|
|
76
81
|
Google provides official support for Ruby versions that are actively supported
|
77
82
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
78
|
-
in security maintenance, and not end of life.
|
79
|
-
|
80
|
-
|
81
|
-
|
83
|
+
in security maintenance, and not end of life. Older versions of Ruby _may_
|
84
|
+
still work, but are unsupported and not recommended. See
|
85
|
+
https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby
|
86
|
+
support schedule.
|
82
87
|
|
83
88
|
## Which client should I use?
|
84
89
|
|
@@ -25,6 +25,8 @@ module Google
|
|
25
25
|
##
|
26
26
|
# To load this package, including all its services, and instantiate a client:
|
27
27
|
#
|
28
|
+
# @example
|
29
|
+
#
|
28
30
|
# require "google/cloud/web_security_scanner/v1"
|
29
31
|
# client = ::Google::Cloud::WebSecurityScanner::V1::WebSecurityScanner::Client.new
|
30
32
|
#
|
@@ -53,6 +53,14 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
53
53
|
value :SAME_ORIGIN, 14
|
54
54
|
value :USER_CONTROLLABLE_URL, 15
|
55
55
|
end
|
56
|
+
add_message "google.cloud.websecurityscanner.v1.Xxe" do
|
57
|
+
optional :payload_value, :string, 1
|
58
|
+
optional :payload_location, :enum, 2, "google.cloud.websecurityscanner.v1.Xxe.Location"
|
59
|
+
end
|
60
|
+
add_enum "google.cloud.websecurityscanner.v1.Xxe.Location" do
|
61
|
+
value :LOCATION_UNSPECIFIED, 0
|
62
|
+
value :COMPLETE_REQUEST_BODY, 1
|
63
|
+
end
|
56
64
|
end
|
57
65
|
end
|
58
66
|
|
@@ -68,6 +76,8 @@ module Google
|
|
68
76
|
VulnerableHeaders::Header = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.websecurityscanner.v1.VulnerableHeaders.Header").msgclass
|
69
77
|
Xss = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.websecurityscanner.v1.Xss").msgclass
|
70
78
|
Xss::AttackVector = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.websecurityscanner.v1.Xss.AttackVector").enummodule
|
79
|
+
Xxe = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.websecurityscanner.v1.Xxe").msgclass
|
80
|
+
Xxe::Location = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.websecurityscanner.v1.Xxe.Location").enummodule
|
71
81
|
end
|
72
82
|
end
|
73
83
|
end
|
@@ -1,10 +1,11 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/websecurityscanner/v1/finding.proto
|
3
3
|
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
4
6
|
require 'google/api/field_behavior_pb'
|
5
7
|
require 'google/api/resource_pb'
|
6
8
|
require 'google/cloud/websecurityscanner/v1/finding_addon_pb'
|
7
|
-
require 'google/protobuf'
|
8
9
|
|
9
10
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
10
11
|
add_file("google/cloud/websecurityscanner/v1/finding.proto", :syntax => :proto3) do
|
@@ -26,6 +27,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
26
27
|
optional :vulnerable_headers, :message, 15, "google.cloud.websecurityscanner.v1.VulnerableHeaders"
|
27
28
|
optional :vulnerable_parameters, :message, 13, "google.cloud.websecurityscanner.v1.VulnerableParameters"
|
28
29
|
optional :xss, :message, 14, "google.cloud.websecurityscanner.v1.Xss"
|
30
|
+
optional :xxe, :message, 18, "google.cloud.websecurityscanner.v1.Xxe"
|
29
31
|
end
|
30
32
|
add_enum "google.cloud.websecurityscanner.v1.Finding.Severity" do
|
31
33
|
value :SEVERITY_UNSPECIFIED, 0
|
@@ -1,9 +1,10 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/websecurityscanner/v1/scan_config.proto
|
3
3
|
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
4
6
|
require 'google/api/field_behavior_pb'
|
5
7
|
require 'google/protobuf/timestamp_pb'
|
6
|
-
require 'google/protobuf'
|
7
8
|
|
8
9
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
10
|
add_file("google/cloud/websecurityscanner/v1/scan_config.proto", :syntax => :proto3) do
|
@@ -20,6 +21,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
20
21
|
optional :risk_level, :enum, 12, "google.cloud.websecurityscanner.v1.ScanConfig.RiskLevel"
|
21
22
|
optional :managed_scan, :bool, 13
|
22
23
|
optional :static_ip_scan, :bool, 14
|
24
|
+
optional :ignore_http_status_errors, :bool, 15
|
23
25
|
end
|
24
26
|
add_message "google.cloud.websecurityscanner.v1.ScanConfig.Authentication" do
|
25
27
|
oneof :authentication do
|
@@ -1,9 +1,10 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/websecurityscanner/v1/scan_run_error_trace.proto
|
3
3
|
|
4
|
-
require 'google/cloud/websecurityscanner/v1/scan_config_error_pb'
|
5
4
|
require 'google/protobuf'
|
6
5
|
|
6
|
+
require 'google/cloud/websecurityscanner/v1/scan_config_error_pb'
|
7
|
+
|
7
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
8
9
|
add_file("google/cloud/websecurityscanner/v1/scan_run_error_trace.proto", :syntax => :proto3) do
|
9
10
|
add_message "google.cloud.websecurityscanner.v1.ScanRunErrorTrace" do
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: google/cloud/websecurityscanner/v1/scan_run_log.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/cloud/websecurityscanner/v1/scan_run_pb'
|
7
|
+
require 'google/cloud/websecurityscanner/v1/scan_run_error_trace_pb'
|
8
|
+
|
9
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
10
|
+
add_file("google/cloud/websecurityscanner/v1/scan_run_log.proto", :syntax => :proto3) do
|
11
|
+
add_message "google.cloud.websecurityscanner.v1.ScanRunLog" do
|
12
|
+
optional :summary, :string, 1
|
13
|
+
optional :name, :string, 2
|
14
|
+
optional :execution_state, :enum, 3, "google.cloud.websecurityscanner.v1.ScanRun.ExecutionState"
|
15
|
+
optional :result_state, :enum, 4, "google.cloud.websecurityscanner.v1.ScanRun.ResultState"
|
16
|
+
optional :urls_crawled_count, :int64, 5
|
17
|
+
optional :urls_tested_count, :int64, 6
|
18
|
+
optional :has_findings, :bool, 7
|
19
|
+
optional :error_trace, :message, 8, "google.cloud.websecurityscanner.v1.ScanRunErrorTrace"
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
module Google
|
25
|
+
module Cloud
|
26
|
+
module WebSecurityScanner
|
27
|
+
module V1
|
28
|
+
ScanRunLog = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.websecurityscanner.v1.ScanRunLog").msgclass
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -1,10 +1,11 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/websecurityscanner/v1/scan_run.proto
|
3
3
|
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
4
6
|
require 'google/cloud/websecurityscanner/v1/scan_run_error_trace_pb'
|
5
7
|
require 'google/cloud/websecurityscanner/v1/scan_run_warning_trace_pb'
|
6
8
|
require 'google/protobuf/timestamp_pb'
|
7
|
-
require 'google/protobuf'
|
8
9
|
|
9
10
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
10
11
|
add_file("google/cloud/websecurityscanner/v1/scan_run.proto", :syntax => :proto3) do
|
@@ -1,7 +1,10 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/websecurityscanner/v1/web_security_scanner.proto
|
3
3
|
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
4
6
|
require 'google/api/annotations_pb'
|
7
|
+
require 'google/api/client_pb'
|
5
8
|
require 'google/cloud/websecurityscanner/v1/crawled_url_pb'
|
6
9
|
require 'google/cloud/websecurityscanner/v1/finding_pb'
|
7
10
|
require 'google/cloud/websecurityscanner/v1/finding_type_stats_pb'
|
@@ -9,8 +12,6 @@ require 'google/cloud/websecurityscanner/v1/scan_config_pb'
|
|
9
12
|
require 'google/cloud/websecurityscanner/v1/scan_run_pb'
|
10
13
|
require 'google/protobuf/empty_pb'
|
11
14
|
require 'google/protobuf/field_mask_pb'
|
12
|
-
require 'google/api/client_pb'
|
13
|
-
require 'google/protobuf'
|
14
15
|
|
15
16
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
16
17
|
add_file("google/cloud/websecurityscanner/v1/web_security_scanner.proto", :syntax => :proto3) do
|
@@ -86,6 +86,9 @@ module Google
|
|
86
86
|
# @!attribute [rw] xss
|
87
87
|
# @return [::Google::Cloud::WebSecurityScanner::V1::Xss]
|
88
88
|
# Output only. An addon containing information reported for an XSS, if any.
|
89
|
+
# @!attribute [r] xxe
|
90
|
+
# @return [::Google::Cloud::WebSecurityScanner::V1::Xxe]
|
91
|
+
# Output only. An addon containing information reported for an XXE, if any.
|
89
92
|
class Finding
|
90
93
|
include ::Google::Protobuf::MessageExts
|
91
94
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -163,6 +163,28 @@ module Google
|
|
163
163
|
USER_CONTROLLABLE_URL = 15
|
164
164
|
end
|
165
165
|
end
|
166
|
+
|
167
|
+
# Information reported for an XXE.
|
168
|
+
# @!attribute [rw] payload_value
|
169
|
+
# @return [::String]
|
170
|
+
# The XML string that triggered the XXE vulnerability. Non-payload values
|
171
|
+
# might be redacted.
|
172
|
+
# @!attribute [rw] payload_location
|
173
|
+
# @return [::Google::Cloud::WebSecurityScanner::V1::Xxe::Location]
|
174
|
+
# Location within the request where the payload was placed.
|
175
|
+
class Xxe
|
176
|
+
include ::Google::Protobuf::MessageExts
|
177
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
178
|
+
|
179
|
+
# Locations within a request where XML was substituted.
|
180
|
+
module Location
|
181
|
+
# Unknown Location.
|
182
|
+
LOCATION_UNSPECIFIED = 0
|
183
|
+
|
184
|
+
# The XML payload replaced the complete request body.
|
185
|
+
COMPLETE_REQUEST_BODY = 1
|
186
|
+
end
|
187
|
+
end
|
166
188
|
end
|
167
189
|
end
|
168
190
|
end
|
@@ -68,6 +68,9 @@ module Google
|
|
68
68
|
# @return [::Boolean]
|
69
69
|
# Whether the scan configuration has enabled static IP address scan feature.
|
70
70
|
# If enabled, the scanner will access applications from static IP addresses.
|
71
|
+
# @!attribute [rw] ignore_http_status_errors
|
72
|
+
# @return [::Boolean]
|
73
|
+
# Whether to keep scanning even if most requests return HTTP error codes.
|
71
74
|
class ScanConfig
|
72
75
|
include ::Google::Protobuf::MessageExts
|
73
76
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -0,0 +1,56 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2022 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 WebSecurityScanner
|
23
|
+
module V1
|
24
|
+
# A ScanRunLog is an output-only proto used for Stackdriver customer logging.
|
25
|
+
# It is used for logs covering the start and end of scan pipelines.
|
26
|
+
# Other than an added summary, this is a subset of the ScanRun.
|
27
|
+
# Representation in logs is either a proto Struct, or converted to JSON.
|
28
|
+
# Next id: 9
|
29
|
+
# @!attribute [rw] summary
|
30
|
+
# @return [::String]
|
31
|
+
# Human friendly message about the event.
|
32
|
+
# @!attribute [rw] name
|
33
|
+
# @return [::String]
|
34
|
+
# The resource name of the ScanRun being logged.
|
35
|
+
# @!attribute [rw] execution_state
|
36
|
+
# @return [::Google::Cloud::WebSecurityScanner::V1::ScanRun::ExecutionState]
|
37
|
+
# The execution state of the ScanRun.
|
38
|
+
# @!attribute [rw] result_state
|
39
|
+
# @return [::Google::Cloud::WebSecurityScanner::V1::ScanRun::ResultState]
|
40
|
+
# The result state of the ScanRun.
|
41
|
+
# @!attribute [rw] urls_crawled_count
|
42
|
+
# @return [::Integer]
|
43
|
+
# @!attribute [rw] urls_tested_count
|
44
|
+
# @return [::Integer]
|
45
|
+
# @!attribute [rw] has_findings
|
46
|
+
# @return [::Boolean]
|
47
|
+
# @!attribute [rw] error_trace
|
48
|
+
# @return [::Google::Cloud::WebSecurityScanner::V1::ScanRunErrorTrace]
|
49
|
+
class ScanRunLog
|
50
|
+
include ::Google::Protobuf::MessageExts
|
51
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
@@ -26,8 +26,6 @@ module Google
|
|
26
26
|
# service Foo {
|
27
27
|
# rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
|
28
28
|
# }
|
29
|
-
#
|
30
|
-
# The JSON representation for `Empty` is empty JSON object `{}`.
|
31
29
|
class Empty
|
32
30
|
include ::Google::Protobuf::MessageExts
|
33
31
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
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.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-09-08 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.10'
|
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.10'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -50,28 +50,28 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - "~>"
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: 1.
|
53
|
+
version: 1.26.1
|
54
54
|
type: :development
|
55
55
|
prerelease: false
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
57
|
requirements:
|
58
58
|
- - "~>"
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version: 1.
|
60
|
+
version: 1.26.1
|
61
61
|
- !ruby/object:Gem::Dependency
|
62
62
|
name: minitest
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
64
64
|
requirements:
|
65
65
|
- - "~>"
|
66
66
|
- !ruby/object:Gem::Version
|
67
|
-
version: '5.
|
67
|
+
version: '5.16'
|
68
68
|
type: :development
|
69
69
|
prerelease: false
|
70
70
|
version_requirements: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
72
|
- - "~>"
|
73
73
|
- !ruby/object:Gem::Version
|
74
|
-
version: '5.
|
74
|
+
version: '5.16'
|
75
75
|
- !ruby/object:Gem::Dependency
|
76
76
|
name: minitest-focus
|
77
77
|
requirement: !ruby/object:Gem::Requirement
|
@@ -106,14 +106,14 @@ dependencies:
|
|
106
106
|
requirements:
|
107
107
|
- - ">="
|
108
108
|
- !ruby/object:Gem::Version
|
109
|
-
version: '
|
109
|
+
version: '13.0'
|
110
110
|
type: :development
|
111
111
|
prerelease: false
|
112
112
|
version_requirements: !ruby/object:Gem::Requirement
|
113
113
|
requirements:
|
114
114
|
- - ">="
|
115
115
|
- !ruby/object:Gem::Version
|
116
|
-
version: '
|
116
|
+
version: '13.0'
|
117
117
|
- !ruby/object:Gem::Dependency
|
118
118
|
name: redcarpet
|
119
119
|
requirement: !ruby/object:Gem::Requirement
|
@@ -182,6 +182,7 @@ files:
|
|
182
182
|
- lib/google/cloud/websecurityscanner/v1/scan_config_error_pb.rb
|
183
183
|
- lib/google/cloud/websecurityscanner/v1/scan_config_pb.rb
|
184
184
|
- lib/google/cloud/websecurityscanner/v1/scan_run_error_trace_pb.rb
|
185
|
+
- lib/google/cloud/websecurityscanner/v1/scan_run_log_pb.rb
|
185
186
|
- lib/google/cloud/websecurityscanner/v1/scan_run_pb.rb
|
186
187
|
- lib/google/cloud/websecurityscanner/v1/scan_run_warning_trace_pb.rb
|
187
188
|
- lib/google/cloud/websecurityscanner/v1/web_security_scanner_pb.rb
|
@@ -197,6 +198,7 @@ files:
|
|
197
198
|
- proto_docs/google/cloud/websecurityscanner/v1/scan_config_error.rb
|
198
199
|
- proto_docs/google/cloud/websecurityscanner/v1/scan_run.rb
|
199
200
|
- proto_docs/google/cloud/websecurityscanner/v1/scan_run_error_trace.rb
|
201
|
+
- proto_docs/google/cloud/websecurityscanner/v1/scan_run_log.rb
|
200
202
|
- proto_docs/google/cloud/websecurityscanner/v1/scan_run_warning_trace.rb
|
201
203
|
- proto_docs/google/cloud/websecurityscanner/v1/web_security_scanner.rb
|
202
204
|
- proto_docs/google/protobuf/empty.rb
|
@@ -214,14 +216,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
214
216
|
requirements:
|
215
217
|
- - ">="
|
216
218
|
- !ruby/object:Gem::Version
|
217
|
-
version: '2.
|
219
|
+
version: '2.6'
|
218
220
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
219
221
|
requirements:
|
220
222
|
- - ">="
|
221
223
|
- !ruby/object:Gem::Version
|
222
224
|
version: '0'
|
223
225
|
requirements: []
|
224
|
-
rubygems_version: 3.3.
|
226
|
+
rubygems_version: 3.3.14
|
225
227
|
signing_key:
|
226
228
|
specification_version: 4
|
227
229
|
summary: API Client library for the Web Security Scanner V1 API
|