aws-sdk-core 2.11.567 → 2.11.568

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
  SHA256:
3
- metadata.gz: eb5ac7d1b91bec942e482d1a59c4c5ace338256ff240ec402c486cfcd674dcc2
4
- data.tar.gz: 7854dd5ea7ff4609117528193f06693bff1d57f853f06b25d518a5b4703123df
3
+ metadata.gz: fbf9cbe804375032b6910ca00dbf6077c0ba188ab684d2870eafab8c0dfc4c15
4
+ data.tar.gz: ca4ba111a5cb7f898c9ec0689a9b338cf0454dbc8cd2cc4657ebb3d399097a4e
5
5
  SHA512:
6
- metadata.gz: 6e1258f0387b5e64906359cbbd6b033bdf52a26f41784e3518158c92ee3883dfd05afb0eb740413bf1f5a4f049b6924f542cf141727ad8247cbe14af59cc3a80
7
- data.tar.gz: 77d1a0efa38e5b07ae677ebd5d05412647e79b7a08299d53ea6feb6894df5505586ccd690f9160abed6dd6f945301b555d9113a06bce997b1abd60711a7f8f44
6
+ metadata.gz: 6c16f05051bdf444f454e01c511e60cda0a88c5af8e2ab9a37adbd5ceb4893cc9a3849894bbb639b251e4a27eca945c252286048938efa7b704e539b82bdeeaf
7
+ data.tar.gz: f253c1a3c44e3d6814bc34584c12cb906d42654a59e115120e15b38f50fbb65c0076a9213bcb96582712e21d371970cffd420bafdcc83afc59261883976076f6
@@ -91,6 +91,22 @@
91
91
  {"shape":"RequestFailedException"}
92
92
  ]
93
93
  },
94
+ "DeletePolicy":{
95
+ "name":"DeletePolicy",
96
+ "http":{
97
+ "method":"POST",
98
+ "requestUri":"/"
99
+ },
100
+ "input":{"shape":"DeletePolicyRequest"},
101
+ "errors":[
102
+ {"shape":"ConcurrentModificationException"},
103
+ {"shape":"InvalidArnException"},
104
+ {"shape":"InvalidStateException"},
105
+ {"shape":"LockoutPreventedException"},
106
+ {"shape":"RequestFailedException"},
107
+ {"shape":"ResourceNotFoundException"}
108
+ ]
109
+ },
94
110
  "DescribeCertificateAuthority":{
95
111
  "name":"DescribeCertificateAuthority",
96
112
  "http":{
@@ -164,6 +180,21 @@
164
180
  {"shape":"InvalidStateException"}
165
181
  ]
166
182
  },
183
+ "GetPolicy":{
184
+ "name":"GetPolicy",
185
+ "http":{
186
+ "method":"POST",
187
+ "requestUri":"/"
188
+ },
189
+ "input":{"shape":"GetPolicyRequest"},
190
+ "output":{"shape":"GetPolicyResponse"},
191
+ "errors":[
192
+ {"shape":"InvalidArnException"},
193
+ {"shape":"InvalidStateException"},
194
+ {"shape":"RequestFailedException"},
195
+ {"shape":"ResourceNotFoundException"}
196
+ ]
197
+ },
167
198
  "ImportCertificateAuthorityCertificate":{
168
199
  "name":"ImportCertificateAuthorityCertificate",
169
200
  "http":{
@@ -243,6 +274,23 @@
243
274
  {"shape":"InvalidStateException"}
244
275
  ]
245
276
  },
277
+ "PutPolicy":{
278
+ "name":"PutPolicy",
279
+ "http":{
280
+ "method":"POST",
281
+ "requestUri":"/"
282
+ },
283
+ "input":{"shape":"PutPolicyRequest"},
284
+ "errors":[
285
+ {"shape":"ConcurrentModificationException"},
286
+ {"shape":"InvalidArnException"},
287
+ {"shape":"InvalidStateException"},
288
+ {"shape":"InvalidPolicyException"},
289
+ {"shape":"LockoutPreventedException"},
290
+ {"shape":"RequestFailedException"},
291
+ {"shape":"ResourceNotFoundException"}
292
+ ]
293
+ },
246
294
  "RestoreCertificateAuthority":{
247
295
  "name":"RestoreCertificateAuthority",
248
296
  "http":{
@@ -322,16 +370,22 @@
322
370
  }
323
371
  },
