aws-sdk 2.583.0 → 2.587.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.
Files changed (59) hide show
  1. package/CHANGELOG.md +26 -1
  2. package/README.md +1 -1
  3. package/apis/apigatewayv2-2018-11-29.min.json +632 -201
  4. package/apis/ebs-2019-11-02.examples.json +5 -0
  5. package/apis/ebs-2019-11-02.min.json +195 -0
  6. package/apis/ebs-2019-11-02.paginators.json +14 -0
  7. package/apis/kafka-2018-11-14.min.json +170 -34
  8. package/apis/kendra-2019-02-03.min.json +2 -1
  9. package/apis/kinesis-video-signaling-2019-12-04.examples.json +5 -0
  10. package/apis/kinesis-video-signaling-2019-12-04.min.json +79 -0
  11. package/apis/kinesis-video-signaling-2019-12-04.paginators.json +4 -0
  12. package/apis/kinesisvideo-2017-09-30.min.json +281 -8
  13. package/apis/kinesisvideo-2017-09-30.paginators.json +6 -0
  14. package/apis/lambda-2015-03-31.min.json +217 -25
  15. package/apis/lambda-2015-03-31.paginators.json +6 -0
  16. package/apis/metadata.json +8 -0
  17. package/apis/rds-2014-10-31.min.json +495 -101
  18. package/apis/rds-2014-10-31.paginators.json +18 -0
  19. package/apis/rekognition-2016-06-27.min.json +409 -85
  20. package/apis/rekognition-2016-06-27.paginators.json +12 -0
  21. package/apis/rekognition-2016-06-27.waiters2.json +45 -0
  22. package/apis/sagemaker-2017-07-24.min.json +3471 -472
  23. package/apis/sagemaker-2017-07-24.paginators.json +128 -16
  24. package/apis/sagemaker-2017-07-24.waiters2.json +30 -0
  25. package/apis/ssm-2014-11-06.min.json +94 -71
  26. package/apis/states-2016-11-23.min.json +92 -55
  27. package/clients/all.d.ts +2 -0
  28. package/clients/all.js +3 -1
  29. package/clients/apigatewayv2.d.ts +856 -1161
  30. package/clients/applicationautoscaling.d.ts +32 -32
  31. package/clients/browser_default.d.ts +1 -0
  32. package/clients/browser_default.js +2 -1
  33. package/clients/ebs.d.ts +211 -0
  34. package/clients/ebs.js +18 -0
  35. package/clients/kafka.d.ts +152 -0
  36. package/clients/kendra.d.ts +7 -3
  37. package/clients/kinesisvideo.d.ts +312 -1
  38. package/clients/kinesisvideosignalingchannels.d.ts +121 -0
  39. package/clients/kinesisvideosignalingchannels.js +18 -0
  40. package/clients/kms.d.ts +6 -6
  41. package/clients/lambda.d.ts +199 -2
  42. package/clients/quicksight.d.ts +223 -223
  43. package/clients/rds.d.ts +549 -0
  44. package/clients/rekognition.d.ts +423 -8
  45. package/clients/rekognition.js +1 -0
  46. package/clients/sagemaker.d.ts +4588 -610
  47. package/clients/ssm.d.ts +42 -6
  48. package/clients/stepfunctions.d.ts +54 -0
  49. package/dist/aws-sdk-core-react-native.js +2 -2
  50. package/dist/aws-sdk-react-native.js +1182 -1102
  51. package/dist/aws-sdk.js +2265 -859
  52. package/dist/aws-sdk.min.js +35 -35
  53. package/lib/config.d.ts +12 -0
  54. package/lib/config_service_placeholders.d.ts +4 -0
  55. package/lib/core.js +1 -1
  56. package/lib/services/s3.js +5 -4
  57. package/lib/services/sts.js +2 -4
  58. package/package.json +1 -1
  59. package/scripts/region-checker/whitelist.js +5 -5
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,195 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2019-11-02",
5
+ "endpointPrefix": "ebs",
6
+ "jsonVersion": "1.1",
7
+ "protocol": "rest-json",
8
+ "serviceAbbreviation": "Amazon EBS",
9
+ "serviceFullName": "Amazon Elastic Block Store",
10
+ "serviceId": "EBS",
11
+ "signatureVersion": "v4",
12
+ "uid": "ebs-2019-11-02"
13
+ },
14
+ "operations": {
15
+ "GetSnapshotBlock": {
16
+ "http": {
17
+ "method": "GET",
18
+ "requestUri": "/snapshots/{snapshotId}/blocks/{blockIndex}"
19
+ },
20
+ "input": {
21
+ "type": "structure",
22
+ "required": [
23
+ "SnapshotId",
24
+ "BlockIndex",
25
+ "BlockToken"
26
+ ],
27
+ "members": {
28
+ "SnapshotId": {
29
+ "location": "uri",
30
+ "locationName": "snapshotId"
31
+ },
32
+ "BlockIndex": {
33
+ "location": "uri",
34
+ "locationName": "blockIndex",
35
+ "type": "integer"
36
+ },
37
+ "BlockToken": {
38
+ "location": "querystring",
39
+ "locationName": "blockToken"
40
+ }
41
+ }
42
+ },
43
+ "output": {
44
+ "type": "structure",
45
+ "members": {
46
+ "DataLength": {
47
+ "location": "header",
48
+ "locationName": "x-amz-Data-Length",
49
+ "type": "integer"
50
+ },
51
+ "BlockData": {
52
+ "type": "blob",
53
+ "sensitive": true,
54
+ "streaming": true
55
+ },
56
+ "Checksum": {
57
+ "location": "header",
58
+ "locationName": "x-amz-Checksum"
59
+ },
60
+ "ChecksumAlgorithm": {
61
+ "location": "header",
62
+ "locationName": "x-amz-Checksum-Algorithm"
63
+ }
64
+ },
65
+ "payload": "BlockData"
66
+ }
67
+ },
68
+ "ListChangedBlocks": {
69
+ "http": {
70
+ "method": "GET",
71
+ "requestUri": "/snapshots/{secondSnapshotId}/changedblocks"
72
+ },
73
+ "input": {
74
+ "type": "structure",
75
+ "required": [
76
+ "SecondSnapshotId"
77
+ ],
78
+ "members": {
79
+ "FirstSnapshotId": {
80
+ "location": "querystring",
81
+ "locationName": "firstSnapshotId"
82
+ },
83
+ "SecondSnapshotId": {
84
+ "location": "uri",
85
+ "locationName": "secondSnapshotId"
86
+ },
87
+ "NextToken": {
88
+ "location": "querystring",
89
+ "locationName": "pageToken"
90
+ },
91
+ "MaxResults": {
92
+ "location": "querystring",
93
+ "locationName": "maxResults",
94
+ "type": "integer"
95
+ },
96
+ "StartingBlockIndex": {
97
+ "location": "querystring",
98
+ "locationName": "startingBlockIndex",
99
+ "type": "integer"
100
+ }
101
+ }
102
+ },
103
+ "output": {
104
+ "type": "structure",
105
+ "members": {
106
+ "ChangedBlocks": {
107
+ "type": "list",
108
+ "member": {
109
+ "type": "structure",
110
+ "members": {
111
+ "BlockIndex": {
112
+ "type": "integer"
113
+ },
114
+ "FirstBlockToken": {},
115
+ "SecondBlockToken": {}
116
+ },
117
+ "sensitive": true
118
+ }
119
+ },
120
+ "ExpiryTime": {
121
+ "type": "timestamp"
122
+ },
123
+ "VolumeSize": {
124
+ "type": "long"
125
+ },
126
+ "BlockSize": {
127
+ "type": "integer"
128
+ },
129
+ "NextToken": {}
130
+ }
131
+ }
132
+ },
133
+ "ListSnapshotBlocks": {
134
+ "http": {
135
+ "method": "GET",
136
+ "requestUri": "/snapshots/{snapshotId}/blocks"
137
+ },
138
+ "input": {
139
+ "type": "structure",
140
+ "required": [
141
+ "SnapshotId"
142
+ ],
143
+ "members": {
144
+ "SnapshotId": {
145
+ "location": "uri",
146
+ "locationName": "snapshotId"
147
+ },
148
+ "NextToken": {
149
+ "location": "querystring",
150
+ "locationName": "pageToken"
151
+ },
152
+ "MaxResults": {
153
+ "location": "querystring",
154
+ "locationName": "maxResults",
155
+ "type": "integer"
156
+ },
157
+ "StartingBlockIndex": {
158
+ "location": "querystring",
159
+ "locationName": "startingBlockIndex",
160
+ "type": "integer"
161
+ }
162
+ }
163
+ },
164
+ "output": {
165
+ "type": "structure",
166
+ "members": {
167
+ "Blocks": {
168
+ "type": "list",
169
+ "member": {
170
+ "type": "structure",
171
+ "members": {
172
+ "BlockIndex": {
173
+ "type": "integer"
174
+ },
175
+ "BlockToken": {}
176
+ }
177
+ },
178
+ "sensitive": true
179
+ },
180
+ "ExpiryTime": {
181
+ "type": "timestamp"
182
+ },
183
+ "VolumeSize": {
184
+ "type": "long"
185
+ },
186
+ "BlockSize": {
187
+ "type": "integer"
188
+ },
189
+ "NextToken": {}
190
+ }
191
+ }
192
+ }
193
+ },
194
+ "shapes": {}
195
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "pagination": {
3
+ "ListChangedBlocks": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ },
8
+ "ListSnapshotBlocks": {
9
+ "input_token": "NextToken",
10
+ "output_token": "NextToken",
11
+ "limit_key": "MaxResults"
12
+ }
13
+ }
14
+ }
@@ -42,6 +42,10 @@
42
42
  "EnhancedMonitoring": {
43
43
  "locationName": "enhancedMonitoring"
44
44
  },
