aws-sdk-cloudtrail 1.21.0 → 1.26.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-cloudtrail.rb +3 -1
- data/lib/aws-sdk-cloudtrail/client.rb +18 -7
- data/lib/aws-sdk-cloudtrail/client_api.rb +2 -0
- data/lib/aws-sdk-cloudtrail/customizations.rb +1 -0
- data/lib/aws-sdk-cloudtrail/errors.rb +2 -0
- data/lib/aws-sdk-cloudtrail/resource.rb +3 -7
- data/lib/aws-sdk-cloudtrail/types.rb +44 -0
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5b4f077891a25793baaedeb68ec22c9edd75f720bb0d320ef06f52ab1ce5e43f
|
4
|
+
data.tar.gz: 3fe2b49cf0aaa5e69959c2dee5b4bd2a9d4ee742f97604307fe4b749efed61f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7fbd590b2c8fa2c3ead20b5ae49ae7df00b91253430c6e67cc5edb23962290be0167af59f9ffb76a93ce4df5f1c77e60e476ecd97c32f66bdfff46719a5f306a
|
7
|
+
data.tar.gz: 54a6435bc3f54a2ef8e1f3e0fef874164d99d45a5cf81a3d5d5edc7f0e7aea53928ad7d08f07506e0bcf7f839f1b5e12a65c96f538f13ceb96a32809e94373cd
|
data/lib/aws-sdk-cloudtrail.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-cloudtrail/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::CloudTrail
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.26.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::CloudTrail
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::CloudTrail
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::CloudTrail
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::CloudTrail
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -279,8 +283,7 @@ module Aws::CloudTrail
|
|
279
283
|
#
|
280
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
281
285
|
# number of seconds to wait for response data. This value can
|
282
|
-
# safely be set
|
283
|
-
# per-request on the session yielded by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
284
287
|
#
|
285
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
286
289
|
# seconds a connection is allowed to sit idle before it is
|
@@ -292,7 +295,7 @@ module Aws::CloudTrail
|
|
292
295
|
# request body. This option has no effect unless the request has
|
293
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
294
297
|
# disables this behaviour. This value can safely be set per
|
295
|
-
# request on the session
|
298
|
+
# request on the session.
|
296
299
|
#
|
297
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
298
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -904,6 +907,8 @@ module Aws::CloudTrail
|
|
904
907
|
# * {Types::ListPublicKeysResponse#public_key_list #public_key_list} => Array<Types::PublicKey>
|
905
908
|
# * {Types::ListPublicKeysResponse#next_token #next_token} => String
|
906
909
|
#
|
910
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
911
|
+
#
|
907
912
|
# @example Request syntax with placeholder values
|
908
913
|
#
|
909
914
|
# resp = client.list_public_keys({
|
@@ -946,6 +951,8 @@ module Aws::CloudTrail
|
|
946
951
|
# * {Types::ListTagsResponse#resource_tag_list #resource_tag_list} => Array<Types::ResourceTag>
|
947
952
|
# * {Types::ListTagsResponse#next_token #next_token} => String
|
948
953
|
#
|
954
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
955
|
+
#
|
949
956
|
# @example Request syntax with placeholder values
|
950
957
|
#
|
951
958
|
# resp = client.list_tags({
|
@@ -985,6 +992,8 @@ module Aws::CloudTrail
|
|
985
992
|
# * {Types::ListTrailsResponse#trails #trails} => Array<Types::TrailInfo>
|
986
993
|
# * {Types::ListTrailsResponse#next_token #next_token} => String
|
987
994
|
#
|
995
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
996
|
+
#
|
988
997
|
# @example Request syntax with placeholder values
|
989
998
|
#
|
990
999
|
# resp = client.list_trails({
|
@@ -1085,6 +1094,8 @@ module Aws::CloudTrail
|
|
1085
1094
|
# * {Types::LookupEventsResponse#events #events} => Array<Types::Event>
|
1086
1095
|
# * {Types::LookupEventsResponse#next_token #next_token} => String
|
1087
1096
|
#
|
1097
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1098
|
+
#
|
1088
1099
|
# @example Request syntax with placeholder values
|
1089
1100
|
#
|
1090
1101
|
# resp = client.lookup_events({
|
@@ -1567,7 +1578,7 @@ module Aws::CloudTrail
|
|
1567
1578
|
params: params,
|
1568
1579
|
config: config)
|
1569
1580
|
context[:gem_name] = 'aws-sdk-cloudtrail'
|
1570
|
-
context[:gem_version] = '1.
|
1581
|
+
context[:gem_version] = '1.26.0'
|
1571
1582
|
Seahorse::Client::Request.new(handlers, context)
|
1572
1583
|
end
|
1573
1584
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::CloudTrail
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::CloudTrail::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::CloudTrail::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::CloudTrail::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -39,6 +41,7 @@ module Aws::CloudTrail
|
|
39
41
|
class AddTagsRequest < Struct.new(
|
40
42
|
:resource_id,
|
41
43
|
:tags_list)
|
44
|
+
SENSITIVE = []
|
42
45
|
include Aws::Structure
|
43
46
|
end
|
44
47
|
|
@@ -230,6 +233,7 @@ module Aws::CloudTrail
|
|
230
233
|
:kms_key_id,
|
231
234
|
:is_organization_trail,
|
232
235
|
:tags_list)
|
236
|
+
SENSITIVE = []
|
233
237
|
include Aws::Structure
|
234
238
|
end
|
235
239
|
|
@@ -325,6 +329,7 @@ module Aws::CloudTrail
|
|
325
329
|
:cloud_watch_logs_role_arn,
|
326
330
|
:kms_key_id,
|
327
331
|
:is_organization_trail)
|
332
|
+
SENSITIVE = []
|
328
333
|
include Aws::Structure
|
329
334
|
end
|
330
335
|
|
@@ -444,6 +449,7 @@ module Aws::CloudTrail
|
|
444
449
|
class DataResource < Struct.new(
|
445
450
|
:type,
|
446
451
|
:values)
|
452
|
+
SENSITIVE = []
|
447
453
|
include Aws::Structure
|
448
454
|
end
|
449
455
|
|
@@ -466,6 +472,7 @@ module Aws::CloudTrail
|
|
466
472
|
#
|
467
473
|
class DeleteTrailRequest < Struct.new(
|
468
474
|
:name)
|
475
|
+
SENSITIVE = []
|
469
476
|
include Aws::Structure
|
470
477
|
end
|
471
478
|
|
@@ -525,6 +532,7 @@ module Aws::CloudTrail
|
|
525
532
|
class DescribeTrailsRequest < Struct.new(
|
526
533
|
:trail_name_list,
|
527
534
|
:include_shadow_trails)
|
535
|
+
SENSITIVE = []
|
528
536
|
include Aws::Structure
|
529
537
|
end
|
530
538
|
|
@@ -544,6 +552,7 @@ module Aws::CloudTrail
|
|
544
552
|
#
|
545
553
|
class DescribeTrailsResponse < Struct.new(
|
546
554
|
:trail_list)
|
555
|
+
SENSITIVE = []
|
547
556
|
include Aws::Structure
|
548
557
|
end
|
549
558
|
|
@@ -602,6 +611,7 @@ module Aws::CloudTrail
|
|
602
611
|
:username,
|
603
612
|
:resources,
|
604
613
|
:cloud_trail_event)
|
614
|
+
SENSITIVE = []
|
605
615
|
include Aws::Structure
|
606
616
|
end
|
607
617
|
|
@@ -687,6 +697,7 @@ module Aws::CloudTrail
|
|
687
697
|
:include_management_events,
|
688
698
|
:data_resources,
|
689
699
|
:exclude_management_event_sources)
|
700
|
+
SENSITIVE = []
|
690
701
|
include Aws::Structure
|
691
702
|
end
|
692
703
|
|
@@ -722,6 +733,7 @@ module Aws::CloudTrail
|
|
722
733
|
#
|
723
734
|
class GetEventSelectorsRequest < Struct.new(
|
724
735
|
:trail_name)
|
736
|
+
SENSITIVE = []
|
725
737
|
include Aws::Structure
|
726
738
|
end
|
727
739
|
|
@@ -738,6 +750,7 @@ module Aws::CloudTrail
|
|
738
750
|
class GetEventSelectorsResponse < Struct.new(
|
739
751
|
:trail_arn,
|
740
752
|
:event_selectors)
|
753
|
+
SENSITIVE = []
|
741
754
|
include Aws::Structure
|
742
755
|
end
|
743
756
|
|
@@ -773,6 +786,7 @@ module Aws::CloudTrail
|
|
773
786
|
#
|
774
787
|
class GetInsightSelectorsRequest < Struct.new(
|
775
788
|
:trail_name)
|
789
|
+
SENSITIVE = []
|
776
790
|
include Aws::Structure
|
777
791
|
end
|
778
792
|
|
@@ -792,6 +806,7 @@ module Aws::CloudTrail
|
|
792
806
|
class GetInsightSelectorsResponse < Struct.new(
|
793
807
|
:trail_arn,
|
794
808
|
:insight_selectors)
|
809
|
+
SENSITIVE = []
|
795
810
|
include Aws::Structure
|
796
811
|
end
|
797
812
|
|
@@ -811,6 +826,7 @@ module Aws::CloudTrail
|
|
811
826
|
#
|
812
827
|
class GetTrailRequest < Struct.new(
|
813
828
|
:name)
|
829
|
+
SENSITIVE = []
|
814
830
|
include Aws::Structure
|
815
831
|
end
|
816
832
|
|
@@ -822,6 +838,7 @@ module Aws::CloudTrail
|
|
822
838
|
#
|
823
839
|
class GetTrailResponse < Struct.new(
|
824
840
|
:trail)
|
841
|
+
SENSITIVE = []
|
825
842
|
include Aws::Structure
|
826
843
|
end
|
827
844
|
|
@@ -847,6 +864,7 @@ module Aws::CloudTrail
|
|
847
864
|
#
|
848
865
|
class GetTrailStatusRequest < Struct.new(
|
849
866
|
:name)
|
867
|
+
SENSITIVE = []
|
850
868
|
include Aws::Structure
|
851
869
|
end
|
852
870
|
|
@@ -985,6 +1003,7 @@ module Aws::CloudTrail
|
|
985
1003
|
:latest_delivery_attempt_succeeded,
|
986
1004
|
:time_logging_started,
|
987
1005
|
:time_logging_stopped)
|
1006
|
+
SENSITIVE = []
|
988
1007
|
include Aws::Structure
|
989
1008
|
end
|
990
1009
|
|
@@ -1015,6 +1034,7 @@ module Aws::CloudTrail
|
|
1015
1034
|
#
|
1016
1035
|
class InsightSelector < Struct.new(
|
1017
1036
|
:insight_type)
|
1037
|
+
SENSITIVE = []
|
1018
1038
|
include Aws::Structure
|
1019
1039
|
end
|
1020
1040
|
|
@@ -1260,6 +1280,7 @@ module Aws::CloudTrail
|
|
1260
1280
|
:start_time,
|
1261
1281
|
:end_time,
|
1262
1282
|
:next_token)
|
1283
|
+
SENSITIVE = []
|
1263
1284
|
include Aws::Structure
|
1264
1285
|
end
|
1265
1286
|
|
@@ -1283,6 +1304,7 @@ module Aws::CloudTrail
|
|
1283
1304
|
class ListPublicKeysResponse < Struct.new(
|
1284
1305
|
:public_key_list,
|
1285
1306
|
:next_token)
|
1307
|
+
SENSITIVE = []
|
1286
1308
|
include Aws::Structure
|
1287
1309
|
end
|
1288
1310
|
|
@@ -1312,6 +1334,7 @@ module Aws::CloudTrail
|
|
1312
1334
|
class ListTagsRequest < Struct.new(
|
1313
1335
|
:resource_id_list,
|
1314
1336
|
:next_token)
|
1337
|
+
SENSITIVE = []
|
1315
1338
|
include Aws::Structure
|
1316
1339
|
end
|
1317
1340
|
|
@@ -1331,6 +1354,7 @@ module Aws::CloudTrail
|
|
1331
1354
|
class ListTagsResponse < Struct.new(
|
1332
1355
|
:resource_tag_list,
|
1333
1356
|
:next_token)
|
1357
|
+
SENSITIVE = []
|
1334
1358
|
include Aws::Structure
|
1335
1359
|
end
|
1336
1360
|
|
@@ -1354,6 +1378,7 @@ module Aws::CloudTrail
|
|
1354
1378
|
#
|
1355
1379
|
class ListTrailsRequest < Struct.new(
|
1356
1380
|
:next_token)
|
1381
|
+
SENSITIVE = []
|
1357
1382
|
include Aws::Structure
|
1358
1383
|
end
|
1359
1384
|
|
@@ -1376,6 +1401,7 @@ module Aws::CloudTrail
|
|
1376
1401
|
class ListTrailsResponse < Struct.new(
|
1377
1402
|
:trails,
|
1378
1403
|
:next_token)
|
1404
|
+
SENSITIVE = []
|
1379
1405
|
include Aws::Structure
|
1380
1406
|
end
|
1381
1407
|
|
@@ -1402,6 +1428,7 @@ module Aws::CloudTrail
|
|
1402
1428
|
class LookupAttribute < Struct.new(
|
1403
1429
|
:attribute_key,
|
1404
1430
|
:attribute_value)
|
1431
|
+
SENSITIVE = []
|
1405
1432
|
include Aws::Structure
|
1406
1433
|
end
|
1407
1434
|
|
@@ -1471,6 +1498,7 @@ module Aws::CloudTrail
|
|
1471
1498
|
:event_category,
|
1472
1499
|
:max_results,
|
1473
1500
|
:next_token)
|
1501
|
+
SENSITIVE = []
|
1474
1502
|
include Aws::Structure
|
1475
1503
|
end
|
1476
1504
|
|
@@ -1496,6 +1524,7 @@ module Aws::CloudTrail
|
|
1496
1524
|
class LookupEventsResponse < Struct.new(
|
1497
1525
|
:events,
|
1498
1526
|
:next_token)
|
1527
|
+
SENSITIVE = []
|
1499
1528
|
include Aws::Structure
|
1500
1529
|
end
|
1501
1530
|
|
@@ -1571,6 +1600,7 @@ module Aws::CloudTrail
|
|
1571
1600
|
:validity_start_time,
|
1572
1601
|
:validity_end_time,
|
1573
1602
|
:fingerprint)
|
1603
|
+
SENSITIVE = []
|
1574
1604
|
include Aws::Structure
|
1575
1605
|
end
|
1576
1606
|
|
@@ -1625,6 +1655,7 @@ module Aws::CloudTrail
|
|
1625
1655
|
class PutEventSelectorsRequest < Struct.new(
|
1626
1656
|
:trail_name,
|
1627
1657
|
:event_selectors)
|
1658
|
+
SENSITIVE = []
|
1628
1659
|
include Aws::Structure
|
1629
1660
|
end
|
1630
1661
|
|
@@ -1644,6 +1675,7 @@ module Aws::CloudTrail
|
|
1644
1675
|
class PutEventSelectorsResponse < Struct.new(
|
1645
1676
|
:trail_arn,
|
1646
1677
|
:event_selectors)
|
1678
|
+
SENSITIVE = []
|
1647
1679
|
include Aws::Structure
|
1648
1680
|
end
|
1649
1681
|
|
@@ -1675,6 +1707,7 @@ module Aws::CloudTrail
|
|
1675
1707
|
class PutInsightSelectorsRequest < Struct.new(
|
1676
1708
|
:trail_name,
|
1677
1709
|
:insight_selectors)
|
1710
|
+
SENSITIVE = []
|
1678
1711
|
include Aws::Structure
|
1679
1712
|
end
|
1680
1713
|
|
@@ -1694,6 +1727,7 @@ module Aws::CloudTrail
|
|
1694
1727
|
class PutInsightSelectorsResponse < Struct.new(
|
1695
1728
|
:trail_arn,
|
1696
1729
|
:insight_selectors)
|
1730
|
+
SENSITIVE = []
|
1697
1731
|
include Aws::Structure
|
1698
1732
|
end
|
1699
1733
|
|
@@ -1728,6 +1762,7 @@ module Aws::CloudTrail
|
|
1728
1762
|
class RemoveTagsRequest < Struct.new(
|
1729
1763
|
:resource_id,
|
1730
1764
|
:tags_list)
|
1765
|
+
SENSITIVE = []
|
1731
1766
|
include Aws::Structure
|
1732
1767
|
end
|
1733
1768
|
|
@@ -1765,6 +1800,7 @@ module Aws::CloudTrail
|
|
1765
1800
|
class Resource < Struct.new(
|
1766
1801
|
:resource_type,
|
1767
1802
|
:resource_name)
|
1803
|
+
SENSITIVE = []
|
1768
1804
|
include Aws::Structure
|
1769
1805
|
end
|
1770
1806
|
|
@@ -1789,6 +1825,7 @@ module Aws::CloudTrail
|
|
1789
1825
|
class ResourceTag < Struct.new(
|
1790
1826
|
:resource_id,
|
1791
1827
|
:tags_list)
|
1828
|
+
SENSITIVE = []
|
1792
1829
|
include Aws::Structure
|
1793
1830
|
end
|
1794
1831
|
|
@@ -1826,6 +1863,7 @@ module Aws::CloudTrail
|
|
1826
1863
|
#
|
1827
1864
|
class StartLoggingRequest < Struct.new(
|
1828
1865
|
:name)
|
1866
|
+
SENSITIVE = []
|
1829
1867
|
include Aws::Structure
|
1830
1868
|
end
|
1831
1869
|
|
@@ -1858,6 +1896,7 @@ module Aws::CloudTrail
|
|
1858
1896
|
#
|
1859
1897
|
class StopLoggingRequest < Struct.new(
|
1860
1898
|
:name)
|
1899
|
+
SENSITIVE = []
|
1861
1900
|
include Aws::Structure
|
1862
1901
|
end
|
1863
1902
|
|
@@ -1895,6 +1934,7 @@ module Aws::CloudTrail
|
|
1895
1934
|
class Tag < Struct.new(
|
1896
1935
|
:key,
|
1897
1936
|
:value)
|
1937
|
+
SENSITIVE = []
|
1898
1938
|
include Aws::Structure
|
1899
1939
|
end
|
1900
1940
|
|
@@ -2018,6 +2058,7 @@ module Aws::CloudTrail
|
|
2018
2058
|
:has_custom_event_selectors,
|
2019
2059
|
:has_insight_selectors,
|
2020
2060
|
:is_organization_trail)
|
2061
|
+
SENSITIVE = []
|
2021
2062
|
include Aws::Structure
|
2022
2063
|
end
|
2023
2064
|
|
@@ -2048,6 +2089,7 @@ module Aws::CloudTrail
|
|
2048
2089
|
:trail_arn,
|
2049
2090
|
:name,
|
2050
2091
|
:home_region)
|
2092
|
+
SENSITIVE = []
|
2051
2093
|
include Aws::Structure
|
2052
2094
|
end
|
2053
2095
|
|
@@ -2225,6 +2267,7 @@ module Aws::CloudTrail
|
|
2225
2267
|
:cloud_watch_logs_role_arn,
|
2226
2268
|
:kms_key_id,
|
2227
2269
|
:is_organization_trail)
|
2270
|
+
SENSITIVE = []
|
2228
2271
|
include Aws::Structure
|
2229
2272
|
end
|
2230
2273
|
|
@@ -2320,6 +2363,7 @@ module Aws::CloudTrail
|
|
2320
2363
|
:cloud_watch_logs_role_arn,
|
2321
2364
|
:kms_key_id,
|
2322
2365
|
:is_organization_trail)
|
2366
|
+
SENSITIVE = []
|
2323
2367
|
include Aws::Structure
|
2324
2368
|
end
|
2325
2369
|
|
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.26.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: 2020-
|
11
|
+
date: 2020-07-02 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,7 +80,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
80
|
- !ruby/object:Gem::Version
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
|
-
|
83
|
+
rubyforge_project:
|
84
|
+
rubygems_version: 2.7.6.2
|
84
85
|
signing_key:
|
85
86
|
specification_version: 4
|
86
87
|
summary: AWS SDK for Ruby - CloudTrail
|