324
372
  "shapes":{
373
+ "ASN1PrintableString64":{
374
+ "type":"string",
375
+ "max":64,
376
+ "min":0,
377
+ "pattern":"[a-zA-Z0-9'()+-.?:/= ]*"
378
+ },
325
379
  "ASN1Subject":{
326
380
  "type":"structure",
327
381
  "members":{
328
382
  "Country":{"shape":"CountryCodeString"},
329
383
  "Organization":{"shape":"String64"},
330
384
  "OrganizationalUnit":{"shape":"String64"},
331
- "DistinguishedNameQualifier":{"shape":"DistinguishedNameQualifierString"},
385
+ "DistinguishedNameQualifier":{"shape":"ASN1PrintableString64"},
332
386
  "State":{"shape":"String128"},
333
387
  "CommonName":{"shape":"String64"},
334
- "SerialNumber":{"shape":"String64"},
388
+ "SerialNumber":{"shape":"ASN1PrintableString64"},
335
389
  "Locality":{"shape":"String128"},
336
390
  "Title":{"shape":"String64"},
337
391
  "Surname":{"shape":"String40"},
@@ -341,6 +395,12 @@
341
395
  "GenerationQualifier":{"shape":"String3"}
342
396
  }
343
397
  },
398
+ "AWSPolicy":{
399
+ "type":"string",
400
+ "max":20480,
401
+ "min":1,
402
+ "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
403
+ },
344
404
  "AccountId":{
345
405
  "type":"string",
346
406
  "max":12,
@@ -365,7 +425,7 @@
365
425
  "type":"string",
366
426
  "max":200,
367
427
  "min":5,
368
- "pattern":"arn:[\\w+=/,.@-]+:[\\w+=/,.@-]+:[\\w+=/,.@-]*:[0-9]*:[\\w+=,.@-]+(/[\\w+=/,.@-]+)*"
428
+ "pattern":"arn:[\\w+=/,.@-]+:[\\w+=/,.@-]+:[\\w+=/,.@-]*:[0-9]*:[\\w+=,.@-]+(/[\\w+=,.@-]+)*"
369
429
  },
370
430
  "AuditReportId":{
371
431
  "type":"string",
@@ -397,6 +457,7 @@
397
457
  "type":"structure",
398
458
  "members":{
399
459
  "Arn":{"shape":"Arn"},
460
+ "OwnerAccount":{"shape":"AccountId"},
400
461
  "CreatedAt":{"shape":"TStamp"},
401
462
  "LastStateChangeAt":{"shape":"TStamp"},
402
463
  "Type":{"shape":"CertificateAuthorityType"},
@@ -470,6 +531,8 @@
470
531
  },
471
532
  "CountryCodeString":{
472
533
  "type":"string",
534
+ "max":2,
535
+ "min":2,
473
536
  "pattern":"[A-Za-z]{2}"
474
537
  },
475
538
  "CreateCertificateAuthorityAuditReportRequest":{
@@ -481,7 +544,7 @@
481
544
  ],
482
545
  "members":{
483
546
  "CertificateAuthorityArn":{"shape":"Arn"},
484
- "S3BucketName":{"shape":"String"},
547
+ "S3BucketName":{"shape":"S3BucketName"},
485
548
  "AuditReportResponseFormat":{"shape":"AuditReportResponseFormat"}
486
549
  }
487
550
  },
@@ -489,7 +552,7 @@
489
552
  "type":"structure",
490
553
  "members":{
491
554
  "AuditReportId":{"shape":"AuditReportId"},
492
- "S3Key":{"shape":"String"}
555
+ "S3Key":{"shape":"S3Key"}
493
556
  }
494
557
  },
495
558
  "CreateCertificateAuthorityRequest":{
@@ -568,6 +631,13 @@
568
631
  "SourceAccount":{"shape":"AccountId"}
569
632
  }
570
633
  },
