@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.
Files changed (68) hide show
  1. package/README.md +64 -0
  2. package/dist-cjs/index.js +630 -21
  3. package/dist-es/Lambda.js +16 -0
  4. package/dist-es/commands/CreateCapacityProviderCommand.js +16 -0
  5. package/dist-es/commands/DeleteCapacityProviderCommand.js +16 -0
  6. package/dist-es/commands/GetCapacityProviderCommand.js +16 -0
  7. package/dist-es/commands/GetFunctionScalingConfigCommand.js +16 -0
  8. package/dist-es/commands/ListCapacityProvidersCommand.js +16 -0
  9. package/dist-es/commands/ListFunctionVersionsByCapacityProviderCommand.js +16 -0
  10. package/dist-es/commands/PutFunctionScalingConfigCommand.js +16 -0
  11. package/dist-es/commands/UpdateCapacityProviderCommand.js +16 -0
  12. package/dist-es/commands/index.js +8 -0
  13. package/dist-es/models/enums.js +50 -6
  14. package/dist-es/models/errors.js +44 -0
  15. package/dist-es/pagination/ListCapacityProvidersPaginator.js +4 -0
  16. package/dist-es/pagination/ListFunctionVersionsByCapacityProviderPaginator.js +4 -0
  17. package/dist-es/pagination/index.js +2 -0
  18. package/dist-es/schemas/schemas_0.js +415 -16
  19. package/dist-types/Lambda.d.ts +57 -0
  20. package/dist-types/LambdaClient.d.ts +10 -2
  21. package/dist-types/commands/CreateCapacityProviderCommand.d.ts +162 -0
  22. package/dist-types/commands/CreateFunctionCommand.d.ts +22 -3
  23. package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +126 -0
  24. package/dist-types/commands/DeleteFunctionCommand.d.ts +6 -4
  25. package/dist-types/commands/GetCapacityProviderCommand.d.ts +123 -0
  26. package/dist-types/commands/GetFunctionCommand.d.ts +11 -3
  27. package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +11 -3
  28. package/dist-types/commands/GetFunctionScalingConfigCommand.d.ts +95 -0
  29. package/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +4 -4
  30. package/dist-types/commands/InvokeCommand.d.ts +4 -1
  31. package/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +4 -1
  32. package/dist-types/commands/ListCapacityProvidersCommand.d.ts +125 -0
  33. package/dist-types/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +95 -0
  34. package/dist-types/commands/ListFunctionsCommand.d.ts +11 -3
  35. package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +11 -3
  36. package/dist-types/commands/PublishVersionCommand.d.ts +15 -3
  37. package/dist-types/commands/PutFunctionScalingConfigCommand.d.ts +94 -0
  38. package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +136 -0
  39. package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +12 -3
  40. package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +18 -3
  41. package/dist-types/commands/index.d.ts +8 -0
  42. package/dist-types/models/enums.d.ts +90 -14
  43. package/dist-types/models/errors.d.ts +53 -1
  44. package/dist-types/models/models_0.d.ts +642 -147
  45. package/dist-types/pagination/ListCapacityProvidersPaginator.d.ts +7 -0
  46. package/dist-types/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +7 -0
  47. package/dist-types/pagination/index.d.ts +2 -0
  48. package/dist-types/schemas/schemas_0.d.ts +44 -0
  49. package/dist-types/ts3.4/Lambda.d.ts +143 -0
  50. package/dist-types/ts3.4/LambdaClient.d.ts +48 -0
  51. package/dist-types/ts3.4/commands/CreateCapacityProviderCommand.d.ts +51 -0
  52. package/dist-types/ts3.4/commands/DeleteCapacityProviderCommand.d.ts +51 -0
  53. package/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +8 -3
  54. package/dist-types/ts3.4/commands/GetCapacityProviderCommand.d.ts +51 -0
  55. package/dist-types/ts3.4/commands/GetFunctionScalingConfigCommand.d.ts +51 -0
  56. package/dist-types/ts3.4/commands/ListCapacityProvidersCommand.d.ts +51 -0
  57. package/dist-types/ts3.4/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +51 -0
  58. package/dist-types/ts3.4/commands/PutFunctionScalingConfigCommand.d.ts +51 -0
  59. package/dist-types/ts3.4/commands/UpdateCapacityProviderCommand.d.ts +51 -0
  60. package/dist-types/ts3.4/commands/index.d.ts +8 -0
  61. package/dist-types/ts3.4/models/enums.d.ts +59 -7
  62. package/dist-types/ts3.4/models/errors.d.ts +31 -0
  63. package/dist-types/ts3.4/models/models_0.d.ts +172 -42
  64. package/dist-types/ts3.4/pagination/ListCapacityProvidersPaginator.d.ts +11 -0
  65. package/dist-types/ts3.4/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +11 -0
  66. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  67. package/dist-types/ts3.4/schemas/schemas_0.d.ts +44 -0
  68. package/package.json +5 -5
