aws-sdk-core 2.1.24 → 2.1.25

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1a9181ff0d22d245cf22e5eccefa5b95c4d70974
4
- data.tar.gz: c183dc117518aa40aed6957032f24d8285fb2343
3
+ metadata.gz: 1bb6a7743b993a5f10deb1702d31e04fd98e8e15
4
+ data.tar.gz: 3a105842a09293aeae5534dfe3b89e35a4798024
5
5
  SHA512:
6
- metadata.gz: 2f163c7fafbf02a1e037c1453a174f96a46452890d3af5b62991ad285b1643abfae9f79322604086fd0ca44d73b0f32993388e83eb1e1d8c7f80ccc9cec80703
7
- data.tar.gz: d2d657ac3caf908450061d7381e09454756375c9b6d919b409c848479cbd09353feabce6d3f883a64ccb6f7af6f7ae93c0f096ccd95d0124b831020f951c61fc
6
+ metadata.gz: fb82cc84ccc292e9fea3f01885a4fa5e4424d497cd91713a069ca48aa6a76d29b16684837b76bab8d416de48bf8626c411cd20db9c471718272759434a07c090
7
+ data.tar.gz: 34ce8e350d85b7e7266ae8dc0e0adf763d96949ff3863d8145926f5698d6b0400f3a8755323111462dddb123a8ab0fb59d2faa340efa5d43c7e891f293e7d361
@@ -238,6 +238,59 @@
238
238
  }
239
239
  ]
240
240
  },
241
+ "DefineIndexFields":{
242
+ "name":"DefineIndexFields",
243
+ "http":{
244
+ "method":"POST",
245
+ "requestUri":"/"
246
+ },
247
+ "input":{"shape":"DefineIndexFieldsRequest"},
248
+ "output":{
249
+ "shape":"DefineIndexFieldsResponse",
250
+ "resultWrapper":"DefineIndexFieldsResult"
251
+ },
252
+ "errors":[
253
+ {
254
+ "shape":"BaseException",
255
+ "exception":true
256
+ },
257
+ {
258
+ "shape":"InternalException",
259
+ "error":{
260
+ "code":"InternalException",
261
+ "httpStatusCode":500
262
+ },
263
+ "exception":true
264
+ },
265
+ {
266
+ "shape":"LimitExceededException",
267
+ "error":{
268
+ "code":"LimitExceeded",
269
+ "httpStatusCode":409,
270
+ "senderFault":true
271
+ },
272
+ "exception":true
273
+ },
274
+ {
275
+ "shape":"InvalidTypeException",
276
+ "error":{
277
+ "code":"InvalidType",
278
+ "httpStatusCode":409,
279
+ "senderFault":true
280
+ },
281
+ "exception":true
282
+ },
283
+ {
284
+ "shape":"ResourceNotFoundException",
285
+ "error":{
286
+ "code":"ResourceNotFound",
287
+ "httpStatusCode":409,
288
+ "senderFault":true
289
+ },
290
+ "exception":true
291
+ }
292
+ ]
293
+ },
241
294
  "DefineSuggester":{
242
295
  "name":"DefineSuggester",
243
296
  "http":{
@@ -1123,6 +1176,10 @@
1123
1176
  "Status":{"shape":"OptionStatus"}
1124
1177
  }
1125
1178
  },
1179
+ "AvailableInstanceTypes":{
1180
+ "type":"list",
1181
+ "member":{"shape":"String"}
1182
+ },
1126
1183
  "BaseException":{
1127
1184
  "type":"structure",
1128
1185
  "members":{
@@ -1233,6 +1290,24 @@
1233
1290
  "IndexField":{"shape":"IndexFieldStatus"}
1234
1291
  }
1235
1292
  },
1293
+ "DefineIndexFieldsRequest":{
1294
+ "type":"structure",
1295
+ "required":[
1296
+ "DomainName",
1297
+ "IndexFields"
1298
+ ],
1299
+ "members":{
1300
+ "DomainName":{"shape":"DomainName"},
1301
+ "IndexFields":{"shape":"IndexFieldList"}
1302
+ }
1303
+ },
1304
+ "DefineIndexFieldsResponse":{
1305
+ "type":"structure",
1306
+ "required":["IndexFields"],
1307
+ "members":{
1308
+ "IndexFields":{"shape":"IndexFieldStatusList"}
1309
+ }
1310
+ },
1236
1311
  "DefineSuggesterRequest":{
1237
1312
  "type":"structure",
1238
1313
  "required":[
@@ -1642,6 +1717,10 @@
1642
1717
  "DateArrayOptions":{"shape":"DateArrayOptions"}
1643
1718
  }
1644
1719
  },
1720
+ "IndexFieldList":{
1721
+ "type":"list",
1722
+ "member":{"shape":"IndexField"}
1723
+ },
1645
1724
  "IndexFieldStatus":{
1646
1725
  "type":"structure",
1647
1726
  "required":[
@@ -1745,11 +1824,13 @@
1745
1824
  "type":"structure",
1746
1825
  "required":[
1747
1826
  "MaximumReplicationCount",
1748
- "MaximumPartitionCount"
1827
+ "MaximumPartitionCount",
1828
+ "AvailableInstanceTypes"
1749
1829
  ],
1750
1830
  "members":{
1751
1831
  "MaximumReplicationCount":{"shape":"MaximumReplicationCount"},
1752
- "MaximumPartitionCount":{"shape":"MaximumPartitionCount"}
1832
+ "MaximumPartitionCount":{"shape":"MaximumPartitionCount"},
1833
+ "AvailableInstanceTypes":{"shape":"AvailableInstanceTypes"}
1753
1834
  }
1754
1835
  },
1755
1836
  "ListDomainNamesResponse":{
@@ -1842,12 +1923,20 @@
1842
1923
  },
1843
1924
  "exception":true
1844
1925
  },
