@aws-sdk/client-lambda 3.939.0 → 3.942.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.
- package/README.md +64 -0
- package/dist-cjs/index.js +630 -21
- package/dist-es/Lambda.js +16 -0
- package/dist-es/commands/CreateCapacityProviderCommand.js +16 -0
- package/dist-es/commands/DeleteCapacityProviderCommand.js +16 -0
- package/dist-es/commands/GetCapacityProviderCommand.js +16 -0
- package/dist-es/commands/GetFunctionScalingConfigCommand.js +16 -0
- package/dist-es/commands/ListCapacityProvidersCommand.js +16 -0
- package/dist-es/commands/ListFunctionVersionsByCapacityProviderCommand.js +16 -0
- package/dist-es/commands/PutFunctionScalingConfigCommand.js +16 -0
- package/dist-es/commands/UpdateCapacityProviderCommand.js +16 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/enums.js +50 -6
- package/dist-es/models/errors.js +44 -0
- package/dist-es/pagination/ListCapacityProvidersPaginator.js +4 -0
- package/dist-es/pagination/ListFunctionVersionsByCapacityProviderPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +415 -16
- package/dist-types/Lambda.d.ts +57 -0
- package/dist-types/LambdaClient.d.ts +10 -2
- package/dist-types/commands/CreateCapacityProviderCommand.d.ts +162 -0
- package/dist-types/commands/CreateFunctionCommand.d.ts +22 -3
- package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +126 -0
- package/dist-types/commands/DeleteFunctionCommand.d.ts +6 -4
- package/dist-types/commands/GetCapacityProviderCommand.d.ts +123 -0
- package/dist-types/commands/GetFunctionCommand.d.ts +11 -3
- package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +11 -3
- package/dist-types/commands/GetFunctionScalingConfigCommand.d.ts +95 -0
- package/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +4 -4
- package/dist-types/commands/InvokeCommand.d.ts +4 -1
- package/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +4 -1
- package/dist-types/commands/ListCapacityProvidersCommand.d.ts +125 -0
- package/dist-types/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +95 -0
- package/dist-types/commands/ListFunctionsCommand.d.ts +11 -3
- package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +11 -3
- package/dist-types/commands/PublishVersionCommand.d.ts +15 -3
- package/dist-types/commands/PutFunctionScalingConfigCommand.d.ts +94 -0
- package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +136 -0
- package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +12 -3
- package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +18 -3
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/enums.d.ts +90 -14
- package/dist-types/models/errors.d.ts +53 -1
- package/dist-types/models/models_0.d.ts +642 -147
- package/dist-types/pagination/ListCapacityProvidersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +44 -0
- package/dist-types/ts3.4/Lambda.d.ts +143 -0
- package/dist-types/ts3.4/LambdaClient.d.ts +48 -0
- package/dist-types/ts3.4/commands/CreateCapacityProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteCapacityProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +8 -3
- package/dist-types/ts3.4/commands/GetCapacityProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetFunctionScalingConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCapacityProvidersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutFunctionScalingConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateCapacityProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/enums.d.ts +59 -7
- package/dist-types/ts3.4/models/errors.d.ts +31 -0
- package/dist-types/ts3.4/models/models_0.d.ts +172 -42
- package/dist-types/ts3.4/pagination/ListCapacityProvidersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +44 -0
- package/package.json +5 -5
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListCapacityProvidersCommandInput, ListCapacityProvidersCommandOutput } from "../commands/ListCapacityProvidersCommand";
|
|
3
|
+
import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListCapacityProviders: (config: LambdaPaginationConfiguration, input: ListCapacityProvidersCommandInput, ...rest: any[]) => Paginator<ListCapacityProvidersCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListFunctionVersionsByCapacityProviderCommandInput, ListFunctionVersionsByCapacityProviderCommandOutput } from "../commands/ListFunctionVersionsByCapacityProviderCommand";
|
|
3
|
+
import { LambdaPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListFunctionVersionsByCapacityProvider: (config: LambdaPaginationConfiguration, input: ListFunctionVersionsByCapacityProviderCommandInput, ...rest: any[]) => Paginator<ListFunctionVersionsByCapacityProviderCommandOutput>;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListAliasesPaginator";
|
|
3
|
+
export * from "./ListCapacityProvidersPaginator";
|
|
3
4
|
export * from "./ListCodeSigningConfigsPaginator";
|
|
4
5
|
export * from "./ListEventSourceMappingsPaginator";
|
|
5
6
|
export * from "./ListFunctionEventInvokeConfigsPaginator";
|
|
6
7
|
export * from "./ListFunctionUrlConfigsPaginator";
|
|
8
|
+
export * from "./ListFunctionVersionsByCapacityProviderPaginator";
|
|
7
9
|
export * from "./ListFunctionsByCodeSigningConfigPaginator";
|
|
8
10
|
export * from "./ListFunctionsPaginator";
|
|
9
11
|
export * from "./ListLayerVersionsPaginator";
|
|
@@ -14,6 +14,12 @@ export declare var AliasConfiguration: StaticStructureSchema;
|
|
|
14
14
|
export declare var AliasRoutingConfiguration: StaticStructureSchema;
|
|
15
15
|
export declare var AllowedPublishers: StaticStructureSchema;
|
|
16
16
|
export declare var AmazonManagedKafkaEventSourceConfig: StaticStructureSchema;
|
|
17
|
+
export declare var CapacityProvider: StaticStructureSchema;
|
|
18
|
+
export declare var CapacityProviderConfig: StaticStructureSchema;
|
|
19
|
+
export declare var CapacityProviderLimitExceededException: StaticErrorSchema;
|
|
20
|
+
export declare var CapacityProviderPermissionsConfig: StaticStructureSchema;
|
|
21
|
+
export declare var CapacityProviderScalingConfig: StaticStructureSchema;
|
|
22
|
+
export declare var CapacityProviderVpcConfig: StaticStructureSchema;
|
|
17
23
|
export declare var CodeSigningConfig: StaticStructureSchema;
|
|
18
24
|
export declare var CodeSigningConfigNotFoundException: StaticErrorSchema;
|
|
19
25
|
export declare var CodeSigningPolicies: StaticStructureSchema;
|
|
@@ -22,6 +28,8 @@ export declare var CodeVerificationFailedException: StaticErrorSchema;
|
|
|
22
28
|
export declare var Concurrency: StaticStructureSchema;
|
|
23
29
|
export declare var Cors: StaticStructureSchema;
|
|
24
30
|
export declare var CreateAliasRequest: StaticStructureSchema;
|
|
31
|
+
export declare var CreateCapacityProviderRequest: StaticStructureSchema;
|
|
32
|
+
export declare var CreateCapacityProviderResponse: StaticStructureSchema;
|
|
25
33
|
export declare var CreateCodeSigningConfigRequest: StaticStructureSchema;
|
|
26
34
|
export declare var CreateCodeSigningConfigResponse: StaticStructureSchema;
|
|
27
35
|
export declare var CreateEventSourceMappingRequest: StaticStructureSchema;
|
|
@@ -30,6 +38,8 @@ export declare var CreateFunctionUrlConfigRequest: StaticStructureSchema;
|
|
|
30
38
|
export declare var CreateFunctionUrlConfigResponse: StaticStructureSchema;
|
|
31
39
|
export declare var DeadLetterConfig: StaticStructureSchema;
|
|
32
40
|
export declare var DeleteAliasRequest: StaticStructureSchema;
|
|
41
|
+
export declare var DeleteCapacityProviderRequest: StaticStructureSchema;
|
|
42
|
+
export declare var DeleteCapacityProviderResponse: StaticStructureSchema;
|
|
33
43
|
export declare var DeleteCodeSigningConfigRequest: StaticStructureSchema;
|
|
34
44
|
export declare var DeleteCodeSigningConfigResponse: StaticStructureSchema;
|
|
35
45
|
export declare var DeleteEventSourceMappingRequest: StaticStructureSchema;
|
|
@@ -37,6 +47,7 @@ export declare var DeleteFunctionCodeSigningConfigRequest: StaticStructureSchema
|
|
|
37
47
|
export declare var DeleteFunctionConcurrencyRequest: StaticStructureSchema;
|
|
38
48
|
export declare var DeleteFunctionEventInvokeConfigRequest: StaticStructureSchema;
|
|
39
49
|
export declare var DeleteFunctionRequest: StaticStructureSchema;
|
|
50
|
+
export declare var DeleteFunctionResponse: StaticStructureSchema;
|
|
40
51
|
export declare var DeleteFunctionUrlConfigRequest: StaticStructureSchema;
|
|
41
52
|
export declare var DeleteLayerVersionRequest: StaticStructureSchema;
|
|
42
53
|
export declare var DeleteProvisionedConcurrencyConfigRequest: StaticStructureSchema;
|
|
@@ -64,10 +75,15 @@ export declare var FunctionCode: StaticStructureSchema;
|
|
|
64
75
|
export declare var FunctionCodeLocation: StaticStructureSchema;
|
|
65
76
|
export declare var FunctionConfiguration: StaticStructureSchema;
|
|
66
77
|
export declare var FunctionEventInvokeConfig: StaticStructureSchema;
|
|
78
|
+
export declare var FunctionScalingConfig: StaticStructureSchema;
|
|
67
79
|
export declare var FunctionUrlConfig: StaticStructureSchema;
|
|
80
|
+
export declare var FunctionVersionsByCapacityProviderListItem: StaticStructureSchema;
|
|
81
|
+
export declare var FunctionVersionsPerCapacityProviderLimitExceededException: StaticErrorSchema;
|
|
68
82
|
export declare var GetAccountSettingsRequest: StaticStructureSchema;
|
|
69
83
|
export declare var GetAccountSettingsResponse: StaticStructureSchema;
|
|
70
84
|
export declare var GetAliasRequest: StaticStructureSchema;
|
|
85
|
+
export declare var GetCapacityProviderRequest: StaticStructureSchema;
|
|
86
|
+
export declare var GetCapacityProviderResponse: StaticStructureSchema;
|
|
71
87
|
export declare var GetCodeSigningConfigRequest: StaticStructureSchema;
|
|
72
88
|
export declare var GetCodeSigningConfigResponse: StaticStructureSchema;
|
|
73
89
|
export declare var GetEventSourceMappingRequest: StaticStructureSchema;
|
|
@@ -81,6 +97,8 @@ export declare var GetFunctionRecursionConfigRequest: StaticStructureSchema;
|
|
|
81
97
|
export declare var GetFunctionRecursionConfigResponse: StaticStructureSchema;
|
|
82
98
|
export declare var GetFunctionRequest: StaticStructureSchema;
|
|
83
99
|
export declare var GetFunctionResponse: StaticStructureSchema;
|
|
100
|
+
export declare var GetFunctionScalingConfigRequest: StaticStructureSchema;
|
|
101
|
+
export declare var GetFunctionScalingConfigResponse: StaticStructureSchema;
|
|
84
102
|
export declare var GetFunctionUrlConfigRequest: StaticStructureSchema;
|
|
85
103
|
export declare var GetFunctionUrlConfigResponse: StaticStructureSchema;
|
|
86
104
|
export declare var GetLayerVersionByArnRequest: StaticStructureSchema;
|
|
@@ -97,6 +115,7 @@ export declare var GetRuntimeManagementConfigResponse: StaticStructureSchema;
|
|
|
97
115
|
export declare var ImageConfig: StaticStructureSchema;
|
|
98
116
|
export declare var ImageConfigError: StaticStructureSchema;
|
|
99
117
|
export declare var ImageConfigResponse: StaticStructureSchema;
|
|
118
|
+
export declare var InstanceRequirements: StaticStructureSchema;
|
|
100
119
|
export declare var InvalidCodeSignatureException: StaticErrorSchema;
|
|
101
120
|
export declare var InvalidParameterValueException: StaticErrorSchema;
|
|
102
121
|
export declare var InvalidRequestContentException: StaticErrorSchema;
|
|
@@ -119,6 +138,7 @@ export declare var KMSAccessDeniedException: StaticErrorSchema;
|
|
|
119
138
|
export declare var KMSDisabledException: StaticErrorSchema;
|
|
120
139
|
export declare var KMSInvalidStateException: StaticErrorSchema;
|
|
121
140
|
export declare var KMSNotFoundException: StaticErrorSchema;
|
|
141
|
+
export declare var LambdaManagedInstancesCapacityProviderConfig: StaticStructureSchema;
|
|
122
142
|
export declare var Layer: StaticStructureSchema;
|
|
123
143
|
export declare var LayersListItem: StaticStructureSchema;
|
|
124
144
|
export declare var LayerVersionContentInput: StaticStructureSchema;
|
|
@@ -126,6 +146,8 @@ export declare var LayerVersionContentOutput: StaticStructureSchema;
|
|
|
126
146
|
export declare var LayerVersionsListItem: StaticStructureSchema;
|
|
127
147
|
export declare var ListAliasesRequest: StaticStructureSchema;
|
|
128
148
|
export declare var ListAliasesResponse: StaticStructureSchema;
|
|
149
|
+
export declare var ListCapacityProvidersRequest: StaticStructureSchema;
|
|
150
|
+
export declare var ListCapacityProvidersResponse: StaticStructureSchema;
|
|
129
151
|
export declare var ListCodeSigningConfigsRequest: StaticStructureSchema;
|
|
130
152
|
export declare var ListCodeSigningConfigsResponse: StaticStructureSchema;
|
|
131
153
|
export declare var ListEventSourceMappingsRequest: StaticStructureSchema;
|
|
@@ -138,6 +160,8 @@ export declare var ListFunctionsRequest: StaticStructureSchema;
|
|
|
138
160
|
export declare var ListFunctionsResponse: StaticStructureSchema;
|
|
139
161
|
export declare var ListFunctionUrlConfigsRequest: StaticStructureSchema;
|
|
140
162
|
export declare var ListFunctionUrlConfigsResponse: StaticStructureSchema;
|
|
163
|
+
export declare var ListFunctionVersionsByCapacityProviderRequest: StaticStructureSchema;
|
|
164
|
+
export declare var ListFunctionVersionsByCapacityProviderResponse: StaticStructureSchema;
|
|
141
165
|
export declare var ListLayersRequest: StaticStructureSchema;
|
|
142
166
|
export declare var ListLayersResponse: StaticStructureSchema;
|
|
143
167
|
export declare var ListLayerVersionsRequest: StaticStructureSchema;
|
|
@@ -149,6 +173,7 @@ export declare var ListTagsResponse: StaticStructureSchema;
|
|
|
149
173
|
export declare var ListVersionsByFunctionRequest: StaticStructureSchema;
|
|
150
174
|
export declare var ListVersionsByFunctionResponse: StaticStructureSchema;
|
|
151
175
|
export declare var LoggingConfig: StaticStructureSchema;
|
|
176
|
+
export declare var NoPublishedVersionException: StaticErrorSchema;
|
|
152
177
|
export declare var OnFailure: StaticStructureSchema;
|
|
153
178
|
export declare var OnSuccess: StaticStructureSchema;
|
|
154
179
|
export declare var PolicyLengthExceededException: StaticErrorSchema;
|
|
@@ -165,6 +190,8 @@ export declare var PutFunctionConcurrencyRequest: StaticStructureSchema;
|
|
|
165
190
|
export declare var PutFunctionEventInvokeConfigRequest: StaticStructureSchema;
|
|
166
191
|
export declare var PutFunctionRecursionConfigRequest: StaticStructureSchema;
|
|
167
192
|
export declare var PutFunctionRecursionConfigResponse: StaticStructureSchema;
|
|
193
|
+
export declare var PutFunctionScalingConfigRequest: StaticStructureSchema;
|
|
194
|
+
export declare var PutFunctionScalingConfigResponse: StaticStructureSchema;
|
|
168
195
|
export declare var PutProvisionedConcurrencyConfigRequest: StaticStructureSchema;
|
|
169
196
|
export declare var PutProvisionedConcurrencyConfigResponse: StaticStructureSchema;
|
|
170
197
|
export declare var PutRuntimeManagementConfigRequest: StaticStructureSchema;
|
|
@@ -193,6 +220,7 @@ export declare var SourceAccessConfiguration: StaticStructureSchema;
|
|
|
193
220
|
export declare var SubnetIPAddressLimitReachedException: StaticErrorSchema;
|
|
194
221
|
export declare var TagResourceRequest: StaticStructureSchema;
|
|
195
222
|
export declare var TagsError: StaticStructureSchema;
|
|
223
|
+
export declare var TargetTrackingScalingPolicy: StaticStructureSchema;
|
|
196
224
|
export declare var TenancyConfig: StaticStructureSchema;
|
|
197
225
|
export declare var TooManyRequestsException: StaticErrorSchema;
|
|
198
226
|
export declare var TracingConfig: StaticStructureSchema;
|
|
@@ -200,6 +228,8 @@ export declare var TracingConfigResponse: StaticStructureSchema;
|
|
|
200
228
|
export declare var UnsupportedMediaTypeException: StaticErrorSchema;
|
|
201
229
|
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
202
230
|
export declare var UpdateAliasRequest: StaticStructureSchema;
|
|
231
|
+
export declare var UpdateCapacityProviderRequest: StaticStructureSchema;
|
|
232
|
+
export declare var UpdateCapacityProviderResponse: StaticStructureSchema;
|
|
203
233
|
export declare var UpdateCodeSigningConfigRequest: StaticStructureSchema;
|
|
204
234
|
export declare var UpdateCodeSigningConfigResponse: StaticStructureSchema;
|
|
205
235
|
export declare var UpdateEventSourceMappingRequest: StaticStructureSchema;
|
|
@@ -216,6 +246,10 @@ export declare var AliasList: StaticListSchema;
|
|
|
216
246
|
export declare var AllowMethodsList: number;
|
|
217
247
|
export declare var AllowOriginsList: number;
|
|
218
248
|
export declare var ArchitecturesList: number;
|
|
249
|
+
export declare var CapacityProviderScalingPoliciesList: StaticListSchema;
|
|
250
|
+
export declare var CapacityProviderSecurityGroupIds: number;
|
|
251
|
+
export declare var CapacityProvidersList: StaticListSchema;
|
|
252
|
+
export declare var CapacityProviderSubnetIds: number;
|
|
219
253
|
export declare var CodeSigningConfigList: StaticListSchema;
|
|
220
254
|
export declare var CompatibleArchitectures: number;
|
|
221
255
|
export declare var CompatibleRuntimes: number;
|
|
@@ -229,7 +263,9 @@ export declare var FunctionEventInvokeConfigList: StaticListSchema;
|
|
|
229
263
|
export declare var FunctionList: StaticListSchema;
|
|
230
264
|
export declare var FunctionResponseTypeList: number;
|
|
231
265
|
export declare var FunctionUrlConfigList: StaticListSchema;
|
|
266
|
+
export declare var FunctionVersionsByCapacityProviderList: StaticListSchema;
|
|
232
267
|
export declare var HeadersList: number;
|
|
268
|
+
export declare var InstanceTypeSet: number;
|
|
233
269
|
export declare var KafkaSchemaRegistryAccessConfigList: StaticListSchema;
|
|
234
270
|
export declare var KafkaSchemaValidationConfigList: StaticListSchema;
|
|
235
271
|
export declare var LayerList: number;
|
|
@@ -253,11 +289,13 @@ export declare var InvokeWithResponseStreamResponseEvent: StaticStructureSchema;
|
|
|
253
289
|
export declare var AddLayerVersionPermission: StaticOperationSchema;
|
|
254
290
|
export declare var AddPermission: StaticOperationSchema;
|
|
255
291
|
export declare var CreateAlias: StaticOperationSchema;
|
|
292
|
+
export declare var CreateCapacityProvider: StaticOperationSchema;
|
|
256
293
|
export declare var CreateCodeSigningConfig: StaticOperationSchema;
|
|
257
294
|
export declare var CreateEventSourceMapping: StaticOperationSchema;
|
|
258
295
|
export declare var CreateFunction: StaticOperationSchema;
|
|
259
296
|
export declare var CreateFunctionUrlConfig: StaticOperationSchema;
|
|
260
297
|
export declare var DeleteAlias: StaticOperationSchema;
|
|
298
|
+
export declare var DeleteCapacityProvider: StaticOperationSchema;
|
|
261
299
|
export declare var DeleteCodeSigningConfig: StaticOperationSchema;
|
|
262
300
|
export declare var DeleteEventSourceMapping: StaticOperationSchema;
|
|
263
301
|
export declare var DeleteFunction: StaticOperationSchema;
|
|
@@ -269,6 +307,7 @@ export declare var DeleteLayerVersion: StaticOperationSchema;
|
|
|
269
307
|
export declare var DeleteProvisionedConcurrencyConfig: StaticOperationSchema;
|
|
270
308
|
export declare var GetAccountSettings: StaticOperationSchema;
|
|
271
309
|
export declare var GetAlias: StaticOperationSchema;
|
|
310
|
+
export declare var GetCapacityProvider: StaticOperationSchema;
|
|
272
311
|
export declare var GetCodeSigningConfig: StaticOperationSchema;
|
|
273
312
|
export declare var GetEventSourceMapping: StaticOperationSchema;
|
|
274
313
|
export declare var GetFunction: StaticOperationSchema;
|
|
@@ -277,6 +316,7 @@ export declare var GetFunctionConcurrency: StaticOperationSchema;
|
|
|
277
316
|
export declare var GetFunctionConfiguration: StaticOperationSchema;
|
|
278
317
|
export declare var GetFunctionEventInvokeConfig: StaticOperationSchema;
|
|
279
318
|
export declare var GetFunctionRecursionConfig: StaticOperationSchema;
|
|
319
|
+
export declare var GetFunctionScalingConfig: StaticOperationSchema;
|
|
280
320
|
export declare var GetFunctionUrlConfig: StaticOperationSchema;
|
|
281
321
|
export declare var GetLayerVersion: StaticOperationSchema;
|
|
282
322
|
export declare var GetLayerVersionByArn: StaticOperationSchema;
|
|
@@ -288,12 +328,14 @@ export declare var Invoke: StaticOperationSchema;
|
|
|
288
328
|
export declare var InvokeAsync: StaticOperationSchema;
|
|
289
329
|
export declare var InvokeWithResponseStream: StaticOperationSchema;
|
|
290
330
|
export declare var ListAliases: StaticOperationSchema;
|
|
331
|
+
export declare var ListCapacityProviders: StaticOperationSchema;
|
|
291
332
|
export declare var ListCodeSigningConfigs: StaticOperationSchema;
|
|
292
333
|
export declare var ListEventSourceMappings: StaticOperationSchema;
|
|
293
334
|
export declare var ListFunctionEventInvokeConfigs: StaticOperationSchema;
|
|
294
335
|
export declare var ListFunctions: StaticOperationSchema;
|
|
295
336
|
export declare var ListFunctionsByCodeSigningConfig: StaticOperationSchema;
|
|
296
337
|
export declare var ListFunctionUrlConfigs: StaticOperationSchema;
|
|
338
|
+
export declare var ListFunctionVersionsByCapacityProvider: StaticOperationSchema;
|
|
297
339
|
export declare var ListLayers: StaticOperationSchema;
|
|
298
340
|
export declare var ListLayerVersions: StaticOperationSchema;
|
|
299
341
|
export declare var ListProvisionedConcurrencyConfigs: StaticOperationSchema;
|
|
@@ -305,6 +347,7 @@ export declare var PutFunctionCodeSigningConfig: StaticOperationSchema;
|
|
|
305
347
|
export declare var PutFunctionConcurrency: StaticOperationSchema;
|
|
306
348
|
export declare var PutFunctionEventInvokeConfig: StaticOperationSchema;
|
|
307
349
|
export declare var PutFunctionRecursionConfig: StaticOperationSchema;
|
|
350
|
+
export declare var PutFunctionScalingConfig: StaticOperationSchema;
|
|
308
351
|
export declare var PutProvisionedConcurrencyConfig: StaticOperationSchema;
|
|
309
352
|
export declare var PutRuntimeManagementConfig: StaticOperationSchema;
|
|
310
353
|
export declare var RemoveLayerVersionPermission: StaticOperationSchema;
|
|
@@ -312,6 +355,7 @@ export declare var RemovePermission: StaticOperationSchema;
|
|
|
312
355
|
export declare var TagResource: StaticOperationSchema;
|
|
313
356
|
export declare var UntagResource: StaticOperationSchema;
|
|
314
357
|
export declare var UpdateAlias: StaticOperationSchema;
|
|
358
|
+
export declare var UpdateCapacityProvider: StaticOperationSchema;
|
|
315
359
|
export declare var UpdateCodeSigningConfig: StaticOperationSchema;
|
|
316
360
|
export declare var UpdateEventSourceMapping: StaticOperationSchema;
|
|
317
361
|
export declare var UpdateFunctionCode: StaticOperationSchema;
|
|
@@ -11,6 +11,10 @@ import {
|
|
|
11
11
|
CreateAliasCommandInput,
|
|
12
12
|
CreateAliasCommandOutput,
|
|
13
13
|
} from "./commands/CreateAliasCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateCapacityProviderCommandInput,
|
|
16
|
+
CreateCapacityProviderCommandOutput,
|
|
17
|
+
} from "./commands/CreateCapacityProviderCommand";
|
|
14
18
|
import {
|
|
15
19
|
CreateCodeSigningConfigCommandInput,
|
|
16
20
|
CreateCodeSigningConfigCommandOutput,
|
|
@@ -31,6 +35,10 @@ import {
|
|
|
31
35
|
DeleteAliasCommandInput,
|
|
32
36
|
DeleteAliasCommandOutput,
|
|
33
37
|
} from "./commands/DeleteAliasCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteCapacityProviderCommandInput,
|
|
40
|
+
DeleteCapacityProviderCommandOutput,
|
|
41
|
+
} from "./commands/DeleteCapacityProviderCommand";
|
|
34
42
|
import {
|
|
35
43
|
DeleteCodeSigningConfigCommandInput,
|
|
36
44
|
DeleteCodeSigningConfigCommandOutput,
|
|
@@ -75,6 +83,10 @@ import {
|
|
|
75
83
|
GetAliasCommandInput,
|
|
76
84
|
GetAliasCommandOutput,
|
|
77
85
|
} from "./commands/GetAliasCommand";
|
|
86
|
+
import {
|
|
87
|
+
GetCapacityProviderCommandInput,
|
|
88
|
+
GetCapacityProviderCommandOutput,
|
|
89
|
+
} from "./commands/GetCapacityProviderCommand";
|
|
78
90
|
import {
|
|
79
91
|
GetCodeSigningConfigCommandInput,
|
|
80
92
|
GetCodeSigningConfigCommandOutput,
|
|
@@ -107,6 +119,10 @@ import {
|
|
|
107
119
|
GetFunctionRecursionConfigCommandInput,
|
|
108
120
|
GetFunctionRecursionConfigCommandOutput,
|
|
109
121
|
} from "./commands/GetFunctionRecursionConfigCommand";
|
|
122
|
+
import {
|
|
123
|
+
GetFunctionScalingConfigCommandInput,
|
|
124
|
+
GetFunctionScalingConfigCommandOutput,
|
|
125
|
+
} from "./commands/GetFunctionScalingConfigCommand";
|
|
110
126
|
import {
|
|
111
127
|
GetFunctionUrlConfigCommandInput,
|
|
112
128
|
GetFunctionUrlConfigCommandOutput,
|
|
@@ -151,6 +167,10 @@ import {
|
|
|
151
167
|
ListAliasesCommandInput,
|
|
152
168
|
ListAliasesCommandOutput,
|
|
153
169
|
} from "./commands/ListAliasesCommand";
|
|
170
|
+
import {
|
|
171
|
+
ListCapacityProvidersCommandInput,
|
|
172
|
+
ListCapacityProvidersCommandOutput,
|
|
173
|
+
} from "./commands/ListCapacityProvidersCommand";
|
|
154
174
|
import {
|
|
155
175
|
ListCodeSigningConfigsCommandInput,
|
|
156
176
|
ListCodeSigningConfigsCommandOutput,
|
|
@@ -175,6 +195,10 @@ import {
|
|
|
175
195
|
ListFunctionUrlConfigsCommandInput,
|
|
176
196
|
ListFunctionUrlConfigsCommandOutput,
|
|
177
197
|
} from "./commands/ListFunctionUrlConfigsCommand";
|
|
198
|
+
import {
|
|
199
|
+
ListFunctionVersionsByCapacityProviderCommandInput,
|
|
200
|
+
ListFunctionVersionsByCapacityProviderCommandOutput,
|
|
201
|
+
} from "./commands/ListFunctionVersionsByCapacityProviderCommand";
|
|
178
202
|
import {
|
|
179
203
|
ListLayersCommandInput,
|
|
180
204
|
ListLayersCommandOutput,
|
|
@@ -219,6 +243,10 @@ import {
|
|
|
219
243
|
PutFunctionRecursionConfigCommandInput,
|
|
220
244
|
PutFunctionRecursionConfigCommandOutput,
|
|
221
245
|
} from "./commands/PutFunctionRecursionConfigCommand";
|
|
246
|
+
import {
|
|
247
|
+
PutFunctionScalingConfigCommandInput,
|
|
248
|
+
PutFunctionScalingConfigCommandOutput,
|
|
249
|
+
} from "./commands/PutFunctionScalingConfigCommand";
|
|
222
250
|
import {
|
|
223
251
|
PutProvisionedConcurrencyConfigCommandInput,
|
|
224
252
|
PutProvisionedConcurrencyConfigCommandOutput,
|
|
@@ -247,6 +275,10 @@ import {
|
|
|
247
275
|
UpdateAliasCommandInput,
|
|
248
276
|
UpdateAliasCommandOutput,
|
|
249
277
|
} from "./commands/UpdateAliasCommand";
|
|
278
|
+
import {
|
|
279
|
+
UpdateCapacityProviderCommandInput,
|
|
280
|
+
UpdateCapacityProviderCommandOutput,
|
|
281
|
+
} from "./commands/UpdateCapacityProviderCommand";
|
|
250
282
|
import {
|
|
251
283
|
UpdateCodeSigningConfigCommandInput,
|
|
252
284
|
UpdateCodeSigningConfigCommandOutput,
|
|
@@ -312,6 +344,19 @@ export interface Lambda {
|
|
|
312
344
|
options: __HttpHandlerOptions,
|
|
313
345
|
cb: (err: any, data?: CreateAliasCommandOutput) => void
|
|
314
346
|
): void;
|
|
347
|
+
createCapacityProvider(
|
|
348
|
+
args: CreateCapacityProviderCommandInput,
|
|
349
|
+
options?: __HttpHandlerOptions
|
|
350
|
+
): Promise<CreateCapacityProviderCommandOutput>;
|
|
351
|
+
createCapacityProvider(
|
|
352
|
+
args: CreateCapacityProviderCommandInput,
|
|
353
|
+
cb: (err: any, data?: CreateCapacityProviderCommandOutput) => void
|
|
354
|
+
): void;
|
|
355
|
+
createCapacityProvider(
|
|
356
|
+
args: CreateCapacityProviderCommandInput,
|
|
357
|
+
options: __HttpHandlerOptions,
|
|
358
|
+
cb: (err: any, data?: CreateCapacityProviderCommandOutput) => void
|
|
359
|
+
): void;
|
|
315
360
|
createCodeSigningConfig(
|
|
316
361
|
args: CreateCodeSigningConfigCommandInput,
|
|
317
362
|
options?: __HttpHandlerOptions
|
|
@@ -377,6 +422,19 @@ export interface Lambda {
|
|
|
377
422
|
options: __HttpHandlerOptions,
|
|
378
423
|
cb: (err: any, data?: DeleteAliasCommandOutput) => void
|
|
379
424
|
): void;
|
|
425
|
+
deleteCapacityProvider(
|
|
426
|
+
args: DeleteCapacityProviderCommandInput,
|
|
427
|
+
options?: __HttpHandlerOptions
|
|
428
|
+
): Promise<DeleteCapacityProviderCommandOutput>;
|
|
429
|
+
deleteCapacityProvider(
|
|
430
|
+
args: DeleteCapacityProviderCommandInput,
|
|
431
|
+
cb: (err: any, data?: DeleteCapacityProviderCommandOutput) => void
|
|
432
|
+
): void;
|
|
433
|
+
deleteCapacityProvider(
|
|
434
|
+
args: DeleteCapacityProviderCommandInput,
|
|
435
|
+
options: __HttpHandlerOptions,
|
|
436
|
+
cb: (err: any, data?: DeleteCapacityProviderCommandOutput) => void
|
|
437
|
+
): void;
|
|
380
438
|
deleteCodeSigningConfig(
|
|
381
439
|
args: DeleteCodeSigningConfigCommandInput,
|
|
382
440
|
options?: __HttpHandlerOptions
|
|
@@ -527,6 +585,19 @@ export interface Lambda {
|
|
|
527
585
|
options: __HttpHandlerOptions,
|
|
528
586
|
cb: (err: any, data?: GetAliasCommandOutput) => void
|
|
529
587
|
): void;
|
|
588
|
+
getCapacityProvider(
|
|
589
|
+
args: GetCapacityProviderCommandInput,
|
|
590
|
+
options?: __HttpHandlerOptions
|
|
591
|
+
): Promise<GetCapacityProviderCommandOutput>;
|
|
592
|
+
getCapacityProvider(
|
|
593
|
+
args: GetCapacityProviderCommandInput,
|
|
594
|
+
cb: (err: any, data?: GetCapacityProviderCommandOutput) => void
|
|
595
|
+
): void;
|
|
596
|
+
getCapacityProvider(
|
|
597
|
+
args: GetCapacityProviderCommandInput,
|
|
598
|
+
options: __HttpHandlerOptions,
|
|
599
|
+
cb: (err: any, data?: GetCapacityProviderCommandOutput) => void
|
|
600
|
+
): void;
|
|
530
601
|
getCodeSigningConfig(
|
|
531
602
|
args: GetCodeSigningConfigCommandInput,
|
|
532
603
|
options?: __HttpHandlerOptions
|
|
@@ -631,6 +702,19 @@ export interface Lambda {
|
|
|
631
702
|
options: __HttpHandlerOptions,
|
|
632
703
|
cb: (err: any, data?: GetFunctionRecursionConfigCommandOutput) => void
|
|
633
704
|
): void;
|
|
705
|
+
getFunctionScalingConfig(
|
|
706
|
+
args: GetFunctionScalingConfigCommandInput,
|
|
707
|
+
options?: __HttpHandlerOptions
|
|
708
|
+
): Promise<GetFunctionScalingConfigCommandOutput>;
|
|
709
|
+
getFunctionScalingConfig(
|
|
710
|
+
args: GetFunctionScalingConfigCommandInput,
|
|
711
|
+
cb: (err: any, data?: GetFunctionScalingConfigCommandOutput) => void
|
|
712
|
+
): void;
|
|
713
|
+
getFunctionScalingConfig(
|
|
714
|
+
args: GetFunctionScalingConfigCommandInput,
|
|
715
|
+
options: __HttpHandlerOptions,
|
|
716
|
+
cb: (err: any, data?: GetFunctionScalingConfigCommandOutput) => void
|
|
717
|
+
): void;
|
|
634
718
|
getFunctionUrlConfig(
|
|
635
719
|
args: GetFunctionUrlConfigCommandInput,
|
|
636
720
|
options?: __HttpHandlerOptions
|
|
@@ -774,6 +858,20 @@ export interface Lambda {
|
|
|
774
858
|
options: __HttpHandlerOptions,
|
|
775
859
|
cb: (err: any, data?: ListAliasesCommandOutput) => void
|
|
776
860
|
): void;
|
|
861
|
+
listCapacityProviders(): Promise<ListCapacityProvidersCommandOutput>;
|
|
862
|
+
listCapacityProviders(
|
|
863
|
+
args: ListCapacityProvidersCommandInput,
|
|
864
|
+
options?: __HttpHandlerOptions
|
|
865
|
+
): Promise<ListCapacityProvidersCommandOutput>;
|
|
866
|
+
listCapacityProviders(
|
|
867
|
+
args: ListCapacityProvidersCommandInput,
|
|
868
|
+
cb: (err: any, data?: ListCapacityProvidersCommandOutput) => void
|
|
869
|
+
): void;
|
|
870
|
+
listCapacityProviders(
|
|
871
|
+
args: ListCapacityProvidersCommandInput,
|
|
872
|
+
options: __HttpHandlerOptions,
|
|
873
|
+
cb: (err: any, data?: ListCapacityProvidersCommandOutput) => void
|
|
874
|
+
): void;
|
|
777
875
|
listCodeSigningConfigs(): Promise<ListCodeSigningConfigsCommandOutput>;
|
|
778
876
|
listCodeSigningConfigs(
|
|
779
877
|
args: ListCodeSigningConfigsCommandInput,
|
|
@@ -855,6 +953,25 @@ export interface Lambda {
|
|
|
855
953
|
options: __HttpHandlerOptions,
|
|
856
954
|
cb: (err: any, data?: ListFunctionUrlConfigsCommandOutput) => void
|
|
857
955
|
): void;
|
|
956
|
+
listFunctionVersionsByCapacityProvider(
|
|
957
|
+
args: ListFunctionVersionsByCapacityProviderCommandInput,
|
|
958
|
+
options?: __HttpHandlerOptions
|
|
959
|
+
): Promise<ListFunctionVersionsByCapacityProviderCommandOutput>;
|
|
960
|
+
listFunctionVersionsByCapacityProvider(
|
|
961
|
+
args: ListFunctionVersionsByCapacityProviderCommandInput,
|
|
962
|
+
cb: (
|
|
963
|
+
err: any,
|
|
964
|
+
data?: ListFunctionVersionsByCapacityProviderCommandOutput
|
|
965
|
+
) => void
|
|
966
|
+
): void;
|
|
967
|
+
listFunctionVersionsByCapacityProvider(
|
|
968
|
+
args: ListFunctionVersionsByCapacityProviderCommandInput,
|
|
969
|
+
options: __HttpHandlerOptions,
|
|
970
|
+
cb: (
|
|
971
|
+
err: any,
|
|
972
|
+
data?: ListFunctionVersionsByCapacityProviderCommandOutput
|
|
973
|
+
) => void
|
|
974
|
+
): void;
|
|
858
975
|
listLayers(): Promise<ListLayersCommandOutput>;
|
|
859
976
|
listLayers(
|
|
860
977
|
args: ListLayersCommandInput,
|
|
@@ -1005,6 +1122,19 @@ export interface Lambda {
|
|
|
1005
1122
|
options: __HttpHandlerOptions,
|
|
1006
1123
|
cb: (err: any, data?: PutFunctionRecursionConfigCommandOutput) => void
|
|
1007
1124
|
): void;
|
|
1125
|
+
putFunctionScalingConfig(
|
|
1126
|
+
args: PutFunctionScalingConfigCommandInput,
|
|
1127
|
+
options?: __HttpHandlerOptions
|
|
1128
|
+
): Promise<PutFunctionScalingConfigCommandOutput>;
|
|
1129
|
+
putFunctionScalingConfig(
|
|
1130
|
+
args: PutFunctionScalingConfigCommandInput,
|
|
1131
|
+
cb: (err: any, data?: PutFunctionScalingConfigCommandOutput) => void
|
|
1132
|
+
): void;
|
|
1133
|
+
putFunctionScalingConfig(
|
|
1134
|
+
args: PutFunctionScalingConfigCommandInput,
|
|
1135
|
+
options: __HttpHandlerOptions,
|
|
1136
|
+
cb: (err: any, data?: PutFunctionScalingConfigCommandOutput) => void
|
|
1137
|
+
): void;
|
|
1008
1138
|
putProvisionedConcurrencyConfig(
|
|
1009
1139
|
args: PutProvisionedConcurrencyConfigCommandInput,
|
|
1010
1140
|
options?: __HttpHandlerOptions
|
|
@@ -1096,6 +1226,19 @@ export interface Lambda {
|
|
|
1096
1226
|
options: __HttpHandlerOptions,
|
|
1097
1227
|
cb: (err: any, data?: UpdateAliasCommandOutput) => void
|
|
1098
1228
|
): void;
|
|
1229
|
+
updateCapacityProvider(
|
|
1230
|
+
args: UpdateCapacityProviderCommandInput,
|
|
1231
|
+
options?: __HttpHandlerOptions
|
|
1232
|
+
): Promise<UpdateCapacityProviderCommandOutput>;
|
|
1233
|
+
updateCapacityProvider(
|
|
1234
|
+
args: UpdateCapacityProviderCommandInput,
|
|
1235
|
+
cb: (err: any, data?: UpdateCapacityProviderCommandOutput) => void
|
|
1236
|
+
): void;
|
|
1237
|
+
updateCapacityProvider(
|
|
1238
|
+
args: UpdateCapacityProviderCommandInput,
|
|
1239
|
+
options: __HttpHandlerOptions,
|
|
1240
|
+
cb: (err: any, data?: UpdateCapacityProviderCommandOutput) => void
|
|
1241
|
+
): void;
|
|
1099
1242
|
updateCodeSigningConfig(
|
|
1100
1243
|
args: UpdateCodeSigningConfigCommandInput,
|
|
1101
1244
|
options?: __HttpHandlerOptions
|