google-apis-websecurityscanner_v1 0.21.0 → 0.22.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/CHANGELOG.md +5 -0
- data/lib/google/apis/websecurityscanner_v1/classes.rb +17 -3
- data/lib/google/apis/websecurityscanner_v1/gem_version.rb +3 -3
- data/lib/google/apis/websecurityscanner_v1/representations.rb +3 -0
- data/lib/google/apis/websecurityscanner_v1/service.rb +3 -3
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dec38a25ebfade9e8cc6185d490a2b725bee7f35444b5363ad8deae64c100887
|
4
|
+
data.tar.gz: 6774de660d60c7606b9f3041efae15c2d4090b8a9cf6e78bf18f1811e5a5fdb5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8d01f4a8614ce0ba9c5822f87bc15143962ba38b88d519b8186b574927cf4551fe0fb25ec753db0ffc26f6cff9ed965537636bdecd86a7824422e447287bb2f
|
7
|
+
data.tar.gz: dfca99f2b93322ff092cfd819682e9f3b9e77ecc570d1c2989e849f8864e6796545b00cda7a48d3e4e656ee2200c487ebd63ab71afddfbde6ee4291d55613e2c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-websecurityscanner_v1
|
2
2
|
|
3
|
+
### v0.22.0 (2025-01-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250105
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
3
8
|
### v0.21.0 (2024-05-19)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.15.0
|
@@ -596,6 +596,12 @@ module Google
|
|
596
596
|
attr_accessor :ignore_http_status_errors
|
597
597
|
alias_method :ignore_http_status_errors?, :ignore_http_status_errors
|
598
598
|
|
599
|
+
# A ScanRun is a output-only resource representing an actual run of the scan.
|
600
|
+
# Next id: 12
|
601
|
+
# Corresponds to the JSON property `latestRun`
|
602
|
+
# @return [Google::Apis::WebsecurityscannerV1::ScanRun]
|
603
|
+
attr_accessor :latest_run
|
604
|
+
|
599
605
|
# Whether the scan config is managed by Web Security Scanner, output only.
|
600
606
|
# Corresponds to the JSON property `managedScan`
|
601
607
|
# @return [Boolean]
|
@@ -610,9 +616,9 @@ module Google
|
|
610
616
|
# @return [Fixnum]
|
611
617
|
attr_accessor :max_qps
|
612
618
|
|
613
|
-
# The resource name of the ScanConfig. The name follows the format
|
614
|
-
# projectId`/scanConfigs/`scanConfigId`'. The ScanConfig IDs are
|
615
|
-
# the system.
|
619
|
+
# Identifier. The resource name of the ScanConfig. The name follows the format
|
620
|
+
# of 'projects/`projectId`/scanConfigs/`scanConfigId`'. The ScanConfig IDs are
|
621
|
+
# generated by the system.
|
616
622
|
# Corresponds to the JSON property `name`
|
617
623
|
# @return [String]
|
618
624
|
attr_accessor :name
|
@@ -639,6 +645,12 @@ module Google
|
|
639
645
|
attr_accessor :static_ip_scan
|
640
646
|
alias_method :static_ip_scan?, :static_ip_scan
|
641
647
|
|
648
|
+
# Set of Google Cloud platforms targeted by the scan. If empty, APP_ENGINE will
|
649
|
+
# be used as a default.
|
650
|
+
# Corresponds to the JSON property `targetPlatforms`
|
651
|
+
# @return [Array<String>]
|
652
|
+
attr_accessor :target_platforms
|
653
|
+
|
642
654
|
# The user agent used during scanning.
|
643
655
|
# Corresponds to the JSON property `userAgent`
|
644
656
|
# @return [String]
|
@@ -655,6 +667,7 @@ module Google
|
|
655
667
|
@display_name = args[:display_name] if args.key?(:display_name)
|
656
668
|
@export_to_security_command_center = args[:export_to_security_command_center] if args.key?(:export_to_security_command_center)
|
657
669
|
@ignore_http_status_errors = args[:ignore_http_status_errors] if args.key?(:ignore_http_status_errors)
|
670
|
+
@latest_run = args[:latest_run] if args.key?(:latest_run)
|
658
671
|
@managed_scan = args[:managed_scan] if args.key?(:managed_scan)
|
659
672
|
@max_qps = args[:max_qps] if args.key?(:max_qps)
|
660
673
|
@name = args[:name] if args.key?(:name)
|
@@ -662,6 +675,7 @@ module Google
|
|
662
675
|
@schedule = args[:schedule] if args.key?(:schedule)
|
663
676
|
@starting_urls = args[:starting_urls] if args.key?(:starting_urls)
|
664
677
|
@static_ip_scan = args[:static_ip_scan] if args.key?(:static_ip_scan)
|
678
|
+
@target_platforms = args[:target_platforms] if args.key?(:target_platforms)
|
665
679
|
@user_agent = args[:user_agent] if args.key?(:user_agent)
|
666
680
|
end
|
667
681
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module WebsecurityscannerV1
|
18
18
|
# Version of the google-apis-websecurityscanner_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.22.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250105"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -378,6 +378,8 @@ module Google
|
|
378
378
|
property :display_name, as: 'displayName'
|
379
379
|
property :export_to_security_command_center, as: 'exportToSecurityCommandCenter'
|
380
380
|
property :ignore_http_status_errors, as: 'ignoreHttpStatusErrors'
|
381
|
+
property :latest_run, as: 'latestRun', class: Google::Apis::WebsecurityscannerV1::ScanRun, decorator: Google::Apis::WebsecurityscannerV1::ScanRun::Representation
|
382
|
+
|
381
383
|
property :managed_scan, as: 'managedScan'
|
382
384
|
property :max_qps, as: 'maxQps'
|
383
385
|
property :name, as: 'name'
|
@@ -386,6 +388,7 @@ module Google
|
|
386
388
|
|
387
389
|
collection :starting_urls, as: 'startingUrls'
|
388
390
|
property :static_ip_scan, as: 'staticIpScan'
|
391
|
+
collection :target_platforms, as: 'targetPlatforms'
|
389
392
|
property :user_agent, as: 'userAgent'
|
390
393
|
end
|
391
394
|
end
|
@@ -189,9 +189,9 @@ module Google
|
|
189
189
|
|
190
190
|
# Updates a ScanConfig. This method support partial update of a ScanConfig.
|
191
191
|
# @param [String] name
|
192
|
-
# The resource name of the ScanConfig. The name follows the format
|
193
|
-
# projectId`/scanConfigs/`scanConfigId`'. The ScanConfig IDs are
|
194
|
-
# the system.
|
192
|
+
# Identifier. The resource name of the ScanConfig. The name follows the format
|
193
|
+
# of 'projects/`projectId`/scanConfigs/`scanConfigId`'. The ScanConfig IDs are
|
194
|
+
# generated by the system.
|
195
195
|
# @param [Google::Apis::WebsecurityscannerV1::ScanConfig] scan_config_object
|
196
196
|
# @param [String] update_mask
|
197
197
|
# Required. The update mask applies to the resource. For the `FieldMask`
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-websecurityscanner_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.22.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-websecurityscanner_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-websecurityscanner_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-websecurityscanner_v1/v0.22.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-websecurityscanner_v1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Web Security Scanner API V1
|
82
79
|
test_files: []
|