aws-sdk-inspector2 1.80.0 → 1.81.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: dd5d2f095a18b2c3945d790eabfa51e70569884a17862c50caca876c35580160
4
- data.tar.gz: 4ed7b6311adb48d033f6e42cb11d8804c844610e8888b5d5a4c39c47017ff2b6
3
+ metadata.gz: f6f6d338ea9ffb30a4d2e8955f0b36142b86de44d1b5656f875d40d0cb8d1262
4
+ data.tar.gz: c47642b83ee2ba87e077d3df2142c8d39a655a36e56d21c9f5ebe5bb25240711
5
5
  SHA512:
6
- metadata.gz: 42904ee6943e0fc4522198975fc1960f635467d7b704f8d1a635dd6e3a3b570315c950b88aeb42eb138cf070e0acfe9b9a19b05cedcc833f98dbdbbb4de513a4
7
- data.tar.gz: c74e67cb71bf7da8b5d975ee338d0e394a83543f1b4caa0e7fe739beec0fed0742633692fdfeb5ee3575626fc36afaf7cbbb1e0e6b8698df8917bc295dc7adef
6
+ metadata.gz: 157eb81835eb15e03025e52042e181d0dd4407f27a115bc7ad4194b00e9b40cc132e3da6ac1479b26a426efe6d1a3dc803a859542e2b37ac0211dd8c0d652614
7
+ data.tar.gz: 1051e80f7cb1541c6d1b754fc88b2b972fff5efb9835fc24e1d4d735099fe95830b6a698bfb59486fbfd78e67146d845a7c00b9f404be544cecf08a7b37ee33b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.81.0 (2026-08-04)
5
+ ------------------
6
+
7
+ * Feature - Adding Azure SBOM export capability.
8
+
4
9
  1.80.0 (2026-07-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.80.0
1
+ 1.81.0
@@ -2349,6 +2349,74 @@ module Aws::Inspector2
2349
2349
  # value: "NonEmptyString",
2350
2350
  # },
2351
2351
  # ],
2352
+ # cloud_provider: [
2353
+ # {
2354
+ # comparison: "EQUALS", # required, accepts EQUALS, NOT_EQUALS
2355
+ # value: "ResourceStringInput", # required
2356
+ # },
2357
+ # ],
2358
+ # cloud_provider_account_id: [
2359
+ # {
2360
+ # comparison: "EQUALS", # required, accepts EQUALS, NOT_EQUALS
2361
+ # value: "ResourceStringInput", # required
2362
+ # },
2363
+ # ],
2364
+ # cloud_provider_org_id: [
2365
+ # {
2366
+ # comparison: "EQUALS", # required, accepts EQUALS, NOT_EQUALS
2367
+ # value: "ResourceStringInput", # required
2368
+ # },
2369
+ # ],
2370
+ # cloud_provider_region: [
2371
+ # {
2372
+ # comparison: "EQUALS", # required, accepts EQUALS, NOT_EQUALS
2373
+ # value: "ResourceStringInput", # required
2374
+ # },
2375
+ # ],
2376
+ # cloud_vm_instance_tags: [
2377
+ # {
2378
+ # comparison: "EQUALS", # required, accepts EQUALS
2379
+ # key: "NonEmptyString", # required
2380
+ # value: "NonEmptyString",
2381
+ # },
2382
+ # ],
2383
+ # cloud_container_image_tags: [
2384
+ # {
2385
+ # comparison: "EQUALS", # required, accepts EQUALS, NOT_EQUALS
2386
+ # value: "ResourceStringInput", # required
2387
+ # },
2388
+ # ],
2389
+ # cloud_container_repository_name: [
2390
+ # {
2391
+ # comparison: "EQUALS", # required, accepts EQUALS, NOT_EQUALS
2392
+ # value: "ResourceStringInput", # required
2393
+ # },
2394
+ # ],
2395
+ # cloud_container_registry_name: [
2396
+ # {
2397
+ # comparison: "EQUALS", # required, accepts EQUALS, NOT_EQUALS
2398
+ # value: "ResourceStringInput", # required
2399
+ # },
2400
+ # ],
2401
+ # cloud_serverless_function_name: [
2402
+ # {
2403
+ # comparison: "EQUALS", # required, accepts EQUALS, NOT_EQUALS
2404
+ # value: "ResourceStringInput", # required
2405
+ # },
2406
+ # ],
2407
+ # cloud_serverless_function_runtime: [
2408
+ # {
2409
+ # comparison: "EQUALS", # required, accepts EQUALS, NOT_EQUALS
2410
+ # value: "ResourceStringInput", # required
2411
+ # },
2412
+ # ],
2413
+ # cloud_serverless_function_tags: [
2414
+ # {
2415
+ # comparison: "EQUALS", # required, accepts EQUALS
2416
+ # key: "NonEmptyString", # required
2417
+ # value: "NonEmptyString",
2418
+ # },
2419
+ # ],
2352
2420
  # },
2353
2421
  # report_format: "CYCLONEDX_1_4", # required, accepts CYCLONEDX_1_4, SPDX_2_3
2354
2422
  # s3_destination: { # required
@@ -3615,6 +3683,41 @@ module Aws::Inspector2
3615
3683
  # resp.filter_criteria.lambda_function_tags[0].comparison #=> String, one of "EQUALS"
3616
3684
  # resp.filter_criteria.lambda_function_tags[0].key #=> String
3617
3685
  # resp.filter_criteria.lambda_function_tags[0].value #=> String
3686
+ # resp.filter_criteria.cloud_provider #=> Array
3687
+ # resp.filter_criteria.cloud_provider[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
3688
+ # resp.filter_criteria.cloud_provider[0].value #=> String
3689
+ # resp.filter_criteria.cloud_provider_account_id #=> Array
3690
+ # resp.filter_criteria.cloud_provider_account_id[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
3691
+ # resp.filter_criteria.cloud_provider_account_id[0].value #=> String
3692
+ # resp.filter_criteria.cloud_provider_org_id #=> Array
3693
+ # resp.filter_criteria.cloud_provider_org_id[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
3694
+ # resp.filter_criteria.cloud_provider_org_id[0].value #=> String
3695
+ # resp.filter_criteria.cloud_provider_region #=> Array
3696
+ # resp.filter_criteria.cloud_provider_region[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
3697
+ # resp.filter_criteria.cloud_provider_region[0].value #=> String
3698
+ # resp.filter_criteria.cloud_vm_instance_tags #=> Array
3699
+ # resp.filter_criteria.cloud_vm_instance_tags[0].comparison #=> String, one of "EQUALS"
3700
+ # resp.filter_criteria.cloud_vm_instance_tags[0].key #=> String
3701
+ # resp.filter_criteria.cloud_vm_instance_tags[0].value #=> String
3702
+ # resp.filter_criteria.cloud_container_image_tags #=> Array
3703
+ # resp.filter_criteria.cloud_container_image_tags[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
3704
+ # resp.filter_criteria.cloud_container_image_tags[0].value #=> String
3705
+ # resp.filter_criteria.cloud_container_repository_name #=> Array
3706
+ # resp.filter_criteria.cloud_container_repository_name[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
3707
+ # resp.filter_criteria.cloud_container_repository_name[0].value #=> String
3708
+ # resp.filter_criteria.cloud_container_registry_name #=> Array
3709
+ # resp.filter_criteria.cloud_container_registry_name[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
3710
+ # resp.filter_criteria.cloud_container_registry_name[0].value #=> String
3711
+ # resp.filter_criteria.cloud_serverless_function_name #=> Array
3712
+ # resp.filter_criteria.cloud_serverless_function_name[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
3713
+ # resp.filter_criteria.cloud_serverless_function_name[0].value #=> String
3714
+ # resp.filter_criteria.cloud_serverless_function_runtime #=> Array
3715
+ # resp.filter_criteria.cloud_serverless_function_runtime[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS"
3716
+ # resp.filter_criteria.cloud_serverless_function_runtime[0].value #=> String
3717
+ # resp.filter_criteria.cloud_serverless_function_tags #=> Array
3718
+ # resp.filter_criteria.cloud_serverless_function_tags[0].comparison #=> String, one of "EQUALS"
3719
+ # resp.filter_criteria.cloud_serverless_function_tags[0].key #=> String
3720
+ # resp.filter_criteria.cloud_serverless_function_tags[0].value #=> String
3618
3721
  #
3619
3722
  # @see http://docs.aws.amazon.com/goto/WebAPI/inspector2-2020-06-08/GetSbomExport AWS API Documentation
3620
3723
  #
@@ -8446,7 +8549,7 @@ module Aws::Inspector2
8446
8549
  tracer: tracer
8447
8550
  )
