aws-sdk-cloudwatchlogs 1.150.0 → 1.151.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: '090f971c39f174b9b2d6bb89d468d259da2790f0904ecae2491317e721a0bc44'
4
- data.tar.gz: 1add4fc178569ae2f118266a3541b9071e71f5971d09d1142c6833ef8cdf6800
3
+ metadata.gz: f428915d7c5f356085c15f39c70ad59264a11ca1be2b9a893d22417e02620431
4
+ data.tar.gz: 936131183fb02c62fad1b3d24eebc83150e55b6fe7426247436a83b6d2ee8968
5
5
  SHA512:
6
- metadata.gz: 1e0dd4027db2f6c9a36566b6f60b698bae39824643b78efca1514a7f8b9fa651403c470d01140abc6229aa12cd2cd11bc414be3bcb28f5dd4baf79a4a6d19536
7
- data.tar.gz: e1dd8addcff0f3251bf1370675bdb1f9e41f85ef7b350bf14e89ddf5ba86395025a1ab1c5a23498e1243dd9344ff7842be31309d40d68c5dd15fb02a48e271f6
6
+ metadata.gz: 9cfe7a21086ca0563a7d0a1ca89b6c9cd03ae197046beadbd387273422e4548403cff5b3b61270a7db02c7274ef3c328afb1499940c81fe8156d6688515869c4
7
+ data.tar.gz: 28557fcfcd553cc5cb51449054a3b2d612970bb9ada1bfc27950ff24956faf060c9cab4cdff544725a53b6899704e6cb244d2ab36fed7e559c37516d46e0766c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.151.0 (2026-05-15)
5
+ ------------------
6
+
7
+ * Feature - Updating the max limit for start query api parameter.
8
+
4
9
  1.150.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.150.0
1
+ 1.151.0
@@ -4650,6 +4650,11 @@ module Aws::CloudWatchLogs
4650
4650
  # queries use `GetQueryResults` internally to retrieve query results for
4651
4651
  # processing and delivery to configured destinations.
4652
4652
  #
4653
+ # You can retrieve up to 100,000 log event results from a query, if
4654
+ # available, by using pagination. Use the `nextToken` returned in the
4655
+ # response to request additional pages of results, with each page
4656
+ # returning up to 10,000 log events.
4657
+ #
4653
4658
  # If you are using CloudWatch cross-account observability, you can use
4654
4659
  # this operation in a monitoring account to start queries in linked
4655
4660
  # source accounts. For more information, see [CloudWatch cross-account
@@ -4671,7 +4676,9 @@ module Aws::CloudWatchLogs
4671
4676
  #
4672
4677
  # @option params [Integer] :max_items
4673
4678
  # The maximum number of log events to return in the response. The
4674
- # maximum is 10,000 log events.
4679
+ # maximum is 10,000 log events per request. You can retrieve up to
4680
+ # 100,000 log event results from a query by paginating with the
4681
+ # `nextToken`.
4675
4682
  #
4676
4683
  # @return [Types::GetQueryResultsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4677
4684
  #
@@ -8438,6 +8445,8 @@ module Aws::CloudWatchLogs
8438
8445
  # string uses the `fields` command, only the specified fields and their
8439
8446
  # values are returned. The default is 10,000.
8440
8447
  #
8448
+ # The maximum value is 100,000.
8449
+ #
8441
8450
  # @return [Types::StartQueryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8442
8451
  #
8443
8452
  # * {Types::StartQueryResponse#query_id #query_id} => String
@@ -9290,7 +9299,7 @@ module Aws::CloudWatchLogs
9290
9299
  tracer: tracer
9291
9300
  )
9292
9301
  context[:gem_name] = 'aws-sdk-cloudwatchlogs'
9293
- context[:gem_version] = '1.150.0'
9302
+ context[:gem_version] = '1.151.0'
9294
9303
  Seahorse::Client::Request.new(handlers, context)
9295
9304
  end
9296
9305
 
@@ -228,6 +228,7 @@ module Aws::CloudWatchLogs
228
228
  EventNumber = Shapes::IntegerShape.new(name: 'EventNumber')
229
229
  EventSource = Shapes::StringShape.new(name: 'EventSource')
230
230
  EventsLimit = Shapes::IntegerShape.new(name: 'EventsLimit')
231
+ EventsLimitStartQuery = Shapes::IntegerShape.new(name: 'EventsLimitStartQuery')
231
232
  ExecutionStatus = Shapes::StringShape.new(name: 'ExecutionStatus')
232
233
  ExecutionStatusList = Shapes::ListShape.new(name: 'ExecutionStatusList')
233
234
  ExpectedRevisionId = Shapes::StringShape.new(name: 'ExpectedRevisionId')
@@ -2395,7 +2396,7 @@ module Aws::CloudWatchLogs
2395
2396
  StartQueryRequest.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "startTime"))
2396
2397
  StartQueryRequest.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "endTime"))
2397
2398
  StartQueryRequest.add_member(:query_string, Shapes::ShapeRef.new(shape: QueryString, required: true, location_name: "queryString"))
2398
- StartQueryRequest.add_member(:limit, Shapes::ShapeRef.new(shape: EventsLimit, location_name: "limit"))
2399
+ StartQueryRequest.add_member(:limit, Shapes::ShapeRef.new(shape: EventsLimitStartQuery, location_name: "limit"))
2399
2400
  StartQueryRequest.struct_class = Types::StartQueryRequest
2400
2401
 
2401
2402
  StartQueryResponse.add_member(:query_id, Shapes::ShapeRef.new(shape: QueryId, location_name: "queryId"))
@@ -4274,7 +4274,9 @@ module Aws::CloudWatchLogs
4274
4274
  #
4275
4275
  # @!attribute [rw] max_items
4276
4276
  # The maximum number of log events to return in the response. The
4277
- # maximum is 10,000 log events.
4277
+ # maximum is 10,000 log events per request. You can retrieve up to
4278
+ # 100,000 log event results from a query by paginating with the
4279
+ # `nextToken`.
4278
4280
  # @return [Integer]
4279
4281
  #
4280
4282
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetQueryResultsRequest AWS API Documentation
@@ -4337,7 +4339,9 @@ module Aws::CloudWatchLogs
4337
4339
  # @!attribute [rw] next_token
4338
4340
  # If there are more log events remaining in the results, the response
4339
4341
  # includes a `nextToken`. You can use this token in a subsequent
4340
- # `GetQueryResults` request to get the next set of results.
4342
+ # `GetQueryResults` request to get the next set of results. You can
4343
+ # retrieve up to 100,000 log event results from a query by paginating
4344
+ # with this token.
4341
4345
  # @return [String]
4342
4346
  #
4343
4347
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetQueryResultsResponse AWS API Documentation
@@ -9625,6 +9629,8 @@ module Aws::CloudWatchLogs
9625
9629
  # The maximum number of log events to return in the query. If the
9626
9630
  # query string uses the `fields` command, only the specified fields
9627
9631
  # and their values are returned. The default is 10,000.
9632
+ #
9633
+ # The maximum value is 100,000.
9628
9634
  # @return [Integer]
9629
9635
  #
9630
9636
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/StartQueryRequest AWS API Documentation
@@ -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.150.0'
58
+ GEM_VERSION = '1.151.0'
59
59
 
60
60
  end
61
61
 
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.150.0
4
+ version: 1.151.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services