@aws-sdk/client-greengrassv2 3.300.0 → 3.303.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-cjs/models/models_0.js +101 -121
- package/dist-es/models/models_0.js +101 -121
- package/dist-types/commands/AssociateServiceRoleToAccountCommand.d.ts +1 -1
- package/dist-types/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.d.ts +3 -3
- package/dist-types/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.d.ts +3 -3
- package/dist-types/commands/CancelDeploymentCommand.d.ts +1 -1
- package/dist-types/commands/CreateComponentVersionCommand.d.ts +19 -19
- package/dist-types/commands/CreateDeploymentCommand.d.ts +19 -19
- package/dist-types/commands/DeleteComponentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCoreDeviceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDeploymentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeComponentCommand.d.ts +1 -1
- package/dist-types/commands/GetComponentCommand.d.ts +1 -1
- package/dist-types/commands/GetComponentVersionArtifactCommand.d.ts +1 -1
- package/dist-types/commands/GetConnectivityInfoCommand.d.ts +1 -1
- package/dist-types/commands/GetCoreDeviceCommand.d.ts +1 -1
- package/dist-types/commands/GetDeploymentCommand.d.ts +1 -1
- package/dist-types/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.d.ts +1 -1
- package/dist-types/commands/ListComponentVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListComponentsCommand.d.ts +1 -1
- package/dist-types/commands/ListCoreDevicesCommand.d.ts +1 -1
- package/dist-types/commands/ListDeploymentsCommand.d.ts +1 -1
- package/dist-types/commands/ListEffectiveDeploymentsCommand.d.ts +1 -1
- package/dist-types/commands/ListInstalledComponentsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ResolveComponentCandidatesCommand.d.ts +6 -6
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateConnectivityInfoCommand.d.ts +3 -3
- package/dist-types/models/models_0.d.ts +201 -101
- package/dist-types/ts3.4/models/models_0.d.ts +141 -101
- package/package.json +34 -34
|
@@ -37,12 +37,14 @@ export interface ValidationExceptionField {
|
|
|
37
37
|
name: string | undefined;
|
|
38
38
|
message: string | undefined;
|
|
39
39
|
}
|
|
40
|
-
export declare
|
|
41
|
-
CANNOT_PARSE
|
|
42
|
-
FIELD_VALIDATION_FAILED
|
|
43
|
-
OTHER
|
|
44
|
-
UNKNOWN_OPERATION
|
|
45
|
-
}
|
|
40
|
+
export declare const ValidationExceptionReason: {
|
|
41
|
+
readonly CANNOT_PARSE: "CANNOT_PARSE";
|
|
42
|
+
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
43
|
+
readonly OTHER: "OTHER";
|
|
44
|
+
readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
|
|
45
|
+
};
|
|
46
|
+
export type ValidationExceptionReason =
|
|
47
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
46
48
|
export declare class ValidationException extends __BaseException {
|
|
47
49
|
readonly name: "ValidationException";
|
|
48
50
|
readonly $fault: "client";
|
|
@@ -106,18 +108,22 @@ export declare class ConflictException extends __BaseException {
|
|
|
106
108
|
resourceType: string | undefined;
|
|
107
109
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
108
110
|
}
|
|
109
|
-
export declare
|
|
110
|
-
DEPLOYABLE
|
|
111
|
-
DEPRECATED
|
|
112
|
-
FAILED
|
|
113
|
-
INITIATED
|
|
114
|
-
REQUESTED
|
|
115
|
-
}
|
|
116
|
-
export
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
111
|
+
export declare const CloudComponentState: {
|
|
112
|
+
readonly DEPLOYABLE: "DEPLOYABLE";
|
|
113
|
+
readonly DEPRECATED: "DEPRECATED";
|
|
114
|
+
readonly FAILED: "FAILED";
|
|
115
|
+
readonly INITIATED: "INITIATED";
|
|
116
|
+
readonly REQUESTED: "REQUESTED";
|
|
117
|
+
};
|
|
118
|
+
export type CloudComponentState =
|
|
119
|
+
(typeof CloudComponentState)[keyof typeof CloudComponentState];
|
|
120
|
+
export declare const VendorGuidance: {
|
|
121
|
+
readonly ACTIVE: "ACTIVE";
|
|
122
|
+
readonly DELETED: "DELETED";
|
|
123
|
+
readonly DISCONTINUED: "DISCONTINUED";
|
|
124
|
+
};
|
|
125
|
+
export type VendorGuidance =
|
|
126
|
+
(typeof VendorGuidance)[keyof typeof VendorGuidance];
|
|
121
127
|
export interface CloudComponentStatus {
|
|
122
128
|
componentState?: CloudComponentState | string;
|
|
123
129
|
message?: string;
|
|
@@ -151,10 +157,12 @@ export interface ComponentConfigurationUpdate {
|
|
|
151
157
|
merge?: string;
|
|
152
158
|
reset?: string[];
|
|
153
159
|
}
|
|
154
|
-
export declare
|
|
155
|
-
HARD
|
|
156
|
-
SOFT
|
|
157
|
-
}
|
|
160
|
+
export declare const ComponentDependencyType: {
|
|
161
|
+
readonly HARD: "HARD";
|
|
162
|
+
readonly SOFT: "SOFT";
|
|
163
|
+
};
|
|
164
|
+
export type ComponentDependencyType =
|
|
165
|
+
(typeof ComponentDependencyType)[keyof typeof ComponentDependencyType];
|
|
158
166
|
export interface ComponentDependencyRequirement {
|
|
159
167
|
versionRequirement?: string;
|
|
160
168
|
dependencyType?: ComponentDependencyType | string;
|
|
@@ -178,41 +186,51 @@ export interface ComponentVersionListItem {
|
|
|
178
186
|
componentVersion?: string;
|
|
179
187
|
arn?: string;
|
|
180
188
|
}
|
|
181
|
-
export declare
|
|
182
|
-
PRIVATE
|
|
183
|
-
PUBLIC
|
|
184
|
-
}
|
|
189
|
+
export declare const ComponentVisibilityScope: {
|
|
190
|
+
readonly PRIVATE: "PRIVATE";
|
|
191
|
+
readonly PUBLIC: "PUBLIC";
|
|
192
|
+
};
|
|
193
|
+
export type ComponentVisibilityScope =
|
|
194
|
+
(typeof ComponentVisibilityScope)[keyof typeof ComponentVisibilityScope];
|
|
185
195
|
export interface ConnectivityInfo {
|
|
186
196
|
id?: string;
|
|
187
197
|
hostAddress?: string;
|
|
188
198
|
portNumber?: number;
|
|
189
199
|
metadata?: string;
|
|
190
200
|
}
|
|
191
|
-
export declare
|
|
192
|
-
HEALTHY
|
|
193
|
-
UNHEALTHY
|
|
194
|
-
}
|
|
201
|
+
export declare const CoreDeviceStatus: {
|
|
202
|
+
readonly HEALTHY: "HEALTHY";
|
|
203
|
+
readonly UNHEALTHY: "UNHEALTHY";
|
|
204
|
+
};
|
|
205
|
+
export type CoreDeviceStatus =
|
|
206
|
+
(typeof CoreDeviceStatus)[keyof typeof CoreDeviceStatus];
|
|
195
207
|
export interface CoreDevice {
|
|
196
208
|
coreDeviceThingName?: string;
|
|
197
209
|
status?: CoreDeviceStatus | string;
|
|
198
210
|
lastStatusUpdateTimestamp?: Date;
|
|
199
211
|
}
|
|
200
|
-
export declare
|
|
201
|
-
IOT_CORE
|
|
202
|
-
PUB_SUB
|
|
203
|
-
}
|
|
212
|
+
export declare const LambdaEventSourceType: {
|
|
213
|
+
readonly IOT_CORE: "IOT_CORE";
|
|
214
|
+
readonly PUB_SUB: "PUB_SUB";
|
|
215
|
+
};
|
|
216
|
+
export type LambdaEventSourceType =
|
|
217
|
+
(typeof LambdaEventSourceType)[keyof typeof LambdaEventSourceType];
|
|
204
218
|
export interface LambdaEventSource {
|
|
205
219
|
topic: string | undefined;
|
|
206
220
|
type: LambdaEventSourceType | string | undefined;
|
|
207
221
|
}
|
|
208
|
-
export declare
|
|
209
|
-
BINARY
|
|
210
|
-
JSON
|
|
211
|
-
}
|
|
212
|
-
export
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
222
|
+
export declare const LambdaInputPayloadEncodingType: {
|
|
223
|
+
readonly BINARY: "binary";
|
|
224
|
+
readonly JSON: "json";
|
|
225
|
+
};
|
|
226
|
+
export type LambdaInputPayloadEncodingType =
|
|
227
|
+
(typeof LambdaInputPayloadEncodingType)[keyof typeof LambdaInputPayloadEncodingType];
|
|
228
|
+
export declare const LambdaFilesystemPermission: {
|
|
229
|
+
readonly RO: "ro";
|
|
230
|
+
readonly RW: "rw";
|
|
231
|
+
};
|
|
232
|
+
export type LambdaFilesystemPermission =
|
|
233
|
+
(typeof LambdaFilesystemPermission)[keyof typeof LambdaFilesystemPermission];
|
|
216
234
|
export interface LambdaDeviceMount {
|
|
217
235
|
path: string | undefined;
|
|
218
236
|
permission?: LambdaFilesystemPermission | string;
|
|
@@ -230,10 +248,12 @@ export interface LambdaContainerParams {
|
|
|
230
248
|
volumes?: LambdaVolumeMount[];
|
|
231
249
|
devices?: LambdaDeviceMount[];
|
|
232
250
|
}
|
|
233
|
-
export declare
|
|
234
|
-
GREENGRASS_CONTAINER
|
|
235
|
-
NO_CONTAINER
|
|
236
|
-
}
|
|
251
|
+
export declare const LambdaIsolationMode: {
|
|
252
|
+
readonly GREENGRASS_CONTAINER: "GreengrassContainer";
|
|
253
|
+
readonly NO_CONTAINER: "NoContainer";
|
|
254
|
+
};
|
|
255
|
+
export type LambdaIsolationMode =
|
|
256
|
+
(typeof LambdaIsolationMode)[keyof typeof LambdaIsolationMode];
|
|
237
257
|
export interface LambdaLinuxProcessParams {
|
|
238
258
|
isolationMode?: LambdaIsolationMode | string;
|
|
239
259
|
containerParams?: LambdaContainerParams;
|
|
@@ -293,10 +313,12 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
293
313
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
294
314
|
);
|
|
295
315
|
}
|
|
296
|
-
export declare
|
|
297
|
-
NOTIFY_COMPONENTS
|
|
298
|
-
SKIP_NOTIFY_COMPONENTS
|
|
299
|
-
}
|
|
316
|
+
export declare const DeploymentComponentUpdatePolicyAction: {
|
|
317
|
+
readonly NOTIFY_COMPONENTS: "NOTIFY_COMPONENTS";
|
|
318
|
+
readonly SKIP_NOTIFY_COMPONENTS: "SKIP_NOTIFY_COMPONENTS";
|
|
319
|
+
};
|
|
320
|
+
export type DeploymentComponentUpdatePolicyAction =
|
|
321
|
+
(typeof DeploymentComponentUpdatePolicyAction)[keyof typeof DeploymentComponentUpdatePolicyAction];
|
|
300
322
|
export interface DeploymentComponentUpdatePolicy {
|
|
301
323
|
timeoutInSeconds?: number;
|
|
302
324
|
action?: DeploymentComponentUpdatePolicyAction | string;
|
|
@@ -304,24 +326,30 @@ export interface DeploymentComponentUpdatePolicy {
|
|
|
304
326
|
export interface DeploymentConfigurationValidationPolicy {
|
|
305
327
|
timeoutInSeconds?: number;
|
|
306
328
|
}
|
|
307
|
-
export declare
|
|
308
|
-
DO_NOTHING
|
|
309
|
-
ROLLBACK
|
|
310
|
-
}
|
|
329
|
+
export declare const DeploymentFailureHandlingPolicy: {
|
|
330
|
+
readonly DO_NOTHING: "DO_NOTHING";
|
|
331
|
+
readonly ROLLBACK: "ROLLBACK";
|
|
332
|
+
};
|
|
333
|
+
export type DeploymentFailureHandlingPolicy =
|
|
334
|
+
(typeof DeploymentFailureHandlingPolicy)[keyof typeof DeploymentFailureHandlingPolicy];
|
|
311
335
|
export interface DeploymentPolicies {
|
|
312
336
|
failureHandlingPolicy?: DeploymentFailureHandlingPolicy | string;
|
|
313
337
|
componentUpdatePolicy?: DeploymentComponentUpdatePolicy;
|
|
314
338
|
configurationValidationPolicy?: DeploymentConfigurationValidationPolicy;
|
|
315
339
|
}
|
|
316
|
-
export declare
|
|
317
|
-
CANCEL
|
|
318
|
-
}
|
|
319
|
-
export
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
340
|
+
export declare const IoTJobAbortAction: {
|
|
341
|
+
readonly CANCEL: "CANCEL";
|
|
342
|
+
};
|
|
343
|
+
export type IoTJobAbortAction =
|
|
344
|
+
(typeof IoTJobAbortAction)[keyof typeof IoTJobAbortAction];
|
|
345
|
+
export declare const IoTJobExecutionFailureType: {
|
|
346
|
+
readonly ALL: "ALL";
|
|
347
|
+
readonly FAILED: "FAILED";
|
|
348
|
+
readonly REJECTED: "REJECTED";
|
|
349
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
350
|
+
};
|
|
351
|
+
export type IoTJobExecutionFailureType =
|
|
352
|
+
(typeof IoTJobExecutionFailureType)[keyof typeof IoTJobExecutionFailureType];
|
|
325
353
|
export interface IoTJobAbortCriteria {
|
|
326
354
|
failureType: IoTJobExecutionFailureType | string | undefined;
|
|
327
355
|
action: IoTJobAbortAction | string | undefined;
|
|
@@ -376,13 +404,15 @@ export interface DeleteCoreDeviceRequest {
|
|
|
376
404
|
export interface DeleteDeploymentRequest {
|
|
377
405
|
deploymentId: string | undefined;
|
|
378
406
|
}
|
|
379
|
-
export declare
|
|
380
|
-
ACTIVE
|
|
381
|
-
CANCELED
|
|
382
|
-
COMPLETED
|
|
383
|
-
FAILED
|
|
384
|
-
INACTIVE
|
|
385
|
-
}
|
|
407
|
+
export declare const DeploymentStatus: {
|
|
408
|
+
readonly ACTIVE: "ACTIVE";
|
|
409
|
+
readonly CANCELED: "CANCELED";
|
|
410
|
+
readonly COMPLETED: "COMPLETED";
|
|
411
|
+
readonly FAILED: "FAILED";
|
|
412
|
+
readonly INACTIVE: "INACTIVE";
|
|
413
|
+
};
|
|
414
|
+
export type DeploymentStatus =
|
|
415
|
+
(typeof DeploymentStatus)[keyof typeof DeploymentStatus];
|
|
386
416
|
export interface Deployment {
|
|
387
417
|
targetArn?: string;
|
|
388
418
|
revisionId?: string;
|
|
@@ -393,10 +423,12 @@ export interface Deployment {
|
|
|
393
423
|
isLatestForTarget?: boolean;
|
|
394
424
|
parentTargetArn?: string;
|
|
395
425
|
}
|
|
396
|
-
export declare
|
|
397
|
-
ALL
|
|
398
|
-
LATEST_ONLY
|
|
399
|
-
}
|
|
426
|
+
export declare const DeploymentHistoryFilter: {
|
|
427
|
+
readonly ALL: "ALL";
|
|
428
|
+
readonly LATEST_ONLY: "LATEST_ONLY";
|
|
429
|
+
};
|
|
430
|
+
export type DeploymentHistoryFilter =
|
|
431
|
+
(typeof DeploymentHistoryFilter)[keyof typeof DeploymentHistoryFilter];
|
|
400
432
|
export interface DescribeComponentRequest {
|
|
401
433
|
arn: string | undefined;
|
|
402
434
|
}
|
|
@@ -415,15 +447,17 @@ export interface DisassociateServiceRoleFromAccountRequest {}
|
|
|
415
447
|
export interface DisassociateServiceRoleFromAccountResponse {
|
|
416
448
|
disassociatedAt?: string;
|
|
417
449
|
}
|
|
418
|
-
export declare
|
|
419
|
-
CANCELED
|
|
420
|
-
COMPLETED
|
|
421
|
-
FAILED
|
|
422
|
-
IN_PROGRESS
|
|
423
|
-
QUEUED
|
|
424
|
-
REJECTED
|
|
425
|
-
TIMED_OUT
|
|
426
|
-
}
|
|
450
|
+
export declare const EffectiveDeploymentExecutionStatus: {
|
|
451
|
+
readonly CANCELED: "CANCELED";
|
|
452
|
+
readonly COMPLETED: "COMPLETED";
|
|
453
|
+
readonly FAILED: "FAILED";
|
|
454
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
455
|
+
readonly QUEUED: "QUEUED";
|
|
456
|
+
readonly REJECTED: "REJECTED";
|
|
457
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
458
|
+
};
|
|
459
|
+
export type EffectiveDeploymentExecutionStatus =
|
|
460
|
+
(typeof EffectiveDeploymentExecutionStatus)[keyof typeof EffectiveDeploymentExecutionStatus];
|
|
427
461
|
export interface EffectiveDeploymentStatusDetails {
|
|
428
462
|
errorStack?: string[];
|
|
429
463
|
errorTypes?: string[];
|
|
@@ -444,10 +478,12 @@ export interface EffectiveDeployment {
|
|
|
444
478
|
modifiedTimestamp: Date | undefined;
|
|
445
479
|
statusDetails?: EffectiveDeploymentStatusDetails;
|
|
446
480
|
}
|
|
447
|
-
export declare
|
|
448
|
-
JSON
|
|
449
|
-
YAML
|
|
450
|
-
}
|
|
481
|
+
export declare const RecipeOutputFormat: {
|
|
482
|
+
readonly JSON: "JSON";
|
|
483
|
+
readonly YAML: "YAML";
|
|
484
|
+
};
|
|
485
|
+
export type RecipeOutputFormat =
|
|
486
|
+
(typeof RecipeOutputFormat)[keyof typeof RecipeOutputFormat];
|
|
451
487
|
export interface GetComponentRequest {
|
|
452
488
|
recipeOutputFormat?: RecipeOutputFormat | string;
|
|
453
489
|
arn: string | undefined;
|
|
@@ -564,26 +600,30 @@ export interface ListEffectiveDeploymentsResponse {
|
|
|
564
600
|
effectiveDeployments?: EffectiveDeployment[];
|
|
565
601
|
nextToken?: string;
|
|
566
602
|
}
|
|
567
|
-
export declare
|
|
568
|
-
ALL
|
|
569
|
-
ROOT
|
|
570
|
-
}
|
|
603
|
+
export declare const InstalledComponentTopologyFilter: {
|
|
604
|
+
readonly ALL: "ALL";
|
|
605
|
+
readonly ROOT: "ROOT";
|
|
606
|
+
};
|
|
607
|
+
export type InstalledComponentTopologyFilter =
|
|
608
|
+
(typeof InstalledComponentTopologyFilter)[keyof typeof InstalledComponentTopologyFilter];
|
|
571
609
|
export interface ListInstalledComponentsRequest {
|
|
572
610
|
coreDeviceThingName: string | undefined;
|
|
573
611
|
maxResults?: number;
|
|
574
612
|
nextToken?: string;
|
|
575
613
|
topologyFilter?: InstalledComponentTopologyFilter | string;
|
|
576
614
|
}
|
|
577
|
-
export declare
|
|
578
|
-
BROKEN
|
|
579
|
-
ERRORED
|
|
580
|
-
FINISHED
|
|
581
|
-
INSTALLED
|
|
582
|
-
NEW
|
|
583
|
-
RUNNING
|
|
584
|
-
STARTING
|
|
585
|
-
STOPPING
|
|
586
|
-
}
|
|
615
|
+
export declare const InstalledComponentLifecycleState: {
|
|
616
|
+
readonly BROKEN: "BROKEN";
|
|
617
|
+
readonly ERRORED: "ERRORED";
|
|
618
|
+
readonly FINISHED: "FINISHED";
|
|
619
|
+
readonly INSTALLED: "INSTALLED";
|
|
620
|
+
readonly NEW: "NEW";
|
|
621
|
+
readonly RUNNING: "RUNNING";
|
|
622
|
+
readonly STARTING: "STARTING";
|
|
623
|
+
readonly STOPPING: "STOPPING";
|
|
624
|
+
};
|
|
625
|
+
export type InstalledComponentLifecycleState =
|
|
626
|
+
(typeof InstalledComponentLifecycleState)[keyof typeof InstalledComponentLifecycleState];
|
|
587
627
|
export interface InstalledComponent {
|
|
588
628
|
componentName?: string;
|
|
589
629
|
componentVersion?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-greengrassv2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Greengrassv2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.303.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,43 +21,43 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
60
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
61
61
|
"@tsconfig/node14": "1.0.3",
|
|
62
62
|
"@types/node": "^14.14.31",
|
|
63
63
|
"@types/uuid": "^8.3.0",
|