aws-sdk-core 2.11.513 → 2.11.518

Sign up to get free protection for your applications and to get access to all the features.
@@ -964,7 +964,8 @@
964
964
  "COUNT",
965
965
  "MAXIMUM",
966
966
  "MINIMUM",
967
- "SUM"
967
+ "SUM",
968
+ "STANDARD_DEVIATION"
968
969
  ]
969
970
  },
970
971
  "AggregateTypes":{
@@ -996,7 +997,8 @@
996
997
  "count":{"shape":"AggregatedDoubleValue"},
997
998
  "maximum":{"shape":"AggregatedDoubleValue"},
998
999
  "minimum":{"shape":"AggregatedDoubleValue"},
999
- "sum":{"shape":"AggregatedDoubleValue"}
1000
+ "sum":{"shape":"AggregatedDoubleValue"},
1001
+ "standardDeviation":{"shape":"AggregatedDoubleValue"}
1000
1002
  }
1001
1003
  },
1002
1004
  "AmazonResourceName":{
@@ -2119,7 +2121,7 @@
2119
2121
  "portalStatus":{"shape":"PortalStatus"},
2120
2122
  "portalCreationDate":{"shape":"Timestamp"},
2121
2123
  "portalLastUpdateDate":{"shape":"Timestamp"},
2122
- "portalLogoImage":{"shape":"Image"},
2124
+ "portalLogoImageLocation":{"shape":"ImageLocation"},
2123
2125
  "roleArn":{"shape":"ARN"}
2124
2126
  }
2125
2127
  },
@@ -2487,26 +2489,41 @@
2487
2489
  "Image":{
2488
2490
  "type":"structure",
2489
2491
  "members":{
2490
- "locationUrl":{"shape":"Url"},
2491
- "lastUpdateDate":{"shape":"Timestamp"}
2492
+ "id":{"shape":"ID"},
2493
+ "file":{"shape":"ImageFile"}
2492
2494
  }
2493
2495
  },
2494
2496
  "ImageFile":{
2495
2497
  "type":"structure",
2496
2498
  "required":[
2497
- "encodedString",
2498
- "fileType"
2499
+ "data",
2500
+ "type"
2499
2501
  ],
2500
2502
  "members":{
2501
- "encodedString":{"shape":"ImageFileData"},
2502
- "fileType":{"shape":"ImageFileType"}
2503
+ "data":{"shape":"ImageFileData"},
2504
+ "type":{"shape":"ImageFileType"}
2503
2505
  }
2504
2506
  },
2505
- "ImageFileData":{"type":"blob"},
2507
+ "ImageFileData":{
2508
+ "type":"blob",
2509
+ "max":1500000,
2510
+ "min":1
2511
+ },
2506
2512
  "ImageFileType":{
2507
2513
  "type":"string",
2508
2514
  "enum":["PNG"]
2509
2515
  },
2516
+ "ImageLocation":{
2517
+ "type":"structure",
2518
+ "required":[
2519
+ "id",
2520
+ "url"
2521
+ ],
2522
+ "members":{
2523
+ "id":{"shape":"ID"},
2524
+ "url":{"shape":"Url"}
2525
+ }
2526
+ },
2510
2527
  "InternalFailureException":{
2511
2528
  "type":"structure",
2512
2529
  "required":["message"],
@@ -3500,7 +3517,7 @@
3500
3517
  "portalName":{"shape":"Name"},
3501
3518
  "portalDescription":{"shape":"Description"},
3502
3519
  "portalContactEmail":{"shape":"Email"},
3503
- "portalLogoImageFile":{"shape":"ImageFile"},
3520
+ "portalLogoImage":{"shape":"Image"},
3504
3521
  "roleArn":{"shape":"ARN"},
3505
3522
  "clientToken":{
3506
3523
  "shape":"ClientToken",
@@ -275,6 +275,43 @@
275
275
  }
276
276
  ]
277
277
  },
278
+ "GetCompatibleKafkaVersions" : {
279
+ "name" : "GetCompatibleKafkaVersions",
280
+ "http" : {
281
+ "method" : "GET",
282
+ "requestUri" : "/v1/compatible-kafka-versions",
283
+ "responseCode" : 200
284
+ },
285
+ "input" : {
286
+ "shape" : "GetCompatibleKafkaVersionsRequest"
287
+ },
288
+ "output" : {
289
+ "shape" : "GetCompatibleKafkaVersionsResponse"
290
+ },
291
+ "errors" : [
292
+ {
293
+ "shape" : "BadRequestException"
294
+ },
295
+ {
296
+ "shape" : "UnauthorizedException"
297
+ },
298
+ {
299
+ "shape" : "InternalServerErrorException"
300
+ },
301
+ {
302
+ "shape" : "ForbiddenException"
303
+ },
304
+ {
305
+ "shape" : "NotFoundException"
306
+ },
307
+ {
308
+ "shape" : "ServiceUnavailableException"
309
+ },
310
+ {
311
+ "shape" : "TooManyRequestsException"
312
+ }
313
+ ]
314
+ },
278
315
  "ListClusterOperations": {
279
316
  "name": "ListClusterOperations",
280
317
  "http": {
@@ -617,6 +654,43 @@
617
654
  }
618
655
  ]
