aws-sdk-inspectorscan 1.30.0 → 1.31.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/VERSION +1 -1
- data/lib/aws-sdk-inspectorscan/client.rb +16 -4
- data/lib/aws-sdk-inspectorscan/client_api.rb +2 -1
- data/lib/aws-sdk-inspectorscan/types.rb +2 -1
- data/lib/aws-sdk-inspectorscan.rb +1 -1
- data/sig/client.rbs +1 -1
- data/sig/types.rbs +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a0c58c8b6ad21f600f49a8a3d4b0fe60bdb0d2e9bb5296a5e27f249915701ae5
|
|
4
|
+
data.tar.gz: 3882fb950976c4c69901b08befe328f56c5fc80ca1f44c96cef7e9a43b7b8ae6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ebe72d7a1dcbf87b6904edec882dd649324d49a5201402d6a0b5798187c7544835639e24d3d43d34d53ee5438c64c727c5f62602f7376d0646222b61bec1099b
|
|
7
|
+
data.tar.gz: 777150eae53615fb2f79bdad8b8f5ee627203b36b9c118debff76e8f1b363ab79006b4de2ff1d1de9648347418d92f764b4c158f16e3043efee3c7ea5a779e01
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.31.0
|
|
@@ -478,11 +478,23 @@ module Aws::InspectorScan
|
|
|
478
478
|
|
|
479
479
|
# Scans a provided CycloneDX 1.5 SBOM and reports on any vulnerabilities
|
|
480
480
|
# discovered in that SBOM. You can generate compatible SBOMs for your
|
|
481
|
-
# resources using the [Amazon Inspector SBOM generator]
|
|
481
|
+
# resources using the [Amazon Inspector SBOM generator][1].
|
|
482
|
+
#
|
|
483
|
+
# <note markdown="1"> The output of this action reports NVD and CVSS scores when NVD and
|
|
484
|
+
# CVSS scores are available. Because the output reports both scores, you
|
|
485
|
+
# might notice a discrepency between them. However, you can triage the
|
|
486
|
+
# severity of either score depending on the vendor of your choosing.
|
|
487
|
+
#
|
|
488
|
+
# </note>
|
|
489
|
+
#
|
|
490
|
+
#
|
|
491
|
+
#
|
|
492
|
+
# [1]: https://docs.aws.amazon.com/inspector/latest/user/sbom-generator.html
|
|
482
493
|
#
|
|
483
494
|
# @option params [required, Hash,Array,String,Numeric,Boolean] :sbom
|
|
484
495
|
# The JSON file for the SBOM you want to scan. The SBOM must be in
|
|
485
|
-
# CycloneDX 1.5 format.
|
|
496
|
+
# CycloneDX 1.5 format. This format limits you to passing 2000
|
|
497
|
+
# components before throwing a `ValidException` error.
|
|
486
498
|
#
|
|
487
499
|
# Document type used to carry open content
|
|
488
500
|
# (Hash,Array,String,Numeric,Boolean). A document type value is
|
|
@@ -501,7 +513,7 @@ module Aws::InspectorScan
|
|
|
501
513
|
# resp = client.scan_sbom({
|
|
502
514
|
# sbom: { # required
|
|
503
515
|
# },
|
|
504
|
-
# output_format: "CYCLONE_DX_1_5", # accepts CYCLONE_DX_1_5, INSPECTOR
|
|
516
|
+
# output_format: "CYCLONE_DX_1_5", # accepts CYCLONE_DX_1_5, INSPECTOR, INSPECTOR_ALT
|
|
505
517
|
# })
|
|
506
518
|
#
|
|
507
519
|
# @example Response structure
|
|
@@ -535,7 +547,7 @@ module Aws::InspectorScan
|
|
|
535
547
|
tracer: tracer
|
|
536
548
|
)
|
|
537
549
|
context[:gem_name] = 'aws-sdk-inspectorscan'
|
|
538
|
-
context[:gem_version] = '1.
|
|
550
|
+
context[:gem_version] = '1.31.0'
|
|
539
551
|
Seahorse::Client::Request.new(handlers, context)
|
|
540
552
|
end
|
|
541
553
|
|
|
@@ -67,9 +67,10 @@ module Aws::InspectorScan
|
|
|
67
67
|
|
|
68
68
|
api.metadata = {
|
|
69
69
|
"apiVersion" => "2023-08-08",
|
|
70
|
+
"auth" => ["aws.auth#sigv4"],
|
|
70
71
|
"endpointPrefix" => "inspector-scan",
|
|
71
|
-
"jsonVersion" => "1.1",
|
|
72
72
|
"protocol" => "rest-json",
|
|
73
|
+
"protocols" => ["rest-json"],
|
|
73
74
|
"serviceAbbreviation" => "inspector-scan",
|
|
74
75
|
"serviceFullName" => "Inspector Scan",
|
|
75
76
|
"serviceId" => "Inspector Scan",
|
|
@@ -49,7 +49,8 @@ module Aws::InspectorScan
|
|
|
49
49
|
|
|
50
50
|
# @!attribute [rw] sbom
|
|
51
51
|
# The JSON file for the SBOM you want to scan. The SBOM must be in
|
|
52
|
-
# CycloneDX 1.5 format.
|
|
52
|
+
# CycloneDX 1.5 format. This format limits you to passing 2000
|
|
53
|
+
# components before throwing a `ValidException` error.
|
|
53
54
|
# @return [Hash,Array,String,Numeric,Boolean]
|
|
54
55
|
#
|
|
55
56
|
# @!attribute [rw] output_format
|
data/sig/client.rbs
CHANGED
|
@@ -86,7 +86,7 @@ module Aws
|
|
|
86
86
|
def scan_sbom: (
|
|
87
87
|
sbom: {
|
|
88
88
|
},
|
|
89
|
-
?output_format: ("CYCLONE_DX_1_5" | "INSPECTOR")
|
|
89
|
+
?output_format: ("CYCLONE_DX_1_5" | "INSPECTOR" | "INSPECTOR_ALT")
|
|
90
90
|
) -> _ScanSbomResponseSuccess
|
|
91
91
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ScanSbomResponseSuccess
|
|
92
92
|
end
|
data/sig/types.rbs
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-inspectorscan
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.31.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -35,14 +35,14 @@ dependencies:
|
|
|
35
35
|
requirements:
|
|
36
36
|
- - "~>"
|
|
37
37
|
- !ruby/object:Gem::Version
|
|
38
|
-
version: '1.
|
|
38
|
+
version: '1.5'
|
|
39
39
|
type: :runtime
|
|
40
40
|
prerelease: false
|
|
41
41
|
version_requirements: !ruby/object:Gem::Requirement
|
|
42
42
|
requirements:
|
|
43
43
|
- - "~>"
|
|
44
44
|
- !ruby/object:Gem::Version
|
|
45
|
-
version: '1.
|
|
45
|
+
version: '1.5'
|
|
46
46
|
description: Official AWS Ruby gem for Inspector Scan (inspector-scan). This gem is
|
|
47
47
|
part of the AWS SDK for Ruby.
|
|
48
48
|
email:
|