@aws-sdk/client-iot-jobs-data-plane 3.696.0 → 3.699.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 +29 -11
- package/dist-cjs/index.js +214 -1
- package/dist-es/IoTJobsDataPlane.js +2 -0
- package/dist-es/commands/StartCommandExecutionCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +49 -0
- package/dist-es/protocols/Aws_restJson1.js +119 -2
- package/dist-types/IoTJobsDataPlane.d.ts +28 -11
- package/dist-types/IoTJobsDataPlaneClient.d.ts +24 -13
- package/dist-types/commands/DescribeJobExecutionCommand.d.ts +2 -1
- package/dist-types/commands/GetPendingJobExecutionsCommand.d.ts +2 -1
- package/dist-types/commands/StartCommandExecutionCommand.d.ts +104 -0
- package/dist-types/commands/StartNextPendingJobExecutionCommand.d.ts +4 -2
- package/dist-types/commands/UpdateJobExecutionCommand.d.ts +6 -4
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/index.d.ts +21 -11
- package/dist-types/models/models_0.d.ts +226 -55
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/IoTJobsDataPlane.d.ts +17 -0
- package/dist-types/ts3.4/IoTJobsDataPlaneClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/StartCommandExecutionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +46 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +7 -5
|
@@ -11,6 +11,10 @@ import {
|
|
|
11
11
|
GetPendingJobExecutionsCommandInput,
|
|
12
12
|
GetPendingJobExecutionsCommandOutput,
|
|
13
13
|
} from "../commands/GetPendingJobExecutionsCommand";
|
|
14
|
+
import {
|
|
15
|
+
StartCommandExecutionCommandInput,
|
|
16
|
+
StartCommandExecutionCommandOutput,
|
|
17
|
+
} from "../commands/StartCommandExecutionCommand";
|
|
14
18
|
import {
|
|
15
19
|
StartNextPendingJobExecutionCommandInput,
|
|
16
20
|
StartNextPendingJobExecutionCommandOutput,
|
|
@@ -27,6 +31,10 @@ export declare const se_GetPendingJobExecutionsCommand: (
|
|
|
27
31
|
input: GetPendingJobExecutionsCommandInput,
|
|
28
32
|
context: __SerdeContext
|
|
29
33
|
) => Promise<__HttpRequest>;
|
|
34
|
+
export declare const se_StartCommandExecutionCommand: (
|
|
35
|
+
input: StartCommandExecutionCommandInput,
|
|
36
|
+
context: __SerdeContext
|
|
37
|
+
) => Promise<__HttpRequest>;
|
|
30
38
|
export declare const se_StartNextPendingJobExecutionCommand: (
|
|
31
39
|
input: StartNextPendingJobExecutionCommandInput,
|
|
32
40
|
context: __SerdeContext
|
|
@@ -43,6 +51,10 @@ export declare const de_GetPendingJobExecutionsCommand: (
|
|
|
43
51
|
output: __HttpResponse,
|
|
44
52
|
context: __SerdeContext
|
|
45
53
|
) => Promise<GetPendingJobExecutionsCommandOutput>;
|
|
54
|
+
export declare const de_StartCommandExecutionCommand: (
|
|
55
|
+
output: __HttpResponse,
|
|
56
|
+
context: __SerdeContext
|
|
57
|
+
) => Promise<StartCommandExecutionCommandOutput>;
|
|
46
58
|
export declare const de_StartNextPendingJobExecutionCommand: (
|
|
47
59
|
output: __HttpResponse,
|
|
48
60
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iot-jobs-data-plane",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iot Jobs Data Plane Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.699.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iot-jobs-data-plane",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.699.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.699.0",
|
|
25
25
|
"@aws-sdk/core": "3.696.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.699.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.696.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.696.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.696.0",
|
|
@@ -58,7 +58,9 @@
|
|
|
58
58
|
"@smithy/util-middleware": "^3.0.10",
|
|
59
59
|
"@smithy/util-retry": "^3.0.10",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
|
-
"
|
|
61
|
+
"@types/uuid": "^9.0.1",
|
|
62
|
+
"tslib": "^2.6.2",
|
|
63
|
+
"uuid": "^9.0.1"
|
|
62
64
|
},
|
|
63
65
|
"devDependencies": {
|
|
64
66
|
"@tsconfig/node16": "16.1.3",
|