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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d0534b114e08a5cd037be424ee310dafcf0120ab09befefeea00bc2afd1db346
4
- data.tar.gz: 8b1c4f4c5c6e78cd0575a5d4adb1fee38ba7025d941c16c0f49d815cdda3460f
3
+ metadata.gz: a0c58c8b6ad21f600f49a8a3d4b0fe60bdb0d2e9bb5296a5e27f249915701ae5
4
+ data.tar.gz: 3882fb950976c4c69901b08befe328f56c5fc80ca1f44c96cef7e9a43b7b8ae6
5
5
  SHA512:
6
- metadata.gz: 1b37446329c1f39d9894c4a1a813afcd126efc46da5a4960c481a3d329b0c959a007044689f29f0e9b1173250eeb3b2f6b4b5c6e95220ab97f8ee63b590f59c8
7
- data.tar.gz: 37c8bbc9dec6de464e12b5a3828fa61f2693777fa9758727ccb2db29eac6231666d95318de624ede1c69e9c66669816ac80577b17ff50ca3b1c9d14fb1eae57f
6
+ metadata.gz: ebe72d7a1dcbf87b6904edec882dd649324d49a5201402d6a0b5798187c7544835639e24d3d43d34d53ee5438c64c727c5f62602f7376d0646222b61bec1099b
7
+ data.tar.gz: 777150eae53615fb2f79bdad8b8f5ee627203b36b9c118debff76e8f1b363ab79006b4de2ff1d1de9648347418d92f764b4c158f16e3043efee3c7ea5a779e01
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.31.0 (2025-12-17)
5
+ ------------------
6
+
7
+ * Feature - Adds an additional OutputFormat
8
+
4
9
  1.30.0 (2025-11-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.30.0
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.30.0'
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
@@ -54,7 +54,7 @@ module Aws::InspectorScan
54
54
  autoload :EndpointProvider, 'aws-sdk-inspectorscan/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-inspectorscan/endpoints'
56
56
 
57
- GEM_VERSION = '1.30.0'
57
+ GEM_VERSION = '1.31.0'
58
58
 
59
59
  end
60
60
 
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
@@ -22,7 +22,7 @@ module Aws::InspectorScan
22
22
 
23
23
  class ScanSbomRequest
24
24
  attr_accessor sbom: untyped
25
- attr_accessor output_format: ("CYCLONE_DX_1_5" | "INSPECTOR")
25
+ attr_accessor output_format: ("CYCLONE_DX_1_5" | "INSPECTOR" | "INSPECTOR_ALT")
26
26
  SENSITIVE: []
27
27
  end
28
28
 
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.30.0
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.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.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: