@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
|
@@ -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
|
+
ListDurableExecutionsByFunctionRequest,
|
|
10
|
+
ListDurableExecutionsByFunctionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListDurableExecutionsByFunctionCommandInput
|
|
15
|
+
extends ListDurableExecutionsByFunctionRequest {}
|
|
16
|
+
export interface ListDurableExecutionsByFunctionCommandOutput
|
|
17
|
+
extends ListDurableExecutionsByFunctionResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListDurableExecutionsByFunctionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListDurableExecutionsByFunctionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListDurableExecutionsByFunctionCommandInput,
|
|
24
|
+
ListDurableExecutionsByFunctionCommandOutput,
|
|
25
|
+
LambdaClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListDurableExecutionsByFunctionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListDurableExecutionsByFunctionCommandInput,
|
|
33
|
+
ListDurableExecutionsByFunctionCommandOutput,
|
|
34
|
+
LambdaClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListDurableExecutionsByFunctionCommand extends ListDurableExecutionsByFunctionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListDurableExecutionsByFunctionRequest;
|
|
44
|
+
output: ListDurableExecutionsByFunctionResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListDurableExecutionsByFunctionCommandInput;
|
|
48
|
+
output: ListDurableExecutionsByFunctionCommandOutput;
|
|
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
|
+
SendDurableExecutionCallbackFailureRequest,
|
|
10
|
+
SendDurableExecutionCallbackFailureResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface SendDurableExecutionCallbackFailureCommandInput
|
|
15
|
+
extends SendDurableExecutionCallbackFailureRequest {}
|
|
16
|
+
export interface SendDurableExecutionCallbackFailureCommandOutput
|
|
17
|
+
extends SendDurableExecutionCallbackFailureResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const SendDurableExecutionCallbackFailureCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: SendDurableExecutionCallbackFailureCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
SendDurableExecutionCallbackFailureCommandInput,
|
|
24
|
+
SendDurableExecutionCallbackFailureCommandOutput,
|
|
25
|
+
LambdaClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: SendDurableExecutionCallbackFailureCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
SendDurableExecutionCallbackFailureCommandInput,
|
|
33
|
+
SendDurableExecutionCallbackFailureCommandOutput,
|
|
34
|
+
LambdaClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class SendDurableExecutionCallbackFailureCommand extends SendDurableExecutionCallbackFailureCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: SendDurableExecutionCallbackFailureRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: SendDurableExecutionCallbackFailureCommandInput;
|
|
48
|
+
output: SendDurableExecutionCallbackFailureCommandOutput;
|
|
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
|
+
SendDurableExecutionCallbackHeartbeatRequest,
|
|
10
|
+
SendDurableExecutionCallbackHeartbeatResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface SendDurableExecutionCallbackHeartbeatCommandInput
|
|
15
|
+
extends SendDurableExecutionCallbackHeartbeatRequest {}
|
|
16
|
+
export interface SendDurableExecutionCallbackHeartbeatCommandOutput
|
|
17
|
+
extends SendDurableExecutionCallbackHeartbeatResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const SendDurableExecutionCallbackHeartbeatCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: SendDurableExecutionCallbackHeartbeatCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
SendDurableExecutionCallbackHeartbeatCommandInput,
|
|
24
|
+
SendDurableExecutionCallbackHeartbeatCommandOutput,
|
|
25
|
+
LambdaClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: SendDurableExecutionCallbackHeartbeatCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
SendDurableExecutionCallbackHeartbeatCommandInput,
|
|
33
|
+
SendDurableExecutionCallbackHeartbeatCommandOutput,
|
|
34
|
+
LambdaClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class SendDurableExecutionCallbackHeartbeatCommand extends SendDurableExecutionCallbackHeartbeatCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: SendDurableExecutionCallbackHeartbeatRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: SendDurableExecutionCallbackHeartbeatCommandInput;
|
|
48
|
+
output: SendDurableExecutionCallbackHeartbeatCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
BlobPayloadInputTypes,
|
|
4
|
+
MetadataBearer as __MetadataBearer,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
LambdaClientResolvedConfig,
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
} from "../LambdaClient";
|
|
11
|
+
import {
|
|
12
|
+
SendDurableExecutionCallbackSuccessRequest,
|
|
13
|
+
SendDurableExecutionCallbackSuccessResponse,
|
|
14
|
+
} from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer };
|
|
16
|
+
export { $Command };
|
|
17
|
+
export type SendDurableExecutionCallbackSuccessCommandInputType = Pick<
|
|
18
|
+
SendDurableExecutionCallbackSuccessRequest,
|
|
19
|
+
Exclude<keyof SendDurableExecutionCallbackSuccessRequest, "Result">
|
|
20
|
+
> & {
|
|
21
|
+
Result?: BlobPayloadInputTypes;
|
|
22
|
+
};
|
|
23
|
+
export interface SendDurableExecutionCallbackSuccessCommandInput
|
|
24
|
+
extends SendDurableExecutionCallbackSuccessCommandInputType {}
|
|
25
|
+
export interface SendDurableExecutionCallbackSuccessCommandOutput
|
|
26
|
+
extends SendDurableExecutionCallbackSuccessResponse,
|
|
27
|
+
__MetadataBearer {}
|
|
28
|
+
declare const SendDurableExecutionCallbackSuccessCommand_base: {
|
|
29
|
+
new (
|
|
30
|
+
input: SendDurableExecutionCallbackSuccessCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
SendDurableExecutionCallbackSuccessCommandInput,
|
|
33
|
+
SendDurableExecutionCallbackSuccessCommandOutput,
|
|
34
|
+
LambdaClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
new (
|
|
39
|
+
input: SendDurableExecutionCallbackSuccessCommandInput
|
|
40
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
41
|
+
SendDurableExecutionCallbackSuccessCommandInput,
|
|
42
|
+
SendDurableExecutionCallbackSuccessCommandOutput,
|
|
43
|
+
LambdaClientResolvedConfig,
|
|
44
|
+
ServiceInputTypes,
|
|
45
|
+
ServiceOutputTypes
|
|
46
|
+
>;
|
|
47
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
48
|
+
};
|
|
49
|
+
export declare class SendDurableExecutionCallbackSuccessCommand extends SendDurableExecutionCallbackSuccessCommand_base {
|
|
50
|
+
protected static __types: {
|
|
51
|
+
api: {
|
|
52
|
+
input: SendDurableExecutionCallbackSuccessRequest;
|
|
53
|
+
output: {};
|
|
54
|
+
};
|
|
55
|
+
sdk: {
|
|
56
|
+
input: SendDurableExecutionCallbackSuccessCommandInput;
|
|
57
|
+
output: SendDurableExecutionCallbackSuccessCommandOutput;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
}
|
|
@@ -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
|
+
StopDurableExecutionRequest,
|
|
10
|
+
StopDurableExecutionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StopDurableExecutionCommandInput
|
|
15
|
+
extends StopDurableExecutionRequest {}
|
|
16
|
+
export interface StopDurableExecutionCommandOutput
|
|
17
|
+
extends StopDurableExecutionResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StopDurableExecutionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StopDurableExecutionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StopDurableExecutionCommandInput,
|
|
24
|
+
StopDurableExecutionCommandOutput,
|
|
25
|
+
LambdaClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: StopDurableExecutionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StopDurableExecutionCommandInput,
|
|
33
|
+
StopDurableExecutionCommandOutput,
|
|
34
|
+
LambdaClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StopDurableExecutionCommand extends StopDurableExecutionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StopDurableExecutionRequest;
|
|
44
|
+
output: StopDurableExecutionResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StopDurableExecutionCommandInput;
|
|
48
|
+
output: StopDurableExecutionCommandOutput;
|
|
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
|
+
}
|
|
@@ -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";
|