8448
8551
  context[:gem_name] = 'aws-sdk-inspector2'
8449
- context[:gem_version] = '1.80.0'
8552
+ context[:gem_version] = '1.81.0'
8450
8553
  Seahorse::Client::Request.new(handlers, context)
8451
8554
  end
8452
8555
 
@@ -2821,6 +2821,17 @@ module Aws::Inspector2
2821
2821
  ResourceFilterCriteria.add_member(:ecr_image_tags, Shapes::ShapeRef.new(shape: ResourceStringFilterList, location_name: "ecrImageTags"))
2822
2822
  ResourceFilterCriteria.add_member(:ec2_instance_tags, Shapes::ShapeRef.new(shape: ResourceMapFilterList, location_name: "ec2InstanceTags"))
2823
2823
  ResourceFilterCriteria.add_member(:lambda_function_tags, Shapes::ShapeRef.new(shape: ResourceMapFilterList, location_name: "lambdaFunctionTags"))
2824
+ ResourceFilterCriteria.add_member(:cloud_provider, Shapes::ShapeRef.new(shape: ResourceStringFilterList, location_name: "cloudProvider"))
2825
+ ResourceFilterCriteria.add_member(:cloud_provider_account_id, Shapes::ShapeRef.new(shape: ResourceStringFilterList, location_name: "cloudProviderAccountId"))
2826
+ ResourceFilterCriteria.add_member(:cloud_provider_org_id, Shapes::ShapeRef.new(shape: ResourceStringFilterList, location_name: "cloudProviderOrgId"))
2827
+ ResourceFilterCriteria.add_member(:cloud_provider_region, Shapes::ShapeRef.new(shape: ResourceStringFilterList, location_name: "cloudProviderRegion"))
2828
+ ResourceFilterCriteria.add_member(:cloud_vm_instance_tags, Shapes::ShapeRef.new(shape: ResourceMapFilterList, location_name: "cloudVmInstanceTags"))
2829
+ ResourceFilterCriteria.add_member(:cloud_container_image_tags, Shapes::ShapeRef.new(shape: ResourceStringFilterList, location_name: "cloudContainerImageTags"))
2830
+ ResourceFilterCriteria.add_member(:cloud_container_repository_name, Shapes::ShapeRef.new(shape: ResourceStringFilterList, location_name: "cloudContainerRepositoryName"))
2831
+ ResourceFilterCriteria.add_member(:cloud_container_registry_name, Shapes::ShapeRef.new(shape: ResourceStringFilterList, location_name: "cloudContainerRegistryName"))
2832
+ ResourceFilterCriteria.add_member(:cloud_serverless_function_name, Shapes::ShapeRef.new(shape: ResourceStringFilterList, location_name: "cloudServerlessFunctionName"))
2833
+ ResourceFilterCriteria.add_member(:cloud_serverless_function_runtime, Shapes::ShapeRef.new(shape: ResourceStringFilterList, location_name: "cloudServerlessFunctionRuntime"))
2834
+ ResourceFilterCriteria.add_member(:cloud_serverless_function_tags, Shapes::ShapeRef.new(shape: ResourceMapFilterList, location_name: "cloudServerlessFunctionTags"))
2824
2835
  ResourceFilterCriteria.struct_class = Types::ResourceFilterCriteria