1926
+ "ScalingMode":{
1927
+ "type":"string",
1928
+ "enum":[
1929
+ "Automatic",
1930
+ "Manual"
1931
+ ]
1932
+ },
1845
1933
  "ScalingParameters":{
1846
1934
  "type":"structure",
1847
1935
  "members":{
1848
1936
  "DesiredInstanceType":{"shape":"PartitionInstanceType"},
1849
1937
  "DesiredReplicationCount":{"shape":"UIntValue"},
1850
- "DesiredPartitionCount":{"shape":"UIntValue"}
1938
+ "DesiredPartitionCount":{"shape":"UIntValue"},
1939
+ "ScalingMode":{"shape":"ScalingMode"}
1851
1940
  }
1852
1941
  },
1853
1942
  "ScalingParametersStatus":{
@@ -11,6 +11,89 @@
11
11
  "protocol":"json"
12
12
  },
13
13
  "operations":{
14
+ "AddTags":{
15
+ "name":"AddTags",
16
+ "http":{
17
+ "method":"POST",
18
+ "requestUri":"/"
19
+ },
20
+ "input":{"shape":"AddTagsRequest"},
21
+ "output":{"shape":"AddTagsResponse"},
22
+ "errors":[
23
+ {
24
+ "shape":"ResourceNotFoundException",
25
+ "error":{
26
+ "code":"ResourceNotFound",
27
+ "httpStatusCode":400,
28
+ "senderFault":true
29
+ },
30
+ "exception":true
31
+ },
32
+ {
33
+ "shape":"CloudTrailARNInvalidException",
34
+ "error":{
35
+ "code":"CloudTrailARNInvalid",
36
+ "httpStatusCode":400,
37
+ "senderFault":true
38
+ },
39
+ "exception":true
40
+ },
41
+ {
42
+ "shape":"ResourceTypeNotSupportedException",
43
+ "error":{
44
+ "code":"ResourceTypeNotSupported",
45
+ "httpStatusCode":400,
46
+ "senderFault":true
47
+ },
48
+ "exception":true
49
+ },
50
+ {
51
+ "shape":"TagsLimitExceededException",
52
+ "error":{
53
+ "code":"TagsLimitExceeded",
54
+ "httpStatusCode":400,
55
+ "senderFault":true
56
+ },
57
+ "exception":true
58
+ },
59
+ {
60
+ "shape":"InvalidTrailNameException",
61
+ "error":{
62
+ "code":"InvalidTrailName",
63
+ "httpStatusCode":400,
64
+ "senderFault":true
65
+ },
66
+ "exception":true
67
+ },
68
+ {
69
+ "shape":"InvalidTagParameterException",
70
+ "error":{
71
+ "code":"InvalidTagParameter",
72
+ "httpStatusCode":400,
73
+ "senderFault":true
74
+ },
75
+ "exception":true
76
+ },
77
+ {
78
+ "shape":"UnsupportedOperationException",
79
+ "error":{
80
+ "code":"UnsupportedOperation",
81
+ "httpStatusCode":400,
82
+ "senderFault":true
83
+ },
84
+ "exception":true
85
+ },
86
+ {
87
+ "shape":"OperationNotPermittedException",
88
+ "error":{
89
+ "code":"OperationNotPermitted",
90
+ "httpStatusCode":400,
91
+ "senderFault":true
92
+ },
93
+ "exception":true
94
+ }
95
+ ]
96
+ },
14
97
  "CreateTrail":{
15
98
  "name":"CreateTrail",
16
99
  "http":{
@@ -65,6 +148,15 @@
65
148
  },
66
149
  "exception":true
67
150
  },
151
+ {
152
+ "shape":"InsufficientEncryptionPolicyException",
153
+ "error":{
154
+ "code":"InsufficientEncryptionPolicy",
155
+ "httpStatusCode":400,
156
+ "senderFault":true
157
+ },
158
+ "exception":true
159
+ },
68
160
  {
69
161
  "shape":"InvalidS3BucketNameException",
70
162
  "error":{
@@ -92,6 +184,15 @@
92
184
  },
93
185
  "exception":true
94
186
  },
187
+ {
188
+ "shape":"InvalidKmsKeyIdException",
189
+ "error":{
190
+ "code":"InvalidKmsKeyId",
191
+ "httpStatusCode":400,
192
+ "senderFault":true
193
+ },
194
+ "exception":true
195
+ },
95
196
  {
96
197
  "shape":"InvalidTrailNameException",
97
198
  "error":{
@@ -101,6 +202,33 @@
101
202
  },
102
203
  "exception":true
103
204
  },
205
+ {
206
+ "shape":"TrailNotProvidedException",
207
+ "error":{
208
+ "code":"TrailNotProvided",
209
+ "httpStatusCode":404,
210
+ "senderFault":true
211
+ },
212
+ "exception":true
213
+ },
214
+ {
215
+ "shape":"KmsKeyNotFoundException",
216
+ "error":{
217
+ "code":"KmsKeyNotFound",
218
+ "httpStatusCode":400,
219
+ "senderFault":true
220
+ },
221
+ "exception":true
222
+ },
223
+ {
224
+ "shape":"KmsKeyDisabledException",
225
+ "error":{
226
+ "code":"KmsKeyDisabled",
227
+ "httpStatusCode":400,
228
+ "senderFault":true
229
+ },
230
+ "exception":true
231
+ },
104
232
  {
105
233
  "shape":"InvalidCloudWatchLogsLogGroupArnException",
106
234
  "error":{
@@ -127,6 +255,24 @@
127
255
  "senderFault":true
128
256
  },
129
257
  "exception":true
258
+ },
259
+ {
260
+ "shape":"UnsupportedOperationException",
261
+ "error":{
262
+ "code":"UnsupportedOperation",
263
+ "httpStatusCode":400,
264
+ "senderFault":true
265
+ },
266
+ "exception":true
267
+ },
268
+ {
269
+ "shape":"OperationNotPermittedException",
270
+ "error":{
271
+ "code":"OperationNotPermitted",
272
+ "httpStatusCode":400,
273
+ "senderFault":true
274
+ },
275
+ "exception":true
130
276
  }
131
277
  ]