@@ -65,6 +65,10 @@ import {
65
65
  CreateAliasCommandInput,
66
66
  CreateAliasCommandOutput,
67
67
  } from "./commands/CreateAliasCommand";
68
+ import {
69
+ CreateCapacityProviderCommandInput,
70
+ CreateCapacityProviderCommandOutput,
71
+ } from "./commands/CreateCapacityProviderCommand";
68
72
  import {
69
73
  CreateCodeSigningConfigCommandInput,
70
74
  CreateCodeSigningConfigCommandOutput,
@@ -85,6 +89,10 @@ import {
85
89
  DeleteAliasCommandInput,
86
90
  DeleteAliasCommandOutput,
87
91
  } from "./commands/DeleteAliasCommand";
92
+ import {
93
+ DeleteCapacityProviderCommandInput,
94
+ DeleteCapacityProviderCommandOutput,
95
+ } from "./commands/DeleteCapacityProviderCommand";
88
96
  import {
89
97
  DeleteCodeSigningConfigCommandInput,
90
98
  DeleteCodeSigningConfigCommandOutput,
@@ -129,6 +137,10 @@ import {
129
137
  GetAliasCommandInput,
130
138
  GetAliasCommandOutput,
131
139
  } from "./commands/GetAliasCommand";
140
+ import {
141
+ GetCapacityProviderCommandInput,
142
+ GetCapacityProviderCommandOutput,
143
+ } from "./commands/GetCapacityProviderCommand";
132
144
  import {
133
145
  GetCodeSigningConfigCommandInput,
134
146
  GetCodeSigningConfigCommandOutput,
@@ -161,6 +173,10 @@ import {
161
173
  GetFunctionRecursionConfigCommandInput,
162
174
  GetFunctionRecursionConfigCommandOutput,
163
175
  } from "./commands/GetFunctionRecursionConfigCommand";
176
+ import {
177
+ GetFunctionScalingConfigCommandInput,
178
+ GetFunctionScalingConfigCommandOutput,
179
+ } from "./commands/GetFunctionScalingConfigCommand";
164
180
  import {
165
181
  GetFunctionUrlConfigCommandInput,
166
182
  GetFunctionUrlConfigCommandOutput,
@@ -205,6 +221,10 @@ import {
205
221
  ListAliasesCommandInput,
206
222
  ListAliasesCommandOutput,
207
223
  } from "./commands/ListAliasesCommand";
224
+ import {
225
+ ListCapacityProvidersCommandInput,
226
+ ListCapacityProvidersCommandOutput,
227
+ } from "./commands/ListCapacityProvidersCommand";
208
228
  import {
209
229
  ListCodeSigningConfigsCommandInput,
210
230
  ListCodeSigningConfigsCommandOutput,
@@ -229,6 +249,10 @@ import {
229
249
  ListFunctionUrlConfigsCommandInput,
230
250
  ListFunctionUrlConfigsCommandOutput,
231
251
  } from "./commands/ListFunctionUrlConfigsCommand";
252
+ import {
253
+ ListFunctionVersionsByCapacityProviderCommandInput,
254
+ ListFunctionVersionsByCapacityProviderCommandOutput,
255
+ } from "./commands/ListFunctionVersionsByCapacityProviderCommand";
232
256
  import {
233
257
  ListLayersCommandInput,
234
258
  ListLayersCommandOutput,
@@ -273,6 +297,10 @@ import {
273
297
  PutFunctionRecursionConfigCommandInput,
274
298
  PutFunctionRecursionConfigCommandOutput,
275
299
  } from "./commands/PutFunctionRecursionConfigCommand";
300
+ import {
301
+ PutFunctionScalingConfigCommandInput,
302
+ PutFunctionScalingConfigCommandOutput,
303
+ } from "./commands/PutFunctionScalingConfigCommand";
276
304
  import {
277
305
  PutProvisionedConcurrencyConfigCommandInput,
278
306
  PutProvisionedConcurrencyConfigCommandOutput,
@@ -301,6 +329,10 @@ import {
301
329
  UpdateAliasCommandInput,
302
330
  UpdateAliasCommandOutput,
303
331
  } from "./commands/UpdateAliasCommand";
332
+ import {
333
+ UpdateCapacityProviderCommandInput,
334
+ UpdateCapacityProviderCommandOutput,
335
+ } from "./commands/UpdateCapacityProviderCommand";
304
336
  import {
305
337
  UpdateCodeSigningConfigCommandInput,
306
338
  UpdateCodeSigningConfigCommandOutput,
@@ -336,11 +368,13 @@ export type ServiceInputTypes =
336
368
  | AddLayerVersionPermissionCommandInput
337
369
  | AddPermissionCommandInput
338
370
  | CreateAliasCommandInput
371
+ | CreateCapacityProviderCommandInput
339
372
  | CreateCodeSigningConfigCommandInput
340
373
  | CreateEventSourceMappingCommandInput
341
374
  | CreateFunctionCommandInput
342
375
  | CreateFunctionUrlConfigCommandInput
343
376
  | DeleteAliasCommandInput
377
+ | DeleteCapacityProviderCommandInput
344
378
  | DeleteCodeSigningConfigCommandInput
345
379
  | DeleteEventSourceMappingCommandInput
346
380
  | DeleteFunctionCodeSigningConfigCommandInput
@@ -352,6 +386,7 @@ export type ServiceInputTypes =
352
386
  | DeleteProvisionedConcurrencyConfigCommandInput
353
387
  | GetAccountSettingsCommandInput
354
388
  | GetAliasCommandInput
389
+ | GetCapacityProviderCommandInput
355
390
  | GetCodeSigningConfigCommandInput
356
391
  | GetEventSourceMappingCommandInput
357
392
  | GetFunctionCodeSigningConfigCommandInput
@@ -360,6 +395,7 @@ export type ServiceInputTypes =
360
395
  | GetFunctionConfigurationCommandInput
361
396
  | GetFunctionEventInvokeConfigCommandInput
362
397
  | GetFunctionRecursionConfigCommandInput
398
+ | GetFunctionScalingConfigCommandInput
363
399
  | GetFunctionUrlConfigCommandInput
364
400
  | GetLayerVersionByArnCommandInput
365
401
  | GetLayerVersionCommandInput
@@ -371,10 +407,12 @@ export type ServiceInputTypes =
371
407
  | InvokeCommandInput
372
408
  | InvokeWithResponseStreamCommandInput
373
409
  | ListAliasesCommandInput
410
+ | ListCapacityProvidersCommandInput
374
411
  | ListCodeSigningConfigsCommandInput
375
412
  | ListEventSourceMappingsCommandInput
376
413
  | ListFunctionEventInvokeConfigsCommandInput
377
414
  | ListFunctionUrlConfigsCommandInput
415
+ | ListFunctionVersionsByCapacityProviderCommandInput
378
416
  | ListFunctionsByCodeSigningConfigCommandInput
379
417
  | ListFunctionsCommandInput
380
418
  | ListLayerVersionsCommandInput
@@ -388,6 +426,7 @@ export type ServiceInputTypes =
388
426
  | PutFunctionConcurrencyCommandInput
389
427
  | PutFunctionEventInvokeConfigCommandInput
390
428
  | PutFunctionRecursionConfigCommandInput
429
+ | PutFunctionScalingConfigCommandInput
391
430
  | PutProvisionedConcurrencyConfigCommandInput
392
431
  | PutRuntimeManagementConfigCommandInput
393
432
  | RemoveLayerVersionPermissionCommandInput
@@ -395,6 +434,7 @@ export type ServiceInputTypes =
395
434
  | TagResourceCommandInput
396
435
  | UntagResourceCommandInput
397
436
  | UpdateAliasCommandInput
437
+ | UpdateCapacityProviderCommandInput
398
438
  | UpdateCodeSigningConfigCommandInput
399
439
  | UpdateEventSourceMappingCommandInput
400
440
  | UpdateFunctionCodeCommandInput
@@ -405,11 +445,13 @@ export type ServiceOutputTypes =
405
445
  | AddLayerVersionPermissionCommandOutput
406
446
  | AddPermissionCommandOutput
407
447
  | CreateAliasCommandOutput
448
+ | CreateCapacityProviderCommandOutput
408
449
  | CreateCodeSigningConfigCommandOutput
409
450
  | CreateEventSourceMappingCommandOutput
410
451
  | CreateFunctionCommandOutput
411
452
  | CreateFunctionUrlConfigCommandOutput
412
453
  | DeleteAliasCommandOutput
454
+ | DeleteCapacityProviderCommandOutput
413
455
  | DeleteCodeSigningConfigCommandOutput
414
456
  | DeleteEventSourceMappingCommandOutput
415
457
  | DeleteFunctionCodeSigningConfigCommandOutput
@@ -421,6 +463,7 @@ export type ServiceOutputTypes =
421
463
  | DeleteProvisionedConcurrencyConfigCommandOutput
422
464
  | GetAccountSettingsCommandOutput
423
465
  | GetAliasCommandOutput
466
+ | GetCapacityProviderCommandOutput
424
467
  | GetCodeSigningConfigCommandOutput
425
468
  | GetEventSourceMappingCommandOutput
426
469
  | GetFunctionCodeSigningConfigCommandOutput
@@ -429,6 +472,7 @@ export type ServiceOutputTypes =
429
472
  | GetFunctionConfigurationCommandOutput
430
473
  | GetFunctionEventInvokeConfigCommandOutput
431
474
  | GetFunctionRecursionConfigCommandOutput
475
+ | GetFunctionScalingConfigCommandOutput
432
476
  | GetFunctionUrlConfigCommandOutput
433
477
  | GetLayerVersionByArnCommandOutput
434
478
  | GetLayerVersionCommandOutput
@@ -440,10 +484,12 @@ export type ServiceOutputTypes =
440
484
  | InvokeCommandOutput
441
485
  | InvokeWithResponseStreamCommandOutput
442
486
  | ListAliasesCommandOutput
487
+ | ListCapacityProvidersCommandOutput
443
488
  | ListCodeSigningConfigsCommandOutput
444
489
  | ListEventSourceMappingsCommandOutput
445
490
  | ListFunctionEventInvokeConfigsCommandOutput
446
491
  | ListFunctionUrlConfigsCommandOutput
492
+ | ListFunctionVersionsByCapacityProviderCommandOutput
447
493
  | ListFunctionsByCodeSigningConfigCommandOutput
448
494
  | ListFunctionsCommandOutput
449
495
  | ListLayerVersionsCommandOutput
@@ -457,6 +503,7 @@ export type ServiceOutputTypes =
457
503
  | PutFunctionConcurrencyCommandOutput
458
504
  | PutFunctionEventInvokeConfigCommandOutput
459
505
  | PutFunctionRecursionConfigCommandOutput
506
+ | PutFunctionScalingConfigCommandOutput
460
507
  | PutProvisionedConcurrencyConfigCommandOutput
461
508
  | PutRuntimeManagementConfigCommandOutput
462
509
  | RemoveLayerVersionPermissionCommandOutput
@@ -464,6 +511,7 @@ export type ServiceOutputTypes =
464
511
  | TagResourceCommandOutput
465
512
  | UntagResourceCommandOutput
466
513
  | UpdateAliasCommandOutput
514
+ | UpdateCapacityProviderCommandOutput
467
515
  | UpdateCodeSigningConfigCommandOutput
468
516
  | UpdateEventSourceMappingCommandOutput
469
517
  | UpdateFunctionCodeCommandOutput
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ LambdaClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../LambdaClient";
8
+ import {
9
+ CreateCapacityProviderRequest,
10
+ CreateCapacityProviderResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateCapacityProviderCommandInput
15
+ extends CreateCapacityProviderRequest {}
16
+ export interface CreateCapacityProviderCommandOutput
17
+ extends CreateCapacityProviderResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateCapacityProviderCommand_base: {
20
+ new (
21
+ input: CreateCapacityProviderCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateCapacityProviderCommandInput,
24
+ CreateCapacityProviderCommandOutput,
25
+ LambdaClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateCapacityProviderCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateCapacityProviderCommandInput,
33
+ CreateCapacityProviderCommandOutput,
34
+ LambdaClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateCapacityProviderCommand extends CreateCapacityProviderCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateCapacityProviderRequest;
44
+ output: CreateCapacityProviderResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateCapacityProviderCommandInput;
48
+ output: CreateCapacityProviderCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ LambdaClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../LambdaClient";
8
+ import {
9
+ DeleteCapacityProviderRequest,
10
+ DeleteCapacityProviderResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteCapacityProviderCommandInput
15
+ extends DeleteCapacityProviderRequest {}
16
+ export interface DeleteCapacityProviderCommandOutput
17
+ extends DeleteCapacityProviderResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteCapacityProviderCommand_base: {
20
+ new (
21
+ input: DeleteCapacityProviderCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteCapacityProviderCommandInput,
24
+ DeleteCapacityProviderCommandOutput,
25
+ LambdaClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteCapacityProviderCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteCapacityProviderCommandInput,
33
+ DeleteCapacityProviderCommandOutput,
34
+ LambdaClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteCapacityProviderCommand extends DeleteCapacityProviderCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteCapacityProviderRequest;
44
+ output: DeleteCapacityProviderResponse;
45
+ };
46
+ sdk: {
47
+ input: DeleteCapacityProviderCommandInput;
48
+ output: DeleteCapacityProviderCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -5,11 +5,16 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../LambdaClient";
8
- import { DeleteFunctionRequest } from "../models/models_0";
8
+ import {
9
+ DeleteFunctionRequest,
10
+ DeleteFunctionResponse,
11
+ } from "../models/models_0";
9
12
  export { __MetadataBearer };
10
13
  export { $Command };
11
14
  export interface DeleteFunctionCommandInput extends DeleteFunctionRequest {}
12
- export interface DeleteFunctionCommandOutput extends __MetadataBearer {}
15
+ export interface DeleteFunctionCommandOutput
16
+ extends DeleteFunctionResponse,
17
+ __MetadataBearer {}
13
18
  declare const DeleteFunctionCommand_base: {
14
19
  new (
15
20
  input: DeleteFunctionCommandInput
@@ -35,7 +40,7 @@ export declare class DeleteFunctionCommand extends DeleteFunctionCommand_base {
35
40
  protected static __types: {
36
41
  api: {
37
42
  input: DeleteFunctionRequest;
38
- output: {};
43
+ output: DeleteFunctionResponse;
39
44
  };
40
45
  sdk: {
41
46
  input: DeleteFunctionCommandInput;
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ LambdaClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../LambdaClient";
8
+ import {
9
+ GetCapacityProviderRequest,
10
+ GetCapacityProviderResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetCapacityProviderCommandInput
15
+ extends GetCapacityProviderRequest {}
16
+ export interface GetCapacityProviderCommandOutput
17
+ extends GetCapacityProviderResponse,
18
+ __MetadataBearer {}
19
+ declare const GetCapacityProviderCommand_base: {
20
+ new (
21
+ input: GetCapacityProviderCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetCapacityProviderCommandInput,
24
+ GetCapacityProviderCommandOutput,
25
+ LambdaClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetCapacityProviderCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetCapacityProviderCommandInput,
33
+ GetCapacityProviderCommandOutput,
34
+ LambdaClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetCapacityProviderCommand extends GetCapacityProviderCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetCapacityProviderRequest;
44
+ output: GetCapacityProviderResponse;
45
+ };
46
+ sdk: {
47
+ input: GetCapacityProviderCommandInput;
48
+ output: GetCapacityProviderCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ LambdaClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../LambdaClient";
8
+ import {
9
+ GetFunctionScalingConfigRequest,
10
+ GetFunctionScalingConfigResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetFunctionScalingConfigCommandInput
15
+ extends GetFunctionScalingConfigRequest {}
16
+ export interface GetFunctionScalingConfigCommandOutput
17
+ extends GetFunctionScalingConfigResponse,
18
+ __MetadataBearer {}
19
+ declare const GetFunctionScalingConfigCommand_base: {
20
+ new (
21
+ input: GetFunctionScalingConfigCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetFunctionScalingConfigCommandInput,
24
+ GetFunctionScalingConfigCommandOutput,
25
+ LambdaClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetFunctionScalingConfigCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetFunctionScalingConfigCommandInput,
33
+ GetFunctionScalingConfigCommandOutput,
34
+ LambdaClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetFunctionScalingConfigCommand extends GetFunctionScalingConfigCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetFunctionScalingConfigRequest;
44
+ output: GetFunctionScalingConfigResponse;
45
+ };
46
+ sdk: {
47
+ input: GetFunctionScalingConfigCommandInput;
48
+ output: GetFunctionScalingConfigCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ LambdaClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../LambdaClient";
8
+ import {
9
+ ListCapacityProvidersRequest,
10
+ ListCapacityProvidersResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListCapacityProvidersCommandInput
15
+ extends ListCapacityProvidersRequest {}
16
+ export interface ListCapacityProvidersCommandOutput
17
+ extends ListCapacityProvidersResponse,
18
+ __MetadataBearer {}
19
+ declare const ListCapacityProvidersCommand_base: {
20
+ new (
21
+ input: ListCapacityProvidersCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListCapacityProvidersCommandInput,
24
+ ListCapacityProvidersCommandOutput,
25
+ LambdaClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListCapacityProvidersCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListCapacityProvidersCommandInput,
33
+ ListCapacityProvidersCommandOutput,
34
+ LambdaClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListCapacityProvidersCommand extends ListCapacityProvidersCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListCapacityProvidersRequest;
44
+ output: ListCapacityProvidersResponse;
45
+ };
46
+ sdk: {
47
+ input: ListCapacityProvidersCommandInput;
48
+ output: ListCapacityProvidersCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ LambdaClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../LambdaClient";
8
+ import {
9
+ ListFunctionVersionsByCapacityProviderRequest,
10
+ ListFunctionVersionsByCapacityProviderResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListFunctionVersionsByCapacityProviderCommandInput
15
+ extends ListFunctionVersionsByCapacityProviderRequest {}
16
+ export interface ListFunctionVersionsByCapacityProviderCommandOutput
17
+ extends ListFunctionVersionsByCapacityProviderResponse,
18
+ __MetadataBearer {}
19
+ declare const ListFunctionVersionsByCapacityProviderCommand_base: {
20
+ new (
21
+ input: ListFunctionVersionsByCapacityProviderCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListFunctionVersionsByCapacityProviderCommandInput,
24
+ ListFunctionVersionsByCapacityProviderCommandOutput,
25
+ LambdaClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListFunctionVersionsByCapacityProviderCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListFunctionVersionsByCapacityProviderCommandInput,
33
+ ListFunctionVersionsByCapacityProviderCommandOutput,
34
+ LambdaClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListFunctionVersionsByCapacityProviderCommand extends ListFunctionVersionsByCapacityProviderCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListFunctionVersionsByCapacityProviderRequest;
44
+ output: ListFunctionVersionsByCapacityProviderResponse;
45
+ };
46
+ sdk: {
47
+ input: ListFunctionVersionsByCapacityProviderCommandInput;
48
+ output: ListFunctionVersionsByCapacityProviderCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ LambdaClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../LambdaClient";
8
+ import {
9
+ PutFunctionScalingConfigRequest,
10
+ PutFunctionScalingConfigResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface PutFunctionScalingConfigCommandInput
15
+ extends PutFunctionScalingConfigRequest {}
16
+ export interface PutFunctionScalingConfigCommandOutput
17
+ extends PutFunctionScalingConfigResponse,
18
+ __MetadataBearer {}
19
+ declare const PutFunctionScalingConfigCommand_base: {
20
+ new (
21
+ input: PutFunctionScalingConfigCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ PutFunctionScalingConfigCommandInput,
24
+ PutFunctionScalingConfigCommandOutput,
25
+ LambdaClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: PutFunctionScalingConfigCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ PutFunctionScalingConfigCommandInput,
33
+ PutFunctionScalingConfigCommandOutput,
34
+ LambdaClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class PutFunctionScalingConfigCommand extends PutFunctionScalingConfigCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: PutFunctionScalingConfigRequest;
44
+ output: PutFunctionScalingConfigResponse;
45
+ };
46
+ sdk: {
47
+ input: PutFunctionScalingConfigCommandInput;
48
+ output: PutFunctionScalingConfigCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ LambdaClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../LambdaClient";
8
+ import {
9
+ UpdateCapacityProviderRequest,
10
+ UpdateCapacityProviderResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateCapacityProviderCommandInput
15
+ extends UpdateCapacityProviderRequest {}
16
+ export interface UpdateCapacityProviderCommandOutput
17
+ extends UpdateCapacityProviderResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateCapacityProviderCommand_base: {
20
+ new (
21
+ input: UpdateCapacityProviderCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateCapacityProviderCommandInput,
24
+ UpdateCapacityProviderCommandOutput,
25
+ LambdaClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateCapacityProviderCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateCapacityProviderCommandInput,
33
+ UpdateCapacityProviderCommandOutput,
34
+ LambdaClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateCapacityProviderCommand extends UpdateCapacityProviderCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateCapacityProviderRequest;
44
+ output: UpdateCapacityProviderResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateCapacityProviderCommandInput;
48
+ output: UpdateCapacityProviderCommandOutput;
49
+ };
50
+ };
51
+ }