google-cloud-web_security_scanner-v1 0.4.0 → 0.4.1

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: ec9c45d8e5ebf469b2a6a3d57becb73ff65bdf9224e3a40f3370bd6e64fb5a35
4
- data.tar.gz: ad8b2e26dabd3fc769ea79559d02733599c55bc0564dc1330567a1e8f7145bc7
3
+ metadata.gz: c9a24233cc850f8ffd6b725b57507e3bb09421ba7a94aec16e604cac82c4a42b
4
+ data.tar.gz: 2b263ff1c2915839b23f6ce19ba5fbbe5370c2da173c87a6c421432ad5680cb1
5
5
  SHA512:
6
- metadata.gz: 1be4a0fce1004c7aaa95c7d214d88e936047309a8a952592e08535d5e9ad889872a04151a308f6cc3cf584984ed22565cb2f5012269f320c067807ad3279b128
7
- data.tar.gz: 4c30bf21a15ae44bc38613f17ba10e82889672d2b26fafd31418d1cb43d433989e8b380d964b0b336c21f82d1028a46b149feda04d0b0b91bbaf1e27feb52875
6
+ metadata.gz: 6966d63070a5ea34f2e11f4d56ee049ad664de48dd198e70aa4d321887b95124cde583d7896c36902a90cbedaed553bf7fffbda27c1d1ced14beb5269363b190
7
+ data.tar.gz: 1b2303e966c373f2a3973d938ed04778cb57408e64b1d5215e6f38e376bc30e70b5b68c1b06ee62d63508e8d6ec864bb1ea3986e71da56ff352dce28e9f9381f
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module WebSecurityScanner
23
23
  module V1
24
- VERSION = "0.4.0"
24
+ VERSION = "0.4.1"
25
25
  end
26
26
  end
27
27
  end
@@ -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.0
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-07-08 00:00:00.000000000 Z
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