@aws-sdk/client-datazone 3.592.0 → 3.598.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/README.md +56 -0
- package/dist-cjs/index.js +451 -66
- package/dist-es/DataZone.js +14 -0
- package/dist-es/commands/AssociateEnvironmentRoleCommand.js +24 -0
- package/dist-es/commands/CreateEnvironmentActionCommand.js +24 -0
- package/dist-es/commands/DeleteEnvironmentActionCommand.js +24 -0
- package/dist-es/commands/DisassociateEnvironmentRoleCommand.js +24 -0
- package/dist-es/commands/GetEnvironmentActionCommand.js +24 -0
- package/dist-es/commands/ListEnvironmentActionsCommand.js +24 -0
- package/dist-es/commands/ListProjectsCommand.js +1 -1
- package/dist-es/commands/ListSubscriptionRequestsCommand.js +1 -1
- package/dist-es/commands/ListSubscriptionsCommand.js +1 -1
- package/dist-es/commands/UpdateEnvironmentActionCommand.js +24 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +30 -53
- package/dist-es/models/models_1.js +53 -0
- package/dist-es/pagination/ListEnvironmentActionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +206 -0
- package/dist-types/DataZone.d.ts +49 -0
- package/dist-types/DataZoneClient.d.ts +9 -2
- package/dist-types/commands/AssociateEnvironmentRoleCommand.d.ts +81 -0
- package/dist-types/commands/CreateEnvironmentActionCommand.d.ts +99 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +4 -1
- package/dist-types/commands/DeleteDataSourceCommand.d.ts +24 -0
- package/dist-types/commands/DeleteEnvironmentActionCommand.d.ts +82 -0
- package/dist-types/commands/DisassociateEnvironmentRoleCommand.d.ts +81 -0
- package/dist-types/commands/GetDataSourceCommand.d.ts +22 -0
- package/dist-types/commands/GetEnvironmentActionCommand.d.ts +89 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentActionsCommand.d.ts +92 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListProjectMembershipsCommand.d.ts +1 -1
- package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/commands/ListSubscriptionGrantsCommand.d.ts +1 -1
- package/dist-types/commands/ListSubscriptionRequestsCommand.d.ts +1 -1
- package/dist-types/commands/ListSubscriptionsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +24 -0
- package/dist-types/commands/UpdateEnvironmentActionCommand.d.ts +99 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +516 -766
- package/dist-types/models/models_1.d.ts +808 -2
- package/dist-types/pagination/ListEnvironmentActionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/dist-types/ts3.4/DataZone.d.ts +119 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/AssociateEnvironmentRoleCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentActionCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentActionCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DisassociateEnvironmentRoleCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/GetEnvironmentActionCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListEnvironmentActionsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListProjectMembershipsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscriptionGrantsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscriptionRequestsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEnvironmentActionCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +147 -187
- package/dist-types/ts3.4/models/models_1.d.ts +204 -2
- package/dist-types/ts3.4/pagination/ListEnvironmentActionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
- package/package.json +37 -37
|
@@ -4,6 +4,7 @@ export * from "./ListDataSourceRunActivitiesPaginator";
|
|
|
4
4
|
export * from "./ListDataSourceRunsPaginator";
|
|
5
5
|
export * from "./ListDataSourcesPaginator";
|
|
6
6
|
export * from "./ListDomainsPaginator";
|
|
7
|
+
export * from "./ListEnvironmentActionsPaginator";
|
|
7
8
|
export * from "./ListEnvironmentBlueprintConfigurationsPaginator";
|
|
8
9
|
export * from "./ListEnvironmentBlueprintsPaginator";
|
|
9
10
|
export * from "./ListEnvironmentProfilesPaginator";
|
|
@@ -11,6 +11,10 @@ import {
|
|
|
11
11
|
AcceptSubscriptionRequestCommandInput,
|
|
12
12
|
AcceptSubscriptionRequestCommandOutput,
|
|
13
13
|
} from "../commands/AcceptSubscriptionRequestCommand";
|
|
14
|
+
import {
|
|
15
|
+
AssociateEnvironmentRoleCommandInput,
|
|
16
|
+
AssociateEnvironmentRoleCommandOutput,
|
|
17
|
+
} from "../commands/AssociateEnvironmentRoleCommand";
|
|
14
18
|
import {
|
|
15
19
|
CancelMetadataGenerationRunCommandInput,
|
|
16
20
|
CancelMetadataGenerationRunCommandOutput,
|
|
@@ -39,6 +43,10 @@ import {
|
|
|
39
43
|
CreateDomainCommandInput,
|
|
40
44
|
CreateDomainCommandOutput,
|
|
41
45
|
} from "../commands/CreateDomainCommand";
|
|
46
|
+
import {
|
|
47
|
+
CreateEnvironmentActionCommandInput,
|
|
48
|
+
CreateEnvironmentActionCommandOutput,
|
|
49
|
+
} from "../commands/CreateEnvironmentActionCommand";
|
|
42
50
|
import {
|
|
43
51
|
CreateEnvironmentCommandInput,
|
|
44
52
|
CreateEnvironmentCommandOutput,
|
|
@@ -107,6 +115,10 @@ import {
|
|
|
107
115
|
DeleteDomainCommandInput,
|
|
108
116
|
DeleteDomainCommandOutput,
|
|
109
117
|
} from "../commands/DeleteDomainCommand";
|
|
118
|
+
import {
|
|
119
|
+
DeleteEnvironmentActionCommandInput,
|
|
120
|
+
DeleteEnvironmentActionCommandOutput,
|
|
121
|
+
} from "../commands/DeleteEnvironmentActionCommand";
|
|
110
122
|
import {
|
|
111
123
|
DeleteEnvironmentBlueprintConfigurationCommandInput,
|
|
112
124
|
DeleteEnvironmentBlueprintConfigurationCommandOutput,
|
|
@@ -159,6 +171,10 @@ import {
|
|
|
159
171
|
DeleteTimeSeriesDataPointsCommandInput,
|
|
160
172
|
DeleteTimeSeriesDataPointsCommandOutput,
|
|
161
173
|
} from "../commands/DeleteTimeSeriesDataPointsCommand";
|
|
174
|
+
import {
|
|
175
|
+
DisassociateEnvironmentRoleCommandInput,
|
|
176
|
+
DisassociateEnvironmentRoleCommandOutput,
|
|
177
|
+
} from "../commands/DisassociateEnvironmentRoleCommand";
|
|
162
178
|
import {
|
|
163
179
|
GetAssetCommandInput,
|
|
164
180
|
GetAssetCommandOutput,
|
|
@@ -179,6 +195,10 @@ import {
|
|
|
179
195
|
GetDomainCommandInput,
|
|
180
196
|
GetDomainCommandOutput,
|
|
181
197
|
} from "../commands/GetDomainCommand";
|
|
198
|
+
import {
|
|
199
|
+
GetEnvironmentActionCommandInput,
|
|
200
|
+
GetEnvironmentActionCommandOutput,
|
|
201
|
+
} from "../commands/GetEnvironmentActionCommand";
|
|
182
202
|
import {
|
|
183
203
|
GetEnvironmentBlueprintCommandInput,
|
|
184
204
|
GetEnvironmentBlueprintCommandOutput,
|
|
@@ -271,6 +291,10 @@ import {
|
|
|
271
291
|
ListDomainsCommandInput,
|
|
272
292
|
ListDomainsCommandOutput,
|
|
273
293
|
} from "../commands/ListDomainsCommand";
|
|
294
|
+
import {
|
|
295
|
+
ListEnvironmentActionsCommandInput,
|
|
296
|
+
ListEnvironmentActionsCommandOutput,
|
|
297
|
+
} from "../commands/ListEnvironmentActionsCommand";
|
|
274
298
|
import {
|
|
275
299
|
ListEnvironmentBlueprintConfigurationsCommandInput,
|
|
276
300
|
ListEnvironmentBlueprintConfigurationsCommandOutput,
|
|
@@ -391,6 +415,10 @@ import {
|
|
|
391
415
|
UpdateDomainCommandInput,
|
|
392
416
|
UpdateDomainCommandOutput,
|
|
393
417
|
} from "../commands/UpdateDomainCommand";
|
|
418
|
+
import {
|
|
419
|
+
UpdateEnvironmentActionCommandInput,
|
|
420
|
+
UpdateEnvironmentActionCommandOutput,
|
|
421
|
+
} from "../commands/UpdateEnvironmentActionCommand";
|
|
394
422
|
import {
|
|
395
423
|
UpdateEnvironmentCommandInput,
|
|
396
424
|
UpdateEnvironmentCommandOutput,
|
|
@@ -439,6 +467,10 @@ export declare const se_AcceptSubscriptionRequestCommand: (
|
|
|
439
467
|
input: AcceptSubscriptionRequestCommandInput,
|
|
440
468
|
context: __SerdeContext
|
|
441
469
|
) => Promise<__HttpRequest>;
|
|
470
|
+
export declare const se_AssociateEnvironmentRoleCommand: (
|
|
471
|
+
input: AssociateEnvironmentRoleCommandInput,
|
|
472
|
+
context: __SerdeContext
|
|
473
|
+
) => Promise<__HttpRequest>;
|
|
442
474
|
export declare const se_CancelMetadataGenerationRunCommand: (
|
|
443
475
|
input: CancelMetadataGenerationRunCommandInput,
|
|
444
476
|
context: __SerdeContext
|
|
@@ -471,6 +503,10 @@ export declare const se_CreateEnvironmentCommand: (
|
|
|
471
503
|
input: CreateEnvironmentCommandInput,
|
|
472
504
|
context: __SerdeContext
|
|
473
505
|
) => Promise<__HttpRequest>;
|
|
506
|
+
export declare const se_CreateEnvironmentActionCommand: (
|
|
507
|
+
input: CreateEnvironmentActionCommandInput,
|
|
508
|
+
context: __SerdeContext
|
|
509
|
+
) => Promise<__HttpRequest>;
|
|
474
510
|
export declare const se_CreateEnvironmentProfileCommand: (
|
|
475
511
|
input: CreateEnvironmentProfileCommandInput,
|
|
476
512
|
context: __SerdeContext
|
|
@@ -539,6 +575,10 @@ export declare const se_DeleteEnvironmentCommand: (
|
|
|
539
575
|
input: DeleteEnvironmentCommandInput,
|
|
540
576
|
context: __SerdeContext
|
|
541
577
|
) => Promise<__HttpRequest>;
|
|
578
|
+
export declare const se_DeleteEnvironmentActionCommand: (
|
|
579
|
+
input: DeleteEnvironmentActionCommandInput,
|
|
580
|
+
context: __SerdeContext
|
|
581
|
+
) => Promise<__HttpRequest>;
|
|
542
582
|
export declare const se_DeleteEnvironmentBlueprintConfigurationCommand: (
|
|
543
583
|
input: DeleteEnvironmentBlueprintConfigurationCommandInput,
|
|
544
584
|
context: __SerdeContext
|
|
@@ -587,6 +627,10 @@ export declare const se_DeleteTimeSeriesDataPointsCommand: (
|
|
|
587
627
|
input: DeleteTimeSeriesDataPointsCommandInput,
|
|
588
628
|
context: __SerdeContext
|
|
589
629
|
) => Promise<__HttpRequest>;
|
|
630
|
+
export declare const se_DisassociateEnvironmentRoleCommand: (
|
|
631
|
+
input: DisassociateEnvironmentRoleCommandInput,
|
|
632
|
+
context: __SerdeContext
|
|
633
|
+
) => Promise<__HttpRequest>;
|
|
590
634
|
export declare const se_GetAssetCommand: (
|
|
591
635
|
input: GetAssetCommandInput,
|
|
592
636
|
context: __SerdeContext
|
|
@@ -611,6 +655,10 @@ export declare const se_GetEnvironmentCommand: (
|
|
|
611
655
|
input: GetEnvironmentCommandInput,
|
|
612
656
|
context: __SerdeContext
|
|
613
657
|
) => Promise<__HttpRequest>;
|
|
658
|
+
export declare const se_GetEnvironmentActionCommand: (
|
|
659
|
+
input: GetEnvironmentActionCommandInput,
|
|
660
|
+
context: __SerdeContext
|
|
661
|
+
) => Promise<__HttpRequest>;
|
|
614
662
|
export declare const se_GetEnvironmentBlueprintCommand: (
|
|
615
663
|
input: GetEnvironmentBlueprintCommandInput,
|
|
616
664
|
context: __SerdeContext
|
|
@@ -699,6 +747,10 @@ export declare const se_ListDomainsCommand: (
|
|
|
699
747
|
input: ListDomainsCommandInput,
|
|
700
748
|
context: __SerdeContext
|
|
701
749
|
) => Promise<__HttpRequest>;
|
|
750
|
+
export declare const se_ListEnvironmentActionsCommand: (
|
|
751
|
+
input: ListEnvironmentActionsCommandInput,
|
|
752
|
+
context: __SerdeContext
|
|
753
|
+
) => Promise<__HttpRequest>;
|
|
702
754
|
export declare const se_ListEnvironmentBlueprintConfigurationsCommand: (
|
|
703
755
|
input: ListEnvironmentBlueprintConfigurationsCommandInput,
|
|
704
756
|
context: __SerdeContext
|
|
@@ -823,6 +875,10 @@ export declare const se_UpdateEnvironmentCommand: (
|
|
|
823
875
|
input: UpdateEnvironmentCommandInput,
|
|
824
876
|
context: __SerdeContext
|
|
825
877
|
) => Promise<__HttpRequest>;
|
|
878
|
+
export declare const se_UpdateEnvironmentActionCommand: (
|
|
879
|
+
input: UpdateEnvironmentActionCommandInput,
|
|
880
|
+
context: __SerdeContext
|
|
881
|
+
) => Promise<__HttpRequest>;
|
|
826
882
|
export declare const se_UpdateEnvironmentProfileCommand: (
|
|
827
883
|
input: UpdateEnvironmentProfileCommandInput,
|
|
828
884
|
context: __SerdeContext
|
|
@@ -867,6 +923,10 @@ export declare const de_AcceptSubscriptionRequestCommand: (
|
|
|
867
923
|
output: __HttpResponse,
|
|
868
924
|
context: __SerdeContext
|
|
869
925
|
) => Promise<AcceptSubscriptionRequestCommandOutput>;
|
|
926
|
+
export declare const de_AssociateEnvironmentRoleCommand: (
|
|
927
|
+
output: __HttpResponse,
|
|
928
|
+
context: __SerdeContext
|
|
929
|
+
) => Promise<AssociateEnvironmentRoleCommandOutput>;
|
|
870
930
|
export declare const de_CancelMetadataGenerationRunCommand: (
|
|
871
931
|
output: __HttpResponse,
|
|
872
932
|
context: __SerdeContext
|
|
@@ -899,6 +959,10 @@ export declare const de_CreateEnvironmentCommand: (
|
|
|
899
959
|
output: __HttpResponse,
|
|
900
960
|
context: __SerdeContext
|
|
901
961
|
) => Promise<CreateEnvironmentCommandOutput>;
|
|
962
|
+
export declare const de_CreateEnvironmentActionCommand: (
|
|
963
|
+
output: __HttpResponse,
|
|
964
|
+
context: __SerdeContext
|
|
965
|
+
) => Promise<CreateEnvironmentActionCommandOutput>;
|
|
902
966
|
export declare const de_CreateEnvironmentProfileCommand: (
|
|
903
967
|
output: __HttpResponse,
|
|
904
968
|
context: __SerdeContext
|
|
@@ -967,6 +1031,10 @@ export declare const de_DeleteEnvironmentCommand: (
|
|
|
967
1031
|
output: __HttpResponse,
|
|
968
1032
|
context: __SerdeContext
|
|
969
1033
|
) => Promise<DeleteEnvironmentCommandOutput>;
|
|
1034
|
+
export declare const de_DeleteEnvironmentActionCommand: (
|
|
1035
|
+
output: __HttpResponse,
|
|
1036
|
+
context: __SerdeContext
|
|
1037
|
+
) => Promise<DeleteEnvironmentActionCommandOutput>;
|
|
970
1038
|
export declare const de_DeleteEnvironmentBlueprintConfigurationCommand: (
|
|
971
1039
|
output: __HttpResponse,
|
|
972
1040
|
context: __SerdeContext
|
|
@@ -1015,6 +1083,10 @@ export declare const de_DeleteTimeSeriesDataPointsCommand: (
|
|
|
1015
1083
|
output: __HttpResponse,
|
|
1016
1084
|
context: __SerdeContext
|
|
1017
1085
|
) => Promise<DeleteTimeSeriesDataPointsCommandOutput>;
|
|
1086
|
+
export declare const de_DisassociateEnvironmentRoleCommand: (
|
|
1087
|
+
output: __HttpResponse,
|
|
1088
|
+
context: __SerdeContext
|
|
1089
|
+
) => Promise<DisassociateEnvironmentRoleCommandOutput>;
|
|
1018
1090
|
export declare const de_GetAssetCommand: (
|
|
1019
1091
|
output: __HttpResponse,
|
|
1020
1092
|
context: __SerdeContext
|
|
@@ -1039,6 +1111,10 @@ export declare const de_GetEnvironmentCommand: (
|
|
|
1039
1111
|
output: __HttpResponse,
|
|
1040
1112
|
context: __SerdeContext
|
|
1041
1113
|
) => Promise<GetEnvironmentCommandOutput>;
|
|
1114
|
+
export declare const de_GetEnvironmentActionCommand: (
|
|
1115
|
+
output: __HttpResponse,
|
|
1116
|
+
context: __SerdeContext
|
|
1117
|
+
) => Promise<GetEnvironmentActionCommandOutput>;
|
|
1042
1118
|
export declare const de_GetEnvironmentBlueprintCommand: (
|
|
1043
1119
|
output: __HttpResponse,
|
|
1044
1120
|
context: __SerdeContext
|
|
@@ -1127,6 +1203,10 @@ export declare const de_ListDomainsCommand: (
|
|
|
1127
1203
|
output: __HttpResponse,
|
|
1128
1204
|
context: __SerdeContext
|
|
1129
1205
|
) => Promise<ListDomainsCommandOutput>;
|
|
1206
|
+
export declare const de_ListEnvironmentActionsCommand: (
|
|
1207
|
+
output: __HttpResponse,
|
|
1208
|
+
context: __SerdeContext
|
|
1209
|
+
) => Promise<ListEnvironmentActionsCommandOutput>;
|
|
1130
1210
|
export declare const de_ListEnvironmentBlueprintConfigurationsCommand: (
|
|
1131
1211
|
output: __HttpResponse,
|
|
1132
1212
|
context: __SerdeContext
|
|
@@ -1251,6 +1331,10 @@ export declare const de_UpdateEnvironmentCommand: (
|
|
|
1251
1331
|
output: __HttpResponse,
|
|
1252
1332
|
context: __SerdeContext
|
|
1253
1333
|
) => Promise<UpdateEnvironmentCommandOutput>;
|
|
1334
|
+
export declare const de_UpdateEnvironmentActionCommand: (
|
|
1335
|
+
output: __HttpResponse,
|
|
1336
|
+
context: __SerdeContext
|
|
1337
|
+
) => Promise<UpdateEnvironmentActionCommandOutput>;
|
|
1254
1338
|
export declare const de_UpdateEnvironmentProfileCommand: (
|
|
1255
1339
|
output: __HttpResponse,
|
|
1256
1340
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-datazone",
|
|
3
3
|
"description": "AWS SDK for JavaScript Datazone Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.598.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-datazone",
|
|
@@ -18,45 +18,45 @@
|
|
|
18
18
|
"module": "./dist-es/index.js",
|
|
19
19
|
"sideEffects": false,
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@aws-crypto/sha256-browser": "
|
|
22
|
-
"@aws-crypto/sha256-js": "
|
|
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.2.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.0.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.0.
|
|
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.0.
|
|
48
|
-
"@smithy/protocol-http": "^4.0.
|
|
49
|
-
"@smithy/smithy-client": "^3.1.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
21
|
+
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
|
+
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.598.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.598.0",
|
|
25
|
+
"@aws-sdk/core": "3.598.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.598.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.598.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.598.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.598.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.598.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.598.0",
|
|
32
|
+
"@aws-sdk/types": "3.598.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.598.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.598.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.598.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.2",
|
|
37
|
+
"@smithy/core": "^2.2.1",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.0.2",
|
|
39
|
+
"@smithy/hash-node": "^3.0.1",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.1",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.1",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.0.2",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.4",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.1",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.1",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.1",
|
|
47
|
+
"@smithy/node-http-handler": "^3.0.1",
|
|
48
|
+
"@smithy/protocol-http": "^4.0.1",
|
|
49
|
+
"@smithy/smithy-client": "^3.1.2",
|
|
50
|
+
"@smithy/types": "^3.1.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.1",
|
|
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.0.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.4",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.4",
|
|
57
|
+
"@smithy/util-endpoints": "^2.0.2",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.1",
|
|
59
|
+
"@smithy/util-retry": "^3.0.1",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2",
|
|
62
62
|
"uuid": "^9.0.1"
|