aws-sdk-guardduty 1.137.0 → 1.138.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: 2ecc0055048ca37031c696b3b15d843b87f6ca50bd96d381b0c059a56b44f606
4
- data.tar.gz: d53df25af1304a39576655ea16b679d67e3cdbc0c5356392a14ac521f8a7f675
3
+ metadata.gz: a287e8391e5a9ce9e4934ff383459f0b5a18c8d91bd1af005b34be62841db64e
4
+ data.tar.gz: 42385f0437475d96579c0faa75314c2c9be385aa8051800a675ee23f413d0c6d
5
5
  SHA512:
6
- metadata.gz: 3e3067ac0e74d5c147f89fbf8175c5e87a14cd80165fde172bf1dd963354dfd8286d0391d96ebdb6b77ec881f91f784debe635a5666e92372d05d66f4433dc05
7
- data.tar.gz: fc096363ca448f9a41210cea29ba5f71ab9a2db92328d3e541f390b7e5f2a495763b1614f086419315ae0aa8bc4b459a9203dc1ad6a806ea2eebae24b03c003b
6
+ metadata.gz: eca9f188bc731895400d6d42284d1fa053be0a0915b144c9284b362c10dfb0933d59021ce21c6a67344922b9e8947605ed51e643d094d90e374521f1f73c1434
7
+ data.tar.gz: b4201583c7141656b99f304b535db5479acbad3cb6ba60ee0e680784e5e12d1306f7b51d8adbd367d291ba1400f42f1846867bfec4ef2522afe71b0e88333697
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.138.0 (2025-12-17)
5
+ ------------------
6
+
7
+ * Feature - Add support for dbiResourceId in finding.
8
+
4
9
  1.137.0 (2025-12-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.137.0
1
+ 1.138.0
@@ -2903,6 +2903,7 @@ module Aws::GuardDuty
2903
2903
  # resp.findings[0].resource.rds_db_instance_details.engine_version #=> String
2904
2904
  # resp.findings[0].resource.rds_db_instance_details.db_cluster_identifier #=> String
2905
2905
  # resp.findings[0].resource.rds_db_instance_details.db_instance_arn #=> String
2906
+ # resp.findings[0].resource.rds_db_instance_details.dbi_resource_id #=> String
2906
2907
  # resp.findings[0].resource.rds_db_instance_details.tags #=> Array
2907
2908
  # resp.findings[0].resource.rds_db_instance_details.tags[0].key #=> String
2908
2909
  # resp.findings[0].resource.rds_db_instance_details.tags[0].value #=> String
@@ -6516,7 +6517,7 @@ module Aws::GuardDuty
6516
6517
  tracer: tracer
6517
6518
  )
6518
6519
  context[:gem_name] = 'aws-sdk-guardduty'
6519
- context[:gem_version] = '1.137.0'
6520
+ context[:gem_version] = '1.138.0'
6520
6521
  Seahorse::Client::Request.new(handlers, context)
6521
6522
  end
6522
6523
 
@@ -2418,6 +2418,7 @@ module Aws::GuardDuty
2418
2418
  RdsDbInstanceDetails.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "engineVersion"))
2419
2419
  RdsDbInstanceDetails.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "dbClusterIdentifier"))
2420
2420
  RdsDbInstanceDetails.add_member(:db_instance_arn, Shapes::ShapeRef.new(shape: String, location_name: "dbInstanceArn"))
2421
+ RdsDbInstanceDetails.add_member(:dbi_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "dbiResourceId"))
2421
2422
  RdsDbInstanceDetails.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
2422
2423
  RdsDbInstanceDetails.struct_class = Types::RdsDbInstanceDetails
2423
2424
 
@@ -8756,6 +8756,11 @@ module Aws::GuardDuty
8756
8756
  # involved in the finding.
8757
8757
  # @return [String]
8758
8758
  #
8759
+ # @!attribute [rw] dbi_resource_id
8760
+ # The unique ID of the database resource involved in the activity that
8761
+ # prompted GuardDuty to generate the finding.
8762
+ # @return [String]
8763
+ #
8759
8764
  # @!attribute [rw] tags
8760
8765
  # Information about the tag key-value pairs.
8761
8766
  # @return [Array<Types::Tag>]
@@ -8768,6 +8773,7 @@ module Aws::GuardDuty
8768
8773
  :engine_version,
8769
8774
  :db_cluster_identifier,
8770
8775
  :db_instance_arn,
8776
+ :dbi_resource_id,
8771
8777
  :tags)
8772
8778
  SENSITIVE = []
8773
8779
  include Aws::Structure
@@ -54,7 +54,7 @@ module Aws::GuardDuty
54
54
  autoload :EndpointProvider, 'aws-sdk-guardduty/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-guardduty/endpoints'
56
56
 
57
- GEM_VERSION = '1.137.0'
57
+ GEM_VERSION = '1.138.0'
58
58
 
59
59
  end
60
60
 
data/sig/types.rbs CHANGED
@@ -2178,6 +2178,7 @@ module Aws::GuardDuty
2178
2178
  attr_accessor engine_version: ::String
2179
2179
  attr_accessor db_cluster_identifier: ::String
2180
2180
  attr_accessor db_instance_arn: ::String
2181
+ attr_accessor dbi_resource_id: ::String
2181
2182
  attr_accessor tags: ::Array[Types::Tag]
2182
2183
  SENSITIVE: []
2183
2184
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-guardduty
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.137.0
4
+ version: 1.138.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services