aws-sdk-qldb 1.7.0 → 1.12.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: f17965f8b4cccc22f7bd7ce6dc2aef740ea43859d05e9e44e698ea80309b00ae
4
- data.tar.gz: dbc97caafac91ee1c64577259ceef841f286b3123ace0ae72434d462dafa8540
3
+ metadata.gz: 65c8e6229bc742710838139a911f0fe0612c7c2aeca60ebc9286383dce36e604
4
+ data.tar.gz: 1c407a14230230e611f7e65c53105eab75032b2fdef6d5645f5e9a9943c231a2
5
5
  SHA512:
6
- metadata.gz: dc0cf3372e26b7e7da6e5d1c7a053dcd1c7e3a6ae02cf95ff319f5c2622860b295bcd35abf6ed815a6354b43320de65cccbceb51f1dc83b8f0bbcf9f6e60acbf
7
- data.tar.gz: cc525489eec649006f1e8f664ea283f6745ef9f2102de061bbfe7924a46d50a8c7363a25e3373c1237809535ae265c5e03a88ff29f920e0017cb436bffeec9c9
6
+ metadata.gz: 78bbab3e52a97aaa6cad3133cf5138390a5e91f40f924f3eb399d86ab8ce434c0eec49e96fea5daa79765882c83f980d5789915ce8db655bf2a3bc0df8e001f8
7
+ data.tar.gz: a1cd9bb9c496e6bc5d5892c53d059caff572db088c706a43a751f1c4e53aa576d4d85627489bfe0e1969892cc8bd3d4703b826f122a4624fada2adafa7d025e6
data/lib/aws-sdk-qldb.rb CHANGED
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  require 'aws-sdk-core'
11
12
  require 'aws-sigv4'
12
13
 
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-qldb/customizations'
44
45
  #
45
46
  # See {Errors} for more information.
46
47
  #
47
- # @service
48
+ # @!group service
48
49
  module Aws::QLDB
49
50
 
50
- GEM_VERSION = '1.7.0'
51
+ GEM_VERSION = '1.12.0'
51
52
 
52
53
  end
@@ -85,13 +85,28 @@ module Aws::QLDB
85
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
86
86
  # credentials.
87
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
88
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
89
103
  # from an EC2 IMDS on an EC2 instance.
90
104
  #
91
- # * `Aws::SharedCredentials` - Used for loading credentials from a
92
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
93
107
  #
94
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
95
110
  #
96
111
  # When `:credentials` are not configured directly, the following
97
112
  # locations will be searched for credentials:
@@ -101,10 +116,10 @@ module Aws::QLDB
101
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
102
117
  # * `~/.aws/credentials`
103
118
  # * `~/.aws/config`
104
- # * EC2 IMDS instance profile - When used by default, the timeouts are
105
- # very aggressive. Construct and pass an instance of
106
- # `Aws::InstanceProfileCredentails` to enable retries and extended
107
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
108
123
  #
109
124
  # @option options [required, String] :region
110
125
  # The AWS region to connect to. The configured `:region` is
@@ -1328,7 +1343,7 @@ module Aws::QLDB
1328
1343
  params: params,
1329
1344
  config: config)
1330
1345
  context[:gem_name] = 'aws-sdk-qldb'
1331
- context[:gem_version] = '1.7.0'
1346
+ context[:gem_version] = '1.12.0'
1332
1347
  Seahorse::Client::Request.new(handlers, context)
1333
1348
  end
1334
1349
 
@@ -31,6 +31,7 @@ module Aws::QLDB
31
31
  class CancelJournalKinesisStreamRequest < Struct.new(
32
32
  :ledger_name,
33
33
  :stream_id)
34
+ SENSITIVE = []
34
35
  include Aws::Structure
35
36
  end
36
37
 
@@ -42,6 +43,7 @@ module Aws::QLDB
42
43
  #
43
44
  class CancelJournalKinesisStreamResponse < Struct.new(
44
45
  :stream_id)
46
+ SENSITIVE = []
45
47
  include Aws::Structure
46
48
  end
47
49
 
@@ -100,6 +102,7 @@ module Aws::QLDB
100
102
  :tags,
101
103
  :permissions_mode,
102
104
  :deletion_protection)
105
+ SENSITIVE = []
103
106
  include Aws::Structure
104
107
  end
105
108
 
@@ -142,6 +145,7 @@ module Aws::QLDB
142
145
  :state,
143
146
  :creation_date_time,