634
+ "DeletePolicyRequest":{
635
+ "type":"structure",
636
+ "required":["ResourceArn"],
637
+ "members":{
638
+ "ResourceArn":{"shape":"Arn"}
639
+ }
640
+ },
571
641
  "DescribeCertificateAuthorityAuditReportRequest":{
572
642
  "type":"structure",
573
643
  "required":[
@@ -583,8 +653,8 @@
583
653
  "type":"structure",
584
654
  "members":{
585
655
  "AuditReportStatus":{"shape":"AuditReportStatus"},
586
- "S3BucketName":{"shape":"String"},
587
- "S3Key":{"shape":"String"},
656
+ "S3BucketName":{"shape":"S3BucketName"},
657
+ "S3Key":{"shape":"S3Key"},
588
658
  "CreatedAt":{"shape":"TStamp"}
589
659
  }
590
660
  },
@@ -601,12 +671,6 @@
601
671
  "CertificateAuthority":{"shape":"CertificateAuthority"}
602
672
  }
603
673
  },
604
- "DistinguishedNameQualifierString":{
605
- "type":"string",
606
- "max":64,
607
- "min":0,
608
- "pattern":"[a-zA-Z0-9'()+-.?:/= ]*"
609
- },
610
674
  "FailureReason":{
611
675
  "type":"string",
612
676
  "enum":[
@@ -660,6 +724,19 @@
660
724
  "CertificateChain":{"shape":"CertificateChain"}
661
725
  }
662
726
  },
727
+ "GetPolicyRequest":{
728
+ "type":"structure",
729
+ "required":["ResourceArn"],
730
+ "members":{
731
+ "ResourceArn":{"shape":"Arn"}
732
+ }
733
+ },
734
+ "GetPolicyResponse":{
735
+ "type":"structure",
736
+ "members":{
737
+ "Policy":{"shape":"AWSPolicy"}
738
+ }
739
+ },
663
740
  "IdempotencyToken":{
664
741
  "type":"string",
665
742
  "max":36,
@@ -775,7 +852,8 @@
775
852
  "type":"structure",
776
853
  "members":{
777
854
  "NextToken":{"shape":"NextToken"},
778
- "MaxResults":{"shape":"MaxResults"}
855
+ "MaxResults":{"shape":"MaxResults"},
856
+ "ResourceOwner":{"shape":"ResourceOwner"}
779
857
  }
780
858
  },
781
859
  "ListCertificateAuthoritiesResponse":{
@@ -817,6 +895,13 @@
817
895
  "NextToken":{"shape":"NextToken"}
818
896
  }
819
897
  },
898
+ "LockoutPreventedException":{
899
+ "type":"structure",
900
+ "members":{
901
+ "message":{"shape":"String"}
902
+ },
903
+ "exception":true
904
+ },
820
905
  "MalformedCSRException":{
821
906
  "type":"structure",
822
907
  "members":{
@@ -851,10 +936,10 @@
851
936
  "members":{
852
937
  "CertificateAuthorityArn":{"shape":"Arn"},
853
938
  "CreatedAt":{"shape":"TStamp"},
854
- "Principal":{"shape":"String"},
855
- "SourceAccount":{"shape":"String"},
939
+ "Principal":{"shape":"Principal"},
940
+ "SourceAccount":{"shape":"AccountId"},
856
941
  "Actions":{"shape":"ActionList"},
857
- "Policy":{"shape":"String"}
942
+ "Policy":{"shape":"AWSPolicy"}
858
943
  }
859
944
  },
860
945
  "PermissionAlreadyExistsException":{
@@ -879,6 +964,17 @@
879
964
  "min":0,
880
965
  "pattern":"^[^*]+$"
881
966
  },
967
+ "PutPolicyRequest":{
968
+ "type":"structure",
969
+ "required":[
970
+ "ResourceArn",
971
+ "Policy"
972
+ ],
973
+ "members":{
974
+ "ResourceArn":{"shape":"Arn"},
975
+ "Policy":{"shape":"AWSPolicy"}
976
+ }
977
+ },
882
978
  "RequestAlreadyProcessedException":{
883
979
  "type":"structure",
884
980
  "members":{
@@ -907,6 +1003,13 @@
907
1003
  },
908
1004
  "exception":true
909
1005
  },
1006
+ "ResourceOwner":{
1007
+ "type":"string",
1008
+ "enum":[
1009
+ "SELF",
1010
+ "OTHER_ACCOUNTS"
1011
+ ]
1012
+ },
910
1013
  "RestoreCertificateAuthorityRequest":{
911
1014
  "type":"structure",
912
1015
  "required":["CertificateAuthorityArn"],
@@ -946,6 +1049,15 @@
946
1049
  "RevocationReason":{"shape":"RevocationReason"}
947
1050
  }
948
1051
  },