2825
2836
 
2826
2837
  ResourceIdFilterList.member = Shapes::ShapeRef.new(shape: CisStringFilter)
@@ -8949,6 +8949,54 @@ module Aws::Inspector2
8949
8949
  # criteria.
8950
8950
  # @return [Array<Types::ResourceMapFilter>]
8951
8951
  #
8952
+ # @!attribute [rw] cloud_provider
8953
+ # The cloud providers used as resource filter criteria.
8954
+ # @return [Array<Types::ResourceStringFilter>]
8955
+ #
8956
+ # @!attribute [rw] cloud_provider_account_id
8957
+ # The cloud provider account IDs used as resource filter criteria.
8958
+ # @return [Array<Types::ResourceStringFilter>]
8959
+ #
8960
+ # @!attribute [rw] cloud_provider_org_id
8961
+ # The cloud provider organization IDs used as resource filter
8962
+ # criteria.
8963
+ # @return [Array<Types::ResourceStringFilter>]
8964
+ #
8965
+ # @!attribute [rw] cloud_provider_region
8966
+ # The cloud provider regions used as resource filter criteria.
8967
+ # @return [Array<Types::ResourceStringFilter>]
8968
+ #
8969
+ # @!attribute [rw] cloud_vm_instance_tags
8970
+ # The cloud VM instance tags used as resource filter criteria.
8971
+ # @return [Array<Types::ResourceMapFilter>]
8972
+ #
8973
+ # @!attribute [rw] cloud_container_image_tags
8974
+ # The cloud container image tags used as resource filter criteria.
8975
+ # @return [Array<Types::ResourceStringFilter>]
8976
+ #
8977
+ # @!attribute [rw] cloud_container_repository_name
8978
+ # The cloud container repository names used as resource filter
8979
+ # criteria.
8980
+ # @return [Array<Types::ResourceStringFilter>]
8981
+ #
8982
+ # @!attribute [rw] cloud_container_registry_name
8983
+ # The cloud container registry names used as resource filter criteria.
8984
+ # @return [Array<Types::ResourceStringFilter>]
8985
+ #
8986
+ # @!attribute [rw] cloud_serverless_function_name
8987
+ # The cloud serverless function names used as resource filter
8988
+ # criteria.
8989
+ # @return [Array<Types::ResourceStringFilter>]
8990
+ #
8991
+ # @!attribute [rw] cloud_serverless_function_runtime
8992
+ # The cloud serverless function runtimes used as resource filter
8993
+ # criteria.
8994
+ # @return [Array<Types::ResourceStringFilter>]
8995
+ #
8996
+ # @!attribute [rw] cloud_serverless_function_tags
8997
+ # The cloud serverless function tags used as resource filter criteria.
8998
+ # @return [Array<Types::ResourceMapFilter>]
8999
+ #
8952
9000
  # @see http://docs.aws.amazon.com/goto/WebAPI/inspector2-2020-06-08/ResourceFilterCriteria AWS API Documentation
