@aws-sdk/client-lambda 3.940.0 → 3.943.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 +136 -0
- package/dist-cjs/index.js +1663 -100
- package/dist-es/Lambda.js +34 -0
- package/dist-es/commands/CheckpointDurableExecutionCommand.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/GetDurableExecutionCommand.js +16 -0
- package/dist-es/commands/GetDurableExecutionHistoryCommand.js +16 -0
- package/dist-es/commands/GetDurableExecutionStateCommand.js +16 -0
- package/dist-es/commands/GetFunctionScalingConfigCommand.js +16 -0
- package/dist-es/commands/ListCapacityProvidersCommand.js +16 -0
- package/dist-es/commands/ListDurableExecutionsByFunctionCommand.js +16 -0
- package/dist-es/commands/ListFunctionVersionsByCapacityProviderCommand.js +16 -0
- package/dist-es/commands/PutFunctionScalingConfigCommand.js +16 -0
- package/dist-es/commands/SendDurableExecutionCallbackFailureCommand.js +16 -0
- package/dist-es/commands/SendDurableExecutionCallbackHeartbeatCommand.js +16 -0
- package/dist-es/commands/SendDurableExecutionCallbackSuccessCommand.js +16 -0
- package/dist-es/commands/StopDurableExecutionCommand.js +16 -0
- package/dist-es/commands/UpdateCapacityProviderCommand.js +16 -0
- package/dist-es/commands/index.js +17 -0
- package/dist-es/models/enums.js +109 -6
- package/dist-es/models/errors.js +76 -0
- package/dist-es/pagination/GetDurableExecutionHistoryPaginator.js +4 -0
- package/dist-es/pagination/GetDurableExecutionStatePaginator.js +4 -0
- package/dist-es/pagination/ListCapacityProvidersPaginator.js +4 -0
- package/dist-es/pagination/ListDurableExecutionsByFunctionPaginator.js +4 -0
- package/dist-es/pagination/ListFunctionVersionsByCapacityProviderPaginator.js +4 -0
- package/dist-es/pagination/index.js +5 -0
- package/dist-es/schemas/schemas_0.js +1216 -95
- package/dist-types/Lambda.d.ts +120 -0
- package/dist-types/LambdaClient.d.ts +19 -2
- package/dist-types/commands/CheckpointDurableExecutionCommand.d.ts +190 -0
- package/dist-types/commands/CreateCapacityProviderCommand.d.ts +162 -0
- package/dist-types/commands/CreateFunctionCommand.d.ts +38 -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/GetDurableExecutionCommand.d.ts +105 -0
- package/dist-types/commands/GetDurableExecutionHistoryCommand.d.ts +259 -0
- package/dist-types/commands/GetDurableExecutionStateCommand.d.ts +152 -0
- package/dist-types/commands/GetFunctionCommand.d.ts +19 -3
- package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +19 -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 +11 -1
- package/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +4 -1
- package/dist-types/commands/ListCapacityProvidersCommand.d.ts +125 -0
- package/dist-types/commands/ListDurableExecutionsByFunctionCommand.d.ts +106 -0
- package/dist-types/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +95 -0
- package/dist-types/commands/ListFunctionsCommand.d.ts +19 -3
- package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +23 -3
- package/dist-types/commands/PublishVersionCommand.d.ts +19 -3
- package/dist-types/commands/PutFunctionScalingConfigCommand.d.ts +94 -0
- package/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +92 -0
- package/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +84 -0
- package/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +91 -0
- package/dist-types/commands/StopDurableExecutionCommand.d.ts +94 -0
- package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +136 -0
- package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +16 -3
- package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +34 -3
- package/dist-types/commands/index.d.ts +17 -0
- package/dist-types/models/enums.d.ts +189 -14
- package/dist-types/models/errors.d.ts +89 -1
- package/dist-types/models/models_0.d.ts +3205 -1373
- package/dist-types/pagination/GetDurableExecutionHistoryPaginator.d.ts +7 -0
- package/dist-types/pagination/GetDurableExecutionStatePaginator.d.ts +7 -0
- package/dist-types/pagination/ListCapacityProvidersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +7 -0
- package/dist-types/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/schemas/schemas_0.d.ts +134 -0
- package/dist-types/ts3.4/Lambda.d.ts +314 -0
- package/dist-types/ts3.4/LambdaClient.d.ts +102 -0
- package/dist-types/ts3.4/commands/CheckpointDurableExecutionCommand.d.ts +51 -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/GetDurableExecutionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDurableExecutionHistoryCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDurableExecutionStateCommand.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/ListDurableExecutionsByFunctionCommand.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/SendDurableExecutionCallbackFailureCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +60 -0
- package/dist-types/ts3.4/commands/StopDurableExecutionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateCapacityProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +17 -0
- package/dist-types/ts3.4/models/enums.d.ts +126 -7
- package/dist-types/ts3.4/models/errors.d.ts +52 -0
- package/dist-types/ts3.4/models/models_0.d.ts +494 -42
- package/dist-types/ts3.4/pagination/GetDurableExecutionHistoryPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/GetDurableExecutionStatePaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCapacityProvidersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +134 -0
- package/package.json +5 -5
package/dist-es/Lambda.js
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import { createAggregatedClient } from "@smithy/smithy-client";
|
|
2
2
|
import { AddLayerVersionPermissionCommand, } from "./commands/AddLayerVersionPermissionCommand";
|
|
3
3
|
import { AddPermissionCommand, } from "./commands/AddPermissionCommand";
|
|
4
|
+
import { CheckpointDurableExecutionCommand, } from "./commands/CheckpointDurableExecutionCommand";
|
|
4
5
|
import { CreateAliasCommand } from "./commands/CreateAliasCommand";
|
|
6
|
+
import { CreateCapacityProviderCommand, } from "./commands/CreateCapacityProviderCommand";
|
|
5
7
|
import { CreateCodeSigningConfigCommand, } from "./commands/CreateCodeSigningConfigCommand";
|
|
6
8
|
import { CreateEventSourceMappingCommand, } from "./commands/CreateEventSourceMappingCommand";
|
|
7
9
|
import { CreateFunctionCommand, } from "./commands/CreateFunctionCommand";
|
|
8
10
|
import { CreateFunctionUrlConfigCommand, } from "./commands/CreateFunctionUrlConfigCommand";
|
|
9
11
|
import { DeleteAliasCommand } from "./commands/DeleteAliasCommand";
|
|
12
|
+
import { DeleteCapacityProviderCommand, } from "./commands/DeleteCapacityProviderCommand";
|
|
10
13
|
import { DeleteCodeSigningConfigCommand, } from "./commands/DeleteCodeSigningConfigCommand";
|
|
11
14
|
import { DeleteEventSourceMappingCommand, } from "./commands/DeleteEventSourceMappingCommand";
|
|
12
15
|
import { DeleteFunctionCodeSigningConfigCommand, } from "./commands/DeleteFunctionCodeSigningConfigCommand";
|
|
@@ -18,7 +21,11 @@ import { DeleteLayerVersionCommand, } from "./commands/DeleteLayerVersionCommand
|
|
|
18
21
|
import { DeleteProvisionedConcurrencyConfigCommand, } from "./commands/DeleteProvisionedConcurrencyConfigCommand";
|
|
19
22
|
import { GetAccountSettingsCommand, } from "./commands/GetAccountSettingsCommand";
|
|
20
23
|
import { GetAliasCommand } from "./commands/GetAliasCommand";
|
|
24
|
+
import { GetCapacityProviderCommand, } from "./commands/GetCapacityProviderCommand";
|
|
21
25
|
import { GetCodeSigningConfigCommand, } from "./commands/GetCodeSigningConfigCommand";
|
|
26
|
+
import { GetDurableExecutionCommand, } from "./commands/GetDurableExecutionCommand";
|
|
27
|
+
import { GetDurableExecutionHistoryCommand, } from "./commands/GetDurableExecutionHistoryCommand";
|
|
28
|
+
import { GetDurableExecutionStateCommand, } from "./commands/GetDurableExecutionStateCommand";
|
|
22
29
|
import { GetEventSourceMappingCommand, } from "./commands/GetEventSourceMappingCommand";
|
|
23
30
|
import { GetFunctionCodeSigningConfigCommand, } from "./commands/GetFunctionCodeSigningConfigCommand";
|
|
24
31
|
import { GetFunctionCommand } from "./commands/GetFunctionCommand";
|
|
@@ -26,6 +33,7 @@ import { GetFunctionConcurrencyCommand, } from "./commands/GetFunctionConcurrenc
|
|
|
26
33
|
import { GetFunctionConfigurationCommand, } from "./commands/GetFunctionConfigurationCommand";
|
|
27
34
|
import { GetFunctionEventInvokeConfigCommand, } from "./commands/GetFunctionEventInvokeConfigCommand";
|
|
28
35
|
import { GetFunctionRecursionConfigCommand, } from "./commands/GetFunctionRecursionConfigCommand";
|
|
36
|
+
import { GetFunctionScalingConfigCommand, } from "./commands/GetFunctionScalingConfigCommand";
|
|
29
37
|
import { GetFunctionUrlConfigCommand, } from "./commands/GetFunctionUrlConfigCommand";
|
|
30
38
|
import { GetLayerVersionByArnCommand, } from "./commands/GetLayerVersionByArnCommand";
|
|
31
39
|
import { GetLayerVersionCommand, } from "./commands/GetLayerVersionCommand";
|
|
@@ -37,12 +45,15 @@ import { InvokeAsyncCommand } from "./commands/InvokeAsyncCommand";
|
|
|
37
45
|
import { InvokeCommand } from "./commands/InvokeCommand";
|
|
38
46
|
import { InvokeWithResponseStreamCommand, } from "./commands/InvokeWithResponseStreamCommand";
|
|
39
47
|
import { ListAliasesCommand } from "./commands/ListAliasesCommand";
|
|
48
|
+
import { ListCapacityProvidersCommand, } from "./commands/ListCapacityProvidersCommand";
|
|
40
49
|
import { ListCodeSigningConfigsCommand, } from "./commands/ListCodeSigningConfigsCommand";
|
|
50
|
+
import { ListDurableExecutionsByFunctionCommand, } from "./commands/ListDurableExecutionsByFunctionCommand";
|
|
41
51
|
import { ListEventSourceMappingsCommand, } from "./commands/ListEventSourceMappingsCommand";
|
|
42
52
|
import { ListFunctionEventInvokeConfigsCommand, } from "./commands/ListFunctionEventInvokeConfigsCommand";
|
|
43
53
|
import { ListFunctionsByCodeSigningConfigCommand, } from "./commands/ListFunctionsByCodeSigningConfigCommand";
|
|
44
54
|
import { ListFunctionsCommand, } from "./commands/ListFunctionsCommand";
|
|
45
55
|
import { ListFunctionUrlConfigsCommand, } from "./commands/ListFunctionUrlConfigsCommand";
|
|
56
|
+
import { ListFunctionVersionsByCapacityProviderCommand, } from "./commands/ListFunctionVersionsByCapacityProviderCommand";
|
|
46
57
|
import { ListLayersCommand } from "./commands/ListLayersCommand";
|
|
47
58
|
import { ListLayerVersionsCommand, } from "./commands/ListLayerVersionsCommand";
|
|
48
59
|
import { ListProvisionedConcurrencyConfigsCommand, } from "./commands/ListProvisionedConcurrencyConfigsCommand";
|
|
@@ -54,13 +65,19 @@ import { PutFunctionCodeSigningConfigCommand, } from "./commands/PutFunctionCode
|
|
|
54
65
|
import { PutFunctionConcurrencyCommand, } from "./commands/PutFunctionConcurrencyCommand";
|
|
55
66
|
import { PutFunctionEventInvokeConfigCommand, } from "./commands/PutFunctionEventInvokeConfigCommand";
|
|
56
67
|
import { PutFunctionRecursionConfigCommand, } from "./commands/PutFunctionRecursionConfigCommand";
|
|
68
|
+
import { PutFunctionScalingConfigCommand, } from "./commands/PutFunctionScalingConfigCommand";
|
|
57
69
|
import { PutProvisionedConcurrencyConfigCommand, } from "./commands/PutProvisionedConcurrencyConfigCommand";
|
|
58
70
|
import { PutRuntimeManagementConfigCommand, } from "./commands/PutRuntimeManagementConfigCommand";
|
|
59
71
|
import { RemoveLayerVersionPermissionCommand, } from "./commands/RemoveLayerVersionPermissionCommand";
|
|
60
72
|
import { RemovePermissionCommand, } from "./commands/RemovePermissionCommand";
|
|
73
|
+
import { SendDurableExecutionCallbackFailureCommand, } from "./commands/SendDurableExecutionCallbackFailureCommand";
|
|
74
|
+
import { SendDurableExecutionCallbackHeartbeatCommand, } from "./commands/SendDurableExecutionCallbackHeartbeatCommand";
|
|
75
|
+
import { SendDurableExecutionCallbackSuccessCommand, } from "./commands/SendDurableExecutionCallbackSuccessCommand";
|
|
76
|
+
import { StopDurableExecutionCommand, } from "./commands/StopDurableExecutionCommand";
|
|
61
77
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
62
78
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
63
79
|
import { UpdateAliasCommand } from "./commands/UpdateAliasCommand";
|
|
80
|
+
import { UpdateCapacityProviderCommand, } from "./commands/UpdateCapacityProviderCommand";
|
|
64
81
|
import { UpdateCodeSigningConfigCommand, } from "./commands/UpdateCodeSigningConfigCommand";
|
|
65
82
|
import { UpdateEventSourceMappingCommand, } from "./commands/UpdateEventSourceMappingCommand";
|
|
66
83
|
import { UpdateFunctionCodeCommand, } from "./commands/UpdateFunctionCodeCommand";
|
|
@@ -71,12 +88,15 @@ import { LambdaClient } from "./LambdaClient";
|
|
|
71
88
|
const commands = {
|
|
72
89
|
AddLayerVersionPermissionCommand,
|
|
73
90
|
AddPermissionCommand,
|
|
91
|
+
CheckpointDurableExecutionCommand,
|
|
74
92
|
CreateAliasCommand,
|
|
93
|
+
CreateCapacityProviderCommand,
|
|
75
94
|
CreateCodeSigningConfigCommand,
|
|
76
95
|
CreateEventSourceMappingCommand,
|
|
77
96
|
CreateFunctionCommand,
|
|
78
97
|
CreateFunctionUrlConfigCommand,
|
|
79
98
|
DeleteAliasCommand,
|
|
99
|
+
DeleteCapacityProviderCommand,
|
|
80
100
|
DeleteCodeSigningConfigCommand,
|
|
81
101
|
DeleteEventSourceMappingCommand,
|
|
82
102
|
DeleteFunctionCommand,
|
|
@@ -88,7 +108,11 @@ const commands = {
|
|
|
88
108
|
DeleteProvisionedConcurrencyConfigCommand,
|
|
89
109
|
GetAccountSettingsCommand,
|
|
90
110
|
GetAliasCommand,
|
|
111
|
+
GetCapacityProviderCommand,
|
|
91
112
|
GetCodeSigningConfigCommand,
|
|
113
|
+
GetDurableExecutionCommand,
|
|
114
|
+
GetDurableExecutionHistoryCommand,
|
|
115
|
+
GetDurableExecutionStateCommand,
|
|
92
116
|
GetEventSourceMappingCommand,
|
|
93
117
|
GetFunctionCommand,
|
|
94
118
|
GetFunctionCodeSigningConfigCommand,
|
|
@@ -96,6 +120,7 @@ const commands = {
|
|
|
96
120
|
GetFunctionConfigurationCommand,
|
|
97
121
|
GetFunctionEventInvokeConfigCommand,
|
|
98
122
|
GetFunctionRecursionConfigCommand,
|
|
123
|
+
GetFunctionScalingConfigCommand,
|
|
99
124
|
GetFunctionUrlConfigCommand,
|
|
100
125
|
GetLayerVersionCommand,
|
|
101
126
|
GetLayerVersionByArnCommand,
|
|
@@ -107,12 +132,15 @@ const commands = {
|
|
|
107
132
|
InvokeAsyncCommand,
|
|
108
133
|
InvokeWithResponseStreamCommand,
|
|
109
134
|
ListAliasesCommand,
|
|
135
|
+
ListCapacityProvidersCommand,
|
|
110
136
|
ListCodeSigningConfigsCommand,
|
|
137
|
+
ListDurableExecutionsByFunctionCommand,
|
|
111
138
|
ListEventSourceMappingsCommand,
|
|
112
139
|
ListFunctionEventInvokeConfigsCommand,
|
|
113
140
|
ListFunctionsCommand,
|
|
114
141
|
ListFunctionsByCodeSigningConfigCommand,
|
|
115
142
|
ListFunctionUrlConfigsCommand,
|
|
143
|
+
ListFunctionVersionsByCapacityProviderCommand,
|
|
116
144
|
ListLayersCommand,
|
|
117
145
|
ListLayerVersionsCommand,
|
|
118
146
|
ListProvisionedConcurrencyConfigsCommand,
|
|
@@ -124,13 +152,19 @@ const commands = {
|
|
|
124
152
|
PutFunctionConcurrencyCommand,
|
|
125
153
|
PutFunctionEventInvokeConfigCommand,
|
|
126
154
|
PutFunctionRecursionConfigCommand,
|
|
155
|
+
PutFunctionScalingConfigCommand,
|
|
127
156
|
PutProvisionedConcurrencyConfigCommand,
|
|
128
157
|
PutRuntimeManagementConfigCommand,
|
|
129
158
|
RemoveLayerVersionPermissionCommand,
|
|
130
159
|
RemovePermissionCommand,
|
|
160
|
+
SendDurableExecutionCallbackFailureCommand,
|
|
161
|
+
SendDurableExecutionCallbackHeartbeatCommand,
|
|
162
|
+
SendDurableExecutionCallbackSuccessCommand,
|
|
163
|
+
StopDurableExecutionCommand,
|
|
131
164
|
TagResourceCommand,
|
|
132
165
|
UntagResourceCommand,
|
|
133
166
|
UpdateAliasCommand,
|
|
167
|
+
UpdateCapacityProviderCommand,
|
|
134
168
|
UpdateCodeSigningConfigCommand,
|
|
135
169
|
UpdateEventSourceMappingCommand,
|
|
136
170
|
UpdateFunctionCodeCommand,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CheckpointDurableExecution } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CheckpointDurableExecutionCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGirApiService", "CheckpointDurableExecution", {})
|
|
13
|
+
.n("LambdaClient", "CheckpointDurableExecutionCommand")
|
|
14
|
+
.sc(CheckpointDurableExecution)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateCapacityProvider } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateCapacityProviderCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGirApiService", "CreateCapacityProvider", {})
|
|
13
|
+
.n("LambdaClient", "CreateCapacityProviderCommand")
|
|
14
|
+
.sc(CreateCapacityProvider)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteCapacityProvider } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteCapacityProviderCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGirApiService", "DeleteCapacityProvider", {})
|
|
13
|
+
.n("LambdaClient", "DeleteCapacityProviderCommand")
|
|
14
|
+
.sc(DeleteCapacityProvider)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetCapacityProvider } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetCapacityProviderCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGirApiService", "GetCapacityProvider", {})
|
|
13
|
+
.n("LambdaClient", "GetCapacityProviderCommand")
|
|
14
|
+
.sc(GetCapacityProvider)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetDurableExecution } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetDurableExecutionCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGirApiService", "GetDurableExecution", {})
|
|
13
|
+
.n("LambdaClient", "GetDurableExecutionCommand")
|
|
14
|
+
.sc(GetDurableExecution)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetDurableExecutionHistory } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetDurableExecutionHistoryCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGirApiService", "GetDurableExecutionHistory", {})
|
|
13
|
+
.n("LambdaClient", "GetDurableExecutionHistoryCommand")
|
|
14
|
+
.sc(GetDurableExecutionHistory)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetDurableExecutionState } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetDurableExecutionStateCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGirApiService", "GetDurableExecutionState", {})
|
|
13
|
+
.n("LambdaClient", "GetDurableExecutionStateCommand")
|
|
14
|
+
.sc(GetDurableExecutionState)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetFunctionScalingConfig } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetFunctionScalingConfigCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGirApiService", "GetFunctionScalingConfig", {})
|
|
13
|
+
.n("LambdaClient", "GetFunctionScalingConfigCommand")
|
|
14
|
+
.sc(GetFunctionScalingConfig)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListCapacityProviders } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListCapacityProvidersCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGirApiService", "ListCapacityProviders", {})
|
|
13
|
+
.n("LambdaClient", "ListCapacityProvidersCommand")
|
|
14
|
+
.sc(ListCapacityProviders)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListDurableExecutionsByFunction } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListDurableExecutionsByFunctionCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGirApiService", "ListDurableExecutionsByFunction", {})
|
|
13
|
+
.n("LambdaClient", "ListDurableExecutionsByFunctionCommand")
|
|
14
|
+
.sc(ListDurableExecutionsByFunction)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListFunctionVersionsByCapacityProvider } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListFunctionVersionsByCapacityProviderCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGirApiService", "ListFunctionVersionsByCapacityProvider", {})
|
|
13
|
+
.n("LambdaClient", "ListFunctionVersionsByCapacityProviderCommand")
|
|
14
|
+
.sc(ListFunctionVersionsByCapacityProvider)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { PutFunctionScalingConfig } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class PutFunctionScalingConfigCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGirApiService", "PutFunctionScalingConfig", {})
|
|
13
|
+
.n("LambdaClient", "PutFunctionScalingConfigCommand")
|
|
14
|
+
.sc(PutFunctionScalingConfig)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { SendDurableExecutionCallbackFailure } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class SendDurableExecutionCallbackFailureCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGirApiService", "SendDurableExecutionCallbackFailure", {})
|
|
13
|
+
.n("LambdaClient", "SendDurableExecutionCallbackFailureCommand")
|
|
14
|
+
.sc(SendDurableExecutionCallbackFailure)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { SendDurableExecutionCallbackHeartbeat } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class SendDurableExecutionCallbackHeartbeatCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGirApiService", "SendDurableExecutionCallbackHeartbeat", {})
|
|
13
|
+
.n("LambdaClient", "SendDurableExecutionCallbackHeartbeatCommand")
|
|
14
|
+
.sc(SendDurableExecutionCallbackHeartbeat)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { SendDurableExecutionCallbackSuccess } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class SendDurableExecutionCallbackSuccessCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGirApiService", "SendDurableExecutionCallbackSuccess", {})
|
|
13
|
+
.n("LambdaClient", "SendDurableExecutionCallbackSuccessCommand")
|
|
14
|
+
.sc(SendDurableExecutionCallbackSuccess)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { StopDurableExecution } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class StopDurableExecutionCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGirApiService", "StopDurableExecution", {})
|
|
13
|
+
.n("LambdaClient", "StopDurableExecutionCommand")
|
|
14
|
+
.sc(StopDurableExecution)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateCapacityProvider } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateCapacityProviderCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGirApiService", "UpdateCapacityProvider", {})
|
|
13
|
+
.n("LambdaClient", "UpdateCapacityProviderCommand")
|
|
14
|
+
.sc(UpdateCapacityProvider)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
export * from "./AddLayerVersionPermissionCommand";
|
|
2
2
|
export * from "./AddPermissionCommand";
|
|
3
|
+
export * from "./CheckpointDurableExecutionCommand";
|
|
3
4
|
export * from "./CreateAliasCommand";
|
|
5
|
+
export * from "./CreateCapacityProviderCommand";
|
|
4
6
|
export * from "./CreateCodeSigningConfigCommand";
|
|
5
7
|
export * from "./CreateEventSourceMappingCommand";
|
|
6
8
|
export * from "./CreateFunctionCommand";
|
|
7
9
|
export * from "./CreateFunctionUrlConfigCommand";
|
|
8
10
|
export * from "./DeleteAliasCommand";
|
|
11
|
+
export * from "./DeleteCapacityProviderCommand";
|
|
9
12
|
export * from "./DeleteCodeSigningConfigCommand";
|
|
10
13
|
export * from "./DeleteEventSourceMappingCommand";
|
|
11
14
|
export * from "./DeleteFunctionCodeSigningConfigCommand";
|
|
@@ -17,7 +20,11 @@ export * from "./DeleteLayerVersionCommand";
|
|
|
17
20
|
export * from "./DeleteProvisionedConcurrencyConfigCommand";
|
|
18
21
|
export * from "./GetAccountSettingsCommand";
|
|
19
22
|
export * from "./GetAliasCommand";
|
|
23
|
+
export * from "./GetCapacityProviderCommand";
|
|
20
24
|
export * from "./GetCodeSigningConfigCommand";
|
|
25
|
+
export * from "./GetDurableExecutionCommand";
|
|
26
|
+
export * from "./GetDurableExecutionHistoryCommand";
|
|
27
|
+
export * from "./GetDurableExecutionStateCommand";
|
|
21
28
|
export * from "./GetEventSourceMappingCommand";
|
|
22
29
|
export * from "./GetFunctionCodeSigningConfigCommand";
|
|
23
30
|
export * from "./GetFunctionCommand";
|
|
@@ -25,6 +32,7 @@ export * from "./GetFunctionConcurrencyCommand";
|
|
|
25
32
|
export * from "./GetFunctionConfigurationCommand";
|
|
26
33
|
export * from "./GetFunctionEventInvokeConfigCommand";
|
|
27
34
|
export * from "./GetFunctionRecursionConfigCommand";
|
|
35
|
+
export * from "./GetFunctionScalingConfigCommand";
|
|
28
36
|
export * from "./GetFunctionUrlConfigCommand";
|
|
29
37
|
export * from "./GetLayerVersionByArnCommand";
|
|
30
38
|
export * from "./GetLayerVersionCommand";
|
|
@@ -36,10 +44,13 @@ export * from "./InvokeAsyncCommand";
|
|
|
36
44
|
export * from "./InvokeCommand";
|
|
37
45
|
export * from "./InvokeWithResponseStreamCommand";
|
|
38
46
|
export * from "./ListAliasesCommand";
|
|
47
|
+
export * from "./ListCapacityProvidersCommand";
|
|
39
48
|
export * from "./ListCodeSigningConfigsCommand";
|
|
49
|
+
export * from "./ListDurableExecutionsByFunctionCommand";
|
|
40
50
|
export * from "./ListEventSourceMappingsCommand";
|
|
41
51
|
export * from "./ListFunctionEventInvokeConfigsCommand";
|
|
42
52
|
export * from "./ListFunctionUrlConfigsCommand";
|
|
53
|
+
export * from "./ListFunctionVersionsByCapacityProviderCommand";
|
|
43
54
|
export * from "./ListFunctionsByCodeSigningConfigCommand";
|
|
44
55
|
export * from "./ListFunctionsCommand";
|
|
45
56
|
export * from "./ListLayerVersionsCommand";
|
|
@@ -53,13 +64,19 @@ export * from "./PutFunctionCodeSigningConfigCommand";
|
|
|
53
64
|
export * from "./PutFunctionConcurrencyCommand";
|
|
54
65
|
export * from "./PutFunctionEventInvokeConfigCommand";
|
|
55
66
|
export * from "./PutFunctionRecursionConfigCommand";
|
|
67
|
+
export * from "./PutFunctionScalingConfigCommand";
|
|
56
68
|
export * from "./PutProvisionedConcurrencyConfigCommand";
|
|
57
69
|
export * from "./PutRuntimeManagementConfigCommand";
|
|
58
70
|
export * from "./RemoveLayerVersionPermissionCommand";
|
|
59
71
|
export * from "./RemovePermissionCommand";
|
|
72
|
+
export * from "./SendDurableExecutionCallbackFailureCommand";
|
|
73
|
+
export * from "./SendDurableExecutionCallbackHeartbeatCommand";
|
|
74
|
+
export * from "./SendDurableExecutionCallbackSuccessCommand";
|
|
75
|
+
export * from "./StopDurableExecutionCommand";
|
|
60
76
|
export * from "./TagResourceCommand";
|
|
61
77
|
export * from "./UntagResourceCommand";
|
|
62
78
|
export * from "./UpdateAliasCommand";
|
|
79
|
+
export * from "./UpdateCapacityProviderCommand";
|
|
63
80
|
export * from "./UpdateCodeSigningConfigCommand";
|
|
64
81
|
export * from "./UpdateEventSourceMappingCommand";
|
|
65
82
|
export * from "./UpdateFunctionCodeCommand";
|