aws-sdk-cloudwatchlogs 1.112.0 → 1.114.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: f356e6ecac844b071bde533cfef48a424dfb2fc891699f9342b4dd82abcdc7fd
4
- data.tar.gz: 8e3ec9b7154eb91d193beadbe42ff6cde43ec05b3b4a9a58ce398a2b2d697def
3
+ metadata.gz: 959d7e0299c62c37d7dec659df6d6ef82ba243a41be5d9addb6aa188cd48ede0
4
+ data.tar.gz: 157d6b2a385787f2d1b73e33ef9b73477a70ab072a5f38c6ea7d3e2dc2faf372
5
5
  SHA512:
6
- metadata.gz: 8a2fbf49eeacbe84ca5f7af9c2774af186e2fbf79a7345821c049feda2918fa4114b4be71d354c650a19476ebd5d71dd76965f1076855d2b5c82edec073dea46
7
- data.tar.gz: 20a96ac9ba5a94c095274df7831cb834b78b39bfab363e2b88b6fba22ff7a26f6fc5ee5bd99a6cb80001e7ae4b3005aa002217595a9c89145699cfb2a2236393
6
+ metadata.gz: b381f4cbe2c8244417c15375f08ef68d7a1c5147d2d8c45e2d13d1377f8e6f6e805306391e508b98b1670cfff7b2745332bc56473fbdfb04f4cc1ccf32cf6e06
7
+ data.tar.gz: 95e3cc67e5160f2cb64ec5332a36d50a8a60e79a17ef18f5101dd7f6b55dc9255f1c91d7b302b9df60db342748a18091c6cff29b2b163b8ffbb6897d36306f64
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.114.0 (2025-05-09)
5
+ ------------------
6
+
7
+ * Feature - We are pleased to announce limit increases to our grok processor logs transformation feature. Now you can define 20 Grok patterns in their configurations, with an expanded total pattern matching limit of 512 characters.
8
+
9
+ 1.113.0 (2025-05-01)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.112.0 (2025-04-30)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.112.0
1
+ 1.114.0
@@ -2901,14 +2901,9 @@ module Aws::CloudWatchLogs
2901
2901
  # If the results don't include a `nextToken`, then pagination is
2902
2902
  # finished.
2903
2903
  #
2904
- # <note markdown="1"> If you set `startFromHead` to `true` and you don’t include `endTime`
2905
- # in your request, you can end up in a situation where the pagination
2906
- # doesn't terminate. This can happen when the new log events are being
2907
- # added to the target log streams faster than they are being read. This
2908
- # situation is a good use case for the CloudWatch Logs [Live Tail][1]
2909
- # feature.
2910
- #
2911
- # </note>
2904
+ # Specifying the `limit` parameter only guarantees that a single page
2905
+ # doesn't return more log events than the specified limit, but it might
2906
+ # return fewer events than the limit. This is the expected API behavior.
2912
2907
  #
2913
2908
  # The returned log events are sorted by event timestamp, the timestamp
2914
2909
  # when the event was ingested by CloudWatch Logs, and the ID of the
@@ -2917,21 +2912,20 @@ module Aws::CloudWatchLogs
2917
2912
  # If you are using CloudWatch cross-account observability, you can use
2918
2913
  # this operation in a monitoring account and view data from the linked
2919
2914
  # source accounts. For more information, see [CloudWatch cross-account
2920
- # observability][2].
2915
+ # observability][1].
2921
2916
  #
2922
- # <note markdown="1"> If you are using [log transformation][3], the `FilterLogEvents`
2917
+ # <note markdown="1"> If you are using [log transformation][2], the `FilterLogEvents`
2923
2918
  # operation returns only the original versions of log events, before
2924
2919
  # they were transformed. To view the transformed versions, you must use
2925
- # a [CloudWatch Logs query.][4]
2920
+ # a [CloudWatch Logs query.][3]
2926
2921
  #
2927
2922
  # </note>
2928
2923
  #
2929
2924
  #
2930
2925
  #
2931
- # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatchLogs_LiveTail.html
2932
- # [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html
2933
- # [3]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch-Logs-Transformation.html
2934
- # [4]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/AnalyzingLogData.html
2926
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html
2927
+ # [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch-Logs-Transformation.html
2928
+ # [3]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/AnalyzingLogData.html
2935
2929
  #
2936
2930
  # @option params [String] :log_group_name
2937
2931
  # The name of the log group to search.
@@ -5959,7 +5953,7 @@ module Aws::CloudWatchLogs
5959
5953
  # entries: [ # required
5960
5954
  # {
5961
5955
  # source: "Source", # required
