aws-sdk 2.972.0 → 2.976.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 (52) hide show
  1. package/CHANGELOG.md +29 -1
  2. package/README.md +1 -1
  3. package/apis/backup-2018-11-15.min.json +573 -32
  4. package/apis/backup-2018-11-15.paginators.json +15 -0
  5. package/apis/comprehend-2017-11-27.min.json +109 -69
  6. package/apis/datasync-2018-11-09.min.json +13 -1
  7. package/apis/dlm-2018-01-12.min.json +30 -9
  8. package/apis/dms-2016-01-01.min.json +191 -134
  9. package/apis/ec2-2016-11-15.min.json +232 -223
  10. package/apis/ec2-2016-11-15.paginators.json +6 -0
  11. package/apis/eks-2017-11-01.min.json +5 -0
  12. package/apis/fms-2018-01-01.min.json +6 -0
  13. package/apis/frauddetector-2019-11-15.min.json +30 -28
  14. package/apis/glue-2017-03-31.min.json +624 -354
  15. package/apis/glue-2017-03-31.paginators.json +10 -0
  16. package/apis/iot-data-2015-05-28.min.json +82 -0
  17. package/apis/iot-data-2015-05-28.paginators.json +7 -1
  18. package/apis/mediaconvert-2017-08-29.min.json +110 -89
  19. package/apis/ssm-2014-11-06.min.json +13 -3
  20. package/apis/transcribe-2017-10-26.min.json +161 -64
  21. package/clients/apigateway.d.ts +9 -9
  22. package/clients/backup.d.ts +715 -109
  23. package/clients/cloudwatchevents.d.ts +67 -67
  24. package/clients/comprehend.d.ts +96 -0
  25. package/clients/datasync.d.ts +69 -53
  26. package/clients/dlm.d.ts +50 -18
  27. package/clients/dms.d.ts +110 -19
  28. package/clients/ec2.d.ts +60 -42
  29. package/clients/eks.d.ts +6 -2
  30. package/clients/eventbridge.d.ts +3 -3
  31. package/clients/fms.d.ts +9 -1
  32. package/clients/frauddetector.d.ts +10 -9
  33. package/clients/glue.d.ts +392 -0
  34. package/clients/iotdata.d.ts +99 -13
  35. package/clients/iotsitewise.d.ts +3 -3
  36. package/clients/mediaconvert.d.ts +46 -12
  37. package/clients/polly.d.ts +15 -15
  38. package/clients/robomaker.d.ts +3 -3
  39. package/clients/transcribeservice.d.ts +146 -35
  40. package/dist/aws-sdk-core-react-native.js +1 -1
  41. package/dist/aws-sdk-react-native.js +19 -19
  42. package/dist/aws-sdk.js +456 -300
  43. package/dist/aws-sdk.min.js +72 -71
  44. package/lib/core.js +1 -1
  45. package/lib/metadata_service/endpoint.js +6 -0
  46. package/lib/metadata_service/endpoint_config_options.js +14 -0
  47. package/lib/metadata_service/endpoint_mode.js +6 -0
  48. package/lib/metadata_service/endpoint_mode_config_options.js +16 -0
  49. package/lib/metadata_service/get_metadata_service_endpoint.js +24 -0
  50. package/lib/metadata_service.js +13 -3
  51. package/lib/node_loader.js +27 -0
  52. package/package.json +1 -1
@@ -1,5 +1,10 @@
1
1
  {
2
2
  "pagination": {
3
+ "GetBlueprintRuns": {
4
+ "input_token": "NextToken",
5
+ "limit_key": "MaxResults",
6
+ "output_token": "NextToken"
7
+ },
3
8
  "GetClassifiers": {
4
9
  "input_token": "NextToken",
5
10
  "limit_key": "MaxResults",
@@ -97,6 +102,11 @@
97
102
  "limit_key": "MaxResults",
98
103
  "output_token": "NextToken"
99
104
  },
105
+ "ListBlueprints": {
106
+ "input_token": "NextToken",
107
+ "limit_key": "MaxResults",
108
+ "output_token": "NextToken"
109
+ },
100
110
  "ListCrawlers": {
101
111
  "input_token": "NextToken",
102
112
  "limit_key": "MaxResults",
@@ -45,6 +45,39 @@
45
45
  "payload": "payload"
46
46
  }
47
47
  },
48
+ "GetRetainedMessage": {
49
+ "http": {
50
+ "method": "GET",
51
+ "requestUri": "/retainedMessage/{topic}"
52
+ },
53
+ "input": {
54
+ "type": "structure",
55
+ "required": [
56
+ "topic"
57
+ ],
58
+ "members": {
59
+ "topic": {
60
+ "location": "uri",
61
+ "locationName": "topic"
62
+ }
63
+ }
64
+ },
65
+ "output": {
66
+ "type": "structure",
67
+ "members": {
68
+ "topic": {},
69
+ "payload": {
70
+ "type": "blob"
71
+ },
72
+ "qos": {
73
+ "type": "integer"
74
+ },
75
+ "lastModifiedTime": {
76
+ "type": "long"
77
+ }
78
+ }
79
+ }
80
+ },
48
81
  "GetThingShadow": {
49
82
  "http": {
50
83
  "method": "GET",
@@ -116,6 +149,50 @@
116
149
  }
117
150
  }
118
151
  },
152
+ "ListRetainedMessages": {
153
+ "http": {
154
+ "method": "GET",
155
+ "requestUri": "/retainedMessage"
156
+ },
157
+ "input": {
158
+ "type": "structure",
159
+ "members": {
160
+ "nextToken": {
161
+ "location": "querystring",
162
+ "locationName": "nextToken"
163
+ },
164
+ "maxResults": {
165
+ "location": "querystring",
166
+ "locationName": "maxResults",
167
+ "type": "integer"
168
+ }
169
+ }
170
+ },
171
+ "output": {
172
+ "type": "structure",
173
+ "members": {
174
+ "retainedTopics": {
175
+ "type": "list",
176
+ "member": {
177
+ "type": "structure",
178
+ "members": {
179
+ "topic": {},
180
+ "payloadSize": {
181
+ "type": "long"
182
+ },
183
+ "qos": {
184
+ "type": "integer"
185
+ },
186
+ "lastModifiedTime": {
187
+ "type": "long"
188
+ }
189
+ }
190
+ }
191
+ },
192
+ "nextToken": {}
193
+ }
194
+ }
195
+ },
119
196
  "Publish": {
120
197
  "http": {
121
198
  "requestUri": "/topics/{topic}"
@@ -135,6 +212,11 @@
135
212
  "locationName": "qos",
136
213
  "type": "integer"
137
214
  },
215
+ "retain": {
216
+ "location": "querystring",
217
+ "locationName": "retain",
218
+ "type": "boolean"
219
+ },
138
220
  "payload": {
139
221
  "type": "blob"
140
222
  }
@@ -1,4 +1,10 @@
1
1
  {
2
2
  "pagination": {
3
+ "ListRetainedMessages": {
4
+ "input_token": "nextToken",
5
+ "limit_key": "maxResults",
6
+ "output_token": "nextToken",
7
+ "result_key": "retainedTopics"
8
+ }
3
9
  }
4
- }
10
+ }