45
+ "OpenMonitoring": {
46
+ "shape": "Sl",
47
+ "locationName": "openMonitoring"
48
+ },
45
49
  "KafkaVersion": {
46
50
  "locationName": "kafkaVersion"
47
51
  },
@@ -50,7 +54,7 @@
50
54
  "type": "integer"
51
55
  },
52
56
  "Tags": {
53
- "shape": "Sn",
57
+ "shape": "Sr",
54
58
  "locationName": "tags"
55
59
  }
56
60
  },
@@ -112,11 +116,11 @@
112
116
  "locationName": "arn"
113
117
  },
114
118
  "CreationTime": {
115
- "shape": "St",
119
+ "shape": "Sx",
116
120
  "locationName": "creationTime"
117
121
  },
118
122
  "LatestRevision": {
119
- "shape": "Su",
123
+ "shape": "Sy",
120
124
  "locationName": "latestRevision"
121
125
  },
122
126
  "Name": {
@@ -181,7 +185,7 @@
181
185
  "type": "structure",
182
186
  "members": {
183
187
  "ClusterInfo": {
184
- "shape": "Sz",
188
+ "shape": "S13",
185
189
  "locationName": "clusterInfo"
186
190
  }
187
191
  }
@@ -209,7 +213,7 @@
209
213
  "type": "structure",
210
214
  "members": {
211
215
  "ClusterOperationInfo": {
212
- "shape": "S14",
216
+ "shape": "S1c",
213
217
  "locationName": "clusterOperationInfo"
214
218
  }
215
219
  }
@@ -240,7 +244,7 @@
240
244
  "locationName": "arn"
241
245
  },
