aws-sdk-guardduty 1.157.0 → 1.158.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: 1b871564dc8202339e36e2693df7f171a5b3d72693dbb3d8ad3d8f31604a08c3
4
- data.tar.gz: a9ab65bdc13962e5b87a060c96dc49662f9f7a9cca2b776a288cafbc993ffa22
3
+ metadata.gz: c2874415f97ca671121b11e842e70262a29d5a3097ecfab0026db36bf91bcfff
4
+ data.tar.gz: 54aaf687759db93ee24391bf58b57a930129d5f61517ce4e5bb5cd2da0f2b8c7
5
5
  SHA512:
6
- metadata.gz: 66d6607b457efd4d590e20dc333b7d4114a601853484786ef217161e303641590896954c430ab68c510c92516b0c7180ed59df8d052e6753dba894aac4eec9dc
7
- data.tar.gz: 88379b723db927800f64e72fe823d8f2e3812aec7ee35f95167daeba9e155f37f283c79ca2e4195430259447f968c252c6b789f15ae72016a89f4d0174472a8b
6
+ metadata.gz: 7db3fa4d4d89964f7f7eb6e146be73f330e02b32a4e229c488de2b445862bd76302d0509588724c7a137eebb77e2fa6ff05e1eef6256f29a9249010b57923e01
7
+ data.tar.gz: 1038c6949fce6c1fe7cbecc45c00df3230b946d0ce3da64b484977822aa3fd447b2bdf4e68514a9b030a3836ceb9ee7f966be703fb879fc96ea54a0df361fe9b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.158.0 (2026-07-22)
5
+ ------------------
6
+
7
+ * Feature - Amazon GuardDuty now returns filter lifecycle metadata in GetFilter responses. The response includes createdAt and updatedAt timestamps and a version number that increments on each update, giving you visibility into when a filter was created and last modified.
8
+
4
9
  1.157.0 (2026-07-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.157.0
1
+ 1.158.0
@@ -3825,6 +3825,9 @@ module Aws::GuardDuty
3825
3825
  # * {Types::GetFilterResponse#rank #rank} => Integer
3826
3826
  # * {Types::GetFilterResponse#finding_criteria #finding_criteria} => Types::FindingCriteria
3827
3827
  # * {Types::GetFilterResponse#tags #tags} => Hash<String,String>
3828
+ # * {Types::GetFilterResponse#created_at #created_at} => Time
3829
+ # * {Types::GetFilterResponse#updated_at #updated_at} => Time
3830
+ # * {Types::GetFilterResponse#version #version} => Integer
3828
3831
  #
3829
3832
  # @example Request syntax with placeholder values
3830
3833
  #
@@ -3862,6 +3865,9 @@ module Aws::GuardDuty
3862
3865
  # resp.finding_criteria.criterion["String"].not_matches[0] #=> String
3863
3866
  # resp.tags #=> Hash
3864
3867
  # resp.tags["TagKey"] #=> String
3868
+ # resp.created_at #=> Time
3869
+ # resp.updated_at #=> Time
3870
+ # resp.version #=> Integer
3865
3871
  #
3866
3872
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/GetFilter AWS API Documentation
3867
3873
  #
@@ -9197,7 +9203,7 @@ module Aws::GuardDuty
9197
9203
  tracer: tracer
9198
9204
  )
9199
9205
  context[:gem_name] = 'aws-sdk-guardduty'
9200
- context[:gem_version] = '1.157.0'
9206
+ context[:gem_version] = '1.158.0'
9201
9207
  Seahorse::Client::Request.new(handlers, context)
9202
9208
  end
9203
9209
 
@@ -253,6 +253,7 @@ module Aws::GuardDuty
253
253
  FilterName = Shapes::StringShape.new(name: 'FilterName')
254
254
  FilterNames = Shapes::ListShape.new(name: 'FilterNames')
255
255
  FilterRank = Shapes::IntegerShape.new(name: 'FilterRank')
256
+ FilterVersion = Shapes::IntegerShape.new(name: 'FilterVersion')
256
257
  Finding = Shapes::StructureShape.new(name: 'Finding')
257
258
  FindingCriteria = Shapes::StructureShape.new(name: 'FindingCriteria')
258
259
  FindingId = Shapes::StringShape.new(name: 'FindingId')
@@ -1640,6 +1641,9 @@ module Aws::GuardDuty
1640
1641
  GetFilterResponse.add_member(:rank, Shapes::ShapeRef.new(shape: FilterRank, location_name: "rank"))
1641
1642
  GetFilterResponse.add_member(:finding_criteria, Shapes::ShapeRef.new(shape: FindingCriteria, required: true, location_name: "findingCriteria"))
1642
1643
  GetFilterResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1644
+ GetFilterResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
1645
+ GetFilterResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
1646
+ GetFilterResponse.add_member(:version, Shapes::ShapeRef.new(shape: FilterVersion, location_name: "version"))
1643
1647
  GetFilterResponse.struct_class = Types::GetFilterResponse
1644
1648
 
1645
1649
  GetFindingsRequest.add_member(:detector_id, Shapes::ShapeRef.new(shape: DetectorId, required: true, location: "uri", location_name: "DetectorId"))
@@ -5796,6 +5796,25 @@ module Aws::GuardDuty
5796
5796
  # The tags of the filter resource.
5797
5797
  # @return [Hash<String,String>]
5798
5798
  #
5799
+ # @!attribute [rw] created_at
5800
+ # The timestamp when the filter was created. This field is not
5801
+ # available for filters that were created before the lifecycle
5802
+ # metadata feature was enabled (legacy filters).
5803
+ # @return [Time]
5804
+ #
5805
+ # @!attribute [rw] updated_at
5806
+ # The timestamp when the filter was last updated. For legacy filters,
5807
+ # this field is present only after the filter has been updated at
5808
+ # least once since the lifecycle metadata feature was enabled.
5809
+ # @return [Time]
5810
+ #
5811
+ # @!attribute [rw] version
5812
+ # The version of the filter. Every time the filter is updated, the
5813
+ # version increments by 1. This field is not available for legacy
5814
+ # filters that were created before the lifecycle metadata feature was
5815
+ # enabled.
5816
+ # @return [Integer]
5817
+ #
5799
5818
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/GetFilterResponse AWS API Documentation
5800
5819
  #
5801
5820
  class GetFilterResponse < Struct.new(
@@ -5804,7 +5823,10 @@ module Aws::GuardDuty
5804
5823
  :action,
5805
5824
  :rank,
5806
5825
  :finding_criteria,
5807
- :tags)
5826
+ :tags,
5827
+ :created_at,
5828
+ :updated_at,
5829
+ :version)
5808
5830
  SENSITIVE = []
5809
5831
  include Aws::Structure
5810
5832
  end
@@ -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.157.0'
57
+ GEM_VERSION = '1.158.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -553,6 +553,9 @@ module Aws
553
553
  def rank: () -> ::Integer
554
554
  def finding_criteria: () -> Types::FindingCriteria
555
555
  def tags: () -> ::Hash[::String, ::String]
556
+ def created_at: () -> ::Time
557
+ def updated_at: () -> ::Time
558
+ def version: () -> ::Integer
556
559
  end
557
560
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GuardDuty/Client.html#get_filter-instance_method
558
561
  def get_filter: (
data/sig/types.rbs CHANGED
@@ -1151,6 +1151,9 @@ module Aws::GuardDuty
1151
1151
  attr_accessor rank: ::Integer
1152
1152
  attr_accessor finding_criteria: Types::FindingCriteria
1153
1153
  attr_accessor tags: ::Hash[::String, ::String]
1154
+ attr_accessor created_at: ::Time
1155
+ attr_accessor updated_at: ::Time
1156
+ attr_accessor version: ::Integer
1154
1157
  SENSITIVE: []
1155
1158
  end
1156
1159
 
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.157.0
4
+ version: 1.158.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services