132
278
  },
@@ -166,7 +312,27 @@
166
312
  "requestUri":"/"
167
313
  },
168
314
  "input":{"shape":"DescribeTrailsRequest"},
169
- "output":{"shape":"DescribeTrailsResponse"}
315
+ "output":{"shape":"DescribeTrailsResponse"},
316
+ "errors":[
317
+ {
318
+ "shape":"UnsupportedOperationException",
319
+ "error":{
320
+ "code":"UnsupportedOperation",
321
+ "httpStatusCode":400,
322
+ "senderFault":true
323
+ },
324
+ "exception":true
325
+ },
326
+ {
327
+ "shape":"OperationNotPermittedException",
328
+ "error":{
329
+ "code":"OperationNotPermitted",
330
+ "httpStatusCode":400,
331
+ "senderFault":true
332
+ },
333
+ "exception":true
334
+ }
335
+ ]
170
336
  },
171
337
  "GetTrailStatus":{
172
338
  "name":"GetTrailStatus",
@@ -197,6 +363,127 @@
197
363
  }
198
364
  ]
199
365
  },
366
+ "ListPublicKeys":{
367
+ "name":"ListPublicKeys",
368
+ "http":{
369
+ "method":"POST",
370
+ "requestUri":"/"
371
+ },
372
+ "input":{"shape":"ListPublicKeysRequest"},
373
+ "output":{"shape":"ListPublicKeysResponse"},
374
+ "errors":[
375
+ {
376
+ "shape":"InvalidTimeRangeException",
377
+ "error":{
378
+ "code":"InvalidTimeRange",
379
+ "httpStatusCode":400,
380
+ "senderFault":true
381
+ },
382
+ "exception":true
383
+ },
384
+ {
385
+ "shape":"UnsupportedOperationException",
386
+ "error":{
387
+ "code":"UnsupportedOperation",
388
+ "httpStatusCode":400,
389
+ "senderFault":true
390
+ },
391
+ "exception":true
392
+ },
393
+ {
394
+ "shape":"OperationNotPermittedException",
395
+ "error":{
396
+ "code":"OperationNotPermitted",
397
+ "httpStatusCode":400,
398
+ "senderFault":true
399
+ },
400
+ "exception":true
401
+ },
402
+ {
403
+ "shape":"InvalidTokenException",
404
+ "error":{
405
+ "code":"InvalidToken",
406
+ "httpStatusCode":400,
407
+ "senderFault":true
408
+ },
409
+ "exception":true
410
+ }
411
+ ]
412
+ },
413
+ "ListTags":{
414
+ "name":"ListTags",
415
+ "http":{
416
+ "method":"POST",
417
+ "requestUri":"/"
418
+ },
419
+ "input":{"shape":"ListTagsRequest"},
420
+ "output":{"shape":"ListTagsResponse"},
421
+ "errors":[
422
+ {
423
+ "shape":"ResourceNotFoundException",
424
+ "error":{
425
+ "code":"ResourceNotFound",
426
+ "httpStatusCode":400,
427
+ "senderFault":true
428
+ },
429
+ "exception":true
430
+ },
431
+ {
432
+ "shape":"CloudTrailARNInvalidException",
433
+ "error":{
434
+ "code":"CloudTrailARNInvalid",
435
+ "httpStatusCode":400,
436
+ "senderFault":true
437
+ },
438
+ "exception":true
439
+ },
440
+ {
441
+ "shape":"ResourceTypeNotSupportedException",
442
+ "error":{
443
+ "code":"ResourceTypeNotSupported",
444
+ "httpStatusCode":400,
445
+ "senderFault":true
446
+ },
447
+ "exception":true
448
+ },
449
+ {
450
+ "shape":"InvalidTrailNameException",
451
+ "error":{
452
+ "code":"InvalidTrailName",
453
+ "httpStatusCode":400,
454
+ "senderFault":true
455
+ },
456
+ "exception":true
457
+ },
458
+ {
459
+ "shape":"UnsupportedOperationException",
460
+ "error":{
461
+ "code":"UnsupportedOperation",
462
+ "httpStatusCode":400,
463
+ "senderFault":true
464
+ },
465
+ "exception":true
466
+ },
467
+ {
468
+ "shape":"OperationNotPermittedException",
469
+ "error":{
470
+ "code":"OperationNotPermitted",
471
+ "httpStatusCode":400,
472
+ "senderFault":true
473
+ },
474
+ "exception":true
475
+ },
476
+ {
477
+ "shape":"InvalidTokenException",
478
+ "error":{
479
+ "code":"InvalidToken",
480
+ "httpStatusCode":400,
481
+ "senderFault":true
482
+ },
483
+ "exception":true
484
+ }
485
+ ]
486
+ },
200
487
  "LookupEvents":{
201
488
  "name":"LookupEvents",
202
489
  "http":{
@@ -244,6 +531,80 @@
244
531
  }
245
532
  ]
246
533
  },
