@aws-sdk/client-iot-jobs-data-plane 3.529.1 → 3.535.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/IoTJobsDataPlane.d.ts +1 -1
- package/dist-types/IoTJobsDataPlaneClient.d.ts +1 -1
- package/dist-types/commands/DescribeJobExecutionCommand.d.ts +2 -1
- package/dist-types/commands/GetPendingJobExecutionsCommand.d.ts +2 -1
- package/dist-types/commands/StartNextPendingJobExecutionCommand.d.ts +2 -1
- package/dist-types/commands/UpdateJobExecutionCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +54 -54
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/commands/DescribeJobExecutionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetPendingJobExecutionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartNextPendingJobExecutionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateJobExecutionCommand.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
- package/package.json +40 -40
|
@@ -31,7 +31,6 @@ export interface IoTJobsDataPlane {
|
|
|
31
31
|
updateJobExecution(args: UpdateJobExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateJobExecutionCommandOutput) => void): void;
|
|
32
32
|
}
|
|
33
33
|
/**
|
|
34
|
-
* @public
|
|
35
34
|
* <p>AWS IoT Jobs is a service that allows you to define a set of jobs — remote operations that are sent to
|
|
36
35
|
* and executed on one or more devices connected to AWS IoT. For example, you can define a job that instructs a
|
|
37
36
|
* set of devices to download and install application or firmware updates, reboot, rotate certificates, or perform
|
|
@@ -43,6 +42,7 @@ export interface IoTJobsDataPlane {
|
|
|
43
42
|
* execution of the job by downloading the job document, performing the operations it specifies, and reporting its
|
|
44
43
|
* progress to AWS IoT. The Jobs service provides commands to track the progress of a job on a specific target and
|
|
45
44
|
* for all the targets of the job</p>
|
|
45
|
+
* @public
|
|
46
46
|
*/
|
|
47
47
|
export declare class IoTJobsDataPlane extends IoTJobsDataPlaneClient implements IoTJobsDataPlane {
|
|
48
48
|
}
|
|
@@ -155,7 +155,6 @@ export type IoTJobsDataPlaneClientResolvedConfigType = __SmithyResolvedConfigura
|
|
|
155
155
|
export interface IoTJobsDataPlaneClientResolvedConfig extends IoTJobsDataPlaneClientResolvedConfigType {
|
|
156
156
|
}
|
|
157
157
|
/**
|
|
158
|
-
* @public
|
|
159
158
|
* <p>AWS IoT Jobs is a service that allows you to define a set of jobs — remote operations that are sent to
|
|
160
159
|
* and executed on one or more devices connected to AWS IoT. For example, you can define a job that instructs a
|
|
161
160
|
* set of devices to download and install application or firmware updates, reboot, rotate certificates, or perform
|
|
@@ -167,6 +166,7 @@ export interface IoTJobsDataPlaneClientResolvedConfig extends IoTJobsDataPlaneCl
|
|
|
167
166
|
* execution of the job by downloading the job document, performing the operations it specifies, and reporting its
|
|
168
167
|
* progress to AWS IoT. The Jobs service provides commands to track the progress of a job on a specific target and
|
|
169
168
|
* for all the targets of the job</p>
|
|
169
|
+
* @public
|
|
170
170
|
*/
|
|
171
171
|
export declare class IoTJobsDataPlaneClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, IoTJobsDataPlaneClientResolvedConfig> {
|
|
172
172
|
/**
|
|
@@ -22,10 +22,10 @@ export interface DescribeJobExecutionCommandOutput extends DescribeJobExecutionR
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeJobExecutionCommand_base: {
|
|
24
24
|
new (input: DescribeJobExecutionCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeJobExecutionCommandInput, DescribeJobExecutionCommandOutput, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeJobExecutionCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeJobExecutionCommandInput, DescribeJobExecutionCommandOutput, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets details of a job execution.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -88,6 +88,7 @@ declare const DescribeJobExecutionCommand_base: {
|
|
|
88
88
|
* @throws {@link IoTJobsDataPlaneServiceException}
|
|
89
89
|
* <p>Base exception class for all service exceptions from IoTJobsDataPlane service.</p>
|
|
90
90
|
*
|
|
91
|
+
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class DescribeJobExecutionCommand extends DescribeJobExecutionCommand_base {
|
|
93
94
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetPendingJobExecutionsCommandOutput extends GetPendingJobExecu
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetPendingJobExecutionsCommand_base: {
|
|
24
24
|
new (input: GetPendingJobExecutionsCommandInput): import("@smithy/smithy-client").CommandImpl<GetPendingJobExecutionsCommandInput, GetPendingJobExecutionsCommandOutput, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetPendingJobExecutionsCommandInput): import("@smithy/smithy-client").CommandImpl<GetPendingJobExecutionsCommandInput, GetPendingJobExecutionsCommandOutput, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets the list of all jobs for a thing that are not in a terminal status.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -87,6 +87,7 @@ declare const GetPendingJobExecutionsCommand_base: {
|
|
|
87
87
|
* @throws {@link IoTJobsDataPlaneServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from IoTJobsDataPlane service.</p>
|
|
89
89
|
*
|
|
90
|
+
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class GetPendingJobExecutionsCommand extends GetPendingJobExecutionsCommand_base {
|
|
92
93
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartNextPendingJobExecutionCommandOutput extends StartNextPend
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartNextPendingJobExecutionCommand_base: {
|
|
24
24
|
new (input: StartNextPendingJobExecutionCommandInput): import("@smithy/smithy-client").CommandImpl<StartNextPendingJobExecutionCommandInput, StartNextPendingJobExecutionCommandOutput, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartNextPendingJobExecutionCommandInput): import("@smithy/smithy-client").CommandImpl<StartNextPendingJobExecutionCommandInput, StartNextPendingJobExecutionCommandOutput, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets and starts the next pending (status IN_PROGRESS or QUEUED) job execution for a thing.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -86,6 +86,7 @@ declare const StartNextPendingJobExecutionCommand_base: {
|
|
|
86
86
|
* @throws {@link IoTJobsDataPlaneServiceException}
|
|
87
87
|
* <p>Base exception class for all service exceptions from IoTJobsDataPlane service.</p>
|
|
88
88
|
*
|
|
89
|
+
* @public
|
|
89
90
|
*/
|
|
90
91
|
export declare class StartNextPendingJobExecutionCommand extends StartNextPendingJobExecutionCommand_base {
|
|
91
92
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateJobExecutionCommandOutput extends UpdateJobExecutionRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateJobExecutionCommand_base: {
|
|
24
24
|
new (input: UpdateJobExecutionCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateJobExecutionCommandInput, UpdateJobExecutionCommandOutput, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateJobExecutionCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateJobExecutionCommandInput, UpdateJobExecutionCommandOutput, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates the status of a job execution.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -90,6 +90,7 @@ declare const UpdateJobExecutionCommand_base: {
|
|
|
90
90
|
* @throws {@link IoTJobsDataPlaneServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from IoTJobsDataPlane service.</p>
|
|
92
92
|
*
|
|
93
|
+
* @public
|
|
93
94
|
*/
|
|
94
95
|
export declare class UpdateJobExecutionCommand extends UpdateJobExecutionCommand_base {
|
|
95
96
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { IoTJobsDataPlaneServiceException as __BaseException } from "./IoTJobsDataPlaneServiceException";
|
|
3
3
|
/**
|
|
4
|
-
* @public
|
|
5
4
|
* <p>The certificate is invalid.</p>
|
|
5
|
+
* @public
|
|
6
6
|
*/
|
|
7
7
|
export declare class CertificateValidationException extends __BaseException {
|
|
8
8
|
readonly name: "CertificateValidationException";
|
|
@@ -17,24 +17,24 @@ export declare class CertificateValidationException extends __BaseException {
|
|
|
17
17
|
*/
|
|
18
18
|
export interface DescribeJobExecutionRequest {
|
|
19
19
|
/**
|
|
20
|
-
* @public
|
|
21
20
|
* <p>The unique identifier assigned to this job when it was created.</p>
|
|
21
|
+
* @public
|
|
22
22
|
*/
|
|
23
23
|
jobId: string | undefined;
|
|
24
24
|
/**
|
|
25
|
-
* @public
|
|
26
25
|
* <p>The thing name associated with the device the job execution is running on.</p>
|
|
26
|
+
* @public
|
|
27
27
|
*/
|
|
28
28
|
thingName: string | undefined;
|
|
29
29
|
/**
|
|
30
|
-
* @public
|
|
31
30
|
* <p>Optional. When set to true, the response contains the job document. The default is false.</p>
|
|
31
|
+
* @public
|
|
32
32
|
*/
|
|
33
33
|
includeJobDocument?: boolean;
|
|
34
34
|
/**
|
|
35
|
-
* @public
|
|
36
35
|
* <p>Optional. A number that identifies a particular job execution on a particular device. If not specified,
|
|
37
36
|
* the latest job execution is returned.</p>
|
|
37
|
+
* @public
|
|
38
38
|
*/
|
|
39
39
|
executionNumber?: number;
|
|
40
40
|
}
|
|
@@ -57,67 +57,67 @@ export declare const JobExecutionStatus: {
|
|
|
57
57
|
*/
|
|
58
58
|
export type JobExecutionStatus = (typeof JobExecutionStatus)[keyof typeof JobExecutionStatus];
|
|
59
59
|
/**
|
|
60
|
-
* @public
|
|
61
60
|
* <p>Contains data about a job execution.</p>
|
|
61
|
+
* @public
|
|
62
62
|
*/
|
|
63
63
|
export interface JobExecution {
|
|
64
64
|
/**
|
|
65
|
-
* @public
|
|
66
65
|
* <p>The unique identifier you assigned to this job when it was created.</p>
|
|
66
|
+
* @public
|
|
67
67
|
*/
|
|
68
68
|
jobId?: string;
|
|
69
69
|
/**
|
|
70
|
-
* @public
|
|
71
70
|
* <p>The name of the thing that is executing the job.</p>
|
|
71
|
+
* @public
|
|
72
72
|
*/
|
|
73
73
|
thingName?: string;
|
|
74
74
|
/**
|
|
75
|
-
* @public
|
|
76
75
|
* <p>The status of the job execution. Can be one of: "QUEUED", "IN_PROGRESS", "FAILED", "SUCCESS", "CANCELED",
|
|
77
76
|
* "REJECTED", or "REMOVED".</p>
|
|
77
|
+
* @public
|
|
78
78
|
*/
|
|
79
79
|
status?: JobExecutionStatus;
|
|
80
80
|
/**
|
|
81
|
-
* @public
|
|
82
81
|
* <p>A collection of name/value pairs that describe the status of the job execution.</p>
|
|
82
|
+
* @public
|
|
83
83
|
*/
|
|
84
84
|
statusDetails?: Record<string, string>;
|
|
85
85
|
/**
|
|
86
|
-
* @public
|
|
87
86
|
* <p>The time, in milliseconds since the epoch, when the job execution was enqueued.</p>
|
|
87
|
+
* @public
|
|
88
88
|
*/
|
|
89
89
|
queuedAt?: number;
|
|
90
90
|
/**
|
|
91
|
-
* @public
|
|
92
91
|
* <p>The time, in milliseconds since the epoch, when the job execution was started.</p>
|
|
92
|
+
* @public
|
|
93
93
|
*/
|
|
94
94
|
startedAt?: number;
|
|
95
95
|
/**
|
|
96
|
-
* @public
|
|
97
96
|
* <p>The time, in milliseconds since the epoch, when the job execution was last updated. </p>
|
|
97
|
+
* @public
|
|
98
98
|
*/
|
|
99
99
|
lastUpdatedAt?: number;
|
|
100
100
|
/**
|
|
101
|
-
* @public
|
|
102
101
|
* <p>The estimated number of seconds that remain before the job execution status will be
|
|
103
102
|
* changed to <code>TIMED_OUT</code>.</p>
|
|
103
|
+
* @public
|
|
104
104
|
*/
|
|
105
105
|
approximateSecondsBeforeTimedOut?: number;
|
|
106
106
|
/**
|
|
107
|
-
* @public
|
|
108
107
|
* <p>The version of the job execution. Job execution versions are incremented each time they are updated by a
|
|
109
108
|
* device.</p>
|
|
109
|
+
* @public
|
|
110
110
|
*/
|
|
111
111
|
versionNumber?: number;
|
|
112
112
|
/**
|
|
113
|
-
* @public
|
|
114
113
|
* <p>A number that identifies a particular job execution on a particular device. It can be used later in
|
|
115
114
|
* commands that return or update job execution information.</p>
|
|
115
|
+
* @public
|
|
116
116
|
*/
|
|
117
117
|
executionNumber?: number;
|
|
118
118
|
/**
|
|
119
|
-
* @public
|
|
120
119
|
* <p>The content of the job document.</p>
|
|
120
|
+
* @public
|
|
121
121
|
*/
|
|
122
122
|
jobDocument?: string;
|
|
123
123
|
}
|
|
@@ -126,14 +126,14 @@ export interface JobExecution {
|
|
|
126
126
|
*/
|
|
127
127
|
export interface DescribeJobExecutionResponse {
|
|
128
128
|
/**
|
|
129
|
-
* @public
|
|
130
129
|
* <p>Contains data about a job execution.</p>
|
|
130
|
+
* @public
|
|
131
131
|
*/
|
|
132
132
|
execution?: JobExecution;
|
|
133
133
|
}
|
|
134
134
|
/**
|
|
135
|
-
* @public
|
|
136
135
|
* <p>The contents of the request were invalid. For example, this code is returned when an UpdateJobExecution request contains invalid status details. The message contains details about the error.</p>
|
|
136
|
+
* @public
|
|
137
137
|
*/
|
|
138
138
|
export declare class InvalidRequestException extends __BaseException {
|
|
139
139
|
readonly name: "InvalidRequestException";
|
|
@@ -144,8 +144,8 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
144
144
|
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
145
145
|
}
|
|
146
146
|
/**
|
|
147
|
-
* @public
|
|
148
147
|
* <p>The specified resource does not exist.</p>
|
|
148
|
+
* @public
|
|
149
149
|
*/
|
|
150
150
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
151
151
|
readonly name: "ResourceNotFoundException";
|
|
@@ -156,8 +156,8 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
156
156
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
157
157
|
}
|
|
158
158
|
/**
|
|
159
|
-
* @public
|
|
160
159
|
* <p>The service is temporarily unavailable.</p>
|
|
160
|
+
* @public
|
|
161
161
|
*/
|
|
162
162
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
163
163
|
readonly name: "ServiceUnavailableException";
|
|
@@ -168,8 +168,8 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
168
168
|
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
169
169
|
}
|
|
170
170
|
/**
|
|
171
|
-
* @public
|
|
172
171
|
* <p>The job is in a terminal state.</p>
|
|
172
|
+
* @public
|
|
173
173
|
*/
|
|
174
174
|
export declare class TerminalStateException extends __BaseException {
|
|
175
175
|
readonly name: "TerminalStateException";
|
|
@@ -180,15 +180,15 @@ export declare class TerminalStateException extends __BaseException {
|
|
|
180
180
|
constructor(opts: __ExceptionOptionType<TerminalStateException, __BaseException>);
|
|
181
181
|
}
|
|
182
182
|
/**
|
|
183
|
-
* @public
|
|
184
183
|
* <p>The rate exceeds the limit.</p>
|
|
184
|
+
* @public
|
|
185
185
|
*/
|
|
186
186
|
export declare class ThrottlingException extends __BaseException {
|
|
187
187
|
readonly name: "ThrottlingException";
|
|
188
188
|
readonly $fault: "client";
|
|
189
189
|
/**
|
|
190
|
-
* @public
|
|
191
190
|
* <p>The payload associated with the exception.</p>
|
|
191
|
+
* @public
|
|
192
192
|
*/
|
|
193
193
|
payload?: Uint8Array;
|
|
194
194
|
/**
|
|
@@ -201,45 +201,45 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
201
201
|
*/
|
|
202
202
|
export interface GetPendingJobExecutionsRequest {
|
|
203
203
|
/**
|
|
204
|
-
* @public
|
|
205
204
|
* <p>The name of the thing that is executing the job.</p>
|
|
205
|
+
* @public
|
|
206
206
|
*/
|
|
207
207
|
thingName: string | undefined;
|
|
208
208
|
}
|
|
209
209
|
/**
|
|
210
|
-
* @public
|
|
211
210
|
* <p>Contains a subset of information about a job execution.</p>
|
|
211
|
+
* @public
|
|
212
212
|
*/
|
|
213
213
|
export interface JobExecutionSummary {
|
|
214
214
|
/**
|
|
215
|
-
* @public
|
|
216
215
|
* <p>The unique identifier you assigned to this job when it was created.</p>
|
|
216
|
+
* @public
|
|
217
217
|
*/
|
|
218
218
|
jobId?: string;
|
|
219
219
|
/**
|
|
220
|
-
* @public
|
|
221
220
|
* <p>The time, in milliseconds since the epoch, when the job execution was enqueued.</p>
|
|
221
|
+
* @public
|
|
222
222
|
*/
|
|
223
223
|
queuedAt?: number;
|
|
224
224
|
/**
|
|
225
|
-
* @public
|
|
226
225
|
* <p>The time, in milliseconds since the epoch, when the job execution started.</p>
|
|
226
|
+
* @public
|
|
227
227
|
*/
|
|
228
228
|
startedAt?: number;
|
|
229
229
|
/**
|
|
230
|
-
* @public
|
|
231
230
|
* <p>The time, in milliseconds since the epoch, when the job execution was last updated.</p>
|
|
231
|
+
* @public
|
|
232
232
|
*/
|
|
233
233
|
lastUpdatedAt?: number;
|
|
234
234
|
/**
|
|
235
|
-
* @public
|
|
236
235
|
* <p>The version of the job execution. Job execution versions are incremented each time AWS IoT Jobs receives
|
|
237
236
|
* an update from a device.</p>
|
|
237
|
+
* @public
|
|
238
238
|
*/
|
|
239
239
|
versionNumber?: number;
|
|
240
240
|
/**
|
|
241
|
-
* @public
|
|
242
241
|
* <p>A number that identifies a particular job execution on a particular device.</p>
|
|
242
|
+
* @public
|
|
243
243
|
*/
|
|
244
244
|
executionNumber?: number;
|
|
245
245
|
}
|
|
@@ -248,21 +248,21 @@ export interface JobExecutionSummary {
|
|
|
248
248
|
*/
|
|
249
249
|
export interface GetPendingJobExecutionsResponse {
|
|
250
250
|
/**
|
|
251
|
-
* @public
|
|
252
251
|
* <p>A list of JobExecutionSummary objects with status IN_PROGRESS.</p>
|
|
252
|
+
* @public
|
|
253
253
|
*/
|
|
254
254
|
inProgressJobs?: JobExecutionSummary[];
|
|
255
255
|
/**
|
|
256
|
-
* @public
|
|
257
256
|
* <p>A list of JobExecutionSummary objects with status QUEUED.</p>
|
|
257
|
+
* @public
|
|
258
258
|
*/
|
|
259
259
|
queuedJobs?: JobExecutionSummary[];
|
|
260
260
|
}
|
|
261
261
|
/**
|
|
262
|
-
* @public
|
|
263
262
|
* <p>An update attempted to change the job execution to a state that is invalid because of the job execution's
|
|
264
263
|
* current state (for example, an attempt to change a request in state SUCCESS to state IN_PROGRESS). In this
|
|
265
264
|
* case, the body of the error message also contains the executionState field.</p>
|
|
265
|
+
* @public
|
|
266
266
|
*/
|
|
267
267
|
export declare class InvalidStateTransitionException extends __BaseException {
|
|
268
268
|
readonly name: "InvalidStateTransitionException";
|
|
@@ -277,18 +277,17 @@ export declare class InvalidStateTransitionException extends __BaseException {
|
|
|
277
277
|
*/
|
|
278
278
|
export interface StartNextPendingJobExecutionRequest {
|
|
279
279
|
/**
|
|
280
|
-
* @public
|
|
281
280
|
* <p>The name of the thing associated with the device.</p>
|
|
281
|
+
* @public
|
|
282
282
|
*/
|
|
283
283
|
thingName: string | undefined;
|
|
284
284
|
/**
|
|
285
|
-
* @public
|
|
286
285
|
* <p>A collection of name/value pairs that describe the status of the job execution. If not specified, the
|
|
287
286
|
* statusDetails are unchanged.</p>
|
|
287
|
+
* @public
|
|
288
288
|
*/
|
|
289
289
|
statusDetails?: Record<string, string>;
|
|
290
290
|
/**
|
|
291
|
-
* @public
|
|
292
291
|
* <p>Specifies the amount of time this device has to finish execution of this job. If the job
|
|
293
292
|
* execution status is not set to a terminal state before this timer expires, or before the
|
|
294
293
|
* timer is reset (by calling <code>UpdateJobExecution</code>, setting the status to
|
|
@@ -296,6 +295,7 @@ export interface StartNextPendingJobExecutionRequest {
|
|
|
296
295
|
* the job execution status will be automatically set to <code>TIMED_OUT</code>. Note that setting
|
|
297
296
|
* this timeout has no effect on that job execution timeout which may have been specified when
|
|
298
297
|
* the job was created (<code>CreateJob</code> using field <code>timeoutConfig</code>).</p>
|
|
298
|
+
* @public
|
|
299
299
|
*/
|
|
300
300
|
stepTimeoutInMinutes?: number;
|
|
301
301
|
}
|
|
@@ -304,8 +304,8 @@ export interface StartNextPendingJobExecutionRequest {
|
|
|
304
304
|
*/
|
|
305
305
|
export interface StartNextPendingJobExecutionResponse {
|
|
306
306
|
/**
|
|
307
|
-
* @public
|
|
308
307
|
* <p>A JobExecution object.</p>
|
|
308
|
+
* @public
|
|
309
309
|
*/
|
|
310
310
|
execution?: JobExecution;
|
|
311
311
|
}
|
|
@@ -314,29 +314,28 @@ export interface StartNextPendingJobExecutionResponse {
|
|
|
314
314
|
*/
|
|
315
315
|
export interface UpdateJobExecutionRequest {
|
|
316
316
|
/**
|
|
317
|
-
* @public
|
|
318
317
|
* <p>The unique identifier assigned to this job when it was created.</p>
|
|
318
|
+
* @public
|
|
319
319
|
*/
|
|
320
320
|
jobId: string | undefined;
|
|
321
321
|
/**
|
|
322
|
-
* @public
|
|
323
322
|
* <p>The name of the thing associated with the device.</p>
|
|
323
|
+
* @public
|
|
324
324
|
*/
|
|
325
325
|
thingName: string | undefined;
|
|
326
326
|
/**
|
|
327
|
-
* @public
|
|
328
327
|
* <p>The new status for the job execution (IN_PROGRESS, FAILED, SUCCESS, or REJECTED). This must be specified
|
|
329
328
|
* on every update.</p>
|
|
329
|
+
* @public
|
|
330
330
|
*/
|
|
331
331
|
status: JobExecutionStatus | undefined;
|
|
332
332
|
/**
|
|
333
|
-
* @public
|
|
334
333
|
* <p> Optional. A collection of name/value pairs that describe the status of the job execution. If not
|
|
335
334
|
* specified, the statusDetails are unchanged.</p>
|
|
335
|
+
* @public
|
|
336
336
|
*/
|
|
337
337
|
statusDetails?: Record<string, string>;
|
|
338
338
|
/**
|
|
339
|
-
* @public
|
|
340
339
|
* <p>Specifies the amount of time this device has to finish execution of this job. If the job
|
|
341
340
|
* execution status is not set to a terminal state before this timer expires, or before the
|
|
342
341
|
* timer is reset (by again calling <code>UpdateJobExecution</code>, setting the status to
|
|
@@ -344,54 +343,55 @@ export interface UpdateJobExecutionRequest {
|
|
|
344
343
|
* status will be automatically set to <code>TIMED_OUT</code>. Note that setting or resetting
|
|
345
344
|
* this timeout has no effect on that job execution timeout which may have been specified when
|
|
346
345
|
* the job was created (<code>CreateJob</code> using field <code>timeoutConfig</code>).</p>
|
|
346
|
+
* @public
|
|
347
347
|
*/
|
|
348
348
|
stepTimeoutInMinutes?: number;
|
|
349
349
|
/**
|
|
350
|
-
* @public
|
|
351
350
|
* <p>Optional. The expected current version of the job execution. Each time you update the job execution, its
|
|
352
351
|
* version is incremented. If the version of the job execution stored in Jobs does not match, the update is
|
|
353
352
|
* rejected with a VersionMismatch error, and an ErrorResponse that contains the current job execution status data
|
|
354
353
|
* is returned. (This makes it unnecessary to perform a separate DescribeJobExecution request in order to obtain
|
|
355
354
|
* the job execution status data.)</p>
|
|
355
|
+
* @public
|
|
356
356
|
*/
|
|
357
357
|
expectedVersion?: number;
|
|
358
358
|
/**
|
|
359
|
-
* @public
|
|
360
359
|
* <p>Optional. When included and set to true, the response contains the JobExecutionState data. The default is
|
|
361
360
|
* false.</p>
|
|
361
|
+
* @public
|
|
362
362
|
*/
|
|
363
363
|
includeJobExecutionState?: boolean;
|
|
364
364
|
/**
|
|
365
|
-
* @public
|
|
366
365
|
* <p>Optional. When set to true, the response contains the job document. The default is false.</p>
|
|
366
|
+
* @public
|
|
367
367
|
*/
|
|
368
368
|
includeJobDocument?: boolean;
|
|
369
369
|
/**
|
|
370
|
-
* @public
|
|
371
370
|
* <p>Optional. A number that identifies a particular job execution on a particular device.</p>
|
|
371
|
+
* @public
|
|
372
372
|
*/
|
|
373
373
|
executionNumber?: number;
|
|
374
374
|
}
|
|
375
375
|
/**
|
|
376
|
-
* @public
|
|
377
376
|
* <p>Contains data about the state of a job execution.</p>
|
|
377
|
+
* @public
|
|
378
378
|
*/
|
|
379
379
|
export interface JobExecutionState {
|
|
380
380
|
/**
|
|
381
|
-
* @public
|
|
382
381
|
* <p>The status of the job execution. Can be one of: "QUEUED", "IN_PROGRESS", "FAILED", "SUCCESS", "CANCELED",
|
|
383
382
|
* "REJECTED", or "REMOVED".</p>
|
|
383
|
+
* @public
|
|
384
384
|
*/
|
|
385
385
|
status?: JobExecutionStatus;
|
|
386
386
|
/**
|
|
387
|
-
* @public
|
|
388
387
|
* <p>A collection of name/value pairs that describe the status of the job execution.</p>
|
|
388
|
+
* @public
|
|
389
389
|
*/
|
|
390
390
|
statusDetails?: Record<string, string>;
|
|
391
391
|
/**
|
|
392
|
-
* @public
|
|
393
392
|
* <p>The version of the job execution. Job execution versions are incremented each time they are updated by a
|
|
394
393
|
* device.</p>
|
|
394
|
+
* @public
|
|
395
395
|
*/
|
|
396
396
|
versionNumber?: number;
|
|
397
397
|
}
|
|
@@ -400,13 +400,13 @@ export interface JobExecutionState {
|
|
|
400
400
|
*/
|
|
401
401
|
export interface UpdateJobExecutionResponse {
|
|
402
402
|
/**
|
|
403
|
-
* @public
|
|
404
403
|
* <p>A JobExecutionState object.</p>
|
|
404
|
+
* @public
|
|
405
405
|
*/
|
|
406
406
|
executionState?: JobExecutionState;
|
|
407
407
|
/**
|
|
408
|
-
* @public
|
|
409
408
|
* <p>The contents of the Job Documents.</p>
|
|
409
|
+
* @public
|
|
410
410
|
*/
|
|
411
411
|
jobDocument?: string;
|
|
412
412
|
}
|
|
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: IoTJobsDataPlaneClientConfig) =>
|
|
|
20
20
|
apiVersion: string;
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
-
base64Encoder:
|
|
23
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
24
24
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
-
utf8Encoder:
|
|
25
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: IoTJobsDataPlaneClientConfig) =>
|
|
|
20
20
|
apiVersion: string;
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
-
base64Encoder:
|
|
23
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
24
24
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
-
utf8Encoder:
|
|
25
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -11,9 +11,9 @@ export declare const getRuntimeConfig: (config: IoTJobsDataPlaneClientConfig) =>
|
|
|
11
11
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@smithy/types").Decoder;
|
|
14
|
-
base64Encoder:
|
|
14
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
15
15
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
16
|
-
utf8Encoder:
|
|
16
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
17
17
|
disableHostPrefix: boolean;
|
|
18
18
|
serviceId: string;
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -5,7 +5,7 @@ import { IoTJobsDataPlaneClientConfig } from "./IoTJobsDataPlaneClient";
|
|
|
5
5
|
export declare const getRuntimeConfig: (config: IoTJobsDataPlaneClientConfig) => {
|
|
6
6
|
apiVersion: string;
|
|
7
7
|
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
-
base64Encoder:
|
|
8
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger | undefined;
|
|
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: IoTJobsDataPlaneClientConfig) =>
|
|
|
17
17
|
serviceId: string;
|
|
18
18
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
19
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
utf8Encoder:
|
|
20
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
21
21
|
};
|
|
@@ -25,6 +25,15 @@ declare const DescribeJobExecutionCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DescribeJobExecutionCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeJobExecutionCommandInput,
|
|
32
|
+
DescribeJobExecutionCommandOutput,
|
|
33
|
+
IoTJobsDataPlaneClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeJobExecutionCommand extends DescribeJobExecutionCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetPendingJobExecutionsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetPendingJobExecutionsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetPendingJobExecutionsCommandInput,
|
|
32
|
+
GetPendingJobExecutionsCommandOutput,
|
|
33
|
+
IoTJobsDataPlaneClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetPendingJobExecutionsCommand extends GetPendingJobExecutionsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const StartNextPendingJobExecutionCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: StartNextPendingJobExecutionCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
StartNextPendingJobExecutionCommandInput,
|
|
32
|
+
StartNextPendingJobExecutionCommandOutput,
|
|
33
|
+
IoTJobsDataPlaneClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class StartNextPendingJobExecutionCommand extends StartNextPendingJobExecutionCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const UpdateJobExecutionCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: UpdateJobExecutionCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdateJobExecutionCommandInput,
|
|
32
|
+
UpdateJobExecutionCommandOutput,
|
|
33
|
+
IoTJobsDataPlaneClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class UpdateJobExecutionCommand extends UpdateJobExecutionCommand_base {}
|
|
@@ -27,9 +27,9 @@ export declare const getRuntimeConfig: (
|
|
|
27
27
|
apiVersion: string;
|
|
28
28
|
urlParser: import("@smithy/types").UrlParser;
|
|
29
29
|
base64Decoder: import("@smithy/types").Decoder;
|
|
30
|
-
base64Encoder:
|
|
30
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
31
31
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
32
|
-
utf8Encoder:
|
|
32
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
33
33
|
disableHostPrefix: boolean;
|
|
34
34
|
serviceId: string;
|
|
35
35
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,9 +31,9 @@ export declare const getRuntimeConfig: (
|
|
|
31
31
|
apiVersion: string;
|
|
32
32
|
urlParser: import("@smithy/types").UrlParser;
|
|
33
33
|
base64Decoder: import("@smithy/types").Decoder;
|
|
34
|
-
base64Encoder:
|
|
34
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
35
35
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
36
|
-
utf8Encoder:
|
|
36
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
37
37
|
disableHostPrefix: boolean;
|
|
38
38
|
serviceId: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
@@ -15,9 +15,9 @@ export declare const getRuntimeConfig: (
|
|
|
15
15
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
16
16
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
17
17
|
base64Decoder: import("@smithy/types").Decoder;
|
|
18
|
-
base64Encoder:
|
|
18
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
19
19
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
utf8Encoder:
|
|
20
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
21
21
|
disableHostPrefix: boolean;
|
|
22
22
|
serviceId: string;
|
|
23
23
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -4,7 +4,7 @@ export declare const getRuntimeConfig: (
|
|
|
4
4
|
) => {
|
|
5
5
|
apiVersion: string;
|
|
6
6
|
base64Decoder: import("@smithy/types").Decoder;
|
|
7
|
-
base64Encoder:
|
|
7
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
8
8
|
disableHostPrefix: boolean;
|
|
9
9
|
endpointProvider: (
|
|
10
10
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
@@ -19,5 +19,5 @@ export declare const getRuntimeConfig: (
|
|
|
19
19
|
serviceId: string;
|
|
20
20
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
21
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
22
|
-
utf8Encoder:
|
|
22
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
23
23
|
};
|
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.535.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,47 +20,47 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^2.
|
|
36
|
-
"@smithy/core": "^1.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.
|
|
38
|
-
"@smithy/hash-node": "^2.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.
|
|
43
|
-
"@smithy/middleware-serde": "^2.
|
|
44
|
-
"@smithy/middleware-stack": "^2.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.
|
|
47
|
-
"@smithy/protocol-http": "^3.
|
|
48
|
-
"@smithy/smithy-client": "^2.
|
|
49
|
-
"@smithy/types": "^2.
|
|
50
|
-
"@smithy/url-parser": "^2.
|
|
51
|
-
"@smithy/util-base64": "^2.
|
|
52
|
-
"@smithy/util-body-length-browser": "^2.
|
|
53
|
-
"@smithy/util-body-length-node": "^2.
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.
|
|
56
|
-
"@smithy/util-endpoints": "^1.
|
|
57
|
-
"@smithy/util-middleware": "^2.
|
|
58
|
-
"@smithy/util-retry": "^2.
|
|
59
|
-
"@smithy/util-utf8": "^2.
|
|
60
|
-
"tslib": "^2.
|
|
23
|
+
"@aws-sdk/client-sts": "3.535.0",
|
|
24
|
+
"@aws-sdk/core": "3.535.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.535.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.535.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.535.0",
|
|
31
|
+
"@aws-sdk/types": "3.535.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.535.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.535.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.535.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.2.0",
|
|
36
|
+
"@smithy/core": "^1.4.0",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.5.0",
|
|
38
|
+
"@smithy/hash-node": "^2.2.0",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.2.0",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.2.0",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.5.0",
|
|
42
|
+
"@smithy/middleware-retry": "^2.2.0",
|
|
43
|
+
"@smithy/middleware-serde": "^2.3.0",
|
|
44
|
+
"@smithy/middleware-stack": "^2.2.0",
|
|
45
|
+
"@smithy/node-config-provider": "^2.3.0",
|
|
46
|
+
"@smithy/node-http-handler": "^2.5.0",
|
|
47
|
+
"@smithy/protocol-http": "^3.3.0",
|
|
48
|
+
"@smithy/smithy-client": "^2.5.0",
|
|
49
|
+
"@smithy/types": "^2.12.0",
|
|
50
|
+
"@smithy/url-parser": "^2.2.0",
|
|
51
|
+
"@smithy/util-base64": "^2.3.0",
|
|
52
|
+
"@smithy/util-body-length-browser": "^2.2.0",
|
|
53
|
+
"@smithy/util-body-length-node": "^2.3.0",
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.2.0",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.3.0",
|
|
56
|
+
"@smithy/util-endpoints": "^1.2.0",
|
|
57
|
+
"@smithy/util-middleware": "^2.2.0",
|
|
58
|
+
"@smithy/util-retry": "^2.2.0",
|
|
59
|
+
"@smithy/util-utf8": "^2.3.0",
|
|
60
|
+
"tslib": "^2.6.2"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@smithy/service-client-documentation-generator": "^2.
|
|
63
|
+
"@smithy/service-client-documentation-generator": "^2.2.0",
|
|
64
64
|
"@tsconfig/node14": "1.0.3",
|
|
65
65
|
"@types/node": "^14.14.31",
|
|
66
66
|
"concurrently": "7.0.0",
|