8953
9001
  #
8954
9002
  class ResourceFilterCriteria < Struct.new(
@@ -8959,7 +9007,18 @@ module Aws::Inspector2
8959
9007
  :lambda_function_name,
8960
9008
  :ecr_image_tags,
8961
9009
  :ec2_instance_tags,
8962
- :lambda_function_tags)
9010
+ :lambda_function_tags,
9011
+ :cloud_provider,
9012
+ :cloud_provider_account_id,
9013
+ :cloud_provider_org_id,
9014
+ :cloud_provider_region,
9015
+ :cloud_vm_instance_tags,
9016
+ :cloud_container_image_tags,
9017
+ :cloud_container_repository_name,
9018
+ :cloud_container_registry_name,
9019
+ :cloud_serverless_function_name,
9020
+ :cloud_serverless_function_runtime,
9021
+ :cloud_serverless_function_tags)
8963
9022
  SENSITIVE = []
8964
9023
  include Aws::Structure
8965
9024
  end
@@ -55,7 +55,7 @@ module Aws::Inspector2
55
55
  autoload :EndpointProvider, 'aws-sdk-inspector2/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-inspector2/endpoints'
57
57
 
58
- GEM_VERSION = '1.80.0'
58
+ GEM_VERSION = '1.81.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -377,6 +377,74 @@ module Aws
377
377
  key: ::String,
