@@ -37,6 +37,11 @@ import {
37
37
CancelSubscriptionCommandInput ,
38
38
CancelSubscriptionCommandOutput ,
39
39
} from "./commands/CancelSubscriptionCommand" ;
40
+ import {
41
+ CreateAccountPoolCommand ,
42
+ CreateAccountPoolCommandInput ,
43
+ CreateAccountPoolCommandOutput ,
44
+ } from "./commands/CreateAccountPoolCommand" ;
40
45
import { CreateAssetCommand , CreateAssetCommandInput , CreateAssetCommandOutput } from "./commands/CreateAssetCommand" ;
41
46
import {
42
47
CreateAssetFilterCommand ,
@@ -159,6 +164,11 @@ import {
159
164
CreateUserProfileCommandInput ,
160
165
CreateUserProfileCommandOutput ,
161
166
} from "./commands/CreateUserProfileCommand" ;
167
+ import {
168
+ DeleteAccountPoolCommand ,
169
+ DeleteAccountPoolCommandInput ,
170
+ DeleteAccountPoolCommandOutput ,
171
+ } from "./commands/DeleteAccountPoolCommand" ;
162
172
import { DeleteAssetCommand , DeleteAssetCommandInput , DeleteAssetCommandOutput } from "./commands/DeleteAssetCommand" ;
163
173
import {
164
174
DeleteAssetFilterCommand ,
@@ -276,6 +286,11 @@ import {
276
286
DisassociateEnvironmentRoleCommandInput ,
277
287
DisassociateEnvironmentRoleCommandOutput ,
278
288
} from "./commands/DisassociateEnvironmentRoleCommand" ;
289
+ import {
290
+ GetAccountPoolCommand ,
291
+ GetAccountPoolCommandInput ,
292
+ GetAccountPoolCommandOutput ,
293
+ } from "./commands/GetAccountPoolCommand" ;
279
294
import { GetAssetCommand , GetAssetCommandInput , GetAssetCommandOutput } from "./commands/GetAssetCommand" ;
280
295
import {
281
296
GetAssetFilterCommand ,
@@ -414,6 +429,16 @@ import {
414
429
GetUserProfileCommandInput ,
415
430
GetUserProfileCommandOutput ,
416
431
} from "./commands/GetUserProfileCommand" ;
432
+ import {
433
+ ListAccountPoolsCommand ,
434
+ ListAccountPoolsCommandInput ,
435
+ ListAccountPoolsCommandOutput ,
436
+ } from "./commands/ListAccountPoolsCommand" ;
437
+ import {
438
+ ListAccountsInAccountPoolCommand ,
439
+ ListAccountsInAccountPoolCommandInput ,
440
+ ListAccountsInAccountPoolCommandOutput ,
441
+ } from "./commands/ListAccountsInAccountPoolCommand" ;
417
442
import {
418
443
ListAssetFiltersCommand ,
419
444
ListAssetFiltersCommandInput ,
@@ -630,6 +655,11 @@ import {
630
655
UntagResourceCommandInput ,
631
656
UntagResourceCommandOutput ,
632
657
} from "./commands/UntagResourceCommand" ;
658
+ import {
659
+ UpdateAccountPoolCommand ,
660
+ UpdateAccountPoolCommandInput ,
661
+ UpdateAccountPoolCommandOutput ,
662
+ } from "./commands/UpdateAccountPoolCommand" ;
633
663
import {
634
664
UpdateAssetFilterCommand ,
635
665
UpdateAssetFilterCommandInput ,
@@ -726,6 +756,7 @@ const commands = {
726
756
AssociateEnvironmentRoleCommand,
727
757
CancelMetadataGenerationRunCommand,
728
758
CancelSubscriptionCommand,
759
+ CreateAccountPoolCommand,
729
760
CreateAssetCommand,
730
761
CreateAssetFilterCommand,
731
762
CreateAssetRevisionCommand,
@@ -752,6 +783,7 @@ const commands = {
752
783
CreateSubscriptionRequestCommand,
753
784
CreateSubscriptionTargetCommand,
754
785
CreateUserProfileCommand,
786
+ DeleteAccountPoolCommand,
755
787
DeleteAssetCommand,
756
788
DeleteAssetFilterCommand,
757
789
DeleteAssetTypeCommand,
@@ -777,6 +809,7 @@ const commands = {
777
809
DeleteSubscriptionTargetCommand,
778
810
DeleteTimeSeriesDataPointsCommand,
779
811
DisassociateEnvironmentRoleCommand,
812
+ GetAccountPoolCommand,
780
813
GetAssetCommand,
781
814
GetAssetFilterCommand,
782
815
GetAssetTypeCommand,
@@ -811,6 +844,8 @@ const commands = {
811
844
GetSubscriptionTargetCommand,
812
845
GetTimeSeriesDataPointCommand,
813
846
GetUserProfileCommand,
847
+ ListAccountPoolsCommand,
848
+ ListAccountsInAccountPoolCommand,
814
849
ListAssetFiltersCommand,
815
850
ListAssetRevisionsCommand,
816
851
ListConnectionsCommand,
@@ -859,6 +894,7 @@ const commands = {
859
894
StartMetadataGenerationRunCommand,
860
895
TagResourceCommand,
861
896
UntagResourceCommand,
897
+ UpdateAccountPoolCommand,
862
898
UpdateAssetFilterCommand,
863
899
UpdateConnectionCommand,
864
900
UpdateDataSourceCommand,
@@ -993,6 +1029,23 @@ export interface DataZone {
993
1029
cb : ( err : any , data ?: CancelSubscriptionCommandOutput ) => void
994
1030
) : void ;
995
1031
1032
+ /**
1033
+ * @see {@link CreateAccountPoolCommand }
1034
+ */
1035
+ createAccountPool (
1036
+ args : CreateAccountPoolCommandInput ,
1037
+ options ?: __HttpHandlerOptions
1038
+ ) : Promise < CreateAccountPoolCommandOutput > ;
1039
+ createAccountPool (
1040
+ args : CreateAccountPoolCommandInput ,
1041
+ cb : ( err : any , data ?: CreateAccountPoolCommandOutput ) => void
1042
+ ) : void ;
1043
+ createAccountPool (
1044
+ args : CreateAccountPoolCommandInput ,
1045
+ options : __HttpHandlerOptions ,
1046
+ cb : ( err : any , data ?: CreateAccountPoolCommandOutput ) => void
1047
+ ) : void ;
1048
+
996
1049
/**
997
1050
* @see {@link CreateAssetCommand }
998
1051
*/
@@ -1402,6 +1455,23 @@ export interface DataZone {
1402
1455
cb : ( err : any , data ?: CreateUserProfileCommandOutput ) => void
1403
1456
) : void ;
1404
1457
1458
+ /**
1459
+ * @see {@link DeleteAccountPoolCommand }
1460
+ */
1461
+ deleteAccountPool (
1462
+ args : DeleteAccountPoolCommandInput ,
1463
+ options ?: __HttpHandlerOptions
1464
+ ) : Promise < DeleteAccountPoolCommandOutput > ;
1465
+ deleteAccountPool (
1466
+ args : DeleteAccountPoolCommandInput ,
1467
+ cb : ( err : any , data ?: DeleteAccountPoolCommandOutput ) => void
1468
+ ) : void ;
1469
+ deleteAccountPool (
1470
+ args : DeleteAccountPoolCommandInput ,
1471
+ options : __HttpHandlerOptions ,
1472
+ cb : ( err : any , data ?: DeleteAccountPoolCommandOutput ) => void
1473
+ ) : void ;
1474
+
1405
1475
/**
1406
1476
* @see {@link DeleteAssetCommand }
1407
1477
*/
@@ -1788,6 +1858,20 @@ export interface DataZone {
1788
1858
cb : ( err : any , data ?: DisassociateEnvironmentRoleCommandOutput ) => void
1789
1859
) : void ;
1790
1860
1861
+ /**
1862
+ * @see {@link GetAccountPoolCommand }
1863
+ */
1864
+ getAccountPool (
1865
+ args : GetAccountPoolCommandInput ,
1866
+ options ?: __HttpHandlerOptions
1867
+ ) : Promise < GetAccountPoolCommandOutput > ;
1868
+ getAccountPool ( args : GetAccountPoolCommandInput , cb : ( err : any , data ?: GetAccountPoolCommandOutput ) => void ) : void ;
1869
+ getAccountPool (
1870
+ args : GetAccountPoolCommandInput ,
1871
+ options : __HttpHandlerOptions ,
1872
+ cb : ( err : any , data ?: GetAccountPoolCommandOutput ) => void
1873
+ ) : void ;
1874
+
1791
1875
/**
1792
1876
* @see {@link GetAssetCommand }
1793
1877
*/
@@ -2267,6 +2351,40 @@ export interface DataZone {
2267
2351
cb : ( err : any , data ?: GetUserProfileCommandOutput ) => void
2268
2352
) : void ;
2269
2353
2354
+ /**
2355
+ * @see {@link ListAccountPoolsCommand }
2356
+ */
2357
+ listAccountPools (
2358
+ args : ListAccountPoolsCommandInput ,
2359
+ options ?: __HttpHandlerOptions
2360
+ ) : Promise < ListAccountPoolsCommandOutput > ;
2361
+ listAccountPools (
2362
+ args : ListAccountPoolsCommandInput ,
2363
+ cb : ( err : any , data ?: ListAccountPoolsCommandOutput ) => void
2364
+ ) : void ;
2365
+ listAccountPools (
2366
+ args : ListAccountPoolsCommandInput ,
2367
+ options : __HttpHandlerOptions ,
2368
+ cb : ( err : any , data ?: ListAccountPoolsCommandOutput ) => void
2369
+ ) : void ;
2370
+
2371
+ /**
2372
+ * @see {@link ListAccountsInAccountPoolCommand }
2373
+ */
2374
+ listAccountsInAccountPool (
2375
+ args : ListAccountsInAccountPoolCommandInput ,
2376
+ options ?: __HttpHandlerOptions
2377
+ ) : Promise < ListAccountsInAccountPoolCommandOutput > ;
2378
+ listAccountsInAccountPool (
2379
+ args : ListAccountsInAccountPoolCommandInput ,
2380
+ cb : ( err : any , data ?: ListAccountsInAccountPoolCommandOutput ) => void
2381
+ ) : void ;
2382
+ listAccountsInAccountPool (
2383
+ args : ListAccountsInAccountPoolCommandInput ,
2384
+ options : __HttpHandlerOptions ,
2385
+ cb : ( err : any , data ?: ListAccountsInAccountPoolCommandOutput ) => void
2386
+ ) : void ;
2387
+
2270
2388
/**
2271
2389
* @see {@link ListAssetFiltersCommand }
2272
2390
*/
@@ -3027,6 +3145,23 @@ export interface DataZone {
3027
3145
cb : ( err : any , data ?: UntagResourceCommandOutput ) => void
3028
3146
) : void ;
3029
3147
3148
+ /**
3149
+ * @see {@link UpdateAccountPoolCommand }
3150
+ */
3151
+ updateAccountPool (
3152
+ args : UpdateAccountPoolCommandInput ,
3153
+ options ?: __HttpHandlerOptions
3154
+ ) : Promise < UpdateAccountPoolCommandOutput > ;
3155
+ updateAccountPool (
3156
+ args : UpdateAccountPoolCommandInput ,
3157
+ cb : ( err : any , data ?: UpdateAccountPoolCommandOutput ) => void
3158
+ ) : void ;
3159
+ updateAccountPool (
3160
+ args : UpdateAccountPoolCommandInput ,
3161
+ options : __HttpHandlerOptions ,
3162
+ cb : ( err : any , data ?: UpdateAccountPoolCommandOutput ) => void
3163
+ ) : void ;
3164
+
3030
3165
/**
3031
3166
* @see {@link UpdateAssetFilterCommand }
3032
3167
*/
0 commit comments