144
147
  :deletion_protection)
148
+ SENSITIVE = []
145
149
  include Aws::Structure
146
150
  end
147
151
 
@@ -160,6 +164,7 @@ module Aws::QLDB
160
164
  #
161
165
  class DeleteLedgerRequest < Struct.new(
162
166
  :name)
167
+ SENSITIVE = []
163
168
  include Aws::Structure
164
169
  end
165
170
 
@@ -184,6 +189,7 @@ module Aws::QLDB
184
189
  class DescribeJournalKinesisStreamRequest < Struct.new(
185
190
  :ledger_name,
186
191
  :stream_id)
192
+ SENSITIVE = []
187
193
  include Aws::Structure
188
194
  end
189
195
 
@@ -196,6 +202,7 @@ module Aws::QLDB
196
202
  #
197
203
  class DescribeJournalKinesisStreamResponse < Struct.new(
198
204
  :stream)
205
+ SENSITIVE = []
199
206
  include Aws::Structure
200
207
  end
201
208
 
@@ -220,6 +227,7 @@ module Aws::QLDB
220
227
  class DescribeJournalS3ExportRequest < Struct.new(
221
228
  :name,
222
229
  :export_id)
230
+ SENSITIVE = []
223
231
  include Aws::Structure
224
232
  end
225
233
 
@@ -232,6 +240,7 @@ module Aws::QLDB
232
240
  #
233
241
  class DescribeJournalS3ExportResponse < Struct.new(
234
242
  :export_description)
243
+ SENSITIVE = []
235
244
  include Aws::Structure
236
245
  end
237
246
 
@@ -250,6 +259,7 @@ module Aws::QLDB
250
259
  #
251
260
  class DescribeLedgerRequest < Struct.new(
252
261
  :name)
262
+ SENSITIVE = []
253
263
  include Aws::Structure
254
264
  end
255
265
 
@@ -292,6 +302,7 @@ module Aws::QLDB
292
302
  :state,
293
303
  :creation_date_time,
294
304
  :deletion_protection)
305
+ SENSITIVE = []
295
306
  include Aws::Structure
296
307
  end
297
308
 
@@ -369,6 +380,7 @@ module Aws::QLDB
369
380
  :exclusive_end_time,
370
381
  :s3_export_configuration,
371
382
  :role_arn)
383
+ SENSITIVE = []
372
384
  include Aws::Structure
373
385
  end
374
386
 
@@ -383,6 +395,7 @@ module Aws::QLDB
383
395
  #
384
396
  class ExportJournalToS3Response < Struct.new(
385
397
  :export_id)
398
+ SENSITIVE = []
386
399
  include Aws::Structure
387
400
  end
388
401
 
@@ -425,6 +438,7 @@ module Aws::QLDB
425
438
  :name,
426
439
  :block_address,
427
440
  :digest_tip_address)
441
+ SENSITIVE = [:block_address, :digest_tip_address]
428
442
  include Aws::Structure
429
443
  end
430
444
 
@@ -444,6 +458,7 @@ module Aws::QLDB
444
458
  class GetBlockResponse < Struct.new(
445
459
  :block,
446
460
  :proof)
461
+ SENSITIVE = [:block, :proof]
447
462
  include Aws::Structure
448
463
  end
449
464
 
@@ -462,6 +477,7 @@ module Aws::QLDB
462
477
  #
463
478
  class GetDigestRequest < Struct.new(
464
479
  :name)
480
+ SENSITIVE = []
465
481
  include Aws::Structure
466
482
  end
467
483
 
@@ -481,6 +497,7 @@ module Aws::QLDB
481
497
  class GetDigestResponse < Struct.new(
482
498
  :digest,
483
499
  :digest_tip_address)
500
+ SENSITIVE = [:digest_tip_address]
484
501
  include Aws::Structure
485
502
  end
486
503
 
@@ -529,6 +546,7 @@ module Aws::QLDB
529
546
  :block_address,
530
547
  :document_id,
531
548
  :digest_tip_address)
549
+ SENSITIVE = [:block_address, :digest_tip_address]
532
550
  include Aws::Structure
533
551
  end
534
552
 
@@ -548,6 +566,7 @@ module Aws::QLDB
548
566
  class GetRevisionResponse < Struct.new(
549
567
  :proof,
550
568
  :revision)
569
+ SENSITIVE = [:proof, :revision]
551
570
  include Aws::Structure
552
571
  end
553
572
 