378
378
  value: ::String?
379
379
  }
380
+ ]?,
381
+ cloud_provider: Array[
382
+ {
383
+ comparison: ("EQUALS" | "NOT_EQUALS"),
384
+ value: ::String
385
+ }
386
+ ]?,
387
+ cloud_provider_account_id: Array[
388
+ {
389
+ comparison: ("EQUALS" | "NOT_EQUALS"),
390
+ value: ::String
391
+ }
392
+ ]?,
393
+ cloud_provider_org_id: Array[
394
+ {
395
+ comparison: ("EQUALS" | "NOT_EQUALS"),
396
+ value: ::String
397
+ }
398
+ ]?,
399
+ cloud_provider_region: Array[
400
+ {
401
+ comparison: ("EQUALS" | "NOT_EQUALS"),
402
+ value: ::String
403
+ }
404
+ ]?,
405
+ cloud_vm_instance_tags: Array[
406
+ {
407
+ comparison: ("EQUALS"),
408
+ key: ::String,
409
+ value: ::String?
410
+ }
411
+ ]?,
412
+ cloud_container_image_tags: Array[
413
+ {
414
+ comparison: ("EQUALS" | "NOT_EQUALS"),
415
+ value: ::String
416
+ }
417
+ ]?,
418
+ cloud_container_repository_name: Array[
419
+ {
420
+ comparison: ("EQUALS" | "NOT_EQUALS"),
421
+ value: ::String
422
+ }
423
+ ]?,
424
+ cloud_container_registry_name: Array[
425
+ {
426
+ comparison: ("EQUALS" | "NOT_EQUALS"),
427
+ value: ::String
428
+ }
429
+ ]?,
430
+ cloud_serverless_function_name: Array[
431
+ {
432
+ comparison: ("EQUALS" | "NOT_EQUALS"),
433
+ value: ::String
434
+ }
435
+ ]?,
436
+ cloud_serverless_function_runtime: Array[
437
+ {
438
+ comparison: ("EQUALS" | "NOT_EQUALS"),
439
+ value: ::String
440
+ }
441
+ ]?,
442
+ cloud_serverless_function_tags: Array[
443
+ {
444
+ comparison: ("EQUALS"),
445
+ key: ::String,
446
+ value: ::String?
447
+ }
380
448
  ]?
381
449
  },
382
450
  report_format: ("CYCLONEDX_1_4" | "SPDX_2_3"),
data/sig/types.rbs CHANGED
@@ -2419,6 +2419,17 @@ module Aws::Inspector2
2419
2419
  attr_accessor ecr_image_tags: ::Array[Types::ResourceStringFilter]
2420
2420
  attr_accessor ec2_instance_tags: ::Array[Types::ResourceMapFilter]
2421
2421
  attr_accessor lambda_function_tags: ::Array[Types::ResourceMapFilter]
2422
+ attr_accessor cloud_provider: ::Array[Types::ResourceStringFilter]
2423
+ attr_accessor cloud_provider_account_id: ::Array[Types::ResourceStringFilter]
2424
+ attr_accessor cloud_provider_org_id: ::Array[Types::ResourceStringFilter]
2425
+ attr_accessor cloud_provider_region: ::Array[Types::ResourceStringFilter]
2426
+ attr_accessor cloud_vm_instance_tags: ::Array[Types::ResourceMapFilter]
2427
+ attr_accessor cloud_container_image_tags: ::Array[Types::ResourceStringFilter]
2428
+ attr_accessor cloud_container_repository_name: ::Array[Types::ResourceStringFilter]
2429
+ attr_accessor cloud_container_registry_name: ::Array[Types::ResourceStringFilter]
2430
+ attr_accessor cloud_serverless_function_name: ::Array[Types::ResourceStringFilter]
2431
+ attr_accessor cloud_serverless_function_runtime: ::Array[Types::ResourceStringFilter]
2432
+ attr_accessor cloud_serverless_function_tags: ::Array[Types::ResourceMapFilter]
2422
2433
  SENSITIVE: []
2423
2434
  end
2424
2435
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-inspector2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.80.0
4
+ version: 1.81.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services