534
+ "RemoveTags":{
535
+ "name":"RemoveTags",
536
+ "http":{
537
+ "method":"POST",
538
+ "requestUri":"/"
539
+ },
540
+ "input":{"shape":"RemoveTagsRequest"},
541
+ "output":{"shape":"RemoveTagsResponse"},
542
+ "errors":[
543
+ {
544
+ "shape":"ResourceNotFoundException",
545
+ "error":{
546
+ "code":"ResourceNotFound",
547
+ "httpStatusCode":400,
548
+ "senderFault":true
549
+ },
550
+ "exception":true
551
+ },
552
+ {
553
+ "shape":"CloudTrailARNInvalidException",
554
+ "error":{
555
+ "code":"CloudTrailARNInvalid",
556
+ "httpStatusCode":400,
557
+ "senderFault":true
558
+ },
559
+ "exception":true
560
+ },
561
+ {
562
+ "shape":"ResourceTypeNotSupportedException",
563
+ "error":{
564
+ "code":"ResourceTypeNotSupported",
565
+ "httpStatusCode":400,
566
+ "senderFault":true
567
+ },
568
+ "exception":true
569
+ },
570
+ {
571
+ "shape":"InvalidTrailNameException",
572
+ "error":{
573
+ "code":"InvalidTrailName",
574
+ "httpStatusCode":400,
575
+ "senderFault":true
576
+ },
577
+ "exception":true
578
+ },
579
+ {
580
+ "shape":"InvalidTagParameterException",
581
+ "error":{
582
+ "code":"InvalidTagParameter",
583
+ "httpStatusCode":400,
584
+ "senderFault":true
585
+ },
586
+ "exception":true
587
+ },
588
+ {
589
+ "shape":"UnsupportedOperationException",
590
+ "error":{
591
+ "code":"UnsupportedOperation",
592
+ "httpStatusCode":400,
593
+ "senderFault":true
594
+ },
595
+ "exception":true
596
+ },
597
+ {
598
+ "shape":"OperationNotPermittedException",
599
+ "error":{
600
+ "code":"OperationNotPermitted",
601
+ "httpStatusCode":400,
602
+ "senderFault":true
603
+ },
604
+ "exception":true
605
+ }
606
+ ]
607
+ },
247
608
  "StartLogging":{
248
609
  "name":"StartLogging",
249
610
  "http":{
@@ -338,6 +699,15 @@
338
699
  },
339
700
  "exception":true
340
701
  },
702
+ {
703
+ "shape":"InsufficientEncryptionPolicyException",
704
+ "error":{
705
+ "code":"InsufficientEncryptionPolicy",
706
+ "httpStatusCode":400,
707
+ "senderFault":true
708
+ },
709
+ "exception":true
710
+ },
341
711
  {
342
712
  "shape":"TrailNotFoundException",
343
713
  "error":{
@@ -374,6 +744,15 @@
374
744
  },
375
745
  "exception":true
376
746
  },
747
+ {
748
+ "shape":"InvalidKmsKeyIdException",
749
+ "error":{
750
+ "code":"InvalidKmsKeyId",
751
+ "httpStatusCode":400,
752
+ "senderFault":true
753
+ },
754
+ "exception":true
755
+ },
377
756
  {
378
757
  "shape":"InvalidTrailNameException",
379
758
  "error":{
@@ -383,6 +762,33 @@
383
762
  },
384
763
  "exception":true
385
764
  },
765
+ {
766
+ "shape":"TrailNotProvidedException",
767
+ "error":{
768
+ "code":"TrailNotProvided",
769
+ "httpStatusCode":404,
770
+ "senderFault":true
771
+ },
772
+ "exception":true
773
+ },
774
+ {
775
+ "shape":"KmsKeyNotFoundException",
776
+ "error":{
777
+ "code":"KmsKeyNotFound",
778
+ "httpStatusCode":400,
779
+ "senderFault":true
780
+ },
781
+ "exception":true
782
+ },
783
+ {
784
+ "shape":"KmsKeyDisabledException",
785
+ "error":{
786
+ "code":"KmsKeyDisabled",
787
+ "httpStatusCode":400,
788
+ "senderFault":true
789
+ },
790
+ "exception":true
791
+ },
386
792
  {
387
793
  "shape":"InvalidCloudWatchLogsLogGroupArnException",
388
794
  "error":{
@@ -409,12 +815,55 @@
409
815
  "senderFault":true
410
816
  },
411
817
  "exception":true
818
+ },
819
+ {
820
+ "shape":"UnsupportedOperationException",
821
+ "error":{
822
+ "code":"UnsupportedOperation",
823
+ "httpStatusCode":400,
824
+ "senderFault":true
825
+ },
826
+ "exception":true
827
+ },
828
+ {
829
+ "shape":"OperationNotPermittedException",
830
+ "error":{
831
+ "code":"OperationNotPermitted",
832
+ "httpStatusCode":400,
833
+ "senderFault":true
834
+ },
835
+ "exception":true
412
836
  }
413
837
  ]
414
838
  }
415
839
  },
416
840
  "shapes":{
841
+ "AddTagsRequest":{
842
+ "type":"structure",
843
+ "required":["ResourceId"],
844
+ "members":{
845
+ "ResourceId":{"shape":"String"},
846
+ "TagsList":{"shape":"TagsList"}
847
+ }
848
+ },
849
+ "AddTagsResponse":{
850
+ "type":"structure",
851
+ "members":{
852
+ }
853
+ },
417
854
  "Boolean":{"type":"boolean"},
855
+ "ByteBuffer":{"type":"blob"},
856
+ "CloudTrailARNInvalidException":{
857
+ "type":"structure",
858
+ "members":{
859
+ },
860
+ "error":{
861
+ "code":"CloudTrailARNInvalid",
862
+ "httpStatusCode":400,
863
+ "senderFault":true
864
+ },
865
+ "exception":true
866
+ },
418
867
  "CloudWatchLogsDeliveryUnavailableException":{
419
868
  "type":"structure",
420
869
  "members":{
@@ -438,8 +887,10 @@
438
887
  "S3KeyPrefix":{"shape":"String"},
439
888
  "SnsTopicName":{"shape":"String"},
440
889
  "IncludeGlobalServiceEvents":{"shape":"Boolean"},
890
+ "EnableLogFileValidation":{"shape":"Boolean"},
441
891
  "CloudWatchLogsLogGroupArn":{"shape":"String"},
442
- "CloudWatchLogsRoleArn":{"shape":"String"}
892
+ "CloudWatchLogsRoleArn":{"shape":"String"},
893
+ "KmsKeyId":{"shape":"String"}
443
894
  }
444
895
  },
445
896
  "CreateTrailResponse":{
@@ -450,8 +901,11 @@
450
901
  "S3KeyPrefix":{"shape":"String"},
451
902
  "SnsTopicName":{"shape":"String"},
452
903
  "IncludeGlobalServiceEvents":{"shape":"Boolean"},
904
+ "TrailARN":{"shape":"String"},
905
+ "LogFileValidationEnabled":{"shape":"Boolean"},
453
906
  "CloudWatchLogsLogGroupArn":{"shape":"String"},
454
- "CloudWatchLogsRoleArn":{"shape":"String"}
907
+ "CloudWatchLogsRoleArn":{"shape":"String"},
908
+ "KmsKeyId":{"shape":"String"}
455
909
  }
456
910
  },
