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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudwatchlogs/client.rb +2 -1
- data/lib/aws-sdk-cloudwatchlogs/client_api.rb +1 -0
- data/lib/aws-sdk-cloudwatchlogs/types.rb +11 -1
- data/lib/aws-sdk-cloudwatchlogs.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: b57a3d4455989e57bf2d46a40e721c3b3494616828db5dadc60a4bb12fa1a1d8
|
|
4
|
+
data.tar.gz: b0fc63a43b3e4daf7c11f628cf4c1b67165cbe8e8382f936732f066f3d13e283
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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.
|
|
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
|
data/sig/types.rbs
CHANGED