google-cloud-web_security_scanner-v1 0.4.0 → 0.4.1
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c9a24233cc850f8ffd6b725b57507e3bb09421ba7a94aec16e604cac82c4a42b
|
4
|
+
data.tar.gz: 2b263ff1c2915839b23f6ce19ba5fbbe5370c2da173c87a6c421432ad5680cb1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6966d63070a5ea34f2e11f4d56ee049ad664de48dd198e70aa4d321887b95124cde583d7896c36902a90cbedaed553bf7fffbda27c1d1ced14beb5269363b190
|
7
|
+
data.tar.gz: 1b2303e966c373f2a3973d938ed04778cb57408e64b1d5215e6f38e376bc30e70b5b68c1b06ee62d63508e8d6ec864bb1ea3986e71da56ff352dce28e9f9381f
|
@@ -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
|
@@ -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.
|
4
|
+
version: 0.4.1
|
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-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -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
|