457
911
  "Date":{"type":"timestamp"},
@@ -512,9 +966,28 @@
512
966
  "StartLoggingTime":{"shape":"Date"},
513
967
  "StopLoggingTime":{"shape":"Date"},
514
968
  "LatestCloudWatchLogsDeliveryError":{"shape":"String"},
515
- "LatestCloudWatchLogsDeliveryTime":{"shape":"Date"}
969
+ "LatestCloudWatchLogsDeliveryTime":{"shape":"Date"},
970
+ "LatestDigestDeliveryTime":{"shape":"Date"},
971
+ "LatestDigestDeliveryError":{"shape":"String"},
972
+ "LatestDeliveryAttemptTime":{"shape":"String"},
973
+ "LatestNotificationAttemptTime":{"shape":"String"},
974
+ "LatestNotificationAttemptSucceeded":{"shape":"String"},
975
+ "LatestDeliveryAttemptSucceeded":{"shape":"String"},
976
+ "TimeLoggingStarted":{"shape":"String"},
977
+ "TimeLoggingStopped":{"shape":"String"}
516
978
  }
517
979
  },
980
+ "InsufficientEncryptionPolicyException":{
981
+ "type":"structure",
982
+ "members":{
983
+ },
984
+ "error":{
985
+ "code":"InsufficientEncryptionPolicy",
986
+ "httpStatusCode":400,
987
+ "senderFault":true
988
+ },
989
+ "exception":true
990
+ },
518
991
  "InsufficientS3BucketPolicyException":{
519
992
  "type":"structure",
520
993
  "members":{
@@ -559,6 +1032,17 @@
559
1032
  },
560
1033
  "exception":true
561
1034
  },
1035
+ "InvalidKmsKeyIdException":{
1036
+ "type":"structure",
1037
+ "members":{
1038
+ },
1039
+ "error":{
1040
+ "code":"InvalidKmsKeyId",
1041
+ "httpStatusCode":400,
1042
+ "senderFault":true
1043
+ },
1044
+ "exception":true
1045
+ },
562
1046
  "InvalidLookupAttributesException":{
563
1047
  "type":"structure",
564
1048
  "members":{
@@ -625,6 +1109,17 @@
625
1109
  },
626
1110
  "exception":true
627
1111
  },
1112
+ "InvalidTagParameterException":{
1113
+ "type":"structure",
1114
+ "members":{
1115
+ },
1116
+ "error":{
1117
+ "code":"InvalidTagParameter",
1118
+ "httpStatusCode":400,
1119
+ "senderFault":true
1120
+ },
1121
+ "exception":true
1122
+ },
628
1123
  "InvalidTimeRangeException":{
629
1124
  "type":"structure",
630
1125
  "members":{
@@ -636,6 +1131,17 @@
636
1131
  },
637
1132
  "exception":true
638
1133
  },
1134
+ "InvalidTokenException":{
1135
+ "type":"structure",
1136
+ "members":{
1137
+ },
1138
+ "error":{
1139
+ "code":"InvalidToken",
1140
+ "httpStatusCode":400,
1141
+ "senderFault":true
1142
+ },
1143
+ "exception":true
1144
+ },
639
1145
  "InvalidTrailNameException":{
640
1146
  "type":"structure",
641
1147
  "members":{
@@ -647,6 +1153,58 @@
647
1153
  },
648
1154
  "exception":true
649
1155
  },