619
656
  },
657
+ "UpdateClusterKafkaVersion" : {
658
+ "name" : "UpdateClusterKafkaVersion",
659
+ "http" : {
660
+ "method" : "PUT",
661
+ "requestUri" : "/v1/clusters/{clusterArn}/version",
662
+ "responseCode" : 200
663
+ },
664
+ "input" : {
665
+ "shape" : "UpdateClusterKafkaVersionRequest"
666
+ },
667
+ "output" : {
668
+ "shape" : "UpdateClusterKafkaVersionResponse"
669
+ },
670
+ "errors" : [
671
+ {
672
+ "shape" : "BadRequestException"
673
+ },
674
+ {
675
+ "shape" : "UnauthorizedException"
676
+ },
677
+ {
678
+ "shape" : "InternalServerErrorException"
679
+ },
680
+ {
681
+ "shape" : "ForbiddenException"
682
+ },
683
+ {
684
+ "shape" : "NotFoundException"
685
+ },
686
+ {
687
+ "shape" : "ServiceUnavailableException"
688
+ },
689
+ {
690
+ "shape" : "TooManyRequestsException"
691
+ }
692
+ ]
693
+ },
620
694
  "UpdateMonitoring" : {
621
695
  "name" : "UpdateMonitoring",
622
696
  "http" : {
@@ -899,6 +973,10 @@
899
973
  "shape": "ErrorInfo",
900
974
  "locationName": "errorInfo"
901
975
  },
976
+ "OperationSteps": {
977
+ "shape": "__listOfClusterOperationStep",
978
+ "locationName": "operationSteps"
979
+ },
902
980
  "OperationArn": {
903
981
  "shape": "__string",
904
982
  "locationName": "operationArn"
@@ -921,6 +999,28 @@
921
999
  }
922
1000
  }
923
1001
  },
1002
+ "ClusterOperationStep" : {
1003
+ "type" : "structure",
1004
+ "members" : {
1005
+ "StepInfo" : {
1006
+ "shape" : "ClusterOperationStepInfo",
1007
+ "locationName" : "stepInfo"
1008
+ },
1009
+ "StepName" : {
1010
+ "shape" : "__string",
1011
+ "locationName" : "stepName"
1012
+ }
1013
+ }
1014
+ },
1015
+ "ClusterOperationStepInfo" : {
1016
+ "type" : "structure",
1017
+ "members" : {
1018
+ "StepStatus" : {
1019
+ "shape" : "__string",
1020
+ "locationName" : "stepStatus"
1021
+ }
1022
+ }
1023
+ },
924
1024
  "ClusterState": {
925
1025
  "type": "string",
926
1026
  "enum": [
@@ -931,6 +1031,19 @@
931
1031
  "FAILED"
932
1032
  ]
933
1033
  },
1034
+ "CompatibleKafkaVersion" : {
1035
+ "type" : "structure",
1036
+ "members" : {
1037
+ "SourceVersion" : {
1038
+ "shape" : "__string",
1039
+ "locationName" : "sourceVersion"
1040
+ },
1041
+ "TargetVersions" : {
1042
+ "shape" : "__listOf__string",
1043
+ "locationName" : "targetVersions"
1044
+ }
1045
+ }
1046
+ },
934
1047
  "Configuration": {
935
1048
  "type": "structure",
936
1049
  "members": {
@@ -1117,7 +1230,6 @@
1117
1230
  },
1118
1231
  "required": [
1119
1232
  "ServerProperties",
1120
- "KafkaVersions",
1121
1233
  "Name"
1122
1234
  ]
1123
1235
  },
@@ -1441,6 +1553,25 @@
1441
1553
  }
1442
1554
  }
1443
1555
  },
