@aws-sdk/client-iot-jobs-data-plane 3.428.0 → 3.429.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.
@@ -76,7 +76,7 @@ export interface JobExecution {
76
76
  * <p>The status of the job execution. Can be one of: "QUEUED", "IN_PROGRESS", "FAILED", "SUCCESS", "CANCELED",
77
77
  * "REJECTED", or "REMOVED".</p>
78
78
  */
79
- status?: JobExecutionStatus | string;
79
+ status?: JobExecutionStatus;
80
80
  /**
81
81
  * @public
82
82
  * <p>A collection of name/value pairs that describe the status of the job execution.</p>
@@ -328,7 +328,7 @@ export interface UpdateJobExecutionRequest {
328
328
  * <p>The new status for the job execution (IN_PROGRESS, FAILED, SUCCESS, or REJECTED). This must be specified
329
329
  * on every update.</p>
330
330
  */
331
- status: JobExecutionStatus | string | undefined;
331
+ status: JobExecutionStatus | undefined;
332
332
  /**
333
333
  * @public
334
334
  * <p> Optional. A collection of name/value pairs that describe the status of the job execution. If not
@@ -382,7 +382,7 @@ export interface JobExecutionState {
382
382
  * <p>The status of the job execution. Can be one of: "QUEUED", "IN_PROGRESS", "FAILED", "SUCCESS", "CANCELED",
383
383
  * "REJECTED", or "REMOVED".</p>
384
384
  */
385
- status?: JobExecutionStatus | string;
385
+ status?: JobExecutionStatus;
386
386
  /**
387
387
  * @public
388
388
  * <p>A collection of name/value pairs that describe the status of the job execution.</p>
@@ -28,7 +28,7 @@ export type JobExecutionStatus =
28
28
  export interface JobExecution {
29
29
  jobId?: string;
30
30
  thingName?: string;
31
- status?: JobExecutionStatus | string;
31
+ status?: JobExecutionStatus;
32
32
  statusDetails?: Record<string, string>;
33
33
  queuedAt?: number;
34
34
  startedAt?: number;
@@ -113,7 +113,7 @@ export interface StartNextPendingJobExecutionResponse {
113
113
  export interface UpdateJobExecutionRequest {
114
114
  jobId: string | undefined;
115
115
  thingName: string | undefined;
116
- status: JobExecutionStatus | string | undefined;
116
+ status: JobExecutionStatus | undefined;
117
117
  statusDetails?: Record<string, string>;
118
118
  stepTimeoutInMinutes?: number;
119
119
  expectedVersion?: number;
@@ -122,7 +122,7 @@ export interface UpdateJobExecutionRequest {
122
122
  executionNumber?: number;
123
123
  }
124
124
  export interface JobExecutionState {
125
- status?: JobExecutionStatus | string;
125
+ status?: JobExecutionStatus;
126
126
  statusDetails?: Record<string, string>;
127
127
  versionNumber?: number;
128
128
  }
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.428.0",
4
+ "version": "3.429.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.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
@@ -38,7 +38,7 @@
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
42
  "@smithy/middleware-retry": "^2.0.16",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",