5962
- # delimiter: "Delimiter", # required
5956
+ # delimiter: "SplitStringDelimiter", # required
5963
5957
  # },
5964
5958
  # ],
5965
5959
  # },
@@ -6759,7 +6753,7 @@ module Aws::CloudWatchLogs
6759
6753
  # entries: [ # required
6760
6754
  # {
6761
6755
  # source: "Source", # required
6762
- # delimiter: "Delimiter", # required
6756
+ # delimiter: "SplitStringDelimiter", # required
6763
6757
  # },
6764
6758
  # ],
6765
6759
  # },
@@ -7085,7 +7079,7 @@ module Aws::CloudWatchLogs
7085
7079
  tracer: tracer
7086
7080
  )
7087
7081
  context[:gem_name] = 'aws-sdk-cloudwatchlogs'
7088
- context[:gem_version] = '1.112.0'
7082
+ context[:gem_version] = '1.114.0'
7089
7083
  Seahorse::Client::Request.new(handlers, context)
7090
7084
  end
7091
7085
 
@@ -452,6 +452,7 @@ module Aws::CloudWatchLogs
452
452
  Source = Shapes::StringShape.new(name: 'Source')
453
453
  SourceTimezone = Shapes::StringShape.new(name: 'SourceTimezone')
454
454
  SplitString = Shapes::StructureShape.new(name: 'SplitString')
455
+ SplitStringDelimiter = Shapes::StringShape.new(name: 'SplitStringDelimiter')
455
456
  SplitStringEntries = Shapes::ListShape.new(name: 'SplitStringEntries')
456
457
  SplitStringEntry = Shapes::StructureShape.new(name: 'SplitStringEntry')
457
458
  StandardUnit = Shapes::StringShape.new(name: 'StandardUnit')
@@ -1040,7 +1041,7 @@ module Aws::CloudWatchLogs
1040
1041
  FilterLogEventsRequest.add_member(:filter_pattern, Shapes::ShapeRef.new(shape: FilterPattern, location_name: "filterPattern"))
1041
1042
  FilterLogEventsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
1042
1043
  FilterLogEventsRequest.add_member(:limit, Shapes::ShapeRef.new(shape: EventsLimit, location_name: "limit"))
1043
- FilterLogEventsRequest.add_member(:interleaved, Shapes::ShapeRef.new(shape: Interleaved, deprecated: true, location_name: "interleaved", metadata: {"deprecatedMessage"=>"Starting on June 17, 2019, this parameter will be ignored and the value will be assumed to be true. The response from this operation will always interleave events from multiple log streams within a log group."}))
1044
+ FilterLogEventsRequest.add_member(:interleaved, Shapes::ShapeRef.new(shape: Interleaved, deprecated: true, location_name: "interleaved", metadata: {"deprecatedMessage" => "Starting on June 17, 2019, this parameter will be ignored and the value will be assumed to be true. The response from this operation will always interleave events from multiple log streams within a log group."}))
1044
1045
  FilterLogEventsRequest.add_member(:unmask, Shapes::ShapeRef.new(shape: Unmask, location_name: "unmask"))
1045
1046
  FilterLogEventsRequest.struct_class = Types::FilterLogEventsRequest
1046
1047
 