1556
+ "GetCompatibleKafkaVersionsRequest" : {
1557
+ "type" : "structure",
1558
+ "members" : {
1559
+ "ClusterArn" : {
1560
+ "shape" : "__string",
1561
+ "location" : "querystring",
1562
+ "locationName" : "clusterArn"
1563
+ }
1564
+ }
1565
+ },
1566
+ "GetCompatibleKafkaVersionsResponse" : {
1567
+ "type" : "structure",
1568
+ "members" : {
1569
+ "CompatibleKafkaVersions" : {
1570
+ "shape" : "__listOfCompatibleKafkaVersion",
1571
+ "locationName" : "compatibleKafkaVersions"
1572
+ }
1573
+ }
1574
+ },
1444
1575
  "InternalServerErrorException": {
1445
1576
  "type": "structure",
1446
1577
  "members": {
@@ -1735,6 +1866,10 @@
1735
1866
  "shape" : "EnhancedMonitoring",
1736
1867
  "locationName" : "enhancedMonitoring"
1737
1868
  },
1869
+ "KafkaVersion" : {
1870
+ "shape" : "__string",
1871
+ "locationName" : "kafkaVersion"
1872
+ },
1738
1873
  "LoggingInfo": {
1739
1874
  "shape": "LoggingInfo",
1740
1875
  "locationName": "loggingInfo"
@@ -2020,6 +2155,42 @@
2020
2155
  }
2021
2156
  }
2022
2157
  },
2158
+ "UpdateClusterKafkaVersionRequest" : {
2159
+ "type" : "structure",
2160
+ "members" : {
2161
+ "ClusterArn" : {
2162
+ "shape" : "__string",
2163
+ "location" : "uri",
2164
+ "locationName" : "clusterArn"
2165
+ },
2166
+ "ConfigurationInfo" : {
2167
+ "shape" : "ConfigurationInfo",
2168
+ "locationName" : "configurationInfo"
2169
+ },
2170
+ "CurrentVersion" : {
2171
+ "shape" : "__string",
2172
+ "locationName" : "currentVersion"
2173
+ },
2174
+ "TargetKafkaVersion" : {
2175
+ "shape" : "__string",
2176
+ "locationName" : "targetKafkaVersion"
2177
+ }
2178
+ },
2179
+ "required" : [ "ClusterArn", "TargetKafkaVersion", "CurrentVersion" ]
2180
+ },
2181
+ "UpdateClusterKafkaVersionResponse" : {
2182
+ "type" : "structure",
2183
+ "members" : {
2184
+ "ClusterArn" : {
2185
+ "shape" : "__string",
2186
+ "locationName" : "clusterArn"
2187
+ },
2188
+ "ClusterOperationArn" : {
2189
+ "shape" : "__string",
2190
+ "locationName" : "clusterOperationArn"
2191
+ }
2192
+ }
2193
+ },
2023
2194
  "UpdateMonitoringRequest" : {
2024
2195
  "type" : "structure",
2025
2196
  "members" : {
@@ -2229,6 +2400,18 @@
2229
2400
  "shape": "ClusterOperationInfo"
2230
2401
  }
2231
2402
  },
2403
+ "__listOfClusterOperationStep" : {
2404
+ "type" : "list",
2405
+ "member" : {
2406
+ "shape" : "ClusterOperationStep"
2407
+ }
2408
+ },
2409
+ "__listOfCompatibleKafkaVersion" : {
2410
+ "type" : "list",
2411
+ "member" : {
2412
+ "shape" : "CompatibleKafkaVersion"
2413
+ }
2414
+ },
2232
2415
  "__listOfConfiguration": {
2233
2416
  "type": "list",
2234
2417
  "member": {
@@ -347,7 +347,8 @@
347
347
  {"shape":"InvalidKeyUsageException"},
348
348
  {"shape":"InvalidGrantTokenException"},
349
349
  {"shape":"KMSInternalException"},
350
- {"shape":"KMSInvalidStateException"}
350
+ {"shape":"KMSInvalidStateException"},
351
+ {"shape":"UnsupportedOperationException"}
351
352
  ]
352
353
  },
353
354
  "GenerateDataKeyPairWithoutPlaintext":{
@@ -366,7 +367,8 @@
366
367
  {"shape":"InvalidKeyUsageException"},
367
368
  {"shape":"InvalidGrantTokenException"},
368
369
  {"shape":"KMSInternalException"},
369
- {"shape":"KMSInvalidStateException"}
370
+ {"shape":"KMSInvalidStateException"},
371
+ {"shape":"UnsupportedOperationException"}
370
372
  ]
371
373
  },
372
374
  "GenerateDataKeyWithoutPlaintext":{
@@ -738,6 +740,7 @@
738
740
  {"shape":"DependencyTimeoutException"},
739
741
  {"shape":"NotFoundException"},
740
742
  {"shape":"KMSInternalException"},
743
+ {"shape":"LimitExceededException"},
741
744
  {"shape":"KMSInvalidStateException"}
742
745
  ]
