@aws-sdk/client-omics 3.693.0 → 3.697.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.
Files changed (43) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +314 -0
  3. package/dist-es/Omics.js +10 -0
  4. package/dist-es/commands/CreateRunCacheCommand.js +22 -0
  5. package/dist-es/commands/DeleteRunCacheCommand.js +22 -0
  6. package/dist-es/commands/GetRunCacheCommand.js +22 -0
  7. package/dist-es/commands/ListRunCachesCommand.js +22 -0
  8. package/dist-es/commands/UpdateRunCacheCommand.js +22 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/models_0.js +9 -0
  11. package/dist-es/pagination/ListRunCachesPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/protocols/Aws_restJson1.js +208 -0
  14. package/dist-types/Omics.d.ts +36 -0
  15. package/dist-types/OmicsClient.d.ts +7 -2
  16. package/dist-types/commands/CreateRunCacheCommand.d.ts +112 -0
  17. package/dist-types/commands/DeleteRunCacheCommand.d.ts +98 -0
  18. package/dist-types/commands/GetRunCacheCommand.d.ts +107 -0
  19. package/dist-types/commands/GetRunCommand.d.ts +7 -0
  20. package/dist-types/commands/GetRunTaskCommand.d.ts +2 -0
  21. package/dist-types/commands/ListRunCachesCommand.d.ts +107 -0
  22. package/dist-types/commands/ListRunTasksCommand.d.ts +2 -0
  23. package/dist-types/commands/ListRunsCommand.d.ts +4 -0
  24. package/dist-types/commands/StartRunCommand.d.ts +6 -3
  25. package/dist-types/commands/UpdateRunCacheCommand.d.ts +96 -0
  26. package/dist-types/commands/index.d.ts +5 -0
  27. package/dist-types/models/models_0.d.ts +333 -2
  28. package/dist-types/pagination/ListRunCachesPaginator.d.ts +7 -0
  29. package/dist-types/pagination/index.d.ts +1 -0
  30. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  31. package/dist-types/ts3.4/Omics.d.ts +86 -0
  32. package/dist-types/ts3.4/OmicsClient.d.ts +30 -0
  33. package/dist-types/ts3.4/commands/CreateRunCacheCommand.d.ts +50 -0
  34. package/dist-types/ts3.4/commands/DeleteRunCacheCommand.d.ts +45 -0
  35. package/dist-types/ts3.4/commands/GetRunCacheCommand.d.ts +47 -0
  36. package/dist-types/ts3.4/commands/ListRunCachesCommand.d.ts +50 -0
  37. package/dist-types/ts3.4/commands/UpdateRunCacheCommand.d.ts +45 -0
  38. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  39. package/dist-types/ts3.4/models/models_0.d.ts +77 -0
  40. package/dist-types/ts3.4/pagination/ListRunCachesPaginator.d.ts +11 -0
  41. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  42. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  43. package/package.json +37 -37
@@ -9,6 +9,7 @@ export * from "./CreateAnnotationStoreCommand";
9
9
  export * from "./CreateAnnotationStoreVersionCommand";
10
10
  export * from "./CreateMultipartReadSetUploadCommand";
11
11
  export * from "./CreateReferenceStoreCommand";
12
+ export * from "./CreateRunCacheCommand";
12
13
  export * from "./CreateRunGroupCommand";
13
14
  export * from "./CreateSequenceStoreCommand";
14
15
  export * from "./CreateShareCommand";
@@ -18,6 +19,7 @@ export * from "./DeleteAnnotationStoreCommand";
18
19
  export * from "./DeleteAnnotationStoreVersionsCommand";
19
20
  export * from "./DeleteReferenceCommand";
20
21
  export * from "./DeleteReferenceStoreCommand";
22
+ export * from "./DeleteRunCacheCommand";
21
23
  export * from "./DeleteRunCommand";
22
24
  export * from "./DeleteRunGroupCommand";
23
25
  export * from "./DeleteSequenceStoreCommand";
@@ -36,6 +38,7 @@ export * from "./GetReferenceCommand";
36
38
  export * from "./GetReferenceImportJobCommand";
37
39
  export * from "./GetReferenceMetadataCommand";
38
40
  export * from "./GetReferenceStoreCommand";