242
246
  "CreationTime": {
243
- "shape": "St",
247
+ "shape": "Sx",
244
248
  "locationName": "creationTime"
245
249
  },
246
250
  "Description": {
@@ -251,7 +255,7 @@
251
255
  "locationName": "kafkaVersions"
252
256
  },
253
257
  "LatestRevision": {
254
- "shape": "Su",
258
+ "shape": "Sy",
255
259
  "locationName": "latestRevision"
256
260
  },
257
261
  "Name": {
@@ -291,7 +295,7 @@
291
295
  "locationName": "arn"
292
296
  },
293
297
  "CreationTime": {
294
- "shape": "St",
298
+ "shape": "Sx",
295
299
  "locationName": "creationTime"
296
300
  },
297
301
  "Description": {
@@ -372,7 +376,7 @@
372
376
  "locationName": "clusterOperationInfoList",
373
377
  "type": "list",
374
378
  "member": {
375
- "shape": "S14"
379
+ "shape": "S1c"
376
380
  }
377
381
  },
378
382
  "NextToken": {
@@ -412,7 +416,7 @@
412
416
  "locationName": "clusterInfoList",
413
417
  "type": "list",
414
418
  "member": {
415
- "shape": "Sz"
419
+ "shape": "S13"
416
420
  }
417
421
  },