1156
+ "KmsKeyDisabledException":{
1157
+ "type":"structure",
1158
+ "members":{
1159
+ },
1160
+ "error":{
1161
+ "code":"KmsKeyDisabled",
1162
+ "httpStatusCode":400,
1163
+ "senderFault":true
1164
+ },
1165
+ "exception":true
1166
+ },
1167
+ "KmsKeyNotFoundException":{
1168
+ "type":"structure",
1169
+ "members":{
1170
+ },
1171
+ "error":{
1172
+ "code":"KmsKeyNotFound",
1173
+ "httpStatusCode":400,
1174
+ "senderFault":true
1175
+ },
1176
+ "exception":true
1177
+ },
1178
+ "ListPublicKeysRequest":{
1179
+ "type":"structure",
1180
+ "members":{
1181
+ "StartTime":{"shape":"Date"},
1182
+ "EndTime":{"shape":"Date"},
1183
+ "NextToken":{"shape":"String"}
1184
+ }
1185
+ },
1186
+ "ListPublicKeysResponse":{
1187
+ "type":"structure",
1188
+ "members":{
1189
+ "PublicKeyList":{"shape":"PublicKeyList"},
1190
+ "NextToken":{"shape":"String"}
1191
+ }
1192
+ },
1193
+ "ListTagsRequest":{
1194
+ "type":"structure",
1195
+ "required":["ResourceIdList"],
1196
+ "members":{
1197
+ "ResourceIdList":{"shape":"ResourceIdList"},
1198
+ "NextToken":{"shape":"String"}
1199
+ }
1200
+ },
1201
+ "ListTagsResponse":{
1202
+ "type":"structure",
1203
+ "members":{
1204
+ "ResourceTagList":{"shape":"ResourceTagList"},
1205
+ "NextToken":{"shape":"String"}
1206
+ }
1207
+ },
650
1208
  "LookupAttribute":{
651
1209
  "type":"structure",
652
1210
  "required":[
@@ -706,6 +1264,43 @@
706
1264
  "exception":true
707
1265
  },
708
1266
  "NextToken":{"type":"string"},
1267
+ "OperationNotPermittedException":{
1268
+ "type":"structure",
1269
+ "members":{
1270
+ },
1271
+ "error":{
1272
+ "code":"OperationNotPermitted",
1273
+ "httpStatusCode":400,
1274
+ "senderFault":true
1275
+ },
1276
+ "exception":true
1277
+ },
1278
+ "PublicKey":{
1279
+ "type":"structure",
1280
+ "members":{
1281
+ "Value":{"shape":"ByteBuffer"},
1282
+ "ValidityStartTime":{"shape":"Date"},
1283
+ "ValidityEndTime":{"shape":"Date"},
1284
+ "Fingerprint":{"shape":"String"}
1285
+ }
1286
+ },
1287
+ "PublicKeyList":{
1288
+ "type":"list",
1289
+ "member":{"shape":"PublicKey"}
1290
+ },
1291
+ "RemoveTagsRequest":{
1292
+ "type":"structure",
1293
+ "required":["ResourceId"],
1294
+ "members":{
1295
+ "ResourceId":{"shape":"String"},
1296
+ "TagsList":{"shape":"TagsList"}
1297
+ }
1298
+ },
1299
+ "RemoveTagsResponse":{
1300
+ "type":"structure",
1301
+ "members":{
1302
+ }
1303
+ },
709
1304
  "Resource":{
710
1305
  "type":"structure",
711
1306
  "members":{
@@ -713,10 +1308,47 @@
713
1308
  "ResourceName":{"shape":"String"}
714
1309
  }
715
1310
  },
1311
+ "ResourceIdList":{
1312
+ "type":"list",
1313
+ "member":{"shape":"String"}
1314
+ },
716
1315
  "ResourceList":{
717
1316
  "type":"list",
718
1317
  "member":{"shape":"Resource"}
719
1318
  },
1319
+ "ResourceNotFoundException":{
1320
+ "type":"structure",
1321
+ "members":{
1322
+ },
1323
+ "error":{
1324
+ "code":"ResourceNotFound",
1325
+ "httpStatusCode":400,
1326
+ "senderFault":true
1327
+ },
1328
+ "exception":true
1329
+ },
1330
+ "ResourceTag":{
1331
+ "type":"structure",
1332
+ "members":{
1333
+ "ResourceId":{"shape":"String"},
1334
+ "TagsList":{"shape":"TagsList"}
1335
+ }
1336
+ },
1337
+ "ResourceTagList":{
1338
+ "type":"list",
1339
+ "member":{"shape":"ResourceTag"}
1340
+ },
1341
+ "ResourceTypeNotSupportedException":{
1342
+ "type":"structure",
1343
+ "members":{
1344
+ },
1345
+ "error":{
1346
+ "code":"ResourceTypeNotSupported",
1347
+ "httpStatusCode":400,
1348
+ "senderFault":true
1349
+ },
1350
+ "exception":true
1351
+ },
720
1352
  "S3BucketDoesNotExistException":{
721
1353
  "type":"structure",
722
1354
  "members":{
@@ -753,6 +1385,29 @@
753
1385
  }
754
1386
  },
755
1387
  "String":{"type":"string"},
1388
+ "Tag":{
1389
+ "type":"structure",
1390
+ "required":["Key"],
1391
+ "members":{
1392
+ "Key":{"shape":"String"},
1393
+ "Value":{"shape":"String"}
1394
+ }
1395
+ },
1396
+ "TagsLimitExceededException":{
1397
+ "type":"structure",
1398
+ "members":{
1399
+ },
1400
+ "error":{
1401
+ "code":"TagsLimitExceeded",
1402
+ "httpStatusCode":400,
1403
+ "senderFault":true
1404
+ },
1405
+ "exception":true
1406
+ },
1407
+ "TagsList":{
1408
+ "type":"list",
1409
+ "member":{"shape":"Tag"}
1410
+ },
756
1411
  "Trail":{
757
1412
  "type":"structure",
758
1413
  "members":{
@@ -761,8 +1416,11 @@
761
1416
  "S3KeyPrefix":{"shape":"String"},
762
1417
  "SnsTopicName":{"shape":"String"},
763
1418
  "IncludeGlobalServiceEvents":{"shape":"Boolean"},
1419
+ "TrailARN":{"shape":"String"},
1420
+ "LogFileValidationEnabled":{"shape":"Boolean"},
764
1421
  "CloudWatchLogsLogGroupArn":{"shape":"String"},
765
- "CloudWatchLogsRoleArn":{"shape":"String"}
1422
+ "CloudWatchLogsRoleArn":{"shape":"String"},
1423
+ "KmsKeyId":{"shape":"String"}
766
1424
  }
767
1425
  },
768
1426
  "TrailAlreadyExistsException":{
@@ -795,6 +1453,28 @@
795
1453
  },
796
1454
  "exception":true
797
1455
  },
1456
+ "TrailNotProvidedException":{
1457
+ "type":"structure",
1458
+ "members":{
1459
+ },
1460
+ "error":{
1461
+ "code":"TrailNotProvided",
1462
+ "httpStatusCode":404,
1463
+ "senderFault":true
1464
+ },
1465
+ "exception":true
1466
+ },
1467
+ "UnsupportedOperationException":{
1468
+ "type":"structure",
1469
+ "members":{
1470
+ },
1471
+ "error":{
1472
+ "code":"UnsupportedOperation",
1473
+ "httpStatusCode":400,
1474
+ "senderFault":true
1475
+ },
1476
+ "exception":true
1477
+ },
798
1478
  "UpdateTrailRequest":{
799
1479
  "type":"structure",
800
1480
  "required":["Name"],
@@ -804,8 +1484,10 @@
804
1484
  "S3KeyPrefix":{"shape":"String"},
805
1485
  "SnsTopicName":{"shape":"String"},
806
1486
  "IncludeGlobalServiceEvents":{"shape":"Boolean"},
1487
+ "EnableLogFileValidation":{"shape":"Boolean"},
807
1488
  "CloudWatchLogsLogGroupArn":{"shape":"String"},
808
- "CloudWatchLogsRoleArn":{"shape":"String"}
1489
+ "CloudWatchLogsRoleArn":{"shape":"String"},
1490
+ "KmsKeyId":{"shape":"String"}
809
1491
  }