41
+ export * from "./GetRunCacheCommand";
39
42
  export * from "./GetRunCommand";
40
43
  export * from "./GetRunGroupCommand";
41
44
  export * from "./GetRunTaskCommand";
@@ -56,6 +59,7 @@ export * from "./ListReadSetsCommand";
56
59
  export * from "./ListReferenceImportJobsCommand";
57
60
  export * from "./ListReferenceStoresCommand";
58
61
  export * from "./ListReferencesCommand";
62
+ export * from "./ListRunCachesCommand";
59
63
  export * from "./ListRunGroupsCommand";
60
64
  export * from "./ListRunTasksCommand";
61
65
  export * from "./ListRunsCommand";
@@ -76,6 +80,7 @@ export * from "./TagResourceCommand";
76
80
  export * from "./UntagResourceCommand";
77
81
  export * from "./UpdateAnnotationStoreCommand";
78
82
  export * from "./UpdateAnnotationStoreVersionCommand";
83
+ export * from "./UpdateRunCacheCommand";
79
84
  export * from "./UpdateRunGroupCommand";
80
85
  export * from "./UpdateVariantStoreCommand";
81
86
  export * from "./UpdateWorkflowCommand";
@@ -565,6 +565,11 @@ export interface ReadSetBatchError {
565
565
  export interface BatchDeleteReadSetResponse {
566
566
  errors?: ReadSetBatchError[] | undefined;
567
567
  }
568
+ export declare const CacheBehavior: {
569
+ readonly CACHE_ALWAYS: "CACHE_ALWAYS";
570
+ readonly CACHE_ON_FAILURE: "CACHE_ON_FAILURE";
571
+ };
572
+ export type CacheBehavior = (typeof CacheBehavior)[keyof typeof CacheBehavior];
568
573
  export interface CancelRunRequest {
569
574
  id: string | undefined;
570
575
  }
@@ -638,6 +643,28 @@ export interface CreateReferenceStoreResponse {
638
643
  sseConfig?: SseConfig | undefined;
639
644
  creationTime: Date | undefined;
640
645
  }
646
+ export interface CreateRunCacheRequest {
647
+ cacheBehavior?: CacheBehavior | undefined;
648
+ cacheS3Location: string | undefined;
649
+ description?: string | undefined;
650
+ name?: string | undefined;
651
+ requestId?: string | undefined;
652
+ tags?: Record<string, string> | undefined;
653
+ cacheBucketOwnerId?: string | undefined;
654
+ }
655
+ export declare const RunCacheStatus: {
656
+ readonly ACTIVE: "ACTIVE";
657
+ readonly DELETED: "DELETED";
658
+ readonly FAILED: "FAILED";
659
+ };
660
+ export type RunCacheStatus =
661
+ (typeof RunCacheStatus)[keyof typeof RunCacheStatus];
662
+ export interface CreateRunCacheResponse {
663
+ arn?: string | undefined;
664
+ id?: string | undefined;
665
+ status?: RunCacheStatus | undefined;
666
+ tags?: Record<string, string> | undefined;
667
+ }
641
668
  export interface CreateRunGroupRequest {
642
669
  name?: string | undefined;
643
670
  maxCpus?: number | undefined;
@@ -759,6 +786,9 @@ export interface DeleteReferenceStoreResponse {}
759
786
  export interface DeleteRunRequest {
760
787
  id: string | undefined;
761
788
  }
789
+ export interface DeleteRunCacheRequest {
790
+ id: string | undefined;
791
+ }
762
792
  export interface DeleteRunGroupRequest {
763
793
  id: string | undefined;
764
794
  }
@@ -1156,6 +1186,9 @@ export type WorkflowType = (typeof WorkflowType)[keyof typeof WorkflowType];
1156
1186
  export interface GetRunResponse {
1157
1187
  arn?: string | undefined;
1158
1188
  id?: string | undefined;
1189
+ cacheId?: string | undefined;
1190
+ cacheBehavior?: CacheBehavior | undefined;
1191
+ engineVersion?: string | undefined;
1159
1192
  status?: RunStatus | undefined;
1160
1193
  workflowId?: string | undefined;
1161
1194
  workflowType?: WorkflowType | undefined;
@@ -1186,6 +1219,21 @@ export interface GetRunResponse {
1186
1219
  storageType?: StorageType | undefined;
1187
1220
  workflowOwnerId?: string | undefined;
1188
1221
  }
1222
+ export interface GetRunCacheRequest {
1223
+ id: string | undefined;
1224
+ }
1225
+ export interface GetRunCacheResponse {
1226
+ arn?: string | undefined;
1227
+ cacheBehavior?: CacheBehavior | undefined;
1228
+ cacheBucketOwnerId?: string | undefined;
1229
+ cacheS3Uri?: string | undefined;
1230
+ creationTime?: Date | undefined;
1231
+ description?: string | undefined;
1232
+ id?: string | undefined;
1233
+ name?: string | undefined;
1234
+ status?: RunCacheStatus | undefined;
1235
+ tags?: Record<string, string> | undefined;
1236
+ }
1189
1237
  export interface GetRunGroupRequest {
1190
1238
  id: string | undefined;
1191
1239
  }
@@ -1219,6 +1267,8 @@ export interface GetRunTaskResponse {
1219
1267
  status?: TaskStatus | undefined;
1220
1268
  name?: string | undefined;
1221
1269
  cpus?: number | undefined;
1270
+ cacheHit?: boolean | undefined;
1271
+ cacheS3Uri?: string | undefined;
1222
1272
  memory?: number | undefined;
1223
1273
  creationTime?: Date | undefined;
1224
1274
  startTime?: Date | undefined;
@@ -1532,6 +1582,23 @@ export interface ListReferenceStoresResponse {
1532
1582
  nextToken?: string | undefined;
1533
1583
  referenceStores: ReferenceStoreDetail[] | undefined;
1534
1584
  }
1585
+ export interface ListRunCachesRequest {
1586
+ maxResults?: number | undefined;
1587
+ startingToken?: string | undefined;
1588
+ }
1589
+ export interface RunCacheListItem {
1590
+ arn?: string | undefined;
1591
+ cacheBehavior?: CacheBehavior | undefined;
1592
+ cacheS3Uri?: string | undefined;
1593
+ creationTime?: Date | undefined;
1594
+ id?: string | undefined;
1595
+ name?: string | undefined;
1596
+ status?: RunCacheStatus | undefined;
1597
+ }
1598
+ export interface ListRunCachesResponse {
1599
+ items?: RunCacheListItem[] | undefined;
1600
+ nextToken?: string | undefined;
1601
+ }
1535
1602
  export interface ListRunGroupsRequest {
1536
1603
  name?: string | undefined;
1537
1604
  startingToken?: string | undefined;
@@ -1586,6 +1653,8 @@ export interface TaskListItem {
1586
1653
  status?: TaskStatus | undefined;
1587
1654
  name?: string | undefined;
1588
1655
  cpus?: number | undefined;
1656
+ cacheHit?: boolean | undefined;
1657
+ cacheS3Uri?: string | undefined;
1589
1658
  memory?: number | undefined;
1590
1659
  creationTime?: Date | undefined;
1591
1660
  startTime?: Date | undefined;
@@ -1732,6 +1801,12 @@ export interface StartReferenceImportJobResponse {
1732
1801
  status: ReferenceImportJobStatus | undefined;
1733
1802
  creationTime: Date | undefined;
1734
1803
  }
1804
+ export interface UpdateRunCacheRequest {
1805
+ cacheBehavior?: CacheBehavior | undefined;
1806
+ description?: string | undefined;
1807
+ id: string | undefined;
1808
+ name?: string | undefined;
1809
+ }
1735
1810
  export interface UpdateRunGroupRequest {
1736
1811
  id: string | undefined;
1737
1812
  name?: string | undefined;
@@ -1746,6 +1821,8 @@ export interface StartRunRequest {
1746
1821
  runId?: string | undefined;
1747
1822
  roleArn: string | undefined;
1748
1823
  name?: string | undefined;
1824
+ cacheId?: string | undefined;
1825
+ cacheBehavior?: CacheBehavior | undefined;
1749
1826
  runGroupId?: string | undefined;
1750
1827
  priority?: number | undefined;
1751
1828
  parameters?: __DocumentType | undefined;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListRunCachesCommandInput,
4
+ ListRunCachesCommandOutput,
5
+ } from "../commands/ListRunCachesCommand";
6
+ import { OmicsPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListRunCaches: (
8
+ config: OmicsPaginationConfiguration,
9
+ input: ListRunCachesCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListRunCachesCommandOutput>;
@@ -11,6 +11,7 @@ export * from "./ListReadSetsPaginator";
11
11
  export * from "./ListReferenceImportJobsPaginator";
12
12
  export * from "./ListReferenceStoresPaginator";
13
13
  export * from "./ListReferencesPaginator";
14
+ export * from "./ListRunCachesPaginator";
14
15
  export * from "./ListRunGroupsPaginator";
15
16
  export * from "./ListRunTasksPaginator";
16
17
  export * from "./ListRunsPaginator";
@@ -50,6 +50,10 @@ import {
50
50
  CreateReferenceStoreCommandInput,
51
51
  CreateReferenceStoreCommandOutput,
52
52
  } from "../commands/CreateReferenceStoreCommand";
53
+ import {
54
+ CreateRunCacheCommandInput,
55
+ CreateRunCacheCommandOutput,
56
+ } from "../commands/CreateRunCacheCommand";
53
57
  import {
54
58
  CreateRunGroupCommandInput,
55
59
  CreateRunGroupCommandOutput,
@@ -86,6 +90,10 @@ import {
86
90
  DeleteReferenceStoreCommandInput,
87
91
  DeleteReferenceStoreCommandOutput,
88
92
  } from "../commands/DeleteReferenceStoreCommand";
93
+ import {
94
+ DeleteRunCacheCommandInput,
95
+ DeleteRunCacheCommandOutput,
96
+ } from "../commands/DeleteRunCacheCommand";
89
97
  import {
90
98
  DeleteRunCommandInput,
91
99
  DeleteRunCommandOutput,
@@ -158,6 +166,10 @@ import {
158
166
  GetReferenceStoreCommandInput,
159
167
  GetReferenceStoreCommandOutput,
160
168
  } from "../commands/GetReferenceStoreCommand";
169
+ import {
170
+ GetRunCacheCommandInput,
171
+ GetRunCacheCommandOutput,
172
+ } from "../commands/GetRunCacheCommand";
161
173
  import {
162
174
  GetRunCommandInput,
163
175
  GetRunCommandOutput,
@@ -238,6 +250,10 @@ import {
238
250
  ListReferenceStoresCommandInput,
239
251
  ListReferenceStoresCommandOutput,
240
252
  } from "../commands/ListReferenceStoresCommand";
253
+ import {
254
+ ListRunCachesCommandInput,
255
+ ListRunCachesCommandOutput,
256
+ } from "../commands/ListRunCachesCommand";
241
257
  import {
242
258
  ListRunGroupsCommandInput,
243
259
  ListRunGroupsCommandOutput,
@@ -318,6 +334,10 @@ import {
318
334
  UpdateAnnotationStoreVersionCommandInput,
319
335
  UpdateAnnotationStoreVersionCommandOutput,
320
336
  } from "../commands/UpdateAnnotationStoreVersionCommand";
337
+ import {
338
+ UpdateRunCacheCommandInput,
339
+ UpdateRunCacheCommandOutput,
340
+ } from "../commands/UpdateRunCacheCommand";
321
341
  import {
322
342
  UpdateRunGroupCommandInput,
323
343
  UpdateRunGroupCommandOutput,
@@ -378,6 +398,10 @@ export declare const se_CreateReferenceStoreCommand: (
378
398
  input: CreateReferenceStoreCommandInput,
379
399
  context: __SerdeContext
380
400
  ) => Promise<__HttpRequest>;
401
+ export declare const se_CreateRunCacheCommand: (
402
+ input: CreateRunCacheCommandInput,
403
+ context: __SerdeContext
404
+ ) => Promise<__HttpRequest>;
381
405
  export declare const se_CreateRunGroupCommand: (
382
406
  input: CreateRunGroupCommandInput,
383
407
  context: __SerdeContext
@@ -418,6 +442,10 @@ export declare const se_DeleteRunCommand: (
418
442
  input: DeleteRunCommandInput,
419
443
  context: __SerdeContext
420
444
  ) => Promise<__HttpRequest>;
445
+ export declare const se_DeleteRunCacheCommand: (
446
+ input: DeleteRunCacheCommandInput,
447
+ context: __SerdeContext
448
+ ) => Promise<__HttpRequest>;
421
449
  export declare const se_DeleteRunGroupCommand: (
422
450
  input: DeleteRunGroupCommandInput,
423
451
  context: __SerdeContext
@@ -490,6 +518,10 @@ export declare const se_GetRunCommand: (
490
518
  input: GetRunCommandInput,
491
519
  context: __SerdeContext
492
520
  ) => Promise<__HttpRequest>;
521
+ export declare const se_GetRunCacheCommand: (
522
+ input: GetRunCacheCommandInput,
523
+ context: __SerdeContext
524
+ ) => Promise<__HttpRequest>;
493
525
  export declare const se_GetRunGroupCommand: (
494
526
  input: GetRunGroupCommandInput,
495
527
  context: __SerdeContext
@@ -566,6 +598,10 @@ export declare const se_ListReferenceStoresCommand: (
566
598
  input: ListReferenceStoresCommandInput,
567
599
  context: __SerdeContext
568
600
  ) => Promise<__HttpRequest>;
601
+ export declare const se_ListRunCachesCommand: (
602
+ input: ListRunCachesCommandInput,
603
+ context: __SerdeContext
604
+ ) => Promise<__HttpRequest>;
569
605
  export declare const se_ListRunGroupsCommand: (
570
606
  input: ListRunGroupsCommandInput,
571
607
  context: __SerdeContext
@@ -646,6 +682,10 @@ export declare const se_UpdateAnnotationStoreVersionCommand: (
646
682
  input: UpdateAnnotationStoreVersionCommandInput,
647
683
  context: __SerdeContext
648
684
  ) => Promise<__HttpRequest>;
685
+ export declare const se_UpdateRunCacheCommand: (
686
+ input: UpdateRunCacheCommandInput,
687
+ context: __SerdeContext
688
+ ) => Promise<__HttpRequest>;
649
689
  export declare const se_UpdateRunGroupCommand: (
650
690
  input: UpdateRunGroupCommandInput,
651
691
  context: __SerdeContext
@@ -706,6 +746,10 @@ export declare const de_CreateReferenceStoreCommand: (
706
746
  output: __HttpResponse,
707
747
  context: __SerdeContext
708
748
  ) => Promise<CreateReferenceStoreCommandOutput>;
749
+ export declare const de_CreateRunCacheCommand: (
750
+ output: __HttpResponse,
751
+ context: __SerdeContext
752
+ ) => Promise<CreateRunCacheCommandOutput>;
709
753
  export declare const de_CreateRunGroupCommand: (
710
754
  output: __HttpResponse,
711
755
  context: __SerdeContext
@@ -746,6 +790,10 @@ export declare const de_DeleteRunCommand: (
746
790
  output: __HttpResponse,
747
791
  context: __SerdeContext
748
792
  ) => Promise<DeleteRunCommandOutput>;
793
+ export declare const de_DeleteRunCacheCommand: (
794
+ output: __HttpResponse,
795
+ context: __SerdeContext
796
+ ) => Promise<DeleteRunCacheCommandOutput>;
749
797
  export declare const de_DeleteRunGroupCommand: (
750
798
  output: __HttpResponse,
751
799
  context: __SerdeContext
@@ -818,6 +866,10 @@ export declare const de_GetRunCommand: (
818
866
  output: __HttpResponse,
819
867
  context: __SerdeContext
820
868
  ) => Promise<GetRunCommandOutput>;
869
+ export declare const de_GetRunCacheCommand: (
870
+ output: __HttpResponse,
871
+ context: __SerdeContext
872
+ ) => Promise<GetRunCacheCommandOutput>;
821
873
  export declare const de_GetRunGroupCommand: (
822
874
  output: __HttpResponse,
823
875
  context: __SerdeContext
@@ -894,6 +946,10 @@ export declare const de_ListReferenceStoresCommand: (
894
946
  output: __HttpResponse,
895
947
  context: __SerdeContext
896
948
  ) => Promise<ListReferenceStoresCommandOutput>;
949
+ export declare const de_ListRunCachesCommand: (
950
+ output: __HttpResponse,
951
+ context: __SerdeContext
952
+ ) => Promise<ListRunCachesCommandOutput>;
897
953
  export declare const de_ListRunGroupsCommand: (
898
954
  output: __HttpResponse,
899
955
  context: __SerdeContext
@@ -974,6 +1030,10 @@ export declare const de_UpdateAnnotationStoreVersionCommand: (
974
1030
  output: __HttpResponse,
975
1031
  context: __SerdeContext
976
1032
  ) => Promise<UpdateAnnotationStoreVersionCommandOutput>;
1033
+ export declare const de_UpdateRunCacheCommand: (
1034
+ output: __HttpResponse,
1035
+ context: __SerdeContext
1036
+ ) => Promise<UpdateRunCacheCommandOutput>;
977
1037
  export declare const de_UpdateRunGroupCommand: (
978
1038
  output: __HttpResponse,
979
1039
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-omics",
3
3
  "description": "AWS SDK for JavaScript Omics Client for Node.js, Browser and React Native",
4
- "version": "3.693.0",
4
+ "version": "3.697.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-omics",
@@ -20,46 +20,46 @@
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.693.0",
24
- "@aws-sdk/client-sts": "3.693.0",
25
- "@aws-sdk/core": "3.693.0",
26
- "@aws-sdk/credential-provider-node": "3.693.0",
27
- "@aws-sdk/middleware-host-header": "3.693.0",
28
- "@aws-sdk/middleware-logger": "3.693.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.693.0",
30
- "@aws-sdk/middleware-user-agent": "3.693.0",
31
- "@aws-sdk/region-config-resolver": "3.693.0",
32
- "@aws-sdk/types": "3.692.0",
33
- "@aws-sdk/util-endpoints": "3.693.0",
34
- "@aws-sdk/util-user-agent-browser": "3.693.0",
35
- "@aws-sdk/util-user-agent-node": "3.693.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",
23
+ "@aws-sdk/client-sso-oidc": "3.696.0",
24
+ "@aws-sdk/client-sts": "3.696.0",
25
+ "@aws-sdk/core": "3.696.0",
26
+ "@aws-sdk/credential-provider-node": "3.696.0",
27
+ "@aws-sdk/middleware-host-header": "3.696.0",
28
+ "@aws-sdk/middleware-logger": "3.696.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.696.0",
30
+ "@aws-sdk/middleware-user-agent": "3.696.0",
31
+ "@aws-sdk/region-config-resolver": "3.696.0",
32
+ "@aws-sdk/types": "3.696.0",
33
+ "@aws-sdk/util-endpoints": "3.696.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.696.0",
35
+ "@aws-sdk/util-user-agent-node": "3.696.0",
36
+ "@smithy/config-resolver": "^3.0.12",
37
+ "@smithy/core": "^2.5.3",
38
+ "@smithy/fetch-http-handler": "^4.1.1",
39
+ "@smithy/hash-node": "^3.0.10",
40
+ "@smithy/invalid-dependency": "^3.0.10",
41
+ "@smithy/middleware-content-length": "^3.0.12",
42
+ "@smithy/middleware-endpoint": "^3.2.3",
43
+ "@smithy/middleware-retry": "^3.0.27",
44
+ "@smithy/middleware-serde": "^3.0.10",
45
+ "@smithy/middleware-stack": "^3.0.10",
46
+ "@smithy/node-config-provider": "^3.1.11",
47
+ "@smithy/node-http-handler": "^3.3.1",
48
+ "@smithy/protocol-http": "^4.1.7",
49
+ "@smithy/smithy-client": "^3.4.4",
50
+ "@smithy/types": "^3.7.1",
51
+ "@smithy/url-parser": "^3.0.10",
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.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
- "@smithy/util-stream": "^3.3.0",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.27",
56
+ "@smithy/util-defaults-mode-node": "^3.0.27",
57
+ "@smithy/util-endpoints": "^2.1.6",
58
+ "@smithy/util-middleware": "^3.0.10",
59
+ "@smithy/util-retry": "^3.0.10",
60
+ "@smithy/util-stream": "^3.3.1",
61
61
  "@smithy/util-utf8": "^3.0.0",
62
- "@smithy/util-waiter": "^3.1.8",
62
+ "@smithy/util-waiter": "^3.1.9",
63
63
  "@types/uuid": "^9.0.1",
64
64
  "tslib": "^2.6.2",
65
65
  "uuid": "^9.0.1"