418
422
  "NextToken": {
@@ -458,7 +462,7 @@
458
462
  "locationName": "revisions",
459
463
  "type": "list",
460
464
  "member": {
461
- "shape": "Su"
465
+ "shape": "Sy"
462
466
  }
463
467
  }
464
468
  }
@@ -497,7 +501,7 @@
497
501
  "locationName": "arn"
498
502
  },
499
503
  "CreationTime": {
500
- "shape": "St",
504
+ "shape": "Sx",
501
505
  "locationName": "creationTime"
502
506
  },
503
507
  "Description": {
@@ -508,7 +512,7 @@
508
512
  "locationName": "kafkaVersions"
509
513
  },
510
514
  "LatestRevision": {
511
- "shape": "Su",
515
+ "shape": "Sy",
512
516
  "locationName": "latestRevision"
513
517
  },
514
518
  "Name": {
@@ -591,7 +595,7 @@
591
595
  "locationName": "clientVpcIpAddress"
592
596
  },
593
597
  "CurrentBrokerSoftwareInfo": {
594
- "shape": "S10",
598
+ "shape": "S14",
595
599
  "locationName": "currentBrokerSoftwareInfo"
596
600
  },
597
601
  "Endpoints": {
@@ -660,7 +664,7 @@
660
664
  "type": "structure",
661
665
  "members": {
662
666
  "Tags": {
663
- "shape": "Sn",
667
+ "shape": "Sr",
664
668
  "locationName": "tags"
665
669
  }
666
670
  }
@@ -679,7 +683,7 @@
679
683
  "locationName": "resourceArn"
680
684
  },
681
685
  "Tags": {
682
- "shape": "Sn",
686
+ "shape": "Sr",
683
687
  "locationName": "tags"
684
688
  }
685
689
  },
@@ -770,7 +774,7 @@
770
774
  "locationName": "currentVersion"
771
775
  },
772
776
  "TargetBrokerEBSVolumeInfo": {
773
- "shape": "S17",
777
+ "shape": "S1f",
774
778
  "locationName": "targetBrokerEBSVolumeInfo"
775
779
  }
776
780
  },
@@ -830,6 +834,47 @@
830
834
  }
831
835
  }
832
836
  }
837
+ },
838
+ "UpdateMonitoring": {
839
+ "http": {
840
+ "method": "PUT",
841
+ "requestUri": "/v1/clusters/{clusterArn}/monitoring",
842
+ "responseCode": 200
843
+ },
844
+ "input": {
845
+ "type": "structure",
846
+ "members": {
847
+ "ClusterArn": {
848
+ "location": "uri",
849
+ "locationName": "clusterArn"
850
+ },
851
+ "CurrentVersion": {
852
+ "locationName": "currentVersion"
853
+ },
854
+ "EnhancedMonitoring": {
855
+ "locationName": "enhancedMonitoring"
856
+ },
857
+ "OpenMonitoring": {
858
+ "shape": "Sl",
859
+ "locationName": "openMonitoring"
860
+ }
861
+ },
862
+ "required": [
863
+ "ClusterArn",
864
+ "CurrentVersion"
865
+ ]
866
+ },
867
+ "output": {
868
+ "type": "structure",
869
+ "members": {
870
+ "ClusterArn": {
871
+ "locationName": "clusterArn"
872
+ },
873
+ "ClusterOperationArn": {
874
+ "locationName": "clusterOperationArn"
875
+ }
876
+ }
877
+ }
833
878
  }