743
746
  },
@@ -1,5 +1,5 @@
1
1
  {
2
- "version":"1.0",
3
- "examples":{
2
+ "version": "1.0",
3
+ "examples": {
4
4
  }
5
5
  }
@@ -1,14 +1,14 @@
1
1
  {
2
- "pagination":{
3
- "ListMemberAccounts":{
4
- "input_token":"nextToken",
5
- "output_token":"nextToken",
6
- "limit_key":"maxResults"
2
+ "pagination": {
3
+ "ListMemberAccounts": {
4
+ "input_token": "nextToken",
5
+ "output_token": "nextToken",
6
+ "limit_key": "maxResults"
7
7
  },
8
- "ListS3Resources":{
9
- "input_token":"nextToken",
10
- "output_token":"nextToken",
11
- "limit_key":"maxResults"
8
+ "ListS3Resources": {
9
+ "input_token": "nextToken",
10
+ "output_token": "nextToken",
11
+ "limit_key": "maxResults"
12
12
  }
13
13
  }
14
14
  }
@@ -215,6 +215,7 @@
215
215
  "members":{
216
216
  "ChangeType":{"shape":"ChangeType"},
217
217
  "Entity":{"shape":"Entity"},
218
+ "Details":{"shape":"Json"},
218
219
  "ErrorDetailList":{"shape":"ErrorDetailList"}
219
220
  }
220
221
  },
@@ -1865,6 +1865,8 @@
1865
1865
  "DashboardErrorType":{
1866
1866
  "type":"string",
1867
1867
  "enum":[
1868
+ "ACCESS_DENIED",
1869
+ "SOURCE_NOT_FOUND",
1868
1870
  "DATA_SET_NOT_FOUND",
1869
1871
  "INTERNAL_FAILURE",
1870
1872
  "PARAMETER_VALUE_INCOMPATIBLE",
@@ -1957,6 +1959,7 @@
1957
1959
  "Status":{"shape":"ResourceStatus"},
1958
1960
  "Arn":{"shape":"Arn"},
1959
1961
  "SourceEntityArn":{"shape":"Arn"},
1962
+ "DataSetArns":{"shape":"DataSetArnsList"},
1960
1963
  "Description":{"shape":"VersionDescription"}
1961
1964
  }
1962
1965
  },
@@ -1993,6 +1996,11 @@
1993
1996
  "RowLevelPermissionDataSet":{"shape":"RowLevelPermissionDataSet"}
1994
1997
  }
1995
1998
  },
1999
+ "DataSetArnsList":{
2000
+ "type":"list",
2001
+ "member":{"shape":"Arn"},
2002
+ "max":100
2003
+ },
1996
2004
  "DataSetConfiguration":{
1997
2005
  "type":"structure",
1998
2006
  "members":{
@@ -4794,6 +4802,7 @@
4794
4802
  "TemplateErrorType":{
4795
4803
  "type":"string",
4796
4804
  "enum":[
4805
+ "SOURCE_NOT_FOUND",
4797
4806
  "DATA_SET_NOT_FOUND",
4798
4807
  "INTERNAL_FAILURE"
4799
4808
  ]
@@ -7477,7 +7477,8 @@
7477
7477
  "members":{
7478
7478
  "UiTemplate":{"shape":"UiTemplate"},
7479
7479
  "Task":{"shape":"RenderableTask"},
7480
- "RoleArn":{"shape":"RoleArn"}
7480
+ "RoleArn":{"shape":"RoleArn"},
7481
+ "HumanTaskUiArn":{"shape":"HumanTaskUiArn"}
7481
7482
  }
7482
7483
  },
7483
7484
  "RenderUiTemplateResponse":{
@@ -8178,7 +8179,7 @@
8178
8179
  },
8179
8180
  "TaskTimeLimitInSeconds":{
8180
8181
  "type":"integer",
8181
- "max":28800,
8182
+ "max":604800,
8182
8183
  "min":30
8183
8184
  },
8184
8185
  "TaskTitle":{
@@ -8831,7 +8832,8 @@
8831
8832
  "UiConfig":{
8832
8833
  "type":"structure",
8833
8834
  "members":{
8834
- "UiTemplateS3Uri":{"shape":"S3Uri"}
8835
+ "UiTemplateS3Uri":{"shape":"S3Uri"},
8836
+ "HumanTaskUiArn":{"shape":"HumanTaskUiArn"}
8835
8837
  }
8836
8838
  },
8837
8839
  "UiTemplate":{