810
1492
  },
811
1493
  "UpdateTrailResponse":{
@@ -816,8 +1498,11 @@
816
1498
  "S3KeyPrefix":{"shape":"String"},
817
1499
  "SnsTopicName":{"shape":"String"},
818
1500
  "IncludeGlobalServiceEvents":{"shape":"Boolean"},
1501
+ "TrailARN":{"shape":"String"},
1502
+ "LogFileValidationEnabled":{"shape":"Boolean"},
819
1503
  "CloudWatchLogsLogGroupArn":{"shape":"String"},
820
- "CloudWatchLogsRoleArn":{"shape":"String"}
1504
+ "CloudWatchLogsRoleArn":{"shape":"String"},
1505
+ "KmsKeyId":{"shape":"String"}
821
1506
  }
822
1507
  }
823
1508
  }
@@ -2174,6 +2174,15 @@
2174
2174
  "senderFault":true
2175
2175
  },
2176
2176
  "exception":true
2177
+ },
2178
+ {
2179
+ "shape":"DBClusterAlreadyExistsFault",
2180
+ "error":{
2181
+ "code":"DBClusterAlreadyExistsFault",
2182
+ "httpStatusCode":400,
2183
+ "senderFault":true
2184
+ },
2185
+ "exception":true
2177
2186
  }
2178
2187
  ]
2179
2188
  },
@@ -3693,7 +3702,8 @@
3693
3702
  "members":{
3694
3703
  "SourceDBSnapshotIdentifier":{"shape":"String"},
3695
3704
  "TargetDBSnapshotIdentifier":{"shape":"String"},
3696
- "Tags":{"shape":"TagList"}
3705
+ "Tags":{"shape":"TagList"},
3706
+ "CopyTags":{"shape":"BooleanOptional"}
3697
3707
  }
3698
3708
  },
3699
3709
  "CopyOptionGroupMessage":{
@@ -3712,6 +3722,12 @@
3712
3722
  },
3713
3723
  "CreateDBClusterMessage":{
3714
3724
  "type":"structure",
3725
+ "required":[
3726
+ "DBClusterIdentifier",
3727
+ "Engine",
3728
+ "MasterUsername",
3729
+ "MasterUserPassword"
3730
+ ],
3715
3731
  "members":{
3716
3732
  "AvailabilityZones":{"shape":"AvailabilityZones"},
3717
3733
  "BackupRetentionPeriod":{"shape":"IntegerOptional"},
@@ -3796,7 +3812,8 @@
3796
3812
  "TdeCredentialArn":{"shape":"String"},
3797
3813
  "TdeCredentialPassword":{"shape":"String"},
3798
3814
  "StorageEncrypted":{"shape":"BooleanOptional"},
3799
- "KmsKeyId":{"shape":"String"}
3815
+ "KmsKeyId":{"shape":"String"},
3816
+ "CopyTagsToSnapshot":{"shape":"BooleanOptional"}
3800
3817
  }
3801
3818
  },
3802
3819
  "CreateDBInstanceReadReplicaMessage":{
@@ -3817,7 +3834,8 @@
3817
3834
  "PubliclyAccessible":{"shape":"BooleanOptional"},
3818
3835
  "Tags":{"shape":"TagList"},
3819
3836
  "DBSubnetGroupName":{"shape":"String"},
3820
- "StorageType":{"shape":"String"}
3837
+ "StorageType":{"shape":"String"},
3838
+ "CopyTagsToSnapshot":{"shape":"BooleanOptional"}
3821
3839
  }
3822
3840
  },
3823
3841
  "CreateDBParameterGroupMessage":{
@@ -4122,7 +4140,8 @@
4122
4140
  "DBEngineDescription":{"shape":"String"},
4123
4141
  "DBEngineVersionDescription":{"shape":"String"},
4124
4142
  "DefaultCharacterSet":{"shape":"CharacterSet"},
4125
- "SupportedCharacterSets":{"shape":"SupportedCharacterSetsList"}
4143
+ "SupportedCharacterSets":{"shape":"SupportedCharacterSetsList"},
4144
+ "ValidUpgradeTarget":{"shape":"ValidUpgradeTargetList"}
4126
4145
  }
4127
4146
  },
4128
4147
  "DBEngineVersionList":{
@@ -4180,7 +4199,8 @@
4180
4199
  "StorageEncrypted":{"shape":"Boolean"},
4181
4200
  "KmsKeyId":{"shape":"String"},
4182
4201
  "DbiResourceId":{"shape":"String"},
4183
- "CACertificateIdentifier":{"shape":"String"}
4202
+ "CACertificateIdentifier":{"shape":"String"},
4203
+ "CopyTagsToSnapshot":{"shape":"Boolean"}
4184
4204
  },
4185
4205
  "wrapper":true
4186
4206
  },
@@ -4590,6 +4610,7 @@
4590
4610
  },
