@aws-sdk/client-datazone 3.863.0 → 3.867.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 +48 -0
- package/dist-cjs/index.js +496 -77
- package/dist-es/DataZone.js +12 -0
- package/dist-es/commands/CreateAccountPoolCommand.js +23 -0
- package/dist-es/commands/CreateRuleCommand.js +1 -1
- package/dist-es/commands/DeleteAccountPoolCommand.js +22 -0
- package/dist-es/commands/GetAccountPoolCommand.js +23 -0
- package/dist-es/commands/ListAccountPoolsCommand.js +23 -0
- package/dist-es/commands/ListAccountsInAccountPoolCommand.js +23 -0
- package/dist-es/commands/PostLineageEventCommand.js +1 -1
- package/dist-es/commands/RejectSubscriptionRequestCommand.js +1 -1
- package/dist-es/commands/RevokeSubscriptionCommand.js +1 -1
- package/dist-es/commands/UpdateAccountPoolCommand.js +23 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +41 -36
- package/dist-es/models/models_1.js +59 -29
- package/dist-es/models/models_2.js +40 -1
- package/dist-es/pagination/ListAccountPoolsPaginator.js +4 -0
- package/dist-es/pagination/ListAccountsInAccountPoolPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +197 -0
- package/dist-types/DataZone.d.ts +42 -0
- package/dist-types/DataZoneClient.d.ts +8 -2
- package/dist-types/commands/CreateAccountPoolCommand.d.ts +138 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +10 -0
- package/dist-types/commands/CreateProjectProfileCommand.d.ts +6 -0
- package/dist-types/commands/CreateRuleCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAccountPoolCommand.d.ts +89 -0
- package/dist-types/commands/GetAccountPoolCommand.d.ts +115 -0
- package/dist-types/commands/GetProjectCommand.d.ts +5 -0
- package/dist-types/commands/GetProjectProfileCommand.d.ts +3 -0
- package/dist-types/commands/ListAccountPoolsCommand.d.ts +103 -0
- package/dist-types/commands/ListAccountsInAccountPoolCommand.d.ts +102 -0
- package/dist-types/commands/PostLineageEventCommand.d.ts +2 -1
- package/dist-types/commands/PostTimeSeriesDataPointsCommand.d.ts +1 -1
- package/dist-types/commands/RejectPredictionsCommand.d.ts +1 -1
- package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +1 -1
- package/dist-types/commands/RemoveEntityOwnerCommand.d.ts +1 -1
- package/dist-types/commands/RemovePolicyGrantCommand.d.ts +1 -1
- package/dist-types/commands/RevokeSubscriptionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAccountPoolCommand.d.ts +139 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +10 -0
- package/dist-types/commands/UpdateProjectProfileCommand.d.ts +6 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +289 -235
- package/dist-types/models/models_1.d.ts +511 -515
- package/dist-types/models/models_2.d.ts +582 -2
- package/dist-types/pagination/ListAccountPoolsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAccountsInAccountPoolPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/DataZone.d.ts +102 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateAccountPoolCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateRuleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAccountPoolCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetAccountPoolCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListAccountPoolsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListAccountsInAccountPoolCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PostLineageEventCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/PostTimeSeriesDataPointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RejectPredictionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RejectSubscriptionRequestCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RemoveEntityOwnerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RemovePolicyGrantCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeSubscriptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateAccountPoolCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +92 -84
- package/dist-types/ts3.4/models/models_1.d.ts +155 -123
- package/dist-types/ts3.4/models/models_2.d.ts +156 -3
- package/dist-types/ts3.4/pagination/ListAccountPoolsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAccountsInAccountPoolPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
- package/package.json +5 -5
|
@@ -31,6 +31,10 @@ import {
|
|
|
31
31
|
CancelSubscriptionCommandInput,
|
|
32
32
|
CancelSubscriptionCommandOutput,
|
|
33
33
|
} from "../commands/CancelSubscriptionCommand";
|
|
34
|
+
import {
|
|
35
|
+
CreateAccountPoolCommandInput,
|
|
36
|
+
CreateAccountPoolCommandOutput,
|
|
37
|
+
} from "../commands/CreateAccountPoolCommand";
|
|
34
38
|
import {
|
|
35
39
|
CreateAssetCommandInput,
|
|
36
40
|
CreateAssetCommandOutput,
|
|
@@ -135,6 +139,10 @@ import {
|
|
|
135
139
|
CreateUserProfileCommandInput,
|
|
136
140
|
CreateUserProfileCommandOutput,
|
|
137
141
|
} from "../commands/CreateUserProfileCommand";
|
|
142
|
+
import {
|
|
143
|
+
DeleteAccountPoolCommandInput,
|
|
144
|
+
DeleteAccountPoolCommandOutput,
|
|
145
|
+
} from "../commands/DeleteAccountPoolCommand";
|
|
138
146
|
import {
|
|
139
147
|
DeleteAssetCommandInput,
|
|
140
148
|
DeleteAssetCommandOutput,
|
|
@@ -235,6 +243,10 @@ import {
|
|
|
235
243
|
DisassociateEnvironmentRoleCommandInput,
|
|
236
244
|
DisassociateEnvironmentRoleCommandOutput,
|
|
237
245
|
} from "../commands/DisassociateEnvironmentRoleCommand";
|
|
246
|
+
import {
|
|
247
|
+
GetAccountPoolCommandInput,
|
|
248
|
+
GetAccountPoolCommandOutput,
|
|
249
|
+
} from "../commands/GetAccountPoolCommand";
|
|
238
250
|
import {
|
|
239
251
|
GetAssetCommandInput,
|
|
240
252
|
GetAssetCommandOutput,
|
|
@@ -371,6 +383,14 @@ import {
|
|
|
371
383
|
GetUserProfileCommandInput,
|
|
372
384
|
GetUserProfileCommandOutput,
|
|
373
385
|
} from "../commands/GetUserProfileCommand";
|
|
386
|
+
import {
|
|
387
|
+
ListAccountPoolsCommandInput,
|
|
388
|
+
ListAccountPoolsCommandOutput,
|
|
389
|
+
} from "../commands/ListAccountPoolsCommand";
|
|
390
|
+
import {
|
|
391
|
+
ListAccountsInAccountPoolCommandInput,
|
|
392
|
+
ListAccountsInAccountPoolCommandOutput,
|
|
393
|
+
} from "../commands/ListAccountsInAccountPoolCommand";
|
|
374
394
|
import {
|
|
375
395
|
ListAssetFiltersCommandInput,
|
|
376
396
|
ListAssetFiltersCommandOutput,
|
|
@@ -563,6 +583,10 @@ import {
|
|
|
563
583
|
UntagResourceCommandInput,
|
|
564
584
|
UntagResourceCommandOutput,
|
|
565
585
|
} from "../commands/UntagResourceCommand";
|
|
586
|
+
import {
|
|
587
|
+
UpdateAccountPoolCommandInput,
|
|
588
|
+
UpdateAccountPoolCommandOutput,
|
|
589
|
+
} from "../commands/UpdateAccountPoolCommand";
|
|
566
590
|
import {
|
|
567
591
|
UpdateAssetFilterCommandInput,
|
|
568
592
|
UpdateAssetFilterCommandOutput,
|
|
@@ -663,6 +687,10 @@ export declare const se_CancelSubscriptionCommand: (
|
|
|
663
687
|
input: CancelSubscriptionCommandInput,
|
|
664
688
|
context: __SerdeContext
|
|
665
689
|
) => Promise<__HttpRequest>;
|
|
690
|
+
export declare const se_CreateAccountPoolCommand: (
|
|
691
|
+
input: CreateAccountPoolCommandInput,
|
|
692
|
+
context: __SerdeContext
|
|
693
|
+
) => Promise<__HttpRequest>;
|
|
666
694
|
export declare const se_CreateAssetCommand: (
|
|
667
695
|
input: CreateAssetCommandInput,
|
|
668
696
|
context: __SerdeContext
|
|
@@ -767,6 +795,10 @@ export declare const se_CreateUserProfileCommand: (
|
|
|
767
795
|
input: CreateUserProfileCommandInput,
|
|
768
796
|
context: __SerdeContext
|
|
769
797
|
) => Promise<__HttpRequest>;
|
|
798
|
+
export declare const se_DeleteAccountPoolCommand: (
|
|
799
|
+
input: DeleteAccountPoolCommandInput,
|
|
800
|
+
context: __SerdeContext
|
|
801
|
+
) => Promise<__HttpRequest>;
|
|
770
802
|
export declare const se_DeleteAssetCommand: (
|
|
771
803
|
input: DeleteAssetCommandInput,
|
|
772
804
|
context: __SerdeContext
|
|
@@ -867,6 +899,10 @@ export declare const se_DisassociateEnvironmentRoleCommand: (
|
|
|
867
899
|
input: DisassociateEnvironmentRoleCommandInput,
|
|
868
900
|
context: __SerdeContext
|
|
869
901
|
) => Promise<__HttpRequest>;
|
|
902
|
+
export declare const se_GetAccountPoolCommand: (
|
|
903
|
+
input: GetAccountPoolCommandInput,
|
|
904
|
+
context: __SerdeContext
|
|
905
|
+
) => Promise<__HttpRequest>;
|
|
870
906
|
export declare const se_GetAssetCommand: (
|
|
871
907
|
input: GetAssetCommandInput,
|
|
872
908
|
context: __SerdeContext
|
|
@@ -1003,6 +1039,14 @@ export declare const se_GetUserProfileCommand: (
|
|
|
1003
1039
|
input: GetUserProfileCommandInput,
|
|
1004
1040
|
context: __SerdeContext
|
|
1005
1041
|
) => Promise<__HttpRequest>;
|
|
1042
|
+
export declare const se_ListAccountPoolsCommand: (
|
|
1043
|
+
input: ListAccountPoolsCommandInput,
|
|
1044
|
+
context: __SerdeContext
|
|
1045
|
+
) => Promise<__HttpRequest>;
|
|
1046
|
+
export declare const se_ListAccountsInAccountPoolCommand: (
|
|
1047
|
+
input: ListAccountsInAccountPoolCommandInput,
|
|
1048
|
+
context: __SerdeContext
|
|
1049
|
+
) => Promise<__HttpRequest>;
|
|
1006
1050
|
export declare const se_ListAssetFiltersCommand: (
|
|
1007
1051
|
input: ListAssetFiltersCommandInput,
|
|
1008
1052
|
context: __SerdeContext
|
|
@@ -1195,6 +1239,10 @@ export declare const se_UntagResourceCommand: (
|
|
|
1195
1239
|
input: UntagResourceCommandInput,
|
|
1196
1240
|
context: __SerdeContext
|
|
1197
1241
|
) => Promise<__HttpRequest>;
|
|
1242
|
+
export declare const se_UpdateAccountPoolCommand: (
|
|
1243
|
+
input: UpdateAccountPoolCommandInput,
|
|
1244
|
+
context: __SerdeContext
|
|
1245
|
+
) => Promise<__HttpRequest>;
|
|
1198
1246
|
export declare const se_UpdateAssetFilterCommand: (
|
|
1199
1247
|
input: UpdateAssetFilterCommandInput,
|
|
1200
1248
|
context: __SerdeContext
|
|
@@ -1295,6 +1343,10 @@ export declare const de_CancelSubscriptionCommand: (
|
|
|
1295
1343
|
output: __HttpResponse,
|
|
1296
1344
|
context: __SerdeContext
|
|
1297
1345
|
) => Promise<CancelSubscriptionCommandOutput>;
|
|
1346
|
+
export declare const de_CreateAccountPoolCommand: (
|
|
1347
|
+
output: __HttpResponse,
|
|
1348
|
+
context: __SerdeContext
|
|
1349
|
+
) => Promise<CreateAccountPoolCommandOutput>;
|
|
1298
1350
|
export declare const de_CreateAssetCommand: (
|
|
1299
1351
|
output: __HttpResponse,
|
|
1300
1352
|
context: __SerdeContext
|
|
@@ -1399,6 +1451,10 @@ export declare const de_CreateUserProfileCommand: (
|
|
|
1399
1451
|
output: __HttpResponse,
|
|
1400
1452
|
context: __SerdeContext
|
|
1401
1453
|
) => Promise<CreateUserProfileCommandOutput>;
|
|
1454
|
+
export declare const de_DeleteAccountPoolCommand: (
|
|
1455
|
+
output: __HttpResponse,
|
|
1456
|
+
context: __SerdeContext
|
|
1457
|
+
) => Promise<DeleteAccountPoolCommandOutput>;
|
|
1402
1458
|
export declare const de_DeleteAssetCommand: (
|
|
1403
1459
|
output: __HttpResponse,
|
|
1404
1460
|
context: __SerdeContext
|
|
@@ -1499,6 +1555,10 @@ export declare const de_DisassociateEnvironmentRoleCommand: (
|
|
|
1499
1555
|
output: __HttpResponse,
|
|
1500
1556
|
context: __SerdeContext
|
|
1501
1557
|
) => Promise<DisassociateEnvironmentRoleCommandOutput>;
|
|
1558
|
+
export declare const de_GetAccountPoolCommand: (
|
|
1559
|
+
output: __HttpResponse,
|
|
1560
|
+
context: __SerdeContext
|
|
1561
|
+
) => Promise<GetAccountPoolCommandOutput>;
|
|
1502
1562
|
export declare const de_GetAssetCommand: (
|
|
1503
1563
|
output: __HttpResponse,
|
|
1504
1564
|
context: __SerdeContext
|
|
@@ -1635,6 +1695,14 @@ export declare const de_GetUserProfileCommand: (
|
|
|
1635
1695
|
output: __HttpResponse,
|
|
1636
1696
|
context: __SerdeContext
|
|
1637
1697
|
) => Promise<GetUserProfileCommandOutput>;
|
|
1698
|
+
export declare const de_ListAccountPoolsCommand: (
|
|
1699
|
+
output: __HttpResponse,
|
|
1700
|
+
context: __SerdeContext
|
|
1701
|
+
) => Promise<ListAccountPoolsCommandOutput>;
|
|
1702
|
+
export declare const de_ListAccountsInAccountPoolCommand: (
|
|
1703
|
+
output: __HttpResponse,
|
|
1704
|
+
context: __SerdeContext
|
|
1705
|
+
) => Promise<ListAccountsInAccountPoolCommandOutput>;
|
|
1638
1706
|
export declare const de_ListAssetFiltersCommand: (
|
|
1639
1707
|
output: __HttpResponse,
|
|
1640
1708
|
context: __SerdeContext
|
|
@@ -1827,6 +1895,10 @@ export declare const de_UntagResourceCommand: (
|
|
|
1827
1895
|
output: __HttpResponse,
|
|
1828
1896
|
context: __SerdeContext
|
|
1829
1897
|
) => Promise<UntagResourceCommandOutput>;
|
|
1898
|
+
export declare const de_UpdateAccountPoolCommand: (
|
|
1899
|
+
output: __HttpResponse,
|
|
1900
|
+
context: __SerdeContext
|
|
1901
|
+
) => Promise<UpdateAccountPoolCommandOutput>;
|
|
1830
1902
|
export declare const de_UpdateAssetFilterCommand: (
|
|
1831
1903
|
output: __HttpResponse,
|
|
1832
1904
|
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.867.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",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.864.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.864.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.862.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.862.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.862.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.864.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.862.0",
|
|
30
30
|
"@aws-sdk/types": "3.862.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.862.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.862.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.864.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.5",
|
|
35
35
|
"@smithy/core": "^3.8.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.1.1",
|