@itentialopensource/adapter-aws_lambda 0.1.1
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.
- package/.eslintignore +6 -0
- package/.eslintrc.js +19 -0
- package/.gitlab/.gitkeep +0 -0
- package/.gitlab/issue_templates/.gitkeep +0 -0
- package/.gitlab/issue_templates/Default.md +17 -0
- package/.gitlab/issue_templates/bugReportTemplate.md +76 -0
- package/.gitlab/issue_templates/featureRequestTemplate.md +14 -0
- package/.jshintrc +0 -0
- package/AUTH.md +39 -0
- package/BROKER.md +211 -0
- package/CALLS.md +603 -0
- package/CODE_OF_CONDUCT.md +43 -0
- package/CONTRIBUTING.md +13 -0
- package/ENHANCE.md +69 -0
- package/LICENSE +201 -0
- package/PROPERTIES.md +661 -0
- package/README.md +344 -0
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +14 -0
- package/TROUBLESHOOT.md +56 -0
- package/UTILITIES.md +473 -0
- package/adapter.js +8845 -0
- package/adapterBase.js +1488 -0
- package/entities/.generic/action.json +214 -0
- package/entities/.generic/schema.json +28 -0
- package/entities/.system/action.json +50 -0
- package/entities/.system/mockdatafiles/getToken-default.json +3 -0
- package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
- package/entities/.system/schema.json +19 -0
- package/entities/.system/schemaTokenReq.json +53 -0
- package/entities/.system/schemaTokenResp.json +53 -0
- package/entities/AccountSettings/action.json +25 -0
- package/entities/AccountSettings/schema.json +19 -0
- package/entities/CodeSigningConfigs/action.json +127 -0
- package/entities/CodeSigningConfigs/schema.json +57 -0
- package/entities/EventSourceMappings/action.json +106 -0
- package/entities/EventSourceMappings/schema.json +78 -0
- package/entities/Functions/action.json +860 -0
- package/entities/Functions/schema.json +170 -0
- package/entities/Layers/action.json +189 -0
- package/entities/Layers/schema.json +126 -0
- package/entities/Tags/action.json +65 -0
- package/entities/Tags/schema.json +32 -0
- package/error.json +190 -0
- package/metadata.json +58 -0
- package/package.json +77 -0
- package/pronghorn.json +4833 -0
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +1635 -0
- package/report/AWS Lambda-swagger.fixed.json +15883 -0
- package/report/adapterInfo.json +10 -0
- package/report/creationReport.json +615 -0
- package/sampleProperties.json +274 -0
- package/test/integration/adapterTestBasicGet.js +117 -0
- package/test/integration/adapterTestConnectivity.js +117 -0
- package/test/integration/adapterTestIntegration.js +2103 -0
- package/test/unit/adapterBaseTestUnit.js +1626 -0
- package/test/unit/adapterTestUnit.js +3942 -0
- package/utils/adapterInfo.js +156 -0
- package/utils/argParser.js +44 -0
- package/utils/checkMigrate.js +102 -0
- package/utils/entitiesToDB.js +190 -0
- package/utils/findPath.js +74 -0
- package/utils/logger.js +26 -0
- package/utils/methodDocumentor.js +273 -0
- package/utils/modify.js +153 -0
- package/utils/mongoDbConnection.js +79 -0
- package/utils/mongoUtils.js +162 -0
- package/utils/pre-commit.sh +32 -0
- package/utils/removeHooks.js +20 -0
- package/utils/setup.js +33 -0
- package/utils/taskMover.js +308 -0
- package/utils/tbScript.js +103 -0
- package/utils/tbUtils.js +347 -0
- package/utils/testRunner.js +298 -0
- package/utils/troubleshootingAdapter.js +177 -0
- package/utils/updateAdapterConfig.js +158 -0
package/CALLS.md
ADDED
|
@@ -0,0 +1,603 @@
|
|
|
1
|
+
## Using this Adapter
|
|
2
|
+
|
|
3
|
+
The `adapter.js` file contains the calls the adapter makes available to the rest of the Itential Platform. The API detailed for these calls should be available through JSDOC. The following is a brief summary of the calls.
|
|
4
|
+
|
|
5
|
+
### Generic Adapter Calls
|
|
6
|
+
|
|
7
|
+
These are adapter methods that Itential Platform or you might use. There are some other methods not shown here that might be used for internal adapter functionality.
|
|
8
|
+
|
|
9
|
+
<table border="1" class="bordered-table">
|
|
10
|
+
<tr>
|
|
11
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
12
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
13
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
14
|
+
</tr>
|
|
15
|
+
<tr>
|
|
16
|
+
<td style="padding:15px">connect()</td>
|
|
17
|
+
<td style="padding:15px">This call is run when the Adapter is first loaded by the Itential Platform. It validates the properties have been provided correctly.</td>
|
|
18
|
+
<td style="padding:15px">No</td>
|
|
19
|
+
</tr>
|
|
20
|
+
<tr>
|
|
21
|
+
<td style="padding:15px">healthCheck(callback)</td>
|
|
22
|
+
<td style="padding:15px">This call ensures that the adapter can communicate with Aws_lambda. The actual call that is used is defined in the adapter properties and .system entities action.json file.</td>
|
|
23
|
+
<td style="padding:15px">No</td>
|
|
24
|
+
</tr>
|
|
25
|
+
<tr>
|
|
26
|
+
<td style="padding:15px">refreshProperties(properties)</td>
|
|
27
|
+
<td style="padding:15px">This call provides the adapter the ability to accept property changes without having to restart the adapter.</td>
|
|
28
|
+
<td style="padding:15px">No</td>
|
|
29
|
+
</tr>
|
|
30
|
+
<tr>
|
|
31
|
+
<td style="padding:15px">encryptProperty(property, technique, callback)</td>
|
|
32
|
+
<td style="padding:15px">This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with Aws_lambda.</td>
|
|
33
|
+
<td style="padding:15px">No</td>
|
|
34
|
+
</tr>
|
|
35
|
+
<tr>
|
|
36
|
+
<td style="padding:15px">iapUpdateAdapterConfiguration(configFile, changes, entity, type, action, callback)</td>
|
|
37
|
+
<td style="padding:15px">This call provides the ability to update the adapter configuration from Itential Platform - includes actions, schema, mockdata and other configurations.</td>
|
|
38
|
+
<td style="padding:15px">Yes</td>
|
|
39
|
+
</tr>
|
|
40
|
+
<tr>
|
|
41
|
+
<td style="padding:15px">iapSuspendAdapter(mode, callback)</td>
|
|
42
|
+
<td style="padding:15px">This call provides the ability to suspend the adapter and either have requests rejected or put into a queue to be processed after the adapter is resumed.</td>
|
|
43
|
+
<td style="padding:15px">Yes</td>
|
|
44
|
+
</tr>
|
|
45
|
+
<tr>
|
|
46
|
+
<td style="padding:15px">iapUnsuspendAdapter(callback)</td>
|
|
47
|
+
<td style="padding:15px">This call provides the ability to resume a suspended adapter. Any requests in queue will be processed before new requests.</td>
|
|
48
|
+
<td style="padding:15px">Yes</td>
|
|
49
|
+
</tr>
|
|
50
|
+
<tr>
|
|
51
|
+
<td style="padding:15px">iapGetAdapterQueue(callback)</td>
|
|
52
|
+
<td style="padding:15px">This call will return the requests that are waiting in the queue if throttling is enabled.</td>
|
|
53
|
+
<td style="padding:15px">Yes</td>
|
|
54
|
+
</tr>
|
|
55
|
+
<tr>
|
|
56
|
+
<td style="padding:15px">iapFindAdapterPath(apiPath, callback)</td>
|
|
57
|
+
<td style="padding:15px">This call provides the ability to see if a particular API path is supported by the adapter.</td>
|
|
58
|
+
<td style="padding:15px">Yes</td>
|
|
59
|
+
</tr>
|
|
60
|
+
<tr>
|
|
61
|
+
<td style="padding:15px">iapTroubleshootAdapter(props, adapter, callback)</td>
|
|
62
|
+
<td style="padding:15px">This call can be used to check on the performance of the adapter - it checks connectivity, healthcheck and basic get calls.</td>
|
|
63
|
+
<td style="padding:15px">Yes</td>
|
|
64
|
+
</tr>
|
|
65
|
+
<tr>
|
|
66
|
+
<td style="padding:15px">iapRunAdapterHealthcheck(adapter, callback)</td>
|
|
67
|
+
<td style="padding:15px">This call will return the results of a healthcheck.</td>
|
|
68
|
+
<td style="padding:15px">Yes</td>
|
|
69
|
+
</tr>
|
|
70
|
+
<tr>
|
|
71
|
+
<td style="padding:15px">iapRunAdapterConnectivity(callback)</td>
|
|
72
|
+
<td style="padding:15px">This call will return the results of a connectivity check.</td>
|
|
73
|
+
<td style="padding:15px">Yes</td>
|
|
74
|
+
</tr>
|
|
75
|
+
<tr>
|
|
76
|
+
<td style="padding:15px">iapRunAdapterBasicGet(maxCalls, callback)</td>
|
|
77
|
+
<td style="padding:15px">This call will return the results of running basic get API calls. By default 5 get calls without parameters will be run. You can ask for more or less by setting maxCalls.</td>
|
|
78
|
+
<td style="padding:15px">Yes</td>
|
|
79
|
+
</tr>
|
|
80
|
+
<tr>
|
|
81
|
+
<td style="padding:15px">iapMoveAdapterEntitiesToDB(callback)</td>
|
|
82
|
+
<td style="padding:15px">This call will push the adapter configuration from the entities directory into the Adapter or Itential Platform Database.</td>
|
|
83
|
+
<td style="padding:15px">Yes</td>
|
|
84
|
+
</tr>
|
|
85
|
+
<tr>
|
|
86
|
+
<td style="padding:15px">iapDeactivateTasks(tasks, callback)</td>
|
|
87
|
+
<td style="padding:15px">This call provides the ability to remove tasks from the adapter.</td>
|
|
88
|
+
<td style="padding:15px">Yes</td>
|
|
89
|
+
</tr>
|
|
90
|
+
<tr>
|
|
91
|
+
<td style="padding:15px">iapActivateTasks(tasks, callback)</td>
|
|
92
|
+
<td style="padding:15px">This call provides the ability to add deactivated tasks back into the adapter.</td>
|
|
93
|
+
<td style="padding:15px">Yes</td>
|
|
94
|
+
</tr>
|
|
95
|
+
<tr>
|
|
96
|
+
<td style="padding:15px">iapExpandedGenericAdapterRequest(metadata, uriPath, restMethod, pathVars, queryData, requestBody, addlHeaders, callback)</td>
|
|
97
|
+
<td style="padding:15px">This is an expanded Generic Call. The metadata object allows us to provide many new capabilities within the generic request.</td>
|
|
98
|
+
<td style="padding:15px">Yes</td>
|
|
99
|
+
</tr>
|
|
100
|
+
<tr>
|
|
101
|
+
<td style="padding:15px">genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
|
|
102
|
+
<td style="padding:15px">This call allows you to provide the path to have the adapter call. It is an easy way to incorporate paths that have not been built into the adapter yet.</td>
|
|
103
|
+
<td style="padding:15px">Yes</td>
|
|
104
|
+
</tr>
|
|
105
|
+
<tr>
|
|
106
|
+
<td style="padding:15px">genericAdapterRequestNoBasePath(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
|
|
107
|
+
<td style="padding:15px">This call is the same as the genericAdapterRequest only it does not add a base_path or version to the call.</td>
|
|
108
|
+
<td style="padding:15px">Yes</td>
|
|
109
|
+
</tr>
|
|
110
|
+
<tr>
|
|
111
|
+
<td style="padding:15px">iapRunAdapterLint(callback)</td>
|
|
112
|
+
<td style="padding:15px">Runs lint on the adapter and provides the information back.</td>
|
|
113
|
+
<td style="padding:15px">Yes</td>
|
|
114
|
+
</tr>
|
|
115
|
+
<tr>
|
|
116
|
+
<td style="padding:15px">iapRunAdapterTests(callback)</td>
|
|
117
|
+
<td style="padding:15px">Runs baseunit and unit tests on the adapter and provides the information back.</td>
|
|
118
|
+
<td style="padding:15px">Yes</td>
|
|
119
|
+
</tr>
|
|
120
|
+
<tr>
|
|
121
|
+
<td style="padding:15px">iapGetAdapterInventory(callback)</td>
|
|
122
|
+
<td style="padding:15px">This call provides some inventory related information about the adapter.</td>
|
|
123
|
+
<td style="padding:15px">Yes</td>
|
|
124
|
+
</tr>
|
|
125
|
+
</table>
|
|
126
|
+
<br>
|
|
127
|
+
|
|
128
|
+
### Adapter Cache Calls
|
|
129
|
+
|
|
130
|
+
These are adapter methods that are used for adapter caching. If configured, the adapter will cache based on the interval provided. However, you can force a population of the cache manually as well.
|
|
131
|
+
|
|
132
|
+
<table border="1" class="bordered-table">
|
|
133
|
+
<tr>
|
|
134
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
135
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
136
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
137
|
+
</tr>
|
|
138
|
+
<tr>
|
|
139
|
+
<td style="padding:15px">iapPopulateEntityCache(entityTypes, callback)</td>
|
|
140
|
+
<td style="padding:15px">This call populates the adapter cache.</td>
|
|
141
|
+
<td style="padding:15px">Yes</td>
|
|
142
|
+
</tr>
|
|
143
|
+
<tr>
|
|
144
|
+
<td style="padding:15px">iapRetrieveEntitiesCache(entityType, options, callback)</td>
|
|
145
|
+
<td style="padding:15px">This call retrieves the specific items from the adapter cache.</td>
|
|
146
|
+
<td style="padding:15px">Yes</td>
|
|
147
|
+
</tr>
|
|
148
|
+
</table>
|
|
149
|
+
<br>
|
|
150
|
+
|
|
151
|
+
### Adapter Broker Calls
|
|
152
|
+
|
|
153
|
+
These are adapter methods that are used to integrate to Itential Platform Brokers. This adapter currently supports the following broker calls.
|
|
154
|
+
|
|
155
|
+
<table border="1" class="bordered-table">
|
|
156
|
+
<tr>
|
|
157
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
158
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
159
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
160
|
+
</tr>
|
|
161
|
+
<tr>
|
|
162
|
+
<td style="padding:15px">hasEntities(entityType, entityList, callback)</td>
|
|
163
|
+
<td style="padding:15px">This call is utilized by the Itential Platform Device Broker to determine if the adapter has a specific entity and item of the entity.</td>
|
|
164
|
+
<td style="padding:15px">No</td>
|
|
165
|
+
</tr>
|
|
166
|
+
<tr>
|
|
167
|
+
<td style="padding:15px">getDevice(deviceName, callback)</td>
|
|
168
|
+
<td style="padding:15px">This call returns the details of the requested device.</td>
|
|
169
|
+
<td style="padding:15px">No</td>
|
|
170
|
+
</tr>
|
|
171
|
+
<tr>
|
|
172
|
+
<td style="padding:15px">getDevicesFiltered(options, callback)</td>
|
|
173
|
+
<td style="padding:15px">This call returns the list of devices that match the criteria provided in the options filter.</td>
|
|
174
|
+
<td style="padding:15px">No</td>
|
|
175
|
+
</tr>
|
|
176
|
+
<tr>
|
|
177
|
+
<td style="padding:15px">isAlive(deviceName, callback)</td>
|
|
178
|
+
<td style="padding:15px">This call returns whether the device status is active</td>
|
|
179
|
+
<td style="padding:15px">No</td>
|
|
180
|
+
</tr>
|
|
181
|
+
<tr>
|
|
182
|
+
<td style="padding:15px">getConfig(deviceName, format, callback)</td>
|
|
183
|
+
<td style="padding:15px">This call returns the configuration for the selected device.</td>
|
|
184
|
+
<td style="padding:15px">No</td>
|
|
185
|
+
</tr>
|
|
186
|
+
<tr>
|
|
187
|
+
<td style="padding:15px">iapGetDeviceCount(callback)</td>
|
|
188
|
+
<td style="padding:15px">This call returns the count of devices.</td>
|
|
189
|
+
<td style="padding:15px">No</td>
|
|
190
|
+
</tr>
|
|
191
|
+
</table>
|
|
192
|
+
<br>
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
### Specific Adapter Calls
|
|
196
|
+
|
|
197
|
+
Specific adapter calls are built based on the API of the Aws_lambda. The Adapter Builder creates the proper method comments for generating JS-DOC for the adapter. This is the best way to get information on the calls.
|
|
198
|
+
|
|
199
|
+
<table border="1" class="bordered-table">
|
|
200
|
+
<tr>
|
|
201
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
202
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
203
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Path</span></th>
|
|
204
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
205
|
+
</tr>
|
|
206
|
+
<tr>
|
|
207
|
+
<td style="padding:15px">addLayerVersionPermission(layerName, versionNumber, revisionId, body, iapMetadata, callback)</td>
|
|
208
|
+
<td style="padding:15px">Adds permissions to the resource-based policy of a version of an Lambda layer . Use this action to</td>
|
|
209
|
+
<td style="padding:15px">{base_path}/{version}/2018-10-31/layers/{pathv1}/versions/{pathv2}/policy?{query}</td>
|
|
210
|
+
<td style="padding:15px">Yes</td>
|
|
211
|
+
</tr>
|
|
212
|
+
<tr>
|
|
213
|
+
<td style="padding:15px">getLayerVersionPolicy(layerName, versionNumber, iapMetadata, callback)</td>
|
|
214
|
+
<td style="padding:15px">Returns the permission policy for a version of an Lambda layer . For more information, see AddLay</td>
|
|
215
|
+
<td style="padding:15px">{base_path}/{version}/2018-10-31/layers/{pathv1}/versions/{pathv2}/policy?{query}</td>
|
|
216
|
+
<td style="padding:15px">Yes</td>
|
|
217
|
+
</tr>
|
|
218
|
+
<tr>
|
|
219
|
+
<td style="padding:15px">deleteLayerVersion(layerName, versionNumber, iapMetadata, callback)</td>
|
|
220
|
+
<td style="padding:15px">Deletes a version of an Lambda layer . Deleted versions can no longer be viewed or added to functi</td>
|
|
221
|
+
<td style="padding:15px">{base_path}/{version}/2018-10-31/layers/{pathv1}/versions/{pathv2}?{query}</td>
|
|
222
|
+
<td style="padding:15px">Yes</td>
|
|
223
|
+
</tr>
|
|
224
|
+
<tr>
|
|
225
|
+
<td style="padding:15px">getLayerVersion(layerName, versionNumber, iapMetadata, callback)</td>
|
|
226
|
+
<td style="padding:15px">Returns information about a version of an Lambda layer , with a link to download the layer archive</td>
|
|
227
|
+
<td style="padding:15px">{base_path}/{version}/2018-10-31/layers/{pathv1}/versions/{pathv2}?{query}</td>
|
|
228
|
+
<td style="padding:15px">Yes</td>
|
|
229
|
+
</tr>
|
|
230
|
+
<tr>
|
|
231
|
+
<td style="padding:15px">getLayerVersionByArn(arn, find = 'LayerVersion', iapMetadata, callback)</td>
|
|
232
|
+
<td style="padding:15px">Returns information about a version of an Lambda layer , with a link to download the layer archive</td>
|
|
233
|
+
<td style="padding:15px">{base_path}/{version}/2018-10-31/layers?{query}</td>
|
|
234
|
+
<td style="padding:15px">Yes</td>
|
|
235
|
+
</tr>
|
|
236
|
+
<tr>
|
|
237
|
+
<td style="padding:15px">listLayerVersions(compatibleRuntime = 'nodejs', layerName, marker, maxItems, compatibleArchitecture = 'x86_64', iapMetadata, callback)</td>
|
|
238
|
+
<td style="padding:15px">Lists the versions of an Lambda layer . Versions that have been deleted aren't listed. Specify a</td>
|
|
239
|
+
<td style="padding:15px">{base_path}/{version}/2018-10-31/layers/{pathv1}/versions?{query}</td>
|
|
240
|
+
<td style="padding:15px">Yes</td>
|
|
241
|
+
</tr>
|
|
242
|
+
<tr>
|
|
243
|
+
<td style="padding:15px">publishLayerVersion(layerName, body, iapMetadata, callback)</td>
|
|
244
|
+
<td style="padding:15px">Creates an Lambda layer from a ZIP archive. Each time you call PublishLayerVersion with the sam</td>
|
|
245
|
+
<td style="padding:15px">{base_path}/{version}/2018-10-31/layers/{pathv1}/versions?{query}</td>
|
|
246
|
+
<td style="padding:15px">Yes</td>
|
|
247
|
+
</tr>
|
|
248
|
+
<tr>
|
|
249
|
+
<td style="padding:15px">listLayers(compatibleRuntime = 'nodejs', marker, maxItems, compatibleArchitecture = 'x86_64', iapMetadata, callback)</td>
|
|
250
|
+
<td style="padding:15px">Lists Lambda layers and shows information about the latest version of each. Specify a runtime id</td>
|
|
251
|
+
<td style="padding:15px">{base_path}/{version}/2018-10-31/layers?{query}</td>
|
|
252
|
+
<td style="padding:15px">Yes</td>
|
|
253
|
+
</tr>
|
|
254
|
+
<tr>
|
|
255
|
+
<td style="padding:15px">removeLayerVersionPermission(layerName, versionNumber, statementId, revisionId, iapMetadata, callback)</td>
|
|
256
|
+
<td style="padding:15px">Removes a statement from the permissions policy for a version of an Lambda layer . For more inform</td>
|
|
257
|
+
<td style="padding:15px">{base_path}/{version}/2018-10-31/layers/{pathv1}/versions/{pathv2}/policy/{pathv3}?{query}</td>
|
|
258
|
+
<td style="padding:15px">Yes</td>
|
|
259
|
+
</tr>
|
|
260
|
+
<tr>
|
|
261
|
+
<td style="padding:15px">addPermission(functionName, qualifier, body, iapMetadata, callback)</td>
|
|
262
|
+
<td style="padding:15px">Grants an Amazon Web Service, Amazon Web Services account, or Amazon Web Services organization perm</td>
|
|
263
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/functions/{pathv1}/policy?{query}</td>
|
|
264
|
+
<td style="padding:15px">Yes</td>
|
|
265
|
+
</tr>
|
|
266
|
+
<tr>
|
|
267
|
+
<td style="padding:15px">getPolicy(functionName, qualifier, iapMetadata, callback)</td>
|
|
268
|
+
<td style="padding:15px">Returns the resource-based IAM policy for a function, version, or alias.</td>
|
|
269
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/functions/{pathv1}/policy?{query}</td>
|
|
270
|
+
<td style="padding:15px">Yes</td>
|
|
271
|
+
</tr>
|
|
272
|
+
<tr>
|
|
273
|
+
<td style="padding:15px">createAlias(functionName, body, iapMetadata, callback)</td>
|
|
274
|
+
<td style="padding:15px">Creates an alias for a Lambda function version. Use aliases to provide clients with a function id</td>
|
|
275
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/functions/{pathv1}/aliases?{query}</td>
|
|
276
|
+
<td style="padding:15px">Yes</td>
|
|
277
|
+
</tr>
|
|
278
|
+
<tr>
|
|
279
|
+
<td style="padding:15px">listAliases(functionName, functionVersion, marker, maxItems, iapMetadata, callback)</td>
|
|
280
|
+
<td style="padding:15px">Returns a list of aliases for a Lambda function.</td>
|
|
281
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/functions/{pathv1}/aliases?{query}</td>
|
|
282
|
+
<td style="padding:15px">Yes</td>
|
|
283
|
+
</tr>
|
|
284
|
+
<tr>
|
|
285
|
+
<td style="padding:15px">createFunction(body, iapMetadata, callback)</td>
|
|
286
|
+
<td style="padding:15px">Creates a Lambda function. To create a function, you need a deployment package and an execution</td>
|
|
287
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/functions?{query}</td>
|
|
288
|
+
<td style="padding:15px">Yes</td>
|
|
289
|
+
</tr>
|
|
290
|
+
<tr>
|
|
291
|
+
<td style="padding:15px">createFunctionUrlConfig(functionName, qualifier, body, iapMetadata, callback)</td>
|
|
292
|
+
<td style="padding:15px">Creates a Lambda function URL with the specified configuration parameters. A function URL is a dedi</td>
|
|
293
|
+
<td style="padding:15px">{base_path}/{version}/2021-10-31/functions/{pathv1}/url?{query}</td>
|
|
294
|
+
<td style="padding:15px">Yes</td>
|
|
295
|
+
</tr>
|
|
296
|
+
<tr>
|
|
297
|
+
<td style="padding:15px">deleteFunctionUrlConfig(functionName, qualifier, iapMetadata, callback)</td>
|
|
298
|
+
<td style="padding:15px">Deletes a Lambda function URL. When you delete a function URL, you can't recover it. Creating a new</td>
|
|
299
|
+
<td style="padding:15px">{base_path}/{version}/2021-10-31/functions/{pathv1}/url?{query}</td>
|
|
300
|
+
<td style="padding:15px">Yes</td>
|
|
301
|
+
</tr>
|
|
302
|
+
<tr>
|
|
303
|
+
<td style="padding:15px">getFunctionUrlConfig(functionName, qualifier, iapMetadata, callback)</td>
|
|
304
|
+
<td style="padding:15px">Returns details about a Lambda function URL.</td>
|
|
305
|
+
<td style="padding:15px">{base_path}/{version}/2021-10-31/functions/{pathv1}/url?{query}</td>
|
|
306
|
+
<td style="padding:15px">Yes</td>
|
|
307
|
+
</tr>
|
|
308
|
+
<tr>
|
|
309
|
+
<td style="padding:15px">updateFunctionUrlConfig(functionName, qualifier, body, iapMetadata, callback)</td>
|
|
310
|
+
<td style="padding:15px">Updates the configuration for a Lambda function URL.</td>
|
|
311
|
+
<td style="padding:15px">{base_path}/{version}/2021-10-31/functions/{pathv1}/url?{query}</td>
|
|
312
|
+
<td style="padding:15px">Yes</td>
|
|
313
|
+
</tr>
|
|
314
|
+
<tr>
|
|
315
|
+
<td style="padding:15px">deleteAlias(functionName, name, iapMetadata, callback)</td>
|
|
316
|
+
<td style="padding:15px">Deletes a Lambda function alias .</td>
|
|
317
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/functions/{pathv1}/aliases/{pathv2}?{query}</td>
|
|
318
|
+
<td style="padding:15px">Yes</td>
|
|
319
|
+
</tr>
|
|
320
|
+
<tr>
|
|
321
|
+
<td style="padding:15px">getAlias(functionName, name, iapMetadata, callback)</td>
|
|
322
|
+
<td style="padding:15px">Returns details about a Lambda function alias .</td>
|
|
323
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/functions/{pathv1}/aliases/{pathv2}?{query}</td>
|
|
324
|
+
<td style="padding:15px">Yes</td>
|
|
325
|
+
</tr>
|
|
326
|
+
<tr>
|
|
327
|
+
<td style="padding:15px">updateAlias(functionName, name, body, iapMetadata, callback)</td>
|
|
328
|
+
<td style="padding:15px">Updates the configuration of a Lambda function alias .</td>
|
|
329
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/functions/{pathv1}/aliases/{pathv2}?{query}</td>
|
|
330
|
+
<td style="padding:15px">Yes</td>
|
|
331
|
+
</tr>
|
|
332
|
+
<tr>
|
|
333
|
+
<td style="padding:15px">deleteFunction(functionName, qualifier, iapMetadata, callback)</td>
|
|
334
|
+
<td style="padding:15px">Deletes a Lambda function. To delete a specific function version, use the Qualifier parameter. Ot</td>
|
|
335
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/functions/{pathv1}?{query}</td>
|
|
336
|
+
<td style="padding:15px">Yes</td>
|
|
337
|
+
</tr>
|
|
338
|
+
<tr>
|
|
339
|
+
<td style="padding:15px">getFunction(functionName, qualifier, iapMetadata, callback)</td>
|
|
340
|
+
<td style="padding:15px">Returns information about the function or function version, with a link to download the deployment</td>
|
|
341
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/functions/{pathv1}?{query}</td>
|
|
342
|
+
<td style="padding:15px">Yes</td>
|
|
343
|
+
</tr>
|
|
344
|
+
<tr>
|
|
345
|
+
<td style="padding:15px">deleteFunctionCodeSigningConfig(functionName, iapMetadata, callback)</td>
|
|
346
|
+
<td style="padding:15px">Removes the code signing configuration from the function.</td>
|
|
347
|
+
<td style="padding:15px">{base_path}/{version}/2020-06-30/functions/{pathv1}/code-signing-config?{query}</td>
|
|
348
|
+
<td style="padding:15px">Yes</td>
|
|
349
|
+
</tr>
|
|
350
|
+
<tr>
|
|
351
|
+
<td style="padding:15px">getFunctionCodeSigningConfig(functionName, iapMetadata, callback)</td>
|
|
352
|
+
<td style="padding:15px">Returns the code signing configuration for the specified function.</td>
|
|
353
|
+
<td style="padding:15px">{base_path}/{version}/2020-06-30/functions/{pathv1}/code-signing-config?{query}</td>
|
|
354
|
+
<td style="padding:15px">Yes</td>
|
|
355
|
+
</tr>
|
|
356
|
+
<tr>
|
|
357
|
+
<td style="padding:15px">putFunctionCodeSigningConfig(functionName, body, iapMetadata, callback)</td>
|
|
358
|
+
<td style="padding:15px">Update the code signing configuration for the function. Changes to the code signing configuration t</td>
|
|
359
|
+
<td style="padding:15px">{base_path}/{version}/2020-06-30/functions/{pathv1}/code-signing-config?{query}</td>
|
|
360
|
+
<td style="padding:15px">Yes</td>
|
|
361
|
+
</tr>
|
|
362
|
+
<tr>
|
|
363
|
+
<td style="padding:15px">deleteFunctionConcurrency(functionName, iapMetadata, callback)</td>
|
|
364
|
+
<td style="padding:15px">Removes a concurrent execution limit from a function.</td>
|
|
365
|
+
<td style="padding:15px">{base_path}/{version}/2017-10-31/functions/{pathv1}/concurrency?{query}</td>
|
|
366
|
+
<td style="padding:15px">Yes</td>
|
|
367
|
+
</tr>
|
|
368
|
+
<tr>
|
|
369
|
+
<td style="padding:15px">putFunctionConcurrency(functionName, body, iapMetadata, callback)</td>
|
|
370
|
+
<td style="padding:15px">Sets the maximum number of simultaneous executions for a function, and reserves capacity for that c</td>
|
|
371
|
+
<td style="padding:15px">{base_path}/{version}/2017-10-31/functions/{pathv1}/concurrency?{query}</td>
|
|
372
|
+
<td style="padding:15px">Yes</td>
|
|
373
|
+
</tr>
|
|
374
|
+
<tr>
|
|
375
|
+
<td style="padding:15px">deleteFunctionEventInvokeConfig(functionName, qualifier, iapMetadata, callback)</td>
|
|
376
|
+
<td style="padding:15px">Deletes the configuration for asynchronous invocation for a function, version, or alias. To confi</td>
|
|
377
|
+
<td style="padding:15px">{base_path}/{version}/2019-09-25/functions/{pathv1}/event-invoke-config?{query}</td>
|
|
378
|
+
<td style="padding:15px">Yes</td>
|
|
379
|
+
</tr>
|
|
380
|
+
<tr>
|
|
381
|
+
<td style="padding:15px">getFunctionEventInvokeConfig(functionName, qualifier, iapMetadata, callback)</td>
|
|
382
|
+
<td style="padding:15px">Retrieves the configuration for asynchronous invocation for a function, version, or alias. To con</td>
|
|
383
|
+
<td style="padding:15px">{base_path}/{version}/2019-09-25/functions/{pathv1}/event-invoke-config?{query}</td>
|
|
384
|
+
<td style="padding:15px">Yes</td>
|
|
385
|
+
</tr>
|
|
386
|
+
<tr>
|
|
387
|
+
<td style="padding:15px">putFunctionEventInvokeConfig(functionName, qualifier, body, iapMetadata, callback)</td>
|
|
388
|
+
<td style="padding:15px">Configures options for asynchronous invocation on a function, version, or alias. If a configurati</td>
|
|
389
|
+
<td style="padding:15px">{base_path}/{version}/2019-09-25/functions/{pathv1}/event-invoke-config?{query}</td>
|
|
390
|
+
<td style="padding:15px">Yes</td>
|
|
391
|
+
</tr>
|
|
392
|
+
<tr>
|
|
393
|
+
<td style="padding:15px">updateFunctionEventInvokeConfig(functionName, qualifier, body, iapMetadata, callback)</td>
|
|
394
|
+
<td style="padding:15px">Updates the configuration for asynchronous invocation for a function, version, or alias. To confi</td>
|
|
395
|
+
<td style="padding:15px">{base_path}/{version}/2019-09-25/functions/{pathv1}/event-invoke-config?{query}</td>
|
|
396
|
+
<td style="padding:15px">Yes</td>
|
|
397
|
+
</tr>
|
|
398
|
+
<tr>
|
|
399
|
+
<td style="padding:15px">deleteProvisionedConcurrencyConfig(functionName, qualifier, iapMetadata, callback)</td>
|
|
400
|
+
<td style="padding:15px">Deletes the provisioned concurrency configuration for a function.</td>
|
|
401
|
+
<td style="padding:15px">{base_path}/{version}/2019-09-30/functions/{pathv1}/provisioned-concurrency?{query}</td>
|
|
402
|
+
<td style="padding:15px">Yes</td>
|
|
403
|
+
</tr>
|
|
404
|
+
<tr>
|
|
405
|
+
<td style="padding:15px">getProvisionedConcurrencyConfig(functionName, qualifier, iapMetadata, callback)</td>
|
|
406
|
+
<td style="padding:15px">Retrieves the provisioned concurrency configuration for a function's alias or version.</td>
|
|
407
|
+
<td style="padding:15px">{base_path}/{version}/2019-09-30/functions/{pathv1}/provisioned-concurrency?{query}</td>
|
|
408
|
+
<td style="padding:15px">Yes</td>
|
|
409
|
+
</tr>
|
|
410
|
+
<tr>
|
|
411
|
+
<td style="padding:15px">putProvisionedConcurrencyConfig(functionName, qualifier, body, iapMetadata, callback)</td>
|
|
412
|
+
<td style="padding:15px">Adds a provisioned concurrency configuration to a function's alias or version.</td>
|
|
413
|
+
<td style="padding:15px">{base_path}/{version}/2019-09-30/functions/{pathv1}/provisioned-concurrency?{query}</td>
|
|
414
|
+
<td style="padding:15px">Yes</td>
|
|
415
|
+
</tr>
|
|
416
|
+
<tr>
|
|
417
|
+
<td style="padding:15px">getFunctionConcurrency(functionName, iapMetadata, callback)</td>
|
|
418
|
+
<td style="padding:15px">Returns details about the reserved concurrency configuration for a function. To set a concurrency l</td>
|
|
419
|
+
<td style="padding:15px">{base_path}/{version}/2019-09-30/functions/{pathv1}/concurrency?{query}</td>
|
|
420
|
+
<td style="padding:15px">Yes</td>
|
|
421
|
+
</tr>
|
|
422
|
+
<tr>
|
|
423
|
+
<td style="padding:15px">getFunctionConfiguration(functionName, qualifier, iapMetadata, callback)</td>
|
|
424
|
+
<td style="padding:15px">Returns the version-specific settings of a Lambda function or version. The output includes only opt</td>
|
|
425
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/functions/{pathv1}/configuration?{query}</td>
|
|
426
|
+
<td style="padding:15px">Yes</td>
|
|
427
|
+
</tr>
|
|
428
|
+
<tr>
|
|
429
|
+
<td style="padding:15px">updateFunctionConfiguration(functionName, body, iapMetadata, callback)</td>
|
|
430
|
+
<td style="padding:15px">Modify the version-specific settings of a Lambda function. When you update a function, Lambda pro</td>
|
|
431
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/functions/{pathv1}/configuration?{query}</td>
|
|
432
|
+
<td style="padding:15px">Yes</td>
|
|
433
|
+
</tr>
|
|
434
|
+
<tr>
|
|
435
|
+
<td style="padding:15px">getRuntimeManagementConfig(functionName, qualifier, iapMetadata, callback)</td>
|
|
436
|
+
<td style="padding:15px">Retrieves the runtime management configuration for a function's version. If the runtime update mode</td>
|
|
437
|
+
<td style="padding:15px">{base_path}/{version}/2021-07-20/functions/{pathv1}/runtime-management-config?{query}</td>
|
|
438
|
+
<td style="padding:15px">Yes</td>
|
|
439
|
+
</tr>
|
|
440
|
+
<tr>
|
|
441
|
+
<td style="padding:15px">putRuntimeManagementConfig(functionName, qualifier, body, iapMetadata, callback)</td>
|
|
442
|
+
<td style="padding:15px">Sets the runtime management configuration for a function's version. For more information, see Runt</td>
|
|
443
|
+
<td style="padding:15px">{base_path}/{version}/2021-07-20/functions/{pathv1}/runtime-management-config?{query}</td>
|
|
444
|
+
<td style="padding:15px">Yes</td>
|
|
445
|
+
</tr>
|
|
446
|
+
<tr>
|
|
447
|
+
<td style="padding:15px">invoke(functionName, qualifier, body, iapMetadata, callback)</td>
|
|
448
|
+
<td style="padding:15px">Invokes a Lambda function. You can invoke a function synchronously (and wait for the response), or</td>
|
|
449
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/functions/{pathv1}/invocations?{query}</td>
|
|
450
|
+
<td style="padding:15px">Yes</td>
|
|
451
|
+
</tr>
|
|
452
|
+
<tr>
|
|
453
|
+
<td style="padding:15px">invokeAsync(functionName, body, iapMetadata, callback)</td>
|
|
454
|
+
<td style="padding:15px">For asynchronous function invocation, use Invoke . Invokes a function asynchronously.</td>
|
|
455
|
+
<td style="padding:15px">{base_path}/{version}/2014-11-13/functions/{pathv1}/invoke-async/?{query}</td>
|
|
456
|
+
<td style="padding:15px">Yes</td>
|
|
457
|
+
</tr>
|
|
458
|
+
<tr>
|
|
459
|
+
<td style="padding:15px">invokeWithResponseStream(functionName, qualifier, body, iapMetadata, callback)</td>
|
|
460
|
+
<td style="padding:15px">Configure your Lambda functions to stream response payloads back to clients. For more information,</td>
|
|
461
|
+
<td style="padding:15px">{base_path}/{version}/2021-11-15/functions/{pathv1}/response-streaming-invocations?{query}</td>
|
|
462
|
+
<td style="padding:15px">Yes</td>
|
|
463
|
+
</tr>
|
|
464
|
+
<tr>
|
|
465
|
+
<td style="padding:15px">listFunctionEventInvokeConfigs(functionName, marker, maxItems, iapMetadata, callback)</td>
|
|
466
|
+
<td style="padding:15px">Retrieves a list of configurations for asynchronous invocation for a function. To configure optio</td>
|
|
467
|
+
<td style="padding:15px">{base_path}/{version}/2019-09-25/functions/{pathv1}/event-invoke-config/list?{query}</td>
|
|
468
|
+
<td style="padding:15px">Yes</td>
|
|
469
|
+
</tr>
|
|
470
|
+
<tr>
|
|
471
|
+
<td style="padding:15px">listFunctionUrlConfigs(functionName, marker, maxItems, iapMetadata, callback)</td>
|
|
472
|
+
<td style="padding:15px">Returns a list of Lambda function URLs for the specified function.</td>
|
|
473
|
+
<td style="padding:15px">{base_path}/{version}/2021-10-31/functions/{pathv1}/urls?{query}</td>
|
|
474
|
+
<td style="padding:15px">Yes</td>
|
|
475
|
+
</tr>
|
|
476
|
+
<tr>
|
|
477
|
+
<td style="padding:15px">listFunctions(masterRegion, functionVersion = 'ALL', marker, maxItems, iapMetadata, callback)</td>
|
|
478
|
+
<td style="padding:15px">Returns a list of Lambda functions, with the version-specific configuration of each. Lambda returns</td>
|
|
479
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/functions/?{query}</td>
|
|
480
|
+
<td style="padding:15px">Yes</td>
|
|
481
|
+
</tr>
|
|
482
|
+
<tr>
|
|
483
|
+
<td style="padding:15px">listProvisionedConcurrencyConfigs(functionName, marker, maxItems, list = 'ALL', iapMetadata, callback)</td>
|
|
484
|
+
<td style="padding:15px">Retrieves a list of provisioned concurrency configurations for a function.</td>
|
|
485
|
+
<td style="padding:15px">{base_path}/{version}/2019-09-30/functions/{pathv1}/provisioned-concurrency?{query}</td>
|
|
486
|
+
<td style="padding:15px">Yes</td>
|
|
487
|
+
</tr>
|
|
488
|
+
<tr>
|
|
489
|
+
<td style="padding:15px">listVersionsByFunction(functionName, marker, maxItems, iapMetadata, callback)</td>
|
|
490
|
+
<td style="padding:15px">Returns a list of versions , with the version-specific configuration of each. Lambda returns up to</td>
|
|
491
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/functions/{pathv1}/versions?{query}</td>
|
|
492
|
+
<td style="padding:15px">Yes</td>
|
|
493
|
+
</tr>
|
|
494
|
+
<tr>
|
|
495
|
+
<td style="padding:15px">publishVersion(functionName, body, iapMetadata, callback)</td>
|
|
496
|
+
<td style="padding:15px">Creates a version from the current code and configuration of a function. Use versions to create a</td>
|
|
497
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/functions/{pathv1}/versions?{query}</td>
|
|
498
|
+
<td style="padding:15px">Yes</td>
|
|
499
|
+
</tr>
|
|
500
|
+
<tr>
|
|
501
|
+
<td style="padding:15px">removePermission(functionName, statementId, qualifier, revisionId, iapMetadata, callback)</td>
|
|
502
|
+
<td style="padding:15px">Revokes function-use permission from an Amazon Web Service or another Amazon Web Services account.</td>
|
|
503
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/functions/{pathv1}/policy/{pathv2}?{query}</td>
|
|
504
|
+
<td style="padding:15px">Yes</td>
|
|
505
|
+
</tr>
|
|
506
|
+
<tr>
|
|
507
|
+
<td style="padding:15px">updateFunctionCode(functionName, body, iapMetadata, callback)</td>
|
|
508
|
+
<td style="padding:15px">Updates a Lambda function's code. If code signing is enabled for the function, the code package mus</td>
|
|
509
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/functions/{pathv1}/code?{query}</td>
|
|
510
|
+
<td style="padding:15px">Yes</td>
|
|
511
|
+
</tr>
|
|
512
|
+
<tr>
|
|
513
|
+
<td style="padding:15px">createCodeSigningConfig(body, iapMetadata, callback)</td>
|
|
514
|
+
<td style="padding:15px">Creates a code signing configuration. A code signing configuration defines a list of allowed sign</td>
|
|
515
|
+
<td style="padding:15px">{base_path}/{version}/2020-04-22/code-signing-configs/?{query}</td>
|
|
516
|
+
<td style="padding:15px">Yes</td>
|
|
517
|
+
</tr>
|
|
518
|
+
<tr>
|
|
519
|
+
<td style="padding:15px">listCodeSigningConfigs(marker, maxItems, iapMetadata, callback)</td>
|
|
520
|
+
<td style="padding:15px">Returns a list of code signing configurations . A request returns up to 10,000 configurations per</td>
|
|
521
|
+
<td style="padding:15px">{base_path}/{version}/2020-04-22/code-signing-configs/?{query}</td>
|
|
522
|
+
<td style="padding:15px">Yes</td>
|
|
523
|
+
</tr>
|
|
524
|
+
<tr>
|
|
525
|
+
<td style="padding:15px">deleteCodeSigningConfig(codeSigningConfigArn, iapMetadata, callback)</td>
|
|
526
|
+
<td style="padding:15px">Deletes the code signing configuration. You can delete the code signing configuration only if no fu</td>
|
|
527
|
+
<td style="padding:15px">{base_path}/{version}/2020-04-22/code-signing-configs/{pathv1}?{query}</td>
|
|
528
|
+
<td style="padding:15px">Yes</td>
|
|
529
|
+
</tr>
|
|
530
|
+
<tr>
|
|
531
|
+
<td style="padding:15px">getCodeSigningConfig(codeSigningConfigArn, iapMetadata, callback)</td>
|
|
532
|
+
<td style="padding:15px">Returns information about the specified code signing configuration.</td>
|
|
533
|
+
<td style="padding:15px">{base_path}/{version}/2020-04-22/code-signing-configs/{pathv1}?{query}</td>
|
|
534
|
+
<td style="padding:15px">Yes</td>
|
|
535
|
+
</tr>
|
|
536
|
+
<tr>
|
|
537
|
+
<td style="padding:15px">updateCodeSigningConfig(codeSigningConfigArn, body, iapMetadata, callback)</td>
|
|
538
|
+
<td style="padding:15px">Update the code signing configuration. Changes to the code signing configuration take effect the ne</td>
|
|
539
|
+
<td style="padding:15px">{base_path}/{version}/2020-04-22/code-signing-configs/{pathv1}?{query}</td>
|
|
540
|
+
<td style="padding:15px">Yes</td>
|
|
541
|
+
</tr>
|
|
542
|
+
<tr>
|
|
543
|
+
<td style="padding:15px">listFunctionsByCodeSigningConfig(codeSigningConfigArn, marker, maxItems, iapMetadata, callback)</td>
|
|
544
|
+
<td style="padding:15px">List the functions that use the specified code signing configuration. You can use this method prior</td>
|
|
545
|
+
<td style="padding:15px">{base_path}/{version}/2020-04-22/code-signing-configs/{pathv1}/functions?{query}</td>
|
|
546
|
+
<td style="padding:15px">Yes</td>
|
|
547
|
+
</tr>
|
|
548
|
+
<tr>
|
|
549
|
+
<td style="padding:15px">createEventSourceMapping(body, iapMetadata, callback)</td>
|
|
550
|
+
<td style="padding:15px">Creates a mapping between an event source and an Lambda function. Lambda reads items from the event</td>
|
|
551
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/event-source-mappings/?{query}</td>
|
|
552
|
+
<td style="padding:15px">Yes</td>
|
|
553
|
+
</tr>
|
|
554
|
+
<tr>
|
|
555
|
+
<td style="padding:15px">listEventSourceMappings(eventSourceArn, functionName, marker, maxItems, iapMetadata, callback)</td>
|
|
556
|
+
<td style="padding:15px">Lists event source mappings. Specify an EventSourceArn to show only event source mappings for a s</td>
|
|
557
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/event-source-mappings/?{query}</td>
|
|
558
|
+
<td style="padding:15px">Yes</td>
|
|
559
|
+
</tr>
|
|
560
|
+
<tr>
|
|
561
|
+
<td style="padding:15px">deleteEventSourceMapping(uUID, iapMetadata, callback)</td>
|
|
562
|
+
<td style="padding:15px">Deletes an event source mapping . You can get the identifier of a mapping from the output of List</td>
|
|
563
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/event-source-mappings/{pathv1}?{query}</td>
|
|
564
|
+
<td style="padding:15px">Yes</td>
|
|
565
|
+
</tr>
|
|
566
|
+
<tr>
|
|
567
|
+
<td style="padding:15px">getEventSourceMapping(uUID, iapMetadata, callback)</td>
|
|
568
|
+
<td style="padding:15px">Returns details about an event source mapping. You can get the identifier of a mapping from the out</td>
|
|
569
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/event-source-mappings/{pathv1}?{query}</td>
|
|
570
|
+
<td style="padding:15px">Yes</td>
|
|
571
|
+
</tr>
|
|
572
|
+
<tr>
|
|
573
|
+
<td style="padding:15px">updateEventSourceMapping(uUID, body, iapMetadata, callback)</td>
|
|
574
|
+
<td style="padding:15px">Updates an event source mapping. You can change the function that Lambda invokes, or pause invocati</td>
|
|
575
|
+
<td style="padding:15px">{base_path}/{version}/2015-03-31/event-source-mappings/{pathv1}?{query}</td>
|
|
576
|
+
<td style="padding:15px">Yes</td>
|
|
577
|
+
</tr>
|
|
578
|
+
<tr>
|
|
579
|
+
<td style="padding:15px">getAccountSettings(iapMetadata, callback)</td>
|
|
580
|
+
<td style="padding:15px">Retrieves details about your account's limits and usage in an Amazon Web Services Region.</td>
|
|
581
|
+
<td style="padding:15px">{base_path}/{version}/2016-08-19/account-settings/?{query}</td>
|
|
582
|
+
<td style="padding:15px">Yes</td>
|
|
583
|
+
</tr>
|
|
584
|
+
<tr>
|
|
585
|
+
<td style="padding:15px">listTags(aRN, iapMetadata, callback)</td>
|
|
586
|
+
<td style="padding:15px">Returns a function's tags . You can also view tags with GetFunction .</td>
|
|
587
|
+
<td style="padding:15px">{base_path}/{version}/2017-03-31/tags/{pathv1}?{query}</td>
|
|
588
|
+
<td style="padding:15px">Yes</td>
|
|
589
|
+
</tr>
|
|
590
|
+
<tr>
|
|
591
|
+
<td style="padding:15px">tagResource(aRN, body, iapMetadata, callback)</td>
|
|
592
|
+
<td style="padding:15px">Adds tags to a function.</td>
|
|
593
|
+
<td style="padding:15px">{base_path}/{version}/2017-03-31/tags/{pathv1}?{query}</td>
|
|
594
|
+
<td style="padding:15px">Yes</td>
|
|
595
|
+
</tr>
|
|
596
|
+
<tr>
|
|
597
|
+
<td style="padding:15px">untagResource(aRN, tagKeys, iapMetadata, callback)</td>
|
|
598
|
+
<td style="padding:15px">Removes tags from a function.</td>
|
|
599
|
+
<td style="padding:15px">{base_path}/{version}/2017-03-31/tags/{pathv1}?{query}</td>
|
|
600
|
+
<td style="padding:15px">Yes</td>
|
|
601
|
+
</tr>
|
|
602
|
+
</table>
|
|
603
|
+
<br>
|