@aws-sdk/client-iot-jobs-data-plane 3.325.0 → 3.327.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/dist-types/commands/DescribeJobExecutionCommand.d.ts +20 -0
- package/dist-types/commands/GetPendingJobExecutionsCommand.d.ts +25 -0
- package/dist-types/commands/StartNextPendingJobExecutionCommand.d.ts +20 -0
- package/dist-types/commands/UpdateJobExecutionCommand.d.ts +13 -0
- package/package.json +7 -7
|
@@ -34,6 +34,24 @@ export interface DescribeJobExecutionCommandOutput extends DescribeJobExecutionR
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DescribeJobExecutionCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // DescribeJobExecutionResponse
|
|
38
|
+
* // execution: { // JobExecution
|
|
39
|
+
* // jobId: "STRING_VALUE",
|
|
40
|
+
* // thingName: "STRING_VALUE",
|
|
41
|
+
* // status: "STRING_VALUE",
|
|
42
|
+
* // statusDetails: { // DetailsMap
|
|
43
|
+
* // "<keys>": "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // queuedAt: Number("long"),
|
|
46
|
+
* // startedAt: Number("long"),
|
|
47
|
+
* // lastUpdatedAt: Number("long"),
|
|
48
|
+
* // approximateSecondsBeforeTimedOut: Number("long"),
|
|
49
|
+
* // versionNumber: Number("long"),
|
|
50
|
+
* // executionNumber: Number("long"),
|
|
51
|
+
* // jobDocument: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
37
55
|
* ```
|
|
38
56
|
*
|
|
39
57
|
* @param DescribeJobExecutionCommandInput - {@link DescribeJobExecutionCommandInput}
|
|
@@ -60,6 +78,8 @@ export interface DescribeJobExecutionCommandOutput extends DescribeJobExecutionR
|
|
|
60
78
|
* @throws {@link ThrottlingException} (client fault)
|
|
61
79
|
* <p>The rate exceeds the limit.</p>
|
|
62
80
|
*
|
|
81
|
+
* @throws {@link IoTJobsDataPlaneServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from IoTJobsDataPlane service.</p>
|
|
63
83
|
*
|
|
64
84
|
*/
|
|
65
85
|
export declare class DescribeJobExecutionCommand extends $Command<DescribeJobExecutionCommandInput, DescribeJobExecutionCommandOutput, IoTJobsDataPlaneClientResolvedConfig> {
|
|
@@ -31,6 +31,29 @@ export interface GetPendingJobExecutionsCommandOutput extends GetPendingJobExecu
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetPendingJobExecutionsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetPendingJobExecutionsResponse
|
|
35
|
+
* // inProgressJobs: [ // JobExecutionSummaryList
|
|
36
|
+
* // { // JobExecutionSummary
|
|
37
|
+
* // jobId: "STRING_VALUE",
|
|
38
|
+
* // queuedAt: Number("long"),
|
|
39
|
+
* // startedAt: Number("long"),
|
|
40
|
+
* // lastUpdatedAt: Number("long"),
|
|
41
|
+
* // versionNumber: Number("long"),
|
|
42
|
+
* // executionNumber: Number("long"),
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // queuedJobs: [
|
|
46
|
+
* // {
|
|
47
|
+
* // jobId: "STRING_VALUE",
|
|
48
|
+
* // queuedAt: Number("long"),
|
|
49
|
+
* // startedAt: Number("long"),
|
|
50
|
+
* // lastUpdatedAt: Number("long"),
|
|
51
|
+
* // versionNumber: Number("long"),
|
|
52
|
+
* // executionNumber: Number("long"),
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
34
57
|
* ```
|
|
35
58
|
*
|
|
36
59
|
* @param GetPendingJobExecutionsCommandInput - {@link GetPendingJobExecutionsCommandInput}
|
|
@@ -54,6 +77,8 @@ export interface GetPendingJobExecutionsCommandOutput extends GetPendingJobExecu
|
|
|
54
77
|
* @throws {@link ThrottlingException} (client fault)
|
|
55
78
|
* <p>The rate exceeds the limit.</p>
|
|
56
79
|
*
|
|
80
|
+
* @throws {@link IoTJobsDataPlaneServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from IoTJobsDataPlane service.</p>
|
|
57
82
|
*
|
|
58
83
|
*/
|
|
59
84
|
export declare class GetPendingJobExecutionsCommand extends $Command<GetPendingJobExecutionsCommandInput, GetPendingJobExecutionsCommandOutput, IoTJobsDataPlaneClientResolvedConfig> {
|
|
@@ -35,6 +35,24 @@ export interface StartNextPendingJobExecutionCommandOutput extends StartNextPend
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new StartNextPendingJobExecutionCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // StartNextPendingJobExecutionResponse
|
|
39
|
+
* // execution: { // JobExecution
|
|
40
|
+
* // jobId: "STRING_VALUE",
|
|
41
|
+
* // thingName: "STRING_VALUE",
|
|
42
|
+
* // status: "STRING_VALUE",
|
|
43
|
+
* // statusDetails: { // DetailsMap
|
|
44
|
+
* // "<keys>": "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // queuedAt: Number("long"),
|
|
47
|
+
* // startedAt: Number("long"),
|
|
48
|
+
* // lastUpdatedAt: Number("long"),
|
|
49
|
+
* // approximateSecondsBeforeTimedOut: Number("long"),
|
|
50
|
+
* // versionNumber: Number("long"),
|
|
51
|
+
* // executionNumber: Number("long"),
|
|
52
|
+
* // jobDocument: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
38
56
|
* ```
|
|
39
57
|
*
|
|
40
58
|
* @param StartNextPendingJobExecutionCommandInput - {@link StartNextPendingJobExecutionCommandInput}
|
|
@@ -58,6 +76,8 @@ export interface StartNextPendingJobExecutionCommandOutput extends StartNextPend
|
|
|
58
76
|
* @throws {@link ThrottlingException} (client fault)
|
|
59
77
|
* <p>The rate exceeds the limit.</p>
|
|
60
78
|
*
|
|
79
|
+
* @throws {@link IoTJobsDataPlaneServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from IoTJobsDataPlane service.</p>
|
|
61
81
|
*
|
|
62
82
|
*/
|
|
63
83
|
export declare class StartNextPendingJobExecutionCommand extends $Command<StartNextPendingJobExecutionCommandInput, StartNextPendingJobExecutionCommandOutput, IoTJobsDataPlaneClientResolvedConfig> {
|
|
@@ -41,6 +41,17 @@ export interface UpdateJobExecutionCommandOutput extends UpdateJobExecutionRespo
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new UpdateJobExecutionCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // UpdateJobExecutionResponse
|
|
45
|
+
* // executionState: { // JobExecutionState
|
|
46
|
+
* // status: "STRING_VALUE",
|
|
47
|
+
* // statusDetails: { // DetailsMap
|
|
48
|
+
* // "<keys>": "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // versionNumber: Number("long"),
|
|
51
|
+
* // },
|
|
52
|
+
* // jobDocument: "STRING_VALUE",
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
44
55
|
* ```
|
|
45
56
|
*
|
|
46
57
|
* @param UpdateJobExecutionCommandInput - {@link UpdateJobExecutionCommandInput}
|
|
@@ -69,6 +80,8 @@ export interface UpdateJobExecutionCommandOutput extends UpdateJobExecutionRespo
|
|
|
69
80
|
* @throws {@link ThrottlingException} (client fault)
|
|
70
81
|
* <p>The rate exceeds the limit.</p>
|
|
71
82
|
*
|
|
83
|
+
* @throws {@link IoTJobsDataPlaneServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from IoTJobsDataPlane service.</p>
|
|
72
85
|
*
|
|
73
86
|
*/
|
|
74
87
|
export declare class UpdateJobExecutionCommand extends $Command<UpdateJobExecutionCommandInput, UpdateJobExecutionCommandOutput, IoTJobsDataPlaneClientResolvedConfig> {
|
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.327.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.327.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.327.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.327.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.327.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.327.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.327.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.310.0",
|