1052
+ "S3BucketName":{
1053
+ "type":"string",
1054
+ "max":63,
1055
+ "min":3
1056
+ },
1057
+ "S3Key":{
1058
+ "type":"string",
1059
+ "max":1024
1060
+ },
949
1061
  "SigningAlgorithm":{
950
1062
  "type":"string",
951
1063
  "enum":[
@@ -462,6 +462,7 @@
462
462
  "PCA_INVALID_ARGS",
463
463
  "PCA_INVALID_DURATION",
464
464
  "PCA_ACCESS_DENIED",
465
+ "SLR_NOT_FOUND",
465
466
  "OTHER"
466
467
  ]
467
468
  },
@@ -902,7 +902,9 @@
902
902
  "imageSizeInBytes":{"shape":"ImageSizeInBytes"},
903
903
  "imagePushedAt":{"shape":"PushTimestamp"},
904
904
  "imageScanStatus":{"shape":"ImageScanStatus"},
905
- "imageScanFindingsSummary":{"shape":"ImageScanFindingsSummary"}
905
+ "imageScanFindingsSummary":{"shape":"ImageScanFindingsSummary"},
906
+ "imageManifestMediaType":{"shape":"MediaType"},
907
+ "artifactMediaType":{"shape":"MediaType"}
906
908
  }
907
909
  },
908
910
  "ImageDetailList":{
@@ -445,6 +445,23 @@
445
445
  }
446
446
  },
447
447
  "BooleanObject":{"type":"boolean"},
448
+ "ChildShard":{
449
+ "type":"structure",
450
+ "required":[
451
+ "ShardId",
452
+ "ParentShards",
453
+ "HashKeyRange"
454
+ ],
455
+ "members":{
456
+ "ShardId":{"shape":"ShardId"},
457
+ "ParentShards":{"shape":"ShardIdList"},
458
+ "HashKeyRange":{"shape":"HashKeyRange"}
459
+ }
460
+ },
461
+ "ChildShardList":{
462
+ "type":"list",
463
+ "member":{"shape":"ChildShard"}
464
+ },
448
465
  "Consumer":{
449
466
  "type":"structure",
450
467
  "required":[
@@ -697,7 +714,8 @@
697
714
  "members":{
698
715
  "Records":{"shape":"RecordList"},
699
716
  "NextShardIterator":{"shape":"ShardIterator"},
700
- "MillisBehindLatest":{"shape":"MillisBehindLatest"}
717
+ "MillisBehindLatest":{"shape":"MillisBehindLatest"},
718
+ "ChildShards":{"shape":"ChildShardList"}
701
719
  }
702
720
  },
703
721
  "GetShardIteratorInput":{
@@ -823,7 +841,8 @@
823
841
  "NextToken":{"shape":"NextToken"},
824
842
  "ExclusiveStartShardId":{"shape":"ShardId"},
825
843
  "MaxResults":{"shape":"ListShardsInputLimit"},
826
- "StreamCreationTimestamp":{"shape":"Timestamp"}
844
+ "StreamCreationTimestamp":{"shape":"Timestamp"},
845
+ "ShardFilter":{"shape":"ShardFilter"}
827
846
  }
828
847
  },
829
848
  "ListShardsInputLimit":{
@@ -956,7 +975,6 @@
956
975
  },
957
976
  "PositiveIntegerObject":{
958
977
  "type":"integer",
959
- "max":100000,
960
978
  "min":1
961
979
  },
962
980
  "ProvisionedThroughputExceededException":{
@@ -1108,11 +1126,7 @@
1108
1126
  },
