aws-sdk-cloudwatchlogs 1.50.0 → 1.53.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: 3354b0744be02f334d80fe8cc35102409ffd0b52736bf0cdaa5909db0dc5eaaf
4
- data.tar.gz: cf8efdcdbb7dba736c3e5f1194bfe0374e596a519e15437ae590115df13d4a40
3
+ metadata.gz: 0073a217c36d30a24ae48797b942882b689936b3a9badb22fe023a4c02975d20
4
+ data.tar.gz: a9caa0700d7a293a9a3823f9046b81fe6f1c98c54dfb227e26acbf267c92dd97
5
5
  SHA512:
6
- metadata.gz: a47824b1b0b7c9608a3b60dc5bc8f311a0bec8baee21d9162fc873367a12e188f4c5e3e344e0683c9f0c1a45d1a7b01f06ec837e73e4cf741fb2dfde7edf427e
7
- data.tar.gz: 8dc901ab9f0bc6ca55469102e433c2e2ae728b01c85f9f721e8a1415489ecc39d0b5e1dac9d4aad687338b059e4f7ab027c7ea2ee2bc69850c5936418778a8fa
6
+ metadata.gz: 623f1008adc619e8b75f927f0bbb41c79b1fdf68b71bbcf0e8bdf456b3aeba755e120de628d9d0c55d8931578b03aa6ac24e1930b1df62bbd0adbb4db7e5a457
7
+ data.tar.gz: 4aa97f603aac1814596d67e74728a220d3c99258fd62d2c85cb7a10dd9ee75527b291f46013a49fc823b2b8790f43ac8be7b9f308c310e87fe30608101e32572
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.53.0 (2022-05-20)
5
+ ------------------
6
+
7
+ * Feature - Doc-only update to publish the new valid values for log retention
8
+
9
+ 1.52.0 (2022-02-24)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.51.0 (2022-02-03)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.50.0 (2021-12-21)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.50.0
1
+ 1.53.0
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
34
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::CloudWatchLogs
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
77
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
+ add_plugin(Aws::Plugins::RecursionDetection)
78
82
  add_plugin(Aws::Plugins::SignatureV4)
79
83
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
80
84
 
@@ -443,6 +447,12 @@ module Aws::CloudWatchLogs
443
447
  # permission to write to the S3 bucket that you specify as the
444
448
  # destination.
445
449
  #
450
+ # Exporting log data to Amazon S3 buckets that are encrypted by KMS is
451
+ # not supported. Exporting log data to Amazon S3 buckets that have S3
452
+ # Object Lock enabled with a retention period is not supported.
453
+ #
454
+ # Exporting to S3 buckets that are encrypted with AES-256 is supported.
455
+ #
446
456
  # This is an asynchronous call. If all the required information is
447
457
  # provided, this operation initiates an export task and responds with
448
458
  # the ID of the task. After the task has started, you can use
@@ -455,8 +465,11 @@ module Aws::CloudWatchLogs
455
465
  # you can specify a prefix to be used as the Amazon S3 key prefix for
456
466
  # all exported objects.
457
467
  #
458
- # Exporting to S3 buckets that are encrypted with AES-256 is supported.
459
- # Exporting to S3 buckets encrypted with SSE-KMS is not supported.
468
+ # <note markdown="1"> Time-based sorting on chunks of log data inside an exported file is
469
+ # not guaranteed. You can sort the exported log fild data by using Linux
470
+ # utilities.
471
+ #
472
+ # </note>
460
473
  #
461
474
  #
462
475
  #
@@ -479,9 +492,9 @@ module Aws::CloudWatchLogs
479
492
  # timestamp earlier than this time are not exported.
480
493
  #
481
494
  # @option params [required, Integer] :to
482
- # The end time of the range for the request, expreswatchlogsdocused as
483
- # the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with
484
- # a timestamp later than this time are not exported.
495
+ # The end time of the range for the request, expressed as the number of
496
+ # milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp
497
+ # later than this time are not exported.
485
498
  #
486
499
  # @option params [required, String] :destination
487
500
  # The name of S3 bucket for the exported log data. The bucket must be in
@@ -2247,7 +2260,7 @@ module Aws::CloudWatchLogs
2247
2260
  # @option params [required, Integer] :retention_in_days
2248
2261
  # The number of days to retain the log events in the specified log
2249
2262
  # group. Possible values are: 1, 3, 5, 7, 14, 30, 60, 90, 120, 150, 180,
2250
- # 365, 400, 545, 731, 1827, and 3653.
2263
+ # 365, 400, 545, 731, 1827, 2192, 2557, 2922, 3288, and 3653.
2251
2264
  #
2252
2265
  # To set a log group to never have log events expire, use
2253
2266
  # [DeleteRetentionPolicy][1].
@@ -2629,7 +2642,7 @@ module Aws::CloudWatchLogs
2629
2642
  params: params,
2630
2643
  config: config)
2631
2644
  context[:gem_name] = 'aws-sdk-cloudwatchlogs'
2632
- context[:gem_version] = '1.50.0'
2645
+ context[:gem_version] = '1.53.0'
2633
2646
  Seahorse::Client::Request.new(handlers, context)
2634
2647
  end
2635
2648
 
@@ -95,9 +95,9 @@ module Aws::CloudWatchLogs
95
95
  # @return [Integer]
96
96
  #
97
97
  # @!attribute [rw] to
98
- # The end time of the range for the request, expreswatchlogsdocused as
99
- # the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events
100
- # with a timestamp later than this time are not exported.
98
+ # The end time of the range for the request, expressed as the number
99
+ # of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a
100
+ # timestamp later than this time are not exported.
101
101
  # @return [Integer]
102
102
  #
103
103
  # @!attribute [rw] destination
@@ -559,7 +559,7 @@ module Aws::CloudWatchLogs
559
559
  # @!attribute [rw] log_groups
560
560
  # The log groups.
561
561
  #
562
- # If the `retentionInDays` value if not included for a log group, then
562
+ # If the `retentionInDays` value is not included for a log group, then
563
563
  # that log group is set to have its events never expire.
564
564
  # @return [Array<Types::LogGroup>]
565
565
  #
@@ -1614,7 +1614,7 @@ module Aws::CloudWatchLogs
1614
1614
  # @!attribute [rw] retention_in_days
1615
1615
  # The number of days to retain the log events in the specified log
1616
1616
  # group. Possible values are: 1, 3, 5, 7, 14, 30, 60, 90, 120, 150,
1617
- # 180, 365, 400, 545, 731, 1827, and 3653.
1617
+ # 180, 365, 400, 545, 731, 1827, 2192, 2557, 2922, 3288, and 3653.
1618
1618
  #
1619
1619
  # To set a log group to never have log events expire, use
1620
1620
  # [DeleteRetentionPolicy][1].
@@ -1910,7 +1910,8 @@ module Aws::CloudWatchLogs
1910
1910
  include Aws::Structure
1911
1911
  end
1912
1912
 
1913
- # Multiple requests to update the same resource were in conflict.
1913
+ # Multiple concurrent requests to update the same resource were in
1914
+ # conflict.
1914
1915
  #
1915
1916
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/OperationAbortedException AWS API Documentation
1916
1917
  #
@@ -2313,7 +2314,7 @@ module Aws::CloudWatchLogs
2313
2314
  # @!attribute [rw] retention_in_days
2314
2315
  # The number of days to retain the log events in the specified log
2315
2316
  # group. Possible values are: 1, 3, 5, 7, 14, 30, 60, 90, 120, 150,
2316
- # 180, 365, 400, 545, 731, 1827, and 3653.
2317
+ # 180, 365, 400, 545, 731, 1827, 2192, 2557, 2922, 3288, and 3653.
2317
2318
  #
2318
2319
  # To set a log group to never have log events expire, use
2319
2320
  # [DeleteRetentionPolicy][1].
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-cloudwatchlogs/customizations'
48
48
  # @!group service
49
49
  module Aws::CloudWatchLogs
50
50
 
51
- GEM_VERSION = '1.50.0'
51
+ GEM_VERSION = '1.53.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudwatchlogs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.50.0
4
+ version: 1.53.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-21 00:00:00.000000000 Z
11
+ date: 2022-05-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.125.0
22
+ version: 3.127.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.125.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement