aws-sdk-core 2.0.2 → 2.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/apis/CloudSearch.api.json +22 -1
- data/apis/EC2.waiters.json +20 -0
- data/apis/ElasticTranscoder.api.json +3 -4
- data/apis/ElasticTranscoder.waiters.json +16 -0
- data/apis/RDS.api.json +264 -19
- data/lib/aws-sdk-core.rb +6 -28
- data/lib/aws-sdk-core/api/service_customizations.rb +6 -25
- data/lib/aws-sdk-core/client.rb +18 -99
- data/lib/aws-sdk-core/client_paging.rb +29 -0
- data/lib/aws-sdk-core/client_stubs.rb +23 -11
- data/lib/aws-sdk-core/client_waiters.rb +105 -0
- data/lib/aws-sdk-core/elastictranscoder.rb +1 -0
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +4 -2
- data/lib/aws-sdk-core/query/param_builder.rb +4 -2
- data/lib/aws-sdk-core/s3/presigner.rb +16 -5
- data/lib/aws-sdk-core/version.rb +1 -1
- data/lib/seahorse/client/base.rb +8 -5
- data/lib/seahorse/client/net_http/connection_pool.rb +4 -0
- data/lib/seahorse/client/plugins/net_http.rb +1 -0
- data/lib/seahorse/util.rb +5 -0
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 325a32edb6514c7b13bb1b028d7ec126744b8162
|
4
|
+
data.tar.gz: d564a4f82e3a1165db2f1c05d1397e7dd687e78a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0667f865f5a50bb318aec26885fbfa07f844cdf415ca3af8244e1b16688fc36e278261ea4483e5c7263788f9fc573d6c282df2f0f3eb5cda663cf5a34887cc9d
|
7
|
+
data.tar.gz: b5e2bbd1dfc8d56dc8c4e48548222e96355b26bd41b0351f437ecd2d5ae85e923ca296c3cd96658f8792979804a409c79c946772af1f8b953e0e0f463ba19ac4
|
data/apis/CloudSearch.api.json
CHANGED
@@ -1040,6 +1040,7 @@
|
|
1040
1040
|
"Synonyms":{"shape":"String"},
|
1041
1041
|
"Stopwords":{"shape":"String"},
|
1042
1042
|
"StemmingDictionary":{"shape":"String"},
|
1043
|
+
"JapaneseTokenizationDictionary":{"shape":"String"},
|
1043
1044
|
"AlgorithmicStemming":{"shape":"AlgorithmicStemming"}
|
1044
1045
|
}
|
1045
1046
|
},
|
@@ -1513,7 +1514,8 @@
|
|
1513
1514
|
"Processing":{"shape":"Boolean"},
|
1514
1515
|
"SearchInstanceType":{"shape":"SearchInstanceType"},
|
1515
1516
|
"SearchPartitionCount":{"shape":"PartitionCount"},
|
1516
|
-
"SearchInstanceCount":{"shape":"InstanceCount"}
|
1517
|
+
"SearchInstanceCount":{"shape":"InstanceCount"},
|
1518
|
+
"Limits":{"shape":"Limits"}
|
1517
1519
|
}
|
1518
1520
|
},
|
1519
1521
|
"DomainStatusList":{
|
@@ -1728,6 +1730,17 @@
|
|
1728
1730
|
},
|
1729
1731
|
"exception":true
|
1730
1732
|
},
|
1733
|
+
"Limits":{
|
1734
|
+
"type":"structure",
|
1735
|
+
"required":[
|
1736
|
+
"MaximumReplicationCount",
|
1737
|
+
"MaximumPartitionCount"
|
1738
|
+
],
|
1739
|
+
"members":{
|
1740
|
+
"MaximumReplicationCount":{"shape":"MaximumReplicationCount"},
|
1741
|
+
"MaximumPartitionCount":{"shape":"MaximumPartitionCount"}
|
1742
|
+
}
|
1743
|
+
},
|
1731
1744
|
"ListDomainNamesResponse":{
|
1732
1745
|
"type":"structure",
|
1733
1746
|
"members":{
|
@@ -1756,6 +1769,14 @@
|
|
1756
1769
|
}
|
1757
1770
|
},
|
1758
1771
|
"Long":{"type":"long"},
|
1772
|
+
"MaximumPartitionCount":{
|
1773
|
+
"type":"integer",
|
1774
|
+
"min":1
|
1775
|
+
},
|
1776
|
+
"MaximumReplicationCount":{
|
1777
|
+
"type":"integer",
|
1778
|
+
"min":1
|
1779
|
+
},
|
1759
1780
|
"MultiAZ":{"type":"boolean"},
|
1760
1781
|
"OptionState":{
|
1761
1782
|
"type":"string",
|
data/apis/EC2.waiters.json
CHANGED
@@ -9,6 +9,26 @@
|
|
9
9
|
"operation": "DescribeInstances",
|
10
10
|
"acceptor_path": "Reservations[].Instances[].State.Name"
|
11
11
|
},
|
12
|
+
"__InstanceStatus": {
|
13
|
+
"operation": "DescribeInstanceStatus",
|
14
|
+
"success_value": "ok"
|
15
|
+
},
|
16
|
+
"SystemStatusOk": {
|
17
|
+
"extends": "__InstanceStatus",
|
18
|
+
"acceptor_path": "InstanceStatuses[].SystemStatus.Status"
|
19
|
+
},
|
20
|
+
"InstanceStatusOk": {
|
21
|
+
"extends": "__InstanceStatus",
|
22
|
+
"acceptor_path": "InstanceStatuses[].InstanceStatus.Status"
|
23
|
+
},
|
24
|
+
"ImageAvailable": {
|
25
|
+
"operation": "DescribeImages",
|
26
|
+
"acceptor_path": "Images[].State",
|
27
|
+
"success_value": "available",
|
28
|
+
"failure_value": [
|
29
|
+
"failed"
|
30
|
+
]
|
31
|
+
},
|
12
32
|
"InstanceRunning": {
|
13
33
|
"extends": "__InstanceState",
|
14
34
|
"success_value": "running",
|
@@ -758,7 +758,7 @@
|
|
758
758
|
},
|
759
759
|
"CaptionFormatFormat":{
|
760
760
|
"type":"string",
|
761
|
-
"pattern":"(^mov-text$)|(^
|
761
|
+
"pattern":"(^mov-text$)|(^srt$)|(^scc$)|(^webvtt$)|(^dfxp$)"
|
762
762
|
},
|
763
763
|
"CaptionFormatPattern":{
|
764
764
|
"type":"string",
|
@@ -1311,7 +1311,7 @@
|
|
1311
1311
|
},
|
1312
1312
|
"PlaylistFormat":{
|
1313
1313
|
"type":"string",
|
1314
|
-
"pattern":"(^HLSv3$)"
|
1314
|
+
"pattern":"(^HLSv3$)|(^HLSv4$)|(^Smooth$)"
|
1315
1315
|
},
|
1316
1316
|
"Playlists":{
|
1317
1317
|
"type":"list",
|
@@ -1333,7 +1333,7 @@
|
|
1333
1333
|
},
|
1334
1334
|
"PresetContainer":{
|
1335
1335
|
"type":"string",
|
1336
|
-
"pattern":"(^mp4$)|(^ts$)|(^webm$)|(^mp3$)|(^ogg$)"
|
1336
|
+
"pattern":"(^mp4$)|(^ts$)|(^webm$)|(^mp3$)|(^ogg$)|(^fmp4$)"
|
1337
1337
|
},
|
1338
1338
|
"PresetType":{
|
1339
1339
|
"type":"string",
|
@@ -1568,7 +1568,6 @@
|
|
1568
1568
|
},
|
1569
1569
|
"UpdatePipelineResponse":{
|
1570
1570
|
"type":"structure",
|
1571
|
-
"required":["Pipeline"],
|
1572
1571
|
"members":{
|
1573
1572
|
"Pipeline":{"shape":"Pipeline"}
|
1574
1573
|
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
{
|
2
|
+
"waiters": {
|
3
|
+
"JobComplete": {
|
4
|
+
"operation": "ReadJob",
|
5
|
+
"success_type": "output",
|
6
|
+
"success_path": "Job.Status",
|
7
|
+
"interval": 30,
|
8
|
+
"max_attempts": 120,
|
9
|
+
"success_value": "Complete",
|
10
|
+
"failure_value": [
|
11
|
+
"Canceled",
|
12
|
+
"Error"
|
13
|
+
]
|
14
|
+
}
|
15
|
+
}
|
16
|
+
}
|
data/apis/RDS.api.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"metadata":{
|
3
|
-
"apiVersion":"
|
3
|
+
"apiVersion":"2014-09-01",
|
4
4
|
"endpointPrefix":"rds",
|
5
5
|
"serviceAbbreviation":"Amazon RDS",
|
6
6
|
"serviceFullName":"Amazon Relational Database Service",
|
7
7
|
"signatureVersion":"v4",
|
8
|
-
"xmlNamespace":"http://rds.amazonaws.com/doc/
|
8
|
+
"xmlNamespace":"http://rds.amazonaws.com/doc/2014-09-01/",
|
9
9
|
"protocol":"query"
|
10
10
|
},
|
11
11
|
"operations":{
|
@@ -121,6 +121,48 @@
|
|
121
121
|
}
|
122
122
|
]
|
123
123
|
},
|
124
|
+
"CopyDBParameterGroup":{
|
125
|
+
"name":"CopyDBParameterGroup",
|
126
|
+
"http":{
|
127
|
+
"method":"POST",
|
128
|
+
"requestUri":"/"
|
129
|
+
},
|
130
|
+
"input":{"shape":"CopyDBParameterGroupMessage"},
|
131
|
+
"output":{
|
132
|
+
"shape":"CopyDBParameterGroupResult",
|
133
|
+
"wrapper":true,
|
134
|
+
"resultWrapper":"CopyDBParameterGroupResult"
|
135
|
+
},
|
136
|
+
"errors":[
|
137
|
+
{
|
138
|
+
"shape":"DBParameterGroupNotFoundFault",
|
139
|
+
"error":{
|
140
|
+
"code":"DBParameterGroupNotFound",
|
141
|
+
"httpStatusCode":404,
|
142
|
+
"senderFault":true
|
143
|
+
},
|
144
|
+
"exception":true
|
145
|
+
},
|
146
|
+
{
|
147
|
+
"shape":"DBParameterGroupAlreadyExistsFault",
|
148
|
+
"error":{
|
149
|
+
"code":"DBParameterGroupAlreadyExists",
|
150
|
+
"httpStatusCode":400,
|
151
|
+
"senderFault":true
|
152
|
+
},
|
153
|
+
"exception":true
|
154
|
+
},
|
155
|
+
{
|
156
|
+
"shape":"DBParameterGroupQuotaExceededFault",
|
157
|
+
"error":{
|
158
|
+
"code":"DBParameterGroupQuotaExceeded",
|
159
|
+
"httpStatusCode":400,
|
160
|
+
"senderFault":true
|
161
|
+
},
|
162
|
+
"exception":true
|
163
|
+
}
|
164
|
+
]
|
165
|
+
},
|
124
166
|
"CopyDBSnapshot":{
|
125
167
|
"name":"CopyDBSnapshot",
|
126
168
|
"http":{
|
@@ -172,6 +214,48 @@
|
|
172
214
|
}
|
173
215
|
]
|
174
216
|
},
|
217
|
+
"CopyOptionGroup":{
|
218
|
+
"name":"CopyOptionGroup",
|
219
|
+
"http":{
|
220
|
+
"method":"POST",
|
221
|
+
"requestUri":"/"
|
222
|
+
},
|
223
|
+
"input":{"shape":"CopyOptionGroupMessage"},
|
224
|
+
"output":{
|
225
|
+
"shape":"CopyOptionGroupResult",
|
226
|
+
"wrapper":true,
|
227
|
+
"resultWrapper":"CopyOptionGroupResult"
|
228
|
+
},
|
229
|
+
"errors":[
|
230
|
+
{
|
231
|
+
"shape":"OptionGroupAlreadyExistsFault",
|
232
|
+
"error":{
|
233
|
+
"code":"OptionGroupAlreadyExistsFault",
|
234
|
+
"httpStatusCode":400,
|
235
|
+
"senderFault":true
|
236
|
+
},
|
237
|
+
"exception":true
|
238
|
+
},
|
239
|
+
{
|
240
|
+
"shape":"OptionGroupNotFoundFault",
|
241
|
+
"error":{
|
242
|
+
"code":"OptionGroupNotFoundFault",
|
243
|
+
"httpStatusCode":400,
|
244
|
+
"senderFault":true
|
245
|
+
},
|
246
|
+
"exception":true
|
247
|
+
},
|
248
|
+
{
|
249
|
+
"shape":"OptionGroupQuotaExceededFault",
|
250
|
+
"error":{
|
251
|
+
"code":"OptionGroupQuotaExceededFault",
|
252
|
+
"httpStatusCode":400,
|
253
|
+
"senderFault":true
|
254
|
+
},
|
255
|
+
"exception":true
|
256
|
+
}
|
257
|
+
]
|
258
|
+
},
|
175
259
|
"CreateDBInstance":{
|
176
260
|
"name":"CreateDBInstance",
|
177
261
|
"http":{
|
@@ -292,6 +376,24 @@
|
|
292
376
|
"senderFault":true
|
293
377
|
},
|
294
378
|
"exception":true
|
379
|
+
},
|
380
|
+
{
|
381
|
+
"shape":"StorageTypeNotSupportedFault",
|
382
|
+
"error":{
|
383
|
+
"code":"StorageTypeNotSupported",
|
384
|
+
"httpStatusCode":400,
|
385
|
+
"senderFault":true
|
386
|
+
},
|
387
|
+
"exception":true
|
388
|
+
},
|
389
|
+
{
|
390
|
+
"shape":"AuthorizationNotFoundFault",
|
391
|
+
"error":{
|
392
|
+
"code":"AuthorizationNotFound",
|
393
|
+
"httpStatusCode":404,
|
394
|
+
"senderFault":true
|
395
|
+
},
|
396
|
+
"exception":true
|
295
397
|
}
|
296
398
|
]
|
297
399
|
},
|
@@ -451,6 +553,15 @@
|
|
451
553
|
"senderFault":true
|
452
554
|
},
|
453
555
|
"exception":true
|
556
|
+
},
|
557
|
+
{
|
558
|
+
"shape":"StorageTypeNotSupportedFault",
|
559
|
+
"error":{
|
560
|
+
"code":"StorageTypeNotSupported",
|
561
|
+
"httpStatusCode":400,
|
562
|
+
"senderFault":true
|
563
|
+
},
|
564
|
+
"exception":true
|
454
565
|
}
|
455
566
|
]
|
456
567
|
},
|
@@ -1490,6 +1601,24 @@
|
|
1490
1601
|
"senderFault":true
|
1491
1602
|
},
|
1492
1603
|
"exception":true
|
1604
|
+
},
|
1605
|
+
{
|
1606
|
+
"shape":"StorageTypeNotSupportedFault",
|
1607
|
+
"error":{
|
1608
|
+
"code":"StorageTypeNotSupported",
|
1609
|
+
"httpStatusCode":400,
|
1610
|
+
"senderFault":true
|
1611
|
+
},
|
1612
|
+
"exception":true
|
1613
|
+
},
|
1614
|
+
{
|
1615
|
+
"shape":"AuthorizationNotFoundFault",
|
1616
|
+
"error":{
|
1617
|
+
"code":"AuthorizationNotFound",
|
1618
|
+
"httpStatusCode":404,
|
1619
|
+
"senderFault":true
|
1620
|
+
},
|
1621
|
+
"exception":true
|
1493
1622
|
}
|
1494
1623
|
]
|
1495
1624
|
},
|
@@ -2017,6 +2146,24 @@
|
|
2017
2146
|
"senderFault":true
|
2018
2147
|
},
|
2019
2148
|
"exception":true
|
2149
|
+
},
|
2150
|
+
{
|
2151
|
+
"shape":"StorageTypeNotSupportedFault",
|
2152
|
+
"error":{
|
2153
|
+
"code":"StorageTypeNotSupported",
|
2154
|
+
"httpStatusCode":400,
|
2155
|
+
"senderFault":true
|
2156
|
+
},
|
2157
|
+
"exception":true
|
2158
|
+
},
|
2159
|
+
{
|
2160
|
+
"shape":"AuthorizationNotFoundFault",
|
2161
|
+
"error":{
|
2162
|
+
"code":"AuthorizationNotFound",
|
2163
|
+
"httpStatusCode":404,
|
2164
|
+
"senderFault":true
|
2165
|
+
},
|
2166
|
+
"exception":true
|
2020
2167
|
}
|
2021
2168
|
]
|
2022
2169
|
},
|
@@ -2158,6 +2305,24 @@
|
|
2158
2305
|
"senderFault":true
|
2159
2306
|
},
|
2160
2307
|
"exception":true
|
2308
|
+
},
|
2309
|
+
{
|
2310
|
+
"shape":"StorageTypeNotSupportedFault",
|
2311
|
+
"error":{
|
2312
|
+
"code":"StorageTypeNotSupported",
|
2313
|
+
"httpStatusCode":400,
|
2314
|
+
"senderFault":true
|
2315
|
+
},
|
2316
|
+
"exception":true
|
2317
|
+
},
|
2318
|
+
{
|
2319
|
+
"shape":"AuthorizationNotFoundFault",
|
2320
|
+
"error":{
|
2321
|
+
"code":"AuthorizationNotFound",
|
2322
|
+
"httpStatusCode":404,
|
2323
|
+
"senderFault":true
|
2324
|
+
},
|
2325
|
+
"exception":true
|
2161
2326
|
}
|
2162
2327
|
]
|
2163
2328
|
},
|
@@ -2281,8 +2446,7 @@
|
|
2281
2446
|
"AvailabilityZone":{
|
2282
2447
|
"type":"structure",
|
2283
2448
|
"members":{
|
2284
|
-
"Name":{"shape":"String"}
|
2285
|
-
"ProvisionedIopsCapable":{"shape":"Boolean"}
|
2449
|
+
"Name":{"shape":"String"}
|
2286
2450
|
},
|
2287
2451
|
"wrapper":true
|
2288
2452
|
},
|
@@ -2302,6 +2466,20 @@
|
|
2302
2466
|
"CharacterSetDescription":{"shape":"String"}
|
2303
2467
|
}
|
2304
2468
|
},
|
2469
|
+
"CopyDBParameterGroupMessage":{
|
2470
|
+
"type":"structure",
|
2471
|
+
"required":[
|
2472
|
+
"SourceDBParameterGroupIdentifier",
|
2473
|
+
"TargetDBParameterGroupIdentifier",
|
2474
|
+
"TargetDBParameterGroupDescription"
|
2475
|
+
],
|
2476
|
+
"members":{
|
2477
|
+
"SourceDBParameterGroupIdentifier":{"shape":"String"},
|
2478
|
+
"TargetDBParameterGroupIdentifier":{"shape":"String"},
|
2479
|
+
"TargetDBParameterGroupDescription":{"shape":"String"},
|
2480
|
+
"Tags":{"shape":"TagList"}
|
2481
|
+
}
|
2482
|
+
},
|
2305
2483
|
"CopyDBSnapshotMessage":{
|
2306
2484
|
"type":"structure",
|
2307
2485
|
"required":[
|
@@ -2314,6 +2492,20 @@
|
|
2314
2492
|
"Tags":{"shape":"TagList"}
|
2315
2493
|
}
|
2316
2494
|
},
|
2495
|
+
"CopyOptionGroupMessage":{
|
2496
|
+
"type":"structure",
|
2497
|
+
"required":[
|
2498
|
+
"SourceOptionGroupIdentifier",
|
2499
|
+
"TargetOptionGroupIdentifier",
|
2500
|
+
"TargetOptionGroupDescription"
|
2501
|
+
],
|
2502
|
+
"members":{
|
2503
|
+
"SourceOptionGroupIdentifier":{"shape":"String"},
|
2504
|
+
"TargetOptionGroupIdentifier":{"shape":"String"},
|
2505
|
+
"TargetOptionGroupDescription":{"shape":"String"},
|
2506
|
+
"Tags":{"shape":"TagList"}
|
2507
|
+
}
|
2508
|
+
},
|
2317
2509
|
"CreateDBInstanceMessage":{
|
2318
2510
|
"type":"structure",
|
2319
2511
|
"required":[
|
@@ -2349,7 +2541,10 @@
|
|
2349
2541
|
"OptionGroupName":{"shape":"String"},
|
2350
2542
|
"CharacterSetName":{"shape":"String"},
|
2351
2543
|
"PubliclyAccessible":{"shape":"BooleanOptional"},
|
2352
|
-
"Tags":{"shape":"TagList"}
|
2544
|
+
"Tags":{"shape":"TagList"},
|
2545
|
+
"StorageType":{"shape":"String"},
|
2546
|
+
"TdeCredentialArn":{"shape":"String"},
|
2547
|
+
"TdeCredentialPassword":{"shape":"String"}
|
2353
2548
|
}
|
2354
2549
|
},
|
2355
2550
|
"CreateDBInstanceReadReplicaMessage":{
|
@@ -2369,7 +2564,8 @@
|
|
2369
2564
|
"OptionGroupName":{"shape":"String"},
|
2370
2565
|
"PubliclyAccessible":{"shape":"BooleanOptional"},
|
2371
2566
|
"Tags":{"shape":"TagList"},
|
2372
|
-
"DBSubnetGroupName":{"shape":"String"}
|
2567
|
+
"DBSubnetGroupName":{"shape":"String"},
|
2568
|
+
"StorageType":{"shape":"String"}
|
2373
2569
|
}
|
2374
2570
|
},
|
2375
2571
|
"CreateDBParameterGroupMessage":{
|
@@ -2515,7 +2711,9 @@
|
|
2515
2711
|
"CharacterSetName":{"shape":"String"},
|
2516
2712
|
"SecondaryAvailabilityZone":{"shape":"String"},
|
2517
2713
|
"PubliclyAccessible":{"shape":"Boolean"},
|
2518
|
-
"StatusInfos":{"shape":"DBInstanceStatusInfoList"}
|
2714
|
+
"StatusInfos":{"shape":"DBInstanceStatusInfoList"},
|
2715
|
+
"StorageType":{"shape":"String"},
|
2716
|
+
"TdeCredentialArn":{"shape":"String"}
|
2519
2717
|
},
|
2520
2718
|
"wrapper":true
|
2521
2719
|
},
|
@@ -2765,7 +2963,9 @@
|
|
2765
2963
|
"Iops":{"shape":"IntegerOptional"},
|
2766
2964
|
"OptionGroupName":{"shape":"String"},
|
2767
2965
|
"PercentProgress":{"shape":"Integer"},
|
2768
|
-
"SourceRegion":{"shape":"String"}
|
2966
|
+
"SourceRegion":{"shape":"String"},
|
2967
|
+
"StorageType":{"shape":"String"},
|
2968
|
+
"TdeCredentialArn":{"shape":"String"}
|
2769
2969
|
},
|
2770
2970
|
"wrapper":true
|
2771
2971
|
},
|
@@ -2964,6 +3164,7 @@
|
|
2964
3164
|
"Engine":{"shape":"String"},
|
2965
3165
|
"EngineVersion":{"shape":"String"},
|
2966
3166
|
"DBParameterGroupFamily":{"shape":"String"},
|
3167
|
+
"Filters":{"shape":"FilterList"},
|
2967
3168
|
"MaxRecords":{"shape":"IntegerOptional"},
|
2968
3169
|
"Marker":{"shape":"String"},
|
2969
3170
|
"DefaultOnly":{"shape":"Boolean"},
|
@@ -3002,6 +3203,7 @@
|
|
3002
3203
|
"FilenameContains":{"shape":"String"},
|
3003
3204
|
"FileLastWritten":{"shape":"Long"},
|
3004
3205
|
"FileSize":{"shape":"Long"},
|
3206
|
+
"Filters":{"shape":"FilterList"},
|
3005
3207
|
"MaxRecords":{"shape":"IntegerOptional"},
|
3006
3208
|
"Marker":{"shape":"String"}
|
3007
3209
|
}
|
@@ -3028,6 +3230,7 @@
|
|
3028
3230
|
"members":{
|
3029
3231
|
"DBParameterGroupName":{"shape":"String"},
|
3030
3232
|
"Source":{"shape":"String"},
|
3233
|
+
"Filters":{"shape":"FilterList"},
|
3031
3234
|
"MaxRecords":{"shape":"IntegerOptional"},
|
3032
3235
|
"Marker":{"shape":"String"}
|
3033
3236
|
}
|
@@ -3066,6 +3269,7 @@
|
|
3066
3269
|
"required":["DBParameterGroupFamily"],
|
3067
3270
|
"members":{
|
3068
3271
|
"DBParameterGroupFamily":{"shape":"String"},
|
3272
|
+
"Filters":{"shape":"FilterList"},
|
3069
3273
|
"MaxRecords":{"shape":"IntegerOptional"},
|
3070
3274
|
"Marker":{"shape":"String"}
|
3071
3275
|
}
|
@@ -3073,7 +3277,8 @@
|
|
3073
3277
|
"DescribeEventCategoriesMessage":{
|
3074
3278
|
"type":"structure",
|
3075
3279
|
"members":{
|
3076
|
-
"SourceType":{"shape":"String"}
|
3280
|
+
"SourceType":{"shape":"String"},
|
3281
|
+
"Filters":{"shape":"FilterList"}
|
3077
3282
|
}
|
3078
3283
|
},
|
3079
3284
|
"DescribeEventSubscriptionsMessage":{
|
@@ -3094,6 +3299,7 @@
|
|
3094
3299
|
"EndTime":{"shape":"TStamp"},
|
3095
3300
|
"Duration":{"shape":"IntegerOptional"},
|
3096
3301
|
"EventCategories":{"shape":"EventCategoriesList"},
|
3302
|
+
"Filters":{"shape":"FilterList"},
|
3097
3303
|
"MaxRecords":{"shape":"IntegerOptional"},
|
3098
3304
|
"Marker":{"shape":"String"}
|
3099
3305
|
}
|
@@ -3104,6 +3310,7 @@
|
|
3104
3310
|
"members":{
|
3105
3311
|
"EngineName":{"shape":"String"},
|
3106
3312
|
"MajorEngineVersion":{"shape":"String"},
|
3313
|
+
"Filters":{"shape":"FilterList"},
|
3107
3314
|
"MaxRecords":{"shape":"IntegerOptional"},
|
3108
3315
|
"Marker":{"shape":"String"}
|
3109
3316
|
}
|
@@ -3128,6 +3335,7 @@
|
|
3128
3335
|
"DBInstanceClass":{"shape":"String"},
|
3129
3336
|
"LicenseModel":{"shape":"String"},
|
3130
3337
|
"Vpc":{"shape":"BooleanOptional"},
|
3338
|
+
"Filters":{"shape":"FilterList"},
|
3131
3339
|
"MaxRecords":{"shape":"IntegerOptional"},
|
3132
3340
|
"Marker":{"shape":"String"}
|
3133
3341
|
}
|
@@ -3156,6 +3364,7 @@
|
|
3156
3364
|
"ProductDescription":{"shape":"String"},
|
3157
3365
|
"OfferingType":{"shape":"String"},
|
3158
3366
|
"MultiAZ":{"shape":"BooleanOptional"},
|
3367
|
+
"Filters":{"shape":"FilterList"},
|
3159
3368
|
"MaxRecords":{"shape":"IntegerOptional"},
|
3160
3369
|
"Marker":{"shape":"String"}
|
3161
3370
|
}
|
@@ -3309,12 +3518,12 @@
|
|
3309
3518
|
"Filter":{
|
3310
3519
|
"type":"structure",
|
3311
3520
|
"required":[
|
3312
|
-
"
|
3313
|
-
"
|
3521
|
+
"Name",
|
3522
|
+
"Values"
|
3314
3523
|
],
|
3315
3524
|
"members":{
|
3316
|
-
"
|
3317
|
-
"
|
3525
|
+
"Name":{"shape":"String"},
|
3526
|
+
"Values":{"shape":"FilterValueList"}
|
3318
3527
|
}
|
3319
3528
|
},
|
3320
3529
|
"FilterList":{
|
@@ -3509,7 +3718,8 @@
|
|
3509
3718
|
"type":"structure",
|
3510
3719
|
"required":["ResourceName"],
|
3511
3720
|
"members":{
|
3512
|
-
"ResourceName":{"shape":"String"}
|
3721
|
+
"ResourceName":{"shape":"String"},
|
3722
|
+
"Filters":{"shape":"FilterList"}
|
3513
3723
|
}
|
3514
3724
|
},
|
3515
3725
|
"Long":{"type":"long"},
|
@@ -3534,7 +3744,10 @@
|
|
3534
3744
|
"AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
|
3535
3745
|
"Iops":{"shape":"IntegerOptional"},
|
3536
3746
|
"OptionGroupName":{"shape":"String"},
|
3537
|
-
"NewDBInstanceIdentifier":{"shape":"String"}
|
3747
|
+
"NewDBInstanceIdentifier":{"shape":"String"},
|
3748
|
+
"StorageType":{"shape":"String"},
|
3749
|
+
"TdeCredentialArn":{"shape":"String"},
|
3750
|
+
"TdeCredentialPassword":{"shape":"String"}
|
3538
3751
|
}
|
3539
3752
|
},
|
3540
3753
|
"ModifyDBParameterGroupMessage":{
|
@@ -3790,7 +4003,9 @@
|
|
3790
4003
|
"AvailabilityZones":{"shape":"AvailabilityZoneList"},
|
3791
4004
|
"MultiAZCapable":{"shape":"Boolean"},
|
3792
4005
|
"ReadReplicaCapable":{"shape":"Boolean"},
|
3793
|
-
"Vpc":{"shape":"Boolean"}
|
4006
|
+
"Vpc":{"shape":"Boolean"},
|
4007
|
+
"StorageType":{"shape":"String"},
|
4008
|
+
"SupportsIops":{"shape":"Boolean"}
|
3794
4009
|
},
|
3795
4010
|
"wrapper":true
|
3796
4011
|
},
|
@@ -3841,7 +4056,8 @@
|
|
3841
4056
|
"MultiAZ":{"shape":"BooleanOptional"},
|
3842
4057
|
"EngineVersion":{"shape":"String"},
|
3843
4058
|
"Iops":{"shape":"IntegerOptional"},
|
3844
|
-
"DBInstanceIdentifier":{"shape":"String"}
|
4059
|
+
"DBInstanceIdentifier":{"shape":"String"},
|
4060
|
+
"StorageType":{"shape":"String"}
|
3845
4061
|
}
|
3846
4062
|
},
|
3847
4063
|
"PointInTimeRestoreNotEnabledFault":{
|
@@ -4075,7 +4291,10 @@
|
|
4075
4291
|
"Engine":{"shape":"String"},
|
4076
4292
|
"Iops":{"shape":"IntegerOptional"},
|
4077
4293
|
"OptionGroupName":{"shape":"String"},
|
4078
|
-
"Tags":{"shape":"TagList"}
|
4294
|
+
"Tags":{"shape":"TagList"},
|
4295
|
+
"StorageType":{"shape":"String"},
|
4296
|
+
"TdeCredentialArn":{"shape":"String"},
|
4297
|
+
"TdeCredentialPassword":{"shape":"String"}
|
4079
4298
|
}
|
4080
4299
|
},
|
4081
4300
|
"RestoreDBInstanceToPointInTimeMessage":{
|
@@ -4101,7 +4320,10 @@
|
|
4101
4320
|
"Engine":{"shape":"String"},
|
4102
4321
|
"Iops":{"shape":"IntegerOptional"},
|
4103
4322
|
"OptionGroupName":{"shape":"String"},
|
4104
|
-
"Tags":{"shape":"TagList"}
|
4323
|
+
"Tags":{"shape":"TagList"},
|
4324
|
+
"StorageType":{"shape":"String"},
|
4325
|
+
"TdeCredentialArn":{"shape":"String"},
|
4326
|
+
"TdeCredentialPassword":{"shape":"String"}
|
4105
4327
|
}
|
4106
4328
|
},
|
4107
4329
|
"RevokeDBSecurityGroupIngressMessage":{
|
@@ -4197,6 +4419,17 @@
|
|
4197
4419
|
},
|
4198
4420
|
"exception":true
|
4199
4421
|
},
|
4422
|
+
"StorageTypeNotSupportedFault":{
|
4423
|
+
"type":"structure",
|
4424
|
+
"members":{
|
4425
|
+
},
|
4426
|
+
"error":{
|
4427
|
+
"code":"StorageTypeNotSupported",
|
4428
|
+
"httpStatusCode":400,
|
4429
|
+
"senderFault":true
|
4430
|
+
},
|
4431
|
+
"exception":true
|
4432
|
+
},
|
4200
4433
|
"String":{"type":"string"},
|
4201
4434
|
"Subnet":{
|
4202
4435
|
"type":"structure",
|
@@ -4325,12 +4558,24 @@
|
|
4325
4558
|
"DBSecurityGroup":{"shape":"DBSecurityGroup"}
|
4326
4559
|
}
|
4327
4560
|
},
|
4561
|
+
"CopyDBParameterGroupResult":{
|
4562
|
+
"type":"structure",
|
4563
|
+
"members":{
|
4564
|
+
"DBParameterGroup":{"shape":"DBParameterGroup"}
|
4565
|
+
}
|
4566
|
+
},
|
4328
4567
|
"CopyDBSnapshotResult":{
|
4329
4568
|
"type":"structure",
|
4330
4569
|
"members":{
|
4331
4570
|
"DBSnapshot":{"shape":"DBSnapshot"}
|
4332
4571
|
}
|
4333
4572
|
},
|
4573
|
+
"CopyOptionGroupResult":{
|
4574
|
+
"type":"structure",
|
4575
|
+
"members":{
|
4576
|
+
"OptionGroup":{"shape":"OptionGroup"}
|
4577
|
+
}
|
4578
|
+
},
|
4334
4579
|
"CreateDBInstanceResult":{
|
4335
4580
|
"type":"structure",
|
4336
4581
|
"members":{
|