aws-sdk-cloudwatchlogs 1.161.0 → 1.162.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: b118398e5d33e503c30e524c9c9927dba433b6f4fbb4697795509d3eaadd7a72
4
- data.tar.gz: 36d9a27673094a461fd06a45da01f0afb6dda78b9cad014f17f8b29eae61d1b2
3
+ metadata.gz: b57a3d4455989e57bf2d46a40e721c3b3494616828db5dadc60a4bb12fa1a1d8
4
+ data.tar.gz: b0fc63a43b3e4daf7c11f628cf4c1b67165cbe8e8382f936732f066f3d13e283
5
5
  SHA512:
6
- metadata.gz: 1602fe95620c8185927a4ab82f49a5a24c1327163b8d2c96c0202238e2953f77305615508bfb2ec37210697c765fe77236d9b2e61ed7e1f646c710cd2c0a29ea
7
- data.tar.gz: c4d4577f0819389f4eea7c78e78b41418ff5ca547a0d191b9be913d367ab4c49a75dae724d104d9ce0702c5154bb21708ea5063382226b1120c8dd00a46862ee
6
+ metadata.gz: a2a66ccdff855eb4b79778dcc357fd657f026c5fb7a059c99fbed5b732ed786ba6601722b08b8df66a1d27bfed65a574976965d59d1c6829eb5881606114b4a2
7
+ data.tar.gz: 408c2f2c49d7c65c0ab43a7ac104e72bc11cdd5aa9b554f401402aa2ebe3139db85ea32f2d40aa9f766a9bfa5e786b2073b2c2626bfee00581f98a458f9f3bb1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.162.0 (2026-08-27)
5
+ ------------------
6
+
7
+ * Feature - Added resultCount to QueryStatistics in GetQueryResults. This field returns the total number of output rows in the final result set, helping customers programmatically determine whether a query produced results after all operations including post-aggregation filters.
8
+
4
9
  1.161.0 (2026-08-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.161.0
1
+ 1.162.0
@@ -4835,6 +4835,7 @@ module Aws::CloudWatchLogs
4835
4835
  # resp.statistics.bytes_scanned #=> Float
4836
4836
  # resp.statistics.estimated_bytes_skipped #=> Float
4837
4837
  # resp.statistics.log_groups_scanned #=> Float
4838
+ # resp.statistics.result_count #=> Float
4838
4839
  # resp.status #=> String, one of "Scheduled", "Running", "Complete", "Failed", "Cancelled", "Timeout", "Unknown"
4839
4840
  # resp.encryption_key #=> String
4840
4841
  # resp.next_token #=> String
@@ -9673,7 +9674,7 @@ module Aws::CloudWatchLogs
9673
9674
  tracer: tracer
9674
9675
  )
9675
9676
  context[:gem_name] = 'aws-sdk-cloudwatchlogs'
9676
- context[:gem_version] = '1.161.0'
9677
+ context[:gem_version] = '1.162.0'
9677
9678
  Seahorse::Client::Request.new(handlers, context)
9678
9679
  end
9679
9680
 
@@ -2310,6 +2310,7 @@ module Aws::CloudWatchLogs
2310
2310
  QueryStatistics.add_member(:bytes_scanned, Shapes::ShapeRef.new(shape: StatsValue, location_name: "bytesScanned"))
2311
2311
  QueryStatistics.add_member(:estimated_bytes_skipped, Shapes::ShapeRef.new(shape: StatsValue, location_name: "estimatedBytesSkipped"))
2312
2312
  QueryStatistics.add_member(:log_groups_scanned, Shapes::ShapeRef.new(shape: StatsValue, location_name: "logGroupsScanned"))
2313
+ QueryStatistics.add_member(:result_count, Shapes::ShapeRef.new(shape: StatsValue, location_name: "resultCount"))
2313
2314
  QueryStatistics.struct_class = Types::QueryStatistics
2314
2315
 
2315
2316
  RecordField.add_member(:name, Shapes::ShapeRef.new(shape: FieldHeader, location_name: "name"))
@@ -9237,6 +9237,15 @@ module Aws::CloudWatchLogs
9237
9237
  # The number of log groups that were scanned by this query.
9238
9238
  # @return [Float]
9239
9239
  #
9240
+ # @!attribute [rw] result_count
9241
+ # The number of rows in the final query result set. This value
9242
+ # represents the total number of output rows across all pages. For
9243
+ # queries that include post-aggregation filters (such as `stats
9244
+ # count(*) by field | filter count > threshold`), this value might be
9245
+ # less than `recordsMatched`. It reflects only the rows that survived
9246
+ # all operations in the query.
9247
+ # @return [Float]
9248
+ #
9240
9249
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/QueryStatistics AWS API Documentation
9241
9250
  #
9242
9251
  class QueryStatistics < Struct.new(
@@ -9245,7 +9254,8 @@ module Aws::CloudWatchLogs
9245
9254
  :estimated_records_skipped,
9246
9255
  :bytes_scanned,
9247
9256
  :estimated_bytes_skipped,
9248
- :log_groups_scanned)
9257
+ :log_groups_scanned,
9258
+ :result_count)
9249
9259
  SENSITIVE = []
9250
9260
  include Aws::Structure
9251
9261
  end
@@ -55,7 +55,7 @@ module Aws::CloudWatchLogs
55
55
  autoload :Endpoints, 'aws-sdk-cloudwatchlogs/endpoints'
56
56
  autoload :EventStreams, 'aws-sdk-cloudwatchlogs/event_streams'
57
57
 
58
- GEM_VERSION = '1.161.0'
58
+ GEM_VERSION = '1.162.0'
59
59
 
60
60
  end
61
61
 
data/sig/types.rbs CHANGED
@@ -1995,6 +1995,7 @@ module Aws::CloudWatchLogs
1995
1995
  attr_accessor bytes_scanned: ::Float
1996
1996
  attr_accessor estimated_bytes_skipped: ::Float
1997
1997
  attr_accessor log_groups_scanned: ::Float
1998
+ attr_accessor result_count: ::Float
1998
1999
  SENSITIVE: []
1999
2000
  end
2000
2001
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudwatchlogs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.161.0
4
+ version: 1.162.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services