4591
4611
  "DeleteDBClusterMessage":{
4592
4612
  "type":"structure",
4613
+ "required":["DBClusterIdentifier"],
4593
4614
  "members":{
4594
4615
  "DBClusterIdentifier":{"shape":"String"},
4595
4616
  "SkipFinalSnapshot":{"shape":"Boolean"},
@@ -5362,6 +5383,7 @@
5362
5383
  "Long":{"type":"long"},
5363
5384
  "ModifyDBClusterMessage":{
5364
5385
  "type":"structure",
5386
+ "required":["DBClusterIdentifier"],
5365
5387
  "members":{
5366
5388
  "DBClusterIdentifier":{"shape":"String"},
5367
5389
  "NewDBClusterIdentifier":{"shape":"String"},
@@ -5412,7 +5434,8 @@
5412
5434
  "StorageType":{"shape":"String"},
5413
5435
  "TdeCredentialArn":{"shape":"String"},
5414
5436
  "TdeCredentialPassword":{"shape":"String"},
5415
- "CACertificateIdentifier":{"shape":"String"}
5437
+ "CACertificateIdentifier":{"shape":"String"},
5438
+ "CopyTagsToSnapshot":{"shape":"BooleanOptional"}
5416
5439
  }
5417
5440
  },
5418
5441
  "ModifyDBParameterGroupMessage":{
@@ -6060,7 +6083,8 @@
6060
6083
  "Tags":{"shape":"TagList"},
6061
6084
  "StorageType":{"shape":"String"},
6062
6085
  "TdeCredentialArn":{"shape":"String"},
6063
- "TdeCredentialPassword":{"shape":"String"}
6086
+ "TdeCredentialPassword":{"shape":"String"},
6087
+ "CopyTagsToSnapshot":{"shape":"BooleanOptional"}
6064
6088
  }
6065
6089
  },
6066
6090
  "RestoreDBInstanceToPointInTimeMessage":{
@@ -6086,6 +6110,7 @@
6086
6110
  "Engine":{"shape":"String"},
6087
6111
  "Iops":{"shape":"IntegerOptional"},
6088
6112
  "OptionGroupName":{"shape":"String"},
6113
+ "CopyTagsToSnapshot":{"shape":"BooleanOptional"},
6089
6114
  "Tags":{"shape":"TagList"},
6090
6115
  "StorageType":{"shape":"String"},
6091
6116
  "TdeCredentialArn":{"shape":"String"},
@@ -6171,7 +6196,8 @@
6171
6196
  "db-instance",
6172
6197
  "db-parameter-group",
6173
6198
  "db-security-group",
6174
- "db-snapshot"
6199
+ "db-cluster",
6200
+ "db-cluster-snapshot"
6175
6201
  ]
6176
6202
  },
6177
6203
  "StorageQuotaExceededFault":{
@@ -6291,6 +6317,23 @@
6291
6317
  "TagList":{"shape":"TagList"}
6292
6318
  }
6293
6319
  },
6320
+ "UpgradeTarget":{
6321
+ "type":"structure",
6322
+ "members":{
6323
+ "Engine":{"shape":"String"},
6324
+ "EngineVersion":{"shape":"String"},
6325
+ "Description":{"shape":"String"},
6326
+ "AutoUpgrade":{"shape":"Boolean"},
6327
+ "IsMajorVersionUpgrade":{"shape":"Boolean"}
6328
+ }
6329
+ },
6330
+ "ValidUpgradeTargetList":{
6331
+ "type":"list",
6332
+ "member":{
6333
+ "shape":"UpgradeTarget",
6334
+ "locationName":"UpgradeTarget"
6335
+ }
6336
+ },
6294
6337
  "VpcSecurityGroupIdList":{
6295
6338
  "type":"list",
6296
6339
  "member":{
@@ -138,6 +138,7 @@
138
138
  "Name":{"shape":"Compute"}
139
139
  }
140
140
  },
141
+ "ComputerName":{"type":"string"},
141
142
  "CreateWorkspacesRequest":{
142
143
  "type":"structure",
143
144
  "required":["Workspaces"],
@@ -407,6 +408,7 @@
407
408
  "Capacity":{"shape":"NonEmptyString"}
408
409
  }
409
410
  },
411
+ "VolumeEncryptionKey":{"type":"string"},
410
412
  "Workspace":{
411
413
  "type":"structure",
412
414
  "members":{
@@ -418,7 +420,11 @@
418
420
  "BundleId":{"shape":"BundleId"},
419
421
  "SubnetId":{"shape":"SubnetId"},
420
422
  "ErrorMessage":{"shape":"Description"},
421
- "ErrorCode":{"shape":"WorkspaceErrorCode"}
423
+ "ErrorCode":{"shape":"WorkspaceErrorCode"},
424
+ "ComputerName":{"shape":"ComputerName"},
425
+ "VolumeEncryptionKey":{"shape":"VolumeEncryptionKey"},
426
+ "UserVolumeEncryptionEnabled":{"shape":"BooleanObject"},
427
+ "RootVolumeEncryptionEnabled":{"shape":"BooleanObject"}
422
428
  }
423
429
  },
424
430
  "WorkspaceBundle":{
@@ -491,7 +497,10 @@
491
497
  "members":{
492
498
  "DirectoryId":{"shape":"DirectoryId"},
493
499
  "UserName":{"shape":"UserName"},
494
- "BundleId":{"shape":"BundleId"}
500
+ "BundleId":{"shape":"BundleId"},
501
+ "VolumeEncryptionKey":{"shape":"VolumeEncryptionKey"},
502
+ "UserVolumeEncryptionEnabled":{"shape":"BooleanObject"},
503
+ "RootVolumeEncryptionEnabled":{"shape":"BooleanObject"}
495
504
  }
496
505
  },
497
506
  "WorkspaceRequestList":{
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.1.24'
2
+ VERSION = '2.1.25'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.24
4
+ version: 2.1.25
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: 2015-09-29 00:00:00.000000000 Z
11
+ date: 2015-10-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -404,7 +404,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
404
404
  version: '0'
405
405
  requirements: []
406
406
  rubyforge_project:
407
- rubygems_version: 2.4.6
407
+ rubygems_version: 2.5.0
408
408
  signing_key:
409
409
  specification_version: 4
410
410
  summary: AWS SDK for Ruby - Core