@@ -565,6 +584,7 @@ module Aws::QLDB
565
584
  class InvalidParameterException < Struct.new(
566
585
  :message,
567
586
  :parameter_name)
587
+ SENSITIVE = []
568
588
  include Aws::Structure
569
589
  end
570
590
 
@@ -640,6 +660,7 @@ module Aws::QLDB
640
660
  :kinesis_configuration,
641
661
  :error_cause,
642
662
  :stream_name)
663
+ SENSITIVE = []
643
664
  include Aws::Structure
644
665
  end
645
666
 
@@ -703,6 +724,7 @@ module Aws::QLDB
703
724
  :exclusive_end_time,
704
725
  :s3_export_configuration,
705
726
  :role_arn)
727
+ SENSITIVE = []
706
728
  include Aws::Structure
707
729
  end
708
730
 
@@ -736,6 +758,7 @@ module Aws::QLDB
736
758
  class KinesisConfiguration < Struct.new(
737
759
  :stream_arn,
738
760
  :aggregation_enabled)
761
+ SENSITIVE = []
739
762
  include Aws::Structure
740
763
  end
741
764
 
@@ -762,6 +785,7 @@ module Aws::QLDB
762
785
  :name,
763
786
  :state,
764
787
  :creation_date_time)
788
+ SENSITIVE = []
765
789
  include Aws::Structure
766
790
  end
767
791
 
@@ -779,6 +803,7 @@ module Aws::QLDB
779
803
  class LimitExceededException < Struct.new(
780
804
  :message,
781
805
  :resource_type)
806
+ SENSITIVE = []
782
807
  include Aws::Structure
783
808
  end
784
809
 
@@ -814,6 +839,7 @@ module Aws::QLDB
814
839
  :ledger_name,
815
840
  :max_results,
816
841
  :next_token)
842
+ SENSITIVE = []
817
843
  include Aws::Structure
818
844
  end
819
845
 
@@ -836,6 +862,7 @@ module Aws::QLDB
836
862
  class ListJournalKinesisStreamsForLedgerResponse < Struct.new(
837
863
  :streams,
838
864
  :next_token)
865
+ SENSITIVE = []
839
866
  include Aws::Structure
840
867
  end
841
868
 
@@ -871,6 +898,7 @@ module Aws::QLDB
871
898
  :name,
872
899
  :max_results,
873
900
  :next_token)
901
+ SENSITIVE = []
874
902
  include Aws::Structure
875
903
  end
876
904
 
@@ -893,6 +921,7 @@ module Aws::QLDB
893
921
  class ListJournalS3ExportsForLedgerResponse < Struct.new(
894
922
  :journal_s3_exports,
895
923
  :next_token)
924
+ SENSITIVE = []
896
925
  include Aws::Structure
897
926
  end
898
927
 
@@ -922,6 +951,7 @@ module Aws::QLDB
922
951
  class ListJournalS3ExportsRequest < Struct.new(
923
952
  :max_results,
924
953
  :next_token)
954
+ SENSITIVE = []
925
955
  include Aws::Structure
926
956
  end
927
957
 
@@ -944,6 +974,7 @@ module Aws::QLDB
944
974
  class ListJournalS3ExportsResponse < Struct.new(
945
975
  :journal_s3_exports,
946
976
  :next_token)
977
+ SENSITIVE = []
947
978
  include Aws::Structure
948
979
  end
949
980
 
@@ -972,6 +1003,7 @@ module Aws::QLDB
972
1003
  class ListLedgersRequest < Struct.new(
973
1004
  :max_results,
974
1005
  :next_token)
1006
+ SENSITIVE = []
975
1007
  include Aws::Structure
976
1008
  end
977
1009
 
@@ -997,6 +1029,7 @@ module Aws::QLDB
997
1029
  class ListLedgersResponse < Struct.new(
998
1030
  :ledgers,
999
1031
  :next_token)
1032
+ SENSITIVE = []
1000
1033
  include Aws::Structure
1001
1034
  end
1002
1035
 
@@ -1018,6 +1051,7 @@ module Aws::QLDB
1018
1051
  #
1019
1052
  class ListTagsForResourceRequest < Struct.new(
1020
1053
  :resource_arn)
1054
+ SENSITIVE = []
1021
1055
  include Aws::Structure
1022
1056
  end
1023
1057
 
@@ -1030,6 +1064,7 @@ module Aws::QLDB
1030
1064
  #
