@aws-sdk/client-sagemaker-edge 3.687.0 → 3.692.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/models/models_0.d.ts +40 -40
- package/dist-types/ts3.4/models/models_0.d.ts +40 -40
- package/package.json +35 -35
|
@@ -35,12 +35,12 @@ export interface Checksum {
|
|
|
35
35
|
* <p>The type of the checksum.</p>
|
|
36
36
|
* @public
|
|
37
37
|
*/
|
|
38
|
-
Type?: ChecksumType;
|
|
38
|
+
Type?: ChecksumType | undefined;
|
|
39
39
|
/**
|
|
40
40
|
* <p>The checksum of the model.</p>
|
|
41
41
|
* @public
|
|
42
42
|
*/
|
|
43
|
-
Sum?: string;
|
|
43
|
+
Sum?: string | undefined;
|
|
44
44
|
}
|
|
45
45
|
/**
|
|
46
46
|
* @public
|
|
@@ -63,22 +63,22 @@ export interface Definition {
|
|
|
63
63
|
* <p>The unique model handle.</p>
|
|
64
64
|
* @public
|
|
65
65
|
*/
|
|
66
|
-
ModelHandle?: string;
|
|
66
|
+
ModelHandle?: string | undefined;
|
|
67
67
|
/**
|
|
68
68
|
* <p>The absolute S3 location of the model.</p>
|
|
69
69
|
* @public
|
|
70
70
|
*/
|
|
71
|
-
S3Url?: string;
|
|
71
|
+
S3Url?: string | undefined;
|
|
72
72
|
/**
|
|
73
73
|
* <p>The checksum information of the model.</p>
|
|
74
74
|
* @public
|
|
75
75
|
*/
|
|
76
|
-
Checksum?: Checksum;
|
|
76
|
+
Checksum?: Checksum | undefined;
|
|
77
77
|
/**
|
|
78
78
|
* <p>The desired state of the model.</p>
|
|
79
79
|
* @public
|
|
80
80
|
*/
|
|
81
|
-
State?: ModelState;
|
|
81
|
+
State?: ModelState | undefined;
|
|
82
82
|
}
|
|
83
83
|
/**
|
|
84
84
|
* @public
|
|
@@ -112,22 +112,22 @@ export interface EdgeDeployment {
|
|
|
112
112
|
* <p>The name and unique ID of the deployment.</p>
|
|
113
113
|
* @public
|
|
114
114
|
*/
|
|
115
|
-
DeploymentName?: string;
|
|
115
|
+
DeploymentName?: string | undefined;
|
|
116
116
|
/**
|
|
117
117
|
* <p>The type of the deployment.</p>
|
|
118
118
|
* @public
|
|
119
119
|
*/
|
|
120
|
-
Type?: DeploymentType;
|
|
120
|
+
Type?: DeploymentType | undefined;
|
|
121
121
|
/**
|
|
122
122
|
* <p>Determines whether to rollback to previous configuration if deployment fails.</p>
|
|
123
123
|
* @public
|
|
124
124
|
*/
|
|
125
|
-
FailureHandlingPolicy?: FailureHandlingPolicy;
|
|
125
|
+
FailureHandlingPolicy?: FailureHandlingPolicy | undefined;
|
|
126
126
|
/**
|
|
127
127
|
* <p>Returns a list of Definition objects.</p>
|
|
128
128
|
* @public
|
|
129
129
|
*/
|
|
130
|
-
Definitions?: Definition[];
|
|
130
|
+
Definitions?: Definition[] | undefined;
|
|
131
131
|
}
|
|
132
132
|
/**
|
|
133
133
|
* @public
|
|
@@ -137,7 +137,7 @@ export interface GetDeploymentsResult {
|
|
|
137
137
|
* <p>Returns a list of the configurations of the active deployments on the device.</p>
|
|
138
138
|
* @public
|
|
139
139
|
*/
|
|
140
|
-
Deployments?: EdgeDeployment[];
|
|
140
|
+
Deployments?: EdgeDeployment[] | undefined;
|
|
141
141
|
}
|
|
142
142
|
/**
|
|
143
143
|
* <p>An internal failure occurred. Try your request again. If the problem
|
|
@@ -147,7 +147,7 @@ export interface GetDeploymentsResult {
|
|
|
147
147
|
export declare class InternalServiceException extends __BaseException {
|
|
148
148
|
readonly name: "InternalServiceException";
|
|
149
149
|
readonly $fault: "client";
|
|
150
|
-
Message?: string;
|
|
150
|
+
Message?: string | undefined;
|
|
151
151
|
/**
|
|
152
152
|
* @internal
|
|
153
153
|
*/
|
|
@@ -176,12 +176,12 @@ export interface GetDeviceRegistrationResult {
|
|
|
176
176
|
* <p>Describes if the device is currently registered with SageMaker Edge Manager.</p>
|
|
177
177
|
* @public
|
|
178
178
|
*/
|
|
179
|
-
DeviceRegistration?: string;
|
|
179
|
+
DeviceRegistration?: string | undefined;
|
|
180
180
|
/**
|
|
181
181
|
* <p>The amount of time, in seconds, that the registration status is stored on the device’s cache before it is refreshed.</p>
|
|
182
182
|
* @public
|
|
183
183
|
*/
|
|
184
|
-
CacheTTL?: string;
|
|
184
|
+
CacheTTL?: string | undefined;
|
|
185
185
|
}
|
|
186
186
|
/**
|
|
187
187
|
* <p>Information required for edge device metrics.</p>
|
|
@@ -192,22 +192,22 @@ export interface EdgeMetric {
|
|
|
192
192
|
* <p>The dimension of metrics published.</p>
|
|
193
193
|
* @public
|
|
194
194
|
*/
|
|
195
|
-
Dimension?: string;
|
|
195
|
+
Dimension?: string | undefined;
|
|
196
196
|
/**
|
|
197
197
|
* <p>Returns the name of the metric.</p>
|
|
198
198
|
* @public
|
|
199
199
|
*/
|
|
200
|
-
MetricName?: string;
|
|
200
|
+
MetricName?: string | undefined;
|
|
201
201
|
/**
|
|
202
202
|
* <p>Returns the value of the metric.</p>
|
|
203
203
|
* @public
|
|
204
204
|
*/
|
|
205
|
-
Value?: number;
|
|
205
|
+
Value?: number | undefined;
|
|
206
206
|
/**
|
|
207
207
|
* <p>Timestamp of when the metric was requested.</p>
|
|
208
208
|
* @public
|
|
209
209
|
*/
|
|
210
|
-
Timestamp?: Date;
|
|
210
|
+
Timestamp?: Date | undefined;
|
|
211
211
|
}
|
|
212
212
|
/**
|
|
213
213
|
* @public
|
|
@@ -230,42 +230,42 @@ export interface DeploymentModel {
|
|
|
230
230
|
* <p>The unique handle of the model.</p>
|
|
231
231
|
* @public
|
|
232
232
|
*/
|
|
233
|
-
ModelHandle?: string;
|
|
233
|
+
ModelHandle?: string | undefined;
|
|
234
234
|
/**
|
|
235
235
|
* <p>The name of the model.</p>
|
|
236
236
|
* @public
|
|
237
237
|
*/
|
|
238
|
-
ModelName?: string;
|
|
238
|
+
ModelName?: string | undefined;
|
|
239
239
|
/**
|
|
240
240
|
* <p>The version of the model.</p>
|
|
241
241
|
* @public
|
|
242
242
|
*/
|
|
243
|
-
ModelVersion?: string;
|
|
243
|
+
ModelVersion?: string | undefined;
|
|
244
244
|
/**
|
|
245
245
|
* <p>The desired state of the model.</p>
|
|
246
246
|
* @public
|
|
247
247
|
*/
|
|
248
|
-
DesiredState?: ModelState;
|
|
248
|
+
DesiredState?: ModelState | undefined;
|
|
249
249
|
/**
|
|
250
250
|
* <p>Returns the current state of the model.</p>
|
|
251
251
|
* @public
|
|
252
252
|
*/
|
|
253
|
-
State?: ModelState;
|
|
253
|
+
State?: ModelState | undefined;
|
|
254
254
|
/**
|
|
255
255
|
* <p>Returns the deployment status of the model.</p>
|
|
256
256
|
* @public
|
|
257
257
|
*/
|
|
258
|
-
Status?: DeploymentStatus;
|
|
258
|
+
Status?: DeploymentStatus | undefined;
|
|
259
259
|
/**
|
|
260
260
|
* <p>Returns the error message for the deployment status result.</p>
|
|
261
261
|
* @public
|
|
262
262
|
*/
|
|
263
|
-
StatusReason?: string;
|
|
263
|
+
StatusReason?: string | undefined;
|
|
264
264
|
/**
|
|
265
265
|
* <p>Returns the error message if there is a rollback.</p>
|
|
266
266
|
* @public
|
|
267
267
|
*/
|
|
268
|
-
RollbackFailureReason?: string;
|
|
268
|
+
RollbackFailureReason?: string | undefined;
|
|
269
269
|
}
|
|
270
270
|
/**
|
|
271
271
|
* <p>Information about the result of a deployment on an edge device that is registered with SageMaker Edge Manager.</p>
|
|
@@ -276,32 +276,32 @@ export interface DeploymentResult {
|
|
|
276
276
|
* <p>The name and unique ID of the deployment.</p>
|
|
277
277
|
* @public
|
|
278
278
|
*/
|
|
279
|
-
DeploymentName?: string;
|
|
279
|
+
DeploymentName?: string | undefined;
|
|
280
280
|
/**
|
|
281
281
|
* <p>Returns the bucket error code.</p>
|
|
282
282
|
* @public
|
|
283
283
|
*/
|
|
284
|
-
DeploymentStatus?: string;
|
|
284
|
+
DeploymentStatus?: string | undefined;
|
|
285
285
|
/**
|
|
286
286
|
* <p>Returns the detailed error message.</p>
|
|
287
287
|
* @public
|
|
288
288
|
*/
|
|
289
|
-
DeploymentStatusMessage?: string;
|
|
289
|
+
DeploymentStatusMessage?: string | undefined;
|
|
290
290
|
/**
|
|
291
291
|
* <p>The timestamp of when the deployment was started on the agent.</p>
|
|
292
292
|
* @public
|
|
293
293
|
*/
|
|
294
|
-
DeploymentStartTime?: Date;
|
|
294
|
+
DeploymentStartTime?: Date | undefined;
|
|
295
295
|
/**
|
|
296
296
|
* <p>The timestamp of when the deployment was ended, and the agent got the deployment results.</p>
|
|
297
297
|
* @public
|
|
298
298
|
*/
|
|
299
|
-
DeploymentEndTime?: Date;
|
|
299
|
+
DeploymentEndTime?: Date | undefined;
|
|
300
300
|
/**
|
|
301
301
|
* <p>Returns a list of models deployed on the agent.</p>
|
|
302
302
|
* @public
|
|
303
303
|
*/
|
|
304
|
-
DeploymentModels?: DeploymentModel[];
|
|
304
|
+
DeploymentModels?: DeploymentModel[] | undefined;
|
|
305
305
|
}
|
|
306
306
|
/**
|
|
307
307
|
* <p>Information about a model deployed on an edge device that is registered with SageMaker Edge Manager.</p>
|
|
@@ -312,27 +312,27 @@ export interface Model {
|
|
|
312
312
|
* <p>The name of the model.</p>
|
|
313
313
|
* @public
|
|
314
314
|
*/
|
|
315
|
-
ModelName?: string;
|
|
315
|
+
ModelName?: string | undefined;
|
|
316
316
|
/**
|
|
317
317
|
* <p>The version of the model.</p>
|
|
318
318
|
* @public
|
|
319
319
|
*/
|
|
320
|
-
ModelVersion?: string;
|
|
320
|
+
ModelVersion?: string | undefined;
|
|
321
321
|
/**
|
|
322
322
|
* <p>The timestamp of the last data sample taken.</p>
|
|
323
323
|
* @public
|
|
324
324
|
*/
|
|
325
|
-
LatestSampleTime?: Date;
|
|
325
|
+
LatestSampleTime?: Date | undefined;
|
|
326
326
|
/**
|
|
327
327
|
* <p>The timestamp of the last inference that was made.</p>
|
|
328
328
|
* @public
|
|
329
329
|
*/
|
|
330
|
-
LatestInference?: Date;
|
|
330
|
+
LatestInference?: Date | undefined;
|
|
331
331
|
/**
|
|
332
332
|
* <p>Information required for model metrics.</p>
|
|
333
333
|
* @public
|
|
334
334
|
*/
|
|
335
|
-
ModelMetrics?: EdgeMetric[];
|
|
335
|
+
ModelMetrics?: EdgeMetric[] | undefined;
|
|
336
336
|
}
|
|
337
337
|
/**
|
|
338
338
|
* @public
|
|
@@ -342,12 +342,12 @@ export interface SendHeartbeatRequest {
|
|
|
342
342
|
* <p>For internal use. Returns a list of SageMaker Edge Manager agent operating metrics.</p>
|
|
343
343
|
* @public
|
|
344
344
|
*/
|
|
345
|
-
AgentMetrics?: EdgeMetric[];
|
|
345
|
+
AgentMetrics?: EdgeMetric[] | undefined;
|
|
346
346
|
/**
|
|
347
347
|
* <p>Returns a list of models deployed on the the device.</p>
|
|
348
348
|
* @public
|
|
349
349
|
*/
|
|
350
|
-
Models?: Model[];
|
|
350
|
+
Models?: Model[] | undefined;
|
|
351
351
|
/**
|
|
352
352
|
* <p>Returns the version of the agent.</p>
|
|
353
353
|
* @public
|
|
@@ -367,5 +367,5 @@ export interface SendHeartbeatRequest {
|
|
|
367
367
|
* <p>Returns the result of a deployment on the device.</p>
|
|
368
368
|
* @public
|
|
369
369
|
*/
|
|
370
|
-
DeploymentResult?: DeploymentResult;
|
|
370
|
+
DeploymentResult?: DeploymentResult | undefined;
|
|
371
371
|
}
|
|
@@ -9,8 +9,8 @@ export declare const ChecksumType: {
|
|
|
9
9
|
};
|
|
10
10
|
export type ChecksumType = (typeof ChecksumType)[keyof typeof ChecksumType];
|
|
11
11
|
export interface Checksum {
|
|
12
|
-
Type?: ChecksumType;
|
|
13
|
-
Sum?: string;
|
|
12
|
+
Type?: ChecksumType | undefined;
|
|
13
|
+
Sum?: string | undefined;
|
|
14
14
|
}
|
|
15
15
|
export declare const ModelState: {
|
|
16
16
|
readonly Deploy: "DEPLOY";
|
|
@@ -18,10 +18,10 @@ export declare const ModelState: {
|
|
|
18
18
|
};
|
|
19
19
|
export type ModelState = (typeof ModelState)[keyof typeof ModelState];
|
|
20
20
|
export interface Definition {
|
|
21
|
-
ModelHandle?: string;
|
|
22
|
-
S3Url?: string;
|
|
23
|
-
Checksum?: Checksum;
|
|
24
|
-
State?: ModelState;
|
|
21
|
+
ModelHandle?: string | undefined;
|
|
22
|
+
S3Url?: string | undefined;
|
|
23
|
+
Checksum?: Checksum | undefined;
|
|
24
|
+
State?: ModelState | undefined;
|
|
25
25
|
}
|
|
26
26
|
export declare const FailureHandlingPolicy: {
|
|
27
27
|
readonly DoNothing: "DO_NOTHING";
|
|
@@ -35,18 +35,18 @@ export declare const DeploymentType: {
|
|
|
35
35
|
export type DeploymentType =
|
|
36
36
|
(typeof DeploymentType)[keyof typeof DeploymentType];
|
|
37
37
|
export interface EdgeDeployment {
|
|
38
|
-
DeploymentName?: string;
|
|
39
|
-
Type?: DeploymentType;
|
|
40
|
-
FailureHandlingPolicy?: FailureHandlingPolicy;
|
|
41
|
-
Definitions?: Definition[];
|
|
38
|
+
DeploymentName?: string | undefined;
|
|
39
|
+
Type?: DeploymentType | undefined;
|
|
40
|
+
FailureHandlingPolicy?: FailureHandlingPolicy | undefined;
|
|
41
|
+
Definitions?: Definition[] | undefined;
|
|
42
42
|
}
|
|
43
43
|
export interface GetDeploymentsResult {
|
|
44
|
-
Deployments?: EdgeDeployment[];
|
|
44
|
+
Deployments?: EdgeDeployment[] | undefined;
|
|
45
45
|
}
|
|
46
46
|
export declare class InternalServiceException extends __BaseException {
|
|
47
47
|
readonly name: "InternalServiceException";
|
|
48
48
|
readonly $fault: "client";
|
|
49
|
-
Message?: string;
|
|
49
|
+
Message?: string | undefined;
|
|
50
50
|
constructor(
|
|
51
51
|
opts: __ExceptionOptionType<InternalServiceException, __BaseException>
|
|
52
52
|
);
|
|
@@ -56,14 +56,14 @@ export interface GetDeviceRegistrationRequest {
|
|
|
56
56
|
DeviceFleetName: string | undefined;
|
|
57
57
|
}
|
|
58
58
|
export interface GetDeviceRegistrationResult {
|
|
59
|
-
DeviceRegistration?: string;
|
|
60
|
-
CacheTTL?: string;
|
|
59
|
+
DeviceRegistration?: string | undefined;
|
|
60
|
+
CacheTTL?: string | undefined;
|
|
61
61
|
}
|
|
62
62
|
export interface EdgeMetric {
|
|
63
|
-
Dimension?: string;
|
|
64
|
-
MetricName?: string;
|
|
65
|
-
Value?: number;
|
|
66
|
-
Timestamp?: Date;
|
|
63
|
+
Dimension?: string | undefined;
|
|
64
|
+
MetricName?: string | undefined;
|
|
65
|
+
Value?: number | undefined;
|
|
66
|
+
Timestamp?: Date | undefined;
|
|
67
67
|
}
|
|
68
68
|
export declare const DeploymentStatus: {
|
|
69
69
|
readonly Fail: "FAIL";
|
|
@@ -72,35 +72,35 @@ export declare const DeploymentStatus: {
|
|
|
72
72
|
export type DeploymentStatus =
|
|
73
73
|
(typeof DeploymentStatus)[keyof typeof DeploymentStatus];
|
|
74
74
|
export interface DeploymentModel {
|
|
75
|
-
ModelHandle?: string;
|
|
76
|
-
ModelName?: string;
|
|
77
|
-
ModelVersion?: string;
|
|
78
|
-
DesiredState?: ModelState;
|
|
79
|
-
State?: ModelState;
|
|
80
|
-
Status?: DeploymentStatus;
|
|
81
|
-
StatusReason?: string;
|
|
82
|
-
RollbackFailureReason?: string;
|
|
75
|
+
ModelHandle?: string | undefined;
|
|
76
|
+
ModelName?: string | undefined;
|
|
77
|
+
ModelVersion?: string | undefined;
|
|
78
|
+
DesiredState?: ModelState | undefined;
|
|
79
|
+
State?: ModelState | undefined;
|
|
80
|
+
Status?: DeploymentStatus | undefined;
|
|
81
|
+
StatusReason?: string | undefined;
|
|
82
|
+
RollbackFailureReason?: string | undefined;
|
|
83
83
|
}
|
|
84
84
|
export interface DeploymentResult {
|
|
85
|
-
DeploymentName?: string;
|
|
86
|
-
DeploymentStatus?: string;
|
|
87
|
-
DeploymentStatusMessage?: string;
|
|
88
|
-
DeploymentStartTime?: Date;
|
|
89
|
-
DeploymentEndTime?: Date;
|
|
90
|
-
DeploymentModels?: DeploymentModel[];
|
|
85
|
+
DeploymentName?: string | undefined;
|
|
86
|
+
DeploymentStatus?: string | undefined;
|
|
87
|
+
DeploymentStatusMessage?: string | undefined;
|
|
88
|
+
DeploymentStartTime?: Date | undefined;
|
|
89
|
+
DeploymentEndTime?: Date | undefined;
|
|
90
|
+
DeploymentModels?: DeploymentModel[] | undefined;
|
|
91
91
|
}
|
|
92
92
|
export interface Model {
|
|
93
|
-
ModelName?: string;
|
|
94
|
-
ModelVersion?: string;
|
|
95
|
-
LatestSampleTime?: Date;
|
|
96
|
-
LatestInference?: Date;
|
|
97
|
-
ModelMetrics?: EdgeMetric[];
|
|
93
|
+
ModelName?: string | undefined;
|
|
94
|
+
ModelVersion?: string | undefined;
|
|
95
|
+
LatestSampleTime?: Date | undefined;
|
|
96
|
+
LatestInference?: Date | undefined;
|
|
97
|
+
ModelMetrics?: EdgeMetric[] | undefined;
|
|
98
98
|
}
|
|
99
99
|
export interface SendHeartbeatRequest {
|
|
100
|
-
AgentMetrics?: EdgeMetric[];
|
|
101
|
-
Models?: Model[];
|
|
100
|
+
AgentMetrics?: EdgeMetric[] | undefined;
|
|
101
|
+
Models?: Model[] | undefined;
|
|
102
102
|
AgentVersion: string | undefined;
|
|
103
103
|
DeviceName: string | undefined;
|
|
104
104
|
DeviceFleetName: string | undefined;
|
|
105
|
-
DeploymentResult?: DeploymentResult;
|
|
105
|
+
DeploymentResult?: DeploymentResult | undefined;
|
|
106
106
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker-edge",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Edge Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.692.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-sagemaker-edge",
|
|
@@ -20,43 +20,43 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.692.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.692.0",
|
|
25
|
+
"@aws-sdk/core": "3.692.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.692.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.692.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.692.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.692.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.692.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.692.0",
|
|
32
|
+
"@aws-sdk/types": "3.692.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.692.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.692.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.692.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.11",
|
|
37
|
+
"@smithy/core": "^2.5.2",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.0",
|
|
39
|
+
"@smithy/hash-node": "^3.0.9",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.9",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.11",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.2",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.26",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.9",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.9",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.10",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.0",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.6",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.3",
|
|
50
|
+
"@smithy/types": "^3.7.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.9",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.26",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.26",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.5",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.9",
|
|
59
|
+
"@smithy/util-retry": "^3.0.9",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|