@@ -1334,7 +1335,7 @@ module Aws::CloudWatchLogs
1334
1335
  LogStream.add_member(:last_ingestion_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastIngestionTime"))
1335
1336
  LogStream.add_member(:upload_sequence_token, Shapes::ShapeRef.new(shape: SequenceToken, location_name: "uploadSequenceToken"))
1336
1337
  LogStream.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
1337
- LogStream.add_member(:stored_bytes, Shapes::ShapeRef.new(shape: StoredBytes, deprecated: true, location_name: "storedBytes", metadata: {"deprecatedMessage"=>"Starting on June 17, 2019, this parameter will be deprecated for log streams, and will be reported as zero. This change applies only to log streams. The storedBytes parameter for log groups is not affected."}))
1338
+ LogStream.add_member(:stored_bytes, Shapes::ShapeRef.new(shape: StoredBytes, deprecated: true, location_name: "storedBytes", metadata: {"deprecatedMessage" => "Starting on June 17, 2019, this parameter will be deprecated for log streams, and will be reported as zero. This change applies only to log streams. The storedBytes parameter for log groups is not affected."}))
1338
1339
  LogStream.struct_class = Types::LogStream
1339
1340
 
1340
1341
  LogStreams.member = Shapes::ShapeRef.new(shape: LogStream)
@@ -1619,7 +1620,7 @@ module Aws::CloudWatchLogs
1619
1620
  PutQueryDefinitionRequest.add_member(:query_definition_id, Shapes::ShapeRef.new(shape: QueryId, location_name: "queryDefinitionId"))
1620
1621
  PutQueryDefinitionRequest.add_member(:log_group_names, Shapes::ShapeRef.new(shape: LogGroupNames, location_name: "logGroupNames"))
1621
1622
  PutQueryDefinitionRequest.add_member(:query_string, Shapes::ShapeRef.new(shape: QueryDefinitionString, required: true, location_name: "queryString"))
1622
- PutQueryDefinitionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1623
+ PutQueryDefinitionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1623
1624
  PutQueryDefinitionRequest.struct_class = Types::PutQueryDefinitionRequest
1624
1625
 
1625
1626
  PutQueryDefinitionResponse.add_member(:query_definition_id, Shapes::ShapeRef.new(shape: QueryId, location_name: "queryDefinitionId"))
@@ -1739,7 +1740,7 @@ module Aws::CloudWatchLogs
1739
1740
  ResultRows.member = Shapes::ShapeRef.new(shape: ResultField)
1740
1741
 
1741
1742
  S3DeliveryConfiguration.add_member(:suffix_path, Shapes::ShapeRef.new(shape: DeliverySuffixPath, location_name: "suffixPath"))
1742
- S3DeliveryConfiguration.add_member(:enable_hive_compatible_path, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableHiveCompatiblePath", metadata: {"box"=>true}))
1743
+ S3DeliveryConfiguration.add_member(:enable_hive_compatible_path, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableHiveCompatiblePath", metadata: {"box" => true}))
1743
1744
  S3DeliveryConfiguration.struct_class = Types::S3DeliveryConfiguration
1744
1745
 
1745
1746
  SearchedLogStream.add_member(:log_stream_name, Shapes::ShapeRef.new(shape: LogStreamName, location_name: "logStreamName"))
@@ -1764,7 +1765,7 @@ module Aws::CloudWatchLogs
1764
1765
  SplitStringEntries.member = Shapes::ShapeRef.new(shape: SplitStringEntry)
1765
1766
 
1766
1767
  SplitStringEntry.add_member(:source, Shapes::ShapeRef.new(shape: Source, required: true, location_name: "source"))
1767
- SplitStringEntry.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, required: true, location_name: "delimiter"))
1768
+ SplitStringEntry.add_member(:delimiter, Shapes::ShapeRef.new(shape: SplitStringDelimiter, required: true, location_name: "delimiter"))
1768
1769
  SplitStringEntry.struct_class = Types::SplitStringEntry
1769
1770
 
1770
1771
  StartLiveTailLogGroupIdentifiers.member = Shapes::ShapeRef.new(shape: LogGroupIdentifier)
@@ -3513,7 +3513,7 @@ module Aws::CloudWatchLogs
3513
3513
  #
3514
3514
  #
3515
3515
  #
3516
- # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch-Logs-Transformation.html#Grok-Patterns
3516
+ # [1]: https://docs.aws.amazon.com/mazonCloudWatch/latest/logs/CloudWatch-Logs-Transformation-Processors.html#Grok-Patterns
3517
3517
  # @return [String]
3518
3518
  #
3519
3519
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/Grok AWS API Documentation
@@ -3932,7 +3932,7 @@ module Aws::CloudWatchLogs
3932
3932
  #
3933
3933
  #
3934
3934
  #
3935
- # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch-Logs-Transformation.html#CloudWatch-Logs-Transformation-listToMap
3935
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch-Logs-Transformation-Processors.html#CloudWatch-Logs-Transformation-listToMap
3936
3936
  #
3937
3937
  # @!attribute [rw] source
3938
3938
  # The key in the log event that has a list of objects that will be
@@ -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.112.0'
58
+ GEM_VERSION = '1.114.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudwatchlogs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.112.0
4
+ version: 1.114.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-04-30 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: aws-sdk-core
@@ -78,7 +77,6 @@ licenses:
78
77
  metadata:
79
78
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudwatchlogs
80
79
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudwatchlogs/CHANGELOG.md
81
- post_install_message:
82
80
  rdoc_options: []
83
81
  require_paths:
84
82
  - lib
@@ -93,8 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
91
  - !ruby/object:Gem::Version
94
92
  version: '0'
95
93
  requirements: []
96
- rubygems_version: 3.4.10
97
- signing_key:
94
+ rubygems_version: 3.6.7
98
95
  specification_version: 4
99
96
  summary: AWS SDK for Ruby - Amazon CloudWatch Logs
100
97
  test_files: []