1109
1127
  "exception":true
1110
1128
  },
1111
- "RetentionPeriodHours":{
1112
- "type":"integer",
1113
- "max":168,
1114
- "min":1
1115
- },
1129
+ "RetentionPeriodHours":{"type":"integer"},
1116
1130
  "ScalingType":{
1117
1131
  "type":"string",
1118
1132
  "enum":["UNIFORM_SCALING"]
@@ -1149,12 +1163,36 @@
1149
1163
  "max":1000000,
1150
1164
  "min":0
1151
1165
  },
1166
+ "ShardFilter":{
1167
+ "type":"structure",
1168
+ "required":["Type"],
1169
+ "members":{
1170
+ "Type":{"shape":"ShardFilterType"},
1171
+ "ShardId":{"shape":"ShardId"},
1172
+ "Timestamp":{"shape":"Timestamp"}
1173
+ }
1174
+ },
1175
+ "ShardFilterType":{
1176
+ "type":"string",
1177
+ "enum":[
1178
+ "AFTER_SHARD_ID",
1179
+ "AT_TRIM_HORIZON",
1180
+ "FROM_TRIM_HORIZON",
1181
+ "AT_LATEST",
1182
+ "AT_TIMESTAMP",
1183
+ "FROM_TIMESTAMP"
1184
+ ]
1185
+ },
1152
1186
  "ShardId":{
1153
1187
  "type":"string",
1154
1188
  "max":128,
1155
1189
  "min":1,
1156
1190
  "pattern":"[a-zA-Z0-9_.-]+"
1157
1191
  },
1192
+ "ShardIdList":{
1193
+ "type":"list",
1194
+ "member":{"shape":"ShardId"}
1195
+ },
1158
1196
  "ShardIterator":{
1159
1197
  "type":"string",
1160
1198
  "max":512,
@@ -1226,7 +1264,7 @@
1226
1264
  "type":"string",
1227
1265
  "max":2048,
1228
1266
  "min":1,
1229
- "pattern":"arn:aws.*:kinesis:.*:\\d{12}:stream/.*"
1267
+ "pattern":"arn:aws.*:kinesis:.*:\\d{12}:stream/.+"
1230
1268
  },
1231
1269
  "StreamDescription":{
1232
1270
  "type":"structure",
@@ -1268,7 +1306,7 @@
1268
1306
  "StreamName":{"shape":"StreamName"},
1269
1307
  "StreamARN":{"shape":"StreamARN"},
1270
1308
  "StreamStatus":{"shape":"StreamStatus"},
1271
- "RetentionPeriodHours":{"shape":"PositiveIntegerObject"},
1309
+ "RetentionPeriodHours":{"shape":"RetentionPeriodHours"},
1272
1310
  "StreamCreationTimestamp":{"shape":"Timestamp"},
1273
1311
  "EnhancedMonitoring":{"shape":"EnhancedMonitoringList"},
1274
1312
  "EncryptionType":{"shape":"EncryptionType"},
@@ -1306,7 +1344,8 @@
1306
1344
  "members":{
1307
1345
  "Records":{"shape":"RecordList"},
1308
1346
  "ContinuationSequenceNumber":{"shape":"SequenceNumber"},
1309
- "MillisBehindLatest":{"shape":"MillisBehindLatest"}
1347
+ "MillisBehindLatest":{"shape":"MillisBehindLatest"},
1348
+ "ChildShards":{"shape":"ChildShardList"}
1310
1349
  },
1311
1350
  "event":true
1312
1351
  },
@@ -1369,13 +1408,14 @@
1369
1408
  "TagList":{
1370
1409
  "type":"list",
1371
1410
  "member":{"shape":"Tag"},
1411
+ "max":200,
1372
1412
  "min":0
1373
1413
  },
1374
1414
  "TagMap":{
1375
1415
  "type":"map",
1376
1416
  "key":{"shape":"TagKey"},
1377
1417
  "value":{"shape":"TagValue"},
1378
- "max":50,
1418
+ "max":200,
1379
1419
  "min":1
1380
1420
  },
1381
1421
  "TagValue":{