1031
1065
  class ListTagsForResourceResponse < Struct.new(
1032
1066
  :tags)
1067
+ SENSITIVE = []
1033
1068
  include Aws::Structure
1034
1069
  end
1035
1070
 
@@ -1052,6 +1087,7 @@ module Aws::QLDB
1052
1087
  :message,
1053
1088
  :resource_type,
1054
1089
  :resource_name)
1090
+ SENSITIVE = []
1055
1091
  include Aws::Structure
1056
1092
  end
1057
1093
 
@@ -1074,6 +1110,7 @@ module Aws::QLDB
1074
1110
  :message,
1075
1111
  :resource_type,
1076
1112
  :resource_name)
1113
+ SENSITIVE = []
1077
1114
  include Aws::Structure
1078
1115
  end
1079
1116
 
@@ -1096,6 +1133,7 @@ module Aws::QLDB
1096
1133
  :message,
1097
1134
  :resource_type,
1098
1135
  :resource_name)
1136
+ SENSITIVE = []
1099
1137
  include Aws::Structure
1100
1138
  end
1101
1139
 
@@ -1118,6 +1156,7 @@ module Aws::QLDB
1118
1156
  :message,
1119
1157
  :resource_type,
1120
1158
  :resource_name)
1159
+ SENSITIVE = []
1121
1160
  include Aws::Structure
1122
1161
  end
1123
1162
 
@@ -1161,6 +1200,7 @@ module Aws::QLDB
1161
1200
  class S3EncryptionConfiguration < Struct.new(
1162
1201
  :object_encryption_type,
1163
1202
  :kms_key_arn)
1203
+ SENSITIVE = []
1164
1204
  include Aws::Structure
1165
1205
  end
1166
1206
 
@@ -1224,6 +1264,7 @@ module Aws::QLDB
1224
1264
  :bucket,
1225
1265
  :prefix,
1226
1266
  :encryption_configuration)
1267
+ SENSITIVE = []
1227
1268
  include Aws::Structure
1228
1269
  end
1229
1270
 
@@ -1315,6 +1356,7 @@ module Aws::QLDB
1315
1356
  :exclusive_end_time,
1316
1357
  :kinesis_configuration,
1317
1358
  :stream_name)
1359
+ SENSITIVE = []
1318
1360
  include Aws::Structure
1319
1361
  end
1320
1362
 
@@ -1326,6 +1368,7 @@ module Aws::QLDB
1326
1368
  #
1327
1369
  class StreamJournalToKinesisResponse < Struct.new(
1328
1370
  :stream_id)
1371
+ SENSITIVE = []
1329
1372
  include Aws::Structure
1330
1373
  end
1331
1374
 
@@ -1358,6 +1401,7 @@ module Aws::QLDB
1358
1401
  class TagResourceRequest < Struct.new(
1359
1402
  :resource_arn,
1360
1403
  :tags)
1404
+ SENSITIVE = []
1361
1405
  include Aws::Structure
1362
1406
  end
1363
1407
 
@@ -1389,6 +1433,7 @@ module Aws::QLDB
1389
1433
  class UntagResourceRequest < Struct.new(
1390
1434
  :resource_arn,
1391
1435
  :tag_keys)
1436
+ SENSITIVE = []
1392
1437
  include Aws::Structure
1393
1438
  end
1394
1439
 
@@ -1426,6 +1471,7 @@ module Aws::QLDB
1426
1471
  class UpdateLedgerRequest < Struct.new(
1427
1472
  :name,
1428
1473
  :deletion_protection)
1474
+ SENSITIVE = []
1429
1475
  include Aws::Structure
1430
1476
  end
1431
1477
 
@@ -1468,6 +1514,7 @@ module Aws::QLDB
1468
1514
  :state,
1469
1515
  :creation_date_time,
1470
1516
  :deletion_protection)
1517
+ SENSITIVE = []
1471
1518
  include Aws::Structure
1472
1519
  end
1473
1520
 
@@ -1489,6 +1536,7 @@ module Aws::QLDB
1489
1536
  #
1490
1537
  class ValueHolder < Struct.new(
1491
1538
  :ion_text)
1539
+ SENSITIVE = [:ion_text]
1492
1540
  include Aws::Structure
1493
1541
  end
1494
1542
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-qldb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.12.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-06-16 00:00:00.000000000 Z
11
+ date: 2021-02-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.99.0
22
+ version: 3.112.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.99.0
32
+ version: 3.112.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement