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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-guardduty/client.rb +2 -1
- data/lib/aws-sdk-guardduty/client_api.rb +1 -0
- data/lib/aws-sdk-guardduty/types.rb +6 -0
- data/lib/aws-sdk-guardduty.rb +1 -1
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a287e8391e5a9ce9e4934ff383459f0b5a18c8d91bd1af005b34be62841db64e
|
|
4
|
+
data.tar.gz: 42385f0437475d96579c0faa75314c2c9be385aa8051800a675ee23f413d0c6d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eca9f188bc731895400d6d42284d1fa053be0a0915b144c9284b362c10dfb0933d59021ce21c6a67344922b9e8947605ed51e643d094d90e374521f1f73c1434
|
|
7
|
+
data.tar.gz: b4201583c7141656b99f304b535db5479acbad3cb6ba60ee0e680784e5e12d1306f7b51d8adbd367d291ba1400f42f1846867bfec4ef2522afe71b0e88333697
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
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.
|
|
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
|
data/lib/aws-sdk-guardduty.rb
CHANGED
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
|