834
879
  },
835
880
  "shapes": {
@@ -937,20 +982,60 @@
937
982
  }
938
983
  }
939
984
  },
940
- "Sn": {
985
+ "Sl": {
986
+ "type": "structure",
987
+ "members": {
988
+ "Prometheus": {
989
+ "locationName": "prometheus",
990
+ "type": "structure",
991
+ "members": {
992
+ "JmxExporter": {
993
+ "locationName": "jmxExporter",
994
+ "type": "structure",
995
+ "members": {
996
+ "EnabledInBroker": {
997
+ "locationName": "enabledInBroker",
998
+ "type": "boolean"
999
+ }
1000
+ },
1001
+ "required": [
1002
+ "EnabledInBroker"
1003
+ ]
1004
+ },
1005
+ "NodeExporter": {
1006
+ "locationName": "nodeExporter",
1007
+ "type": "structure",
1008
+ "members": {
1009
+ "EnabledInBroker": {
1010
+ "locationName": "enabledInBroker",
1011
+ "type": "boolean"
1012
+ }
1013
+ },
1014
+ "required": [
1015
+ "EnabledInBroker"
1016
+ ]
1017
+ }
1018
+ }
1019
+ }
1020
+ },
1021
+ "required": [
1022
+ "Prometheus"
1023
+ ]
1024
+ },
1025
+ "Sr": {
941
1026
  "type": "map",
942
1027
  "key": {},
943
1028
  "value": {}
944
1029
  },
945
- "St": {
1030
+ "Sx": {
946
1031
  "type": "timestamp",
947
1032
  "timestampFormat": "iso8601"
948
1033
  },
949
- "Su": {
1034
+ "Sy": {
950
1035
  "type": "structure",
951
1036
  "members": {
952
1037
  "CreationTime": {
953
- "shape": "St",
1038
+ "shape": "Sx",
954
1039
  "locationName": "creationTime"
955
1040
  },
956
1041
  "Description": {
@@ -966,7 +1051,7 @@
966
1051
  "CreationTime"
967
1052
  ]
968
1053
  },
969
- "Sz": {
1054
+ "S13": {
970
1055
  "type": "structure",
971
1056
  "members": {
972
1057
  "ActiveOperationArn": {
@@ -987,11 +1072,11 @@
987
1072
  "locationName": "clusterName"
988
1073
  },
989
1074
  "CreationTime": {
990
- "shape": "St",
1075
+ "shape": "Sx",
991
1076
  "locationName": "creationTime"
992
1077
  },
993
1078
  "CurrentBrokerSoftwareInfo": {
994
- "shape": "S10",
1079
+ "shape": "S14",
995
1080
  "locationName": "currentBrokerSoftwareInfo"
996
1081
  },
997
1082
  "CurrentVersion": {
@@ -1004,6 +1089,10 @@
1004
1089
  "EnhancedMonitoring": {
1005
1090
  "locationName": "enhancedMonitoring"
1006
1091
  },
1092
+ "OpenMonitoring": {
1093
+ "shape": "S15",
1094
+ "locationName": "openMonitoring"
1095
+ },
1007
1096
  "NumberOfBrokerNodes": {
1008
1097
  "locationName": "numberOfBrokerNodes",
1009
1098
  "type": "integer"
@@ -1012,7 +1101,7 @@
1012
1101
  "locationName": "state"
1013
1102
  },
1014
1103
  "Tags": {
1015
- "shape": "Sn",
1104
+ "shape": "Sr",
1016
1105
  "locationName": "tags"
1017
1106
  },
1018
1107
  "ZookeeperConnectString": {
@@ -1020,7 +1109,7 @@
1020
1109
  }
1021
1110
  }
1022
1111
  },
1023
- "S10": {
1112
+ "S14": {
1024
1113
  "type": "structure",
1025
1114
  "members": {
1026
1115
  "ConfigurationArn": {
@@ -1035,7 +1124,47 @@
1035
1124
  }
1036
1125
  }
1037
1126
  },
1038
- "S14": {
1127
+ "S15": {
1128
+ "type": "structure",
1129
+ "members": {
1130
+ "Prometheus": {
1131
+ "locationName": "prometheus",
1132
+ "type": "structure",
1133
+ "members": {
1134
+ "JmxExporter": {
1135
+ "locationName": "jmxExporter",
1136
+ "type": "structure",
1137
+ "members": {
1138
+ "EnabledInBroker": {
1139
+ "locationName": "enabledInBroker",
1140
+ "type": "boolean"
1141
+ }
1142
+ },
1143
+ "required": [
1144
+ "EnabledInBroker"
1145
+ ]
1146
+ },
1147
+ "NodeExporter": {
1148
+ "locationName": "nodeExporter",
1149
+ "type": "structure",
1150
+ "members": {
1151
+ "EnabledInBroker": {
1152
+ "locationName": "enabledInBroker",
1153
+ "type": "boolean"
1154
+ }
1155
+ },
1156
+ "required": [
1157
+ "EnabledInBroker"
1158
+ ]
1159
+ }
1160
+ }
1161
+ }
1162
+ },
1163
+ "required": [
1164
+ "Prometheus"
1165
+ ]
1166
+ },
1167
+ "S1c": {
1039
1168
  "type": "structure",
1040
1169
  "members": {
1041
1170
  "ClientRequestId": {
@@ -1045,11 +1174,11 @@
1045
1174
  "locationName": "clusterArn"
1046
1175
  },
1047
1176
  "CreationTime": {
1048
- "shape": "St",
1177
+ "shape": "Sx",
1049
1178
  "locationName": "creationTime"
1050
1179
  },
1051
1180
  "EndTime": {
1052
- "shape": "St",
1181
+ "shape": "Sx",
1053
1182
  "locationName": "endTime"
1054
1183
  },
1055
1184
  "ErrorInfo": {
@@ -1074,20 +1203,20 @@
1074
1203
  "locationName": "operationType"
1075
1204
  },
1076
1205
  "SourceClusterInfo": {
1077
- "shape": "S16",
1206
+ "shape": "S1e",
1078
1207
  "locationName": "sourceClusterInfo"
1079
1208
  },
1080
1209
  "TargetClusterInfo": {
1081
- "shape": "S16",
1210
+ "shape": "S1e",
1082
1211
  "locationName": "targetClusterInfo"
1083
1212
  }
1084
1213
  }
1085
1214
  },
1086
- "S16": {
1215
+ "S1e": {
1087
1216
  "type": "structure",
1088
1217
  "members": {
1089
1218
  "BrokerEBSVolumeInfo": {
1090
- "shape": "S17",
1219
+ "shape": "S1f",
1091
1220
  "locationName": "brokerEBSVolumeInfo"
1092
1221
  },
1093
1222
  "ConfigurationInfo": {
@@ -1097,10 +1226,17 @@
1097
1226
  "NumberOfBrokerNodes": {
1098
1227
  "locationName": "numberOfBrokerNodes",
1099
1228
  "type": "integer"
1229
+ },
1230
+ "EnhancedMonitoring": {
1231
+ "locationName": "enhancedMonitoring"
1232
+ },
1233
+ "OpenMonitoring": {
1234
+ "shape": "S15",
1235
+ "locationName": "openMonitoring"
1100
1236
  }
1101
1237
  }
1102
1238
  },
1103
- "S17": {
1239
+ "S1f": {
1104
1240
  "type": "list",
1105
1241
  "member": {
1106
1242
  "type": "structure",
@@ -848,7 +848,8 @@
848
848
  },
849
849
  "FieldMappings": {
850
850
  "shape": "S1l"
851
- }
851
+ },
852
+ "DocumentTitleFieldName": {}
852
853
  }
853
854
  },
854
855
  "DatabaseConfiguration": {
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }