aws-sdk-cloudtrail 1.44.0 → 1.47.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudtrail/client.rb +11 -5
- data/lib/aws-sdk-cloudtrail/types.rb +18 -3
- data/lib/aws-sdk-cloudtrail.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fbcb8829b7f62ec563c39d048e6cc41280bc6da20d8b6767c0fa2452b138eb7c
|
4
|
+
data.tar.gz: bf8c8cdf82589369124555546003c065a240447daef6d7cb5e7a685f30eb11b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b8eb4ed5328581d3158efa597e10d5ee9742c9ca7f2848d9d5ba217b20373d89ad7c6d583a03c3037afe08e3227b17ca2b55f3602d21e4f181a7908dba0b398
|
7
|
+
data.tar.gz: cf1ab13ca158bd6c5273973298008c1dda4578723126b252a4dd1065de2383f109aeff173446cd7f1bc4fc1abc925c60f9f597c564ea8ce70e852fdea6f2fc83
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.47.0 (2022-02-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.46.0 (2022-02-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.45.0 (2022-01-18)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release fixes a documentation bug in the description for the readOnly field selector in advanced event selectors. The description now clarifies that users omit the readOnly field selector to select both Read and Write management events.
|
18
|
+
|
4
19
|
1.44.0 (2022-01-05)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.47.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::CloudTrail
|
|
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
|
|
@@ -736,15 +740,17 @@ module Aws::CloudTrail
|
|
736
740
|
|
737
741
|
# Disables the event data store specified by `EventDataStore`, which
|
738
742
|
# accepts an event data store ARN. After you run `DeleteEventDataStore`,
|
739
|
-
# the event data store
|
740
|
-
#
|
741
|
-
#
|
743
|
+
# the event data store enters a `PENDING_DELETION` state, and is
|
744
|
+
# automatically deleted after a wait period of seven days.
|
745
|
+
# `TerminationProtectionEnabled` must be set to `False` on the event
|
746
|
+
# data store; this operation cannot work if
|
742
747
|
# `TerminationProtectionEnabled` is `True`.
|
743
748
|
#
|
744
749
|
# After you run `DeleteEventDataStore` on an event data store, you
|
745
750
|
# cannot run `ListQueries`, `DescribeQuery`, or `GetQueryResults` on
|
746
751
|
# queries that are using an event data store in a `PENDING_DELETION`
|
747
|
-
# state.
|
752
|
+
# state. An event data store in the `PENDING_DELETION` state does not
|
753
|
+
# incur costs.
|
748
754
|
#
|
749
755
|
# @option params [required, String] :event_data_store
|
750
756
|
# The ARN (or the ID suffix of the ARN) of the event data store to
|
@@ -2406,7 +2412,7 @@ module Aws::CloudTrail
|
|
2406
2412
|
params: params,
|
2407
2413
|
config: config)
|
2408
2414
|
context[:gem_name] = 'aws-sdk-cloudtrail'
|
2409
|
-
context[:gem_version] = '1.
|
2415
|
+
context[:gem_version] = '1.47.0'
|
2410
2416
|
Seahorse::Client::Request.new(handlers, context)
|
2411
2417
|
end
|
2412
2418
|
|
@@ -135,8 +135,10 @@ module Aws::CloudTrail
|
|
135
135
|
# `resources.ARN`.
|
136
136
|
#
|
137
137
|
# * <b> <code>readOnly</code> </b> - Optional. Can be set to `Equals`
|
138
|
-
# a value of `true` or `false`.
|
139
|
-
# and `write` events.
|
138
|
+
# a value of `true` or `false`. If you do not add this field,
|
139
|
+
# CloudTrail logs both both `read` and `write` events. A value of
|
140
|
+
# `true` logs only `read` events. A value of `false` logs only
|
141
|
+
# `write` events.
|
140
142
|
#
|
141
143
|
# * <b> <code>eventSource</code> </b> - For filtering management
|
142
144
|
# events only. This can be set only to `NotEquals`
|
@@ -172,6 +174,8 @@ module Aws::CloudTrail
|
|
172
174
|
#
|
173
175
|
# * `AWS::DynamoDB::Stream`
|
174
176
|
#
|
177
|
+
# * `AWS::Glue::Table`
|
178
|
+
#
|
175
179
|
# You can have only one `resources.type` field per selector. To log
|
176
180
|
# data events on more than one resource type, add another selector.
|
177
181
|
#
|
@@ -258,6 +262,14 @@ module Aws::CloudTrail
|
|
258
262
|
# * `arn:<partition>:dynamodb:<region>:<account_ID>:table/<table_name>/stream/<date_time>`
|
259
263
|
#
|
260
264
|
# ^
|
265
|
+
#
|
266
|
+
# When `resources.type` equals `AWS::Glue::Table`, and the operator
|
267
|
+
# is set to `Equals` or `NotEquals`, the ARN must be in the
|
268
|
+
# following format:
|
269
|
+
#
|
270
|
+
# * `arn:<partition>:glue:<region>:<account_ID>:table/<database_name>/<table_name>`
|
271
|
+
#
|
272
|
+
# ^
|
261
273
|
# @return [String]
|
262
274
|
#
|
263
275
|
# @!attribute [rw] equals
|
@@ -907,6 +919,8 @@ module Aws::CloudTrail
|
|
907
919
|
# * `AWS::S3::AccessPoint`
|
908
920
|
#
|
909
921
|
# * `AWS::DynamoDB::Stream`
|
922
|
+
#
|
923
|
+
# * `AWS::Glue::Table`
|
910
924
|
# @return [String]
|
911
925
|
#
|
912
926
|
# @!attribute [rw] values
|
@@ -1405,7 +1419,8 @@ module Aws::CloudTrail
|
|
1405
1419
|
# Management Service or Amazon RDS Data API events by containing
|
1406
1420
|
# `kms.amazonaws.com` or `rdsdata.amazonaws.com`. By default,
|
1407
1421
|
# `ExcludeManagementEventSources` is empty, and KMS and Amazon RDS
|
1408
|
-
# Data API events are logged to your trail.
|
1422
|
+
# Data API events are logged to your trail. You can exclude management
|
1423
|
+
# event sources only in regions that support the event source.
|
1409
1424
|
# @return [Array<String>]
|
1410
1425
|
#
|
1411
1426
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudtrail-2013-11-01/EventSelector AWS API Documentation
|
data/lib/aws-sdk-cloudtrail.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudtrail
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.47.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: 2022-
|
11
|
+
date: 2022-02-24 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.
|
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.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|