@aws-sdk/client-datazone 3.696.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.
- package/README.md +40 -0
- package/dist-cjs/index.js +478 -45
- package/dist-es/DataZone.js +10 -0
- package/dist-es/commands/CreateRuleCommand.js +23 -0
- package/dist-es/commands/DeleteRuleCommand.js +22 -0
- package/dist-es/commands/GetDomainUnitCommand.js +1 -1
- package/dist-es/commands/GetRuleCommand.js +23 -0
- package/dist-es/commands/ListDomainsCommand.js +1 -1
- package/dist-es/commands/ListRulesCommand.js +23 -0
- package/dist-es/commands/UpdateDomainUnitCommand.js +1 -1
- package/dist-es/commands/UpdateRuleCommand.js +23 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +50 -30
- package/dist-es/models/models_1.js +65 -0
- package/dist-es/pagination/ListRulesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +227 -0
- package/dist-types/DataZone.d.ts +35 -0
- package/dist-types/DataZoneClient.d.ts +7 -2
- package/dist-types/commands/AcceptSubscriptionRequestCommand.d.ts +9 -0
- package/dist-types/commands/CreateRuleCommand.d.ts +174 -0
- package/dist-types/commands/CreateSubscriptionRequestCommand.d.ts +17 -0
- package/dist-types/commands/DeleteDomainUnitCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEnvironmentBlueprintConfigurationCommand.d.ts +1 -2
- package/dist-types/commands/DeleteRuleCommand.d.ts +97 -0
- package/dist-types/commands/GetDomainUnitCommand.d.ts +1 -1
- package/dist-types/commands/GetRuleCommand.d.ts +138 -0
- package/dist-types/commands/GetSubscriptionRequestDetailsCommand.d.ts +9 -0
- package/dist-types/commands/ListDomainUnitsForParentCommand.d.ts +1 -1
- package/dist-types/commands/ListDomainsCommand.d.ts +2 -1
- package/dist-types/commands/ListRulesCommand.d.ts +142 -0
- package/dist-types/commands/ListSubscriptionRequestsCommand.d.ts +8 -0
- package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +9 -0
- package/dist-types/commands/UpdateDomainCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainUnitCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRuleCommand.d.ts +170 -0
- package/dist-types/commands/UpdateSubscriptionRequestCommand.d.ts +9 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +741 -824
- package/dist-types/models/models_1.d.ts +3458 -2583
- package/dist-types/pagination/ListRulesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/DataZone.d.ts +85 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateRuleCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteDomainUnitCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEnvironmentBlueprintConfigurationCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DeleteRuleCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetDomainUnitCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetRuleCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListDomainUnitsForParentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListRulesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainUnitCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateRuleCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +120 -111
- package/dist-types/ts3.4/models/models_1.d.ts +221 -0
- package/dist-types/ts3.4/pagination/ListRulesPaginator.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 +60 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListRulesCommandInput, ListRulesCommandOutput } from "../commands/ListRulesCommand";
|
|
3
|
+
import { DataZonePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListRules: (config: DataZonePaginationConfiguration, input: ListRulesCommandInput, ...rest: any[]) => Paginator<ListRulesCommandOutput>;
|
|
@@ -19,6 +19,7 @@ export * from "./ListNotificationsPaginator";
|
|
|
19
19
|
export * from "./ListPolicyGrantsPaginator";
|
|
20
20
|
export * from "./ListProjectMembershipsPaginator";
|
|
21
21
|
export * from "./ListProjectsPaginator";
|
|
22
|
+
export * from "./ListRulesPaginator";
|
|
22
23
|
export * from "./ListSubscriptionGrantsPaginator";
|
|
23
24
|
export * from "./ListSubscriptionRequestsPaginator";
|
|
24
25
|
export * from "./ListSubscriptionTargetsPaginator";
|
|
@@ -26,6 +26,7 @@ import { CreateGroupProfileCommandInput, CreateGroupProfileCommandOutput } from
|
|
|
26
26
|
import { CreateListingChangeSetCommandInput, CreateListingChangeSetCommandOutput } from "../commands/CreateListingChangeSetCommand";
|
|
27
27
|
import { CreateProjectCommandInput, CreateProjectCommandOutput } from "../commands/CreateProjectCommand";
|
|
28
28
|
import { CreateProjectMembershipCommandInput, CreateProjectMembershipCommandOutput } from "../commands/CreateProjectMembershipCommand";
|
|
29
|
+
import { CreateRuleCommandInput, CreateRuleCommandOutput } from "../commands/CreateRuleCommand";
|
|
29
30
|
import { CreateSubscriptionGrantCommandInput, CreateSubscriptionGrantCommandOutput } from "../commands/CreateSubscriptionGrantCommand";
|
|
30
31
|
import { CreateSubscriptionRequestCommandInput, CreateSubscriptionRequestCommandOutput } from "../commands/CreateSubscriptionRequestCommand";
|
|
31
32
|
import { CreateSubscriptionTargetCommandInput, CreateSubscriptionTargetCommandOutput } from "../commands/CreateSubscriptionTargetCommand";
|
|
@@ -47,6 +48,7 @@ import { DeleteGlossaryTermCommandInput, DeleteGlossaryTermCommandOutput } from
|
|
|
47
48
|
import { DeleteListingCommandInput, DeleteListingCommandOutput } from "../commands/DeleteListingCommand";
|
|
48
49
|
import { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "../commands/DeleteProjectCommand";
|
|
49
50
|
import { DeleteProjectMembershipCommandInput, DeleteProjectMembershipCommandOutput } from "../commands/DeleteProjectMembershipCommand";
|
|
51
|
+
import { DeleteRuleCommandInput, DeleteRuleCommandOutput } from "../commands/DeleteRuleCommand";
|
|
50
52
|
import { DeleteSubscriptionGrantCommandInput, DeleteSubscriptionGrantCommandOutput } from "../commands/DeleteSubscriptionGrantCommand";
|
|
51
53
|
import { DeleteSubscriptionRequestCommandInput, DeleteSubscriptionRequestCommandOutput } from "../commands/DeleteSubscriptionRequestCommand";
|
|
52
54
|
import { DeleteSubscriptionTargetCommandInput, DeleteSubscriptionTargetCommandOutput } from "../commands/DeleteSubscriptionTargetCommand";
|
|
@@ -75,6 +77,7 @@ import { GetLineageNodeCommandInput, GetLineageNodeCommandOutput } from "../comm
|
|
|
75
77
|
import { GetListingCommandInput, GetListingCommandOutput } from "../commands/GetListingCommand";
|
|
76
78
|
import { GetMetadataGenerationRunCommandInput, GetMetadataGenerationRunCommandOutput } from "../commands/GetMetadataGenerationRunCommand";
|
|
77
79
|
import { GetProjectCommandInput, GetProjectCommandOutput } from "../commands/GetProjectCommand";
|
|
80
|
+
import { GetRuleCommandInput, GetRuleCommandOutput } from "../commands/GetRuleCommand";
|
|
78
81
|
import { GetSubscriptionCommandInput, GetSubscriptionCommandOutput } from "../commands/GetSubscriptionCommand";
|
|
79
82
|
import { GetSubscriptionGrantCommandInput, GetSubscriptionGrantCommandOutput } from "../commands/GetSubscriptionGrantCommand";
|
|
80
83
|
import { GetSubscriptionRequestDetailsCommandInput, GetSubscriptionRequestDetailsCommandOutput } from "../commands/GetSubscriptionRequestDetailsCommand";
|
|
@@ -101,6 +104,7 @@ import { ListNotificationsCommandInput, ListNotificationsCommandOutput } from ".
|
|
|
101
104
|
import { ListPolicyGrantsCommandInput, ListPolicyGrantsCommandOutput } from "../commands/ListPolicyGrantsCommand";
|
|
102
105
|
import { ListProjectMembershipsCommandInput, ListProjectMembershipsCommandOutput } from "../commands/ListProjectMembershipsCommand";
|
|
103
106
|
import { ListProjectsCommandInput, ListProjectsCommandOutput } from "../commands/ListProjectsCommand";
|
|
107
|
+
import { ListRulesCommandInput, ListRulesCommandOutput } from "../commands/ListRulesCommand";
|
|
104
108
|
import { ListSubscriptionGrantsCommandInput, ListSubscriptionGrantsCommandOutput } from "../commands/ListSubscriptionGrantsCommand";
|
|
105
109
|
import { ListSubscriptionRequestsCommandInput, ListSubscriptionRequestsCommandOutput } from "../commands/ListSubscriptionRequestsCommand";
|
|
106
110
|
import { ListSubscriptionsCommandInput, ListSubscriptionsCommandOutput } from "../commands/ListSubscriptionsCommand";
|
|
@@ -135,6 +139,7 @@ import { UpdateGlossaryCommandInput, UpdateGlossaryCommandOutput } from "../comm
|
|
|
135
139
|
import { UpdateGlossaryTermCommandInput, UpdateGlossaryTermCommandOutput } from "../commands/UpdateGlossaryTermCommand";
|
|
136
140
|
import { UpdateGroupProfileCommandInput, UpdateGroupProfileCommandOutput } from "../commands/UpdateGroupProfileCommand";
|
|
137
141
|
import { UpdateProjectCommandInput, UpdateProjectCommandOutput } from "../commands/UpdateProjectCommand";
|
|
142
|
+
import { UpdateRuleCommandInput, UpdateRuleCommandOutput } from "../commands/UpdateRuleCommand";
|
|
138
143
|
import { UpdateSubscriptionGrantStatusCommandInput, UpdateSubscriptionGrantStatusCommandOutput } from "../commands/UpdateSubscriptionGrantStatusCommand";
|
|
139
144
|
import { UpdateSubscriptionRequestCommandInput, UpdateSubscriptionRequestCommandOutput } from "../commands/UpdateSubscriptionRequestCommand";
|
|
140
145
|
import { UpdateSubscriptionTargetCommandInput, UpdateSubscriptionTargetCommandOutput } from "../commands/UpdateSubscriptionTargetCommand";
|
|
@@ -243,6 +248,10 @@ export declare const se_CreateProjectCommand: (input: CreateProjectCommandInput,
|
|
|
243
248
|
* serializeAws_restJson1CreateProjectMembershipCommand
|
|
244
249
|
*/
|
|
245
250
|
export declare const se_CreateProjectMembershipCommand: (input: CreateProjectMembershipCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
251
|
+
/**
|
|
252
|
+
* serializeAws_restJson1CreateRuleCommand
|
|
253
|
+
*/
|
|
254
|
+
export declare const se_CreateRuleCommand: (input: CreateRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
246
255
|
/**
|
|
247
256
|
* serializeAws_restJson1CreateSubscriptionGrantCommand
|
|
248
257
|
*/
|
|
@@ -327,6 +336,10 @@ export declare const se_DeleteProjectCommand: (input: DeleteProjectCommandInput,
|
|
|
327
336
|
* serializeAws_restJson1DeleteProjectMembershipCommand
|
|
328
337
|
*/
|
|
329
338
|
export declare const se_DeleteProjectMembershipCommand: (input: DeleteProjectMembershipCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
339
|
+
/**
|
|
340
|
+
* serializeAws_restJson1DeleteRuleCommand
|
|
341
|
+
*/
|
|
342
|
+
export declare const se_DeleteRuleCommand: (input: DeleteRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
330
343
|
/**
|
|
331
344
|
* serializeAws_restJson1DeleteSubscriptionGrantCommand
|
|
332
345
|
*/
|
|
@@ -439,6 +452,10 @@ export declare const se_GetMetadataGenerationRunCommand: (input: GetMetadataGene
|
|
|
439
452
|
* serializeAws_restJson1GetProjectCommand
|
|
440
453
|
*/
|
|
441
454
|
export declare const se_GetProjectCommand: (input: GetProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
455
|
+
/**
|
|
456
|
+
* serializeAws_restJson1GetRuleCommand
|
|
457
|
+
*/
|
|
458
|
+
export declare const se_GetRuleCommand: (input: GetRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
442
459
|
/**
|
|
443
460
|
* serializeAws_restJson1GetSubscriptionCommand
|
|
444
461
|
*/
|
|
@@ -543,6 +560,10 @@ export declare const se_ListProjectMembershipsCommand: (input: ListProjectMember
|
|
|
543
560
|
* serializeAws_restJson1ListProjectsCommand
|
|
544
561
|
*/
|
|
545
562
|
export declare const se_ListProjectsCommand: (input: ListProjectsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
563
|
+
/**
|
|
564
|
+
* serializeAws_restJson1ListRulesCommand
|
|
565
|
+
*/
|
|
566
|
+
export declare const se_ListRulesCommand: (input: ListRulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
546
567
|
/**
|
|
547
568
|
* serializeAws_restJson1ListSubscriptionGrantsCommand
|
|
548
569
|
*/
|
|
@@ -679,6 +700,10 @@ export declare const se_UpdateGroupProfileCommand: (input: UpdateGroupProfileCom
|
|
|
679
700
|
* serializeAws_restJson1UpdateProjectCommand
|
|
680
701
|
*/
|
|
681
702
|
export declare const se_UpdateProjectCommand: (input: UpdateProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
703
|
+
/**
|
|
704
|
+
* serializeAws_restJson1UpdateRuleCommand
|
|
705
|
+
*/
|
|
706
|
+
export declare const se_UpdateRuleCommand: (input: UpdateRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
682
707
|
/**
|
|
683
708
|
* serializeAws_restJson1UpdateSubscriptionGrantStatusCommand
|
|
684
709
|
*/
|
|
@@ -799,6 +824,10 @@ export declare const de_CreateProjectCommand: (output: __HttpResponse, context:
|
|
|
799
824
|
* deserializeAws_restJson1CreateProjectMembershipCommand
|
|
800
825
|
*/
|
|
801
826
|
export declare const de_CreateProjectMembershipCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProjectMembershipCommandOutput>;
|
|
827
|
+
/**
|
|
828
|
+
* deserializeAws_restJson1CreateRuleCommand
|
|
829
|
+
*/
|
|
830
|
+
export declare const de_CreateRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRuleCommandOutput>;
|
|
802
831
|
/**
|
|
803
832
|
* deserializeAws_restJson1CreateSubscriptionGrantCommand
|
|
804
833
|
*/
|
|
@@ -883,6 +912,10 @@ export declare const de_DeleteProjectCommand: (output: __HttpResponse, context:
|
|
|
883
912
|
* deserializeAws_restJson1DeleteProjectMembershipCommand
|
|
884
913
|
*/
|
|
885
914
|
export declare const de_DeleteProjectMembershipCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProjectMembershipCommandOutput>;
|
|
915
|
+
/**
|
|
916
|
+
* deserializeAws_restJson1DeleteRuleCommand
|
|
917
|
+
*/
|
|
918
|
+
export declare const de_DeleteRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRuleCommandOutput>;
|
|
886
919
|
/**
|
|
887
920
|
* deserializeAws_restJson1DeleteSubscriptionGrantCommand
|
|
888
921
|
*/
|
|
@@ -995,6 +1028,10 @@ export declare const de_GetMetadataGenerationRunCommand: (output: __HttpResponse
|
|
|
995
1028
|
* deserializeAws_restJson1GetProjectCommand
|
|
996
1029
|
*/
|
|
997
1030
|
export declare const de_GetProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProjectCommandOutput>;
|
|
1031
|
+
/**
|
|
1032
|
+
* deserializeAws_restJson1GetRuleCommand
|
|
1033
|
+
*/
|
|
1034
|
+
export declare const de_GetRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRuleCommandOutput>;
|
|
998
1035
|
/**
|
|
999
1036
|
* deserializeAws_restJson1GetSubscriptionCommand
|
|
1000
1037
|
*/
|
|
@@ -1099,6 +1136,10 @@ export declare const de_ListProjectMembershipsCommand: (output: __HttpResponse,
|
|
|
1099
1136
|
* deserializeAws_restJson1ListProjectsCommand
|
|
1100
1137
|
*/
|
|
1101
1138
|
export declare const de_ListProjectsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProjectsCommandOutput>;
|
|
1139
|
+
/**
|
|
1140
|
+
* deserializeAws_restJson1ListRulesCommand
|
|
1141
|
+
*/
|
|
1142
|
+
export declare const de_ListRulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRulesCommandOutput>;
|
|
1102
1143
|
/**
|
|
1103
1144
|
* deserializeAws_restJson1ListSubscriptionGrantsCommand
|
|
1104
1145
|
*/
|
|
@@ -1235,6 +1276,10 @@ export declare const de_UpdateGroupProfileCommand: (output: __HttpResponse, cont
|
|
|
1235
1276
|
* deserializeAws_restJson1UpdateProjectCommand
|
|
1236
1277
|
*/
|
|
1237
1278
|
export declare const de_UpdateProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProjectCommandOutput>;
|
|
1279
|
+
/**
|
|
1280
|
+
* deserializeAws_restJson1UpdateRuleCommand
|
|
1281
|
+
*/
|
|
1282
|
+
export declare const de_UpdateRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRuleCommandOutput>;
|
|
1238
1283
|
/**
|
|
1239
1284
|
* deserializeAws_restJson1UpdateSubscriptionGrantStatusCommand
|
|
1240
1285
|
*/
|
|
@@ -103,6 +103,10 @@ import {
|
|
|
103
103
|
CreateProjectMembershipCommandInput,
|
|
104
104
|
CreateProjectMembershipCommandOutput,
|
|
105
105
|
} from "./commands/CreateProjectMembershipCommand";
|
|
106
|
+
import {
|
|
107
|
+
CreateRuleCommandInput,
|
|
108
|
+
CreateRuleCommandOutput,
|
|
109
|
+
} from "./commands/CreateRuleCommand";
|
|
106
110
|
import {
|
|
107
111
|
CreateSubscriptionGrantCommandInput,
|
|
108
112
|
CreateSubscriptionGrantCommandOutput,
|
|
@@ -187,6 +191,10 @@ import {
|
|
|
187
191
|
DeleteProjectMembershipCommandInput,
|
|
188
192
|
DeleteProjectMembershipCommandOutput,
|
|
189
193
|
} from "./commands/DeleteProjectMembershipCommand";
|
|
194
|
+
import {
|
|
195
|
+
DeleteRuleCommandInput,
|
|
196
|
+
DeleteRuleCommandOutput,
|
|
197
|
+
} from "./commands/DeleteRuleCommand";
|
|
190
198
|
import {
|
|
191
199
|
DeleteSubscriptionGrantCommandInput,
|
|
192
200
|
DeleteSubscriptionGrantCommandOutput,
|
|
@@ -299,6 +307,10 @@ import {
|
|
|
299
307
|
GetProjectCommandInput,
|
|
300
308
|
GetProjectCommandOutput,
|
|
301
309
|
} from "./commands/GetProjectCommand";
|
|
310
|
+
import {
|
|
311
|
+
GetRuleCommandInput,
|
|
312
|
+
GetRuleCommandOutput,
|
|
313
|
+
} from "./commands/GetRuleCommand";
|
|
302
314
|
import {
|
|
303
315
|
GetSubscriptionCommandInput,
|
|
304
316
|
GetSubscriptionCommandOutput,
|
|
@@ -403,6 +415,10 @@ import {
|
|
|
403
415
|
ListProjectsCommandInput,
|
|
404
416
|
ListProjectsCommandOutput,
|
|
405
417
|
} from "./commands/ListProjectsCommand";
|
|
418
|
+
import {
|
|
419
|
+
ListRulesCommandInput,
|
|
420
|
+
ListRulesCommandOutput,
|
|
421
|
+
} from "./commands/ListRulesCommand";
|
|
406
422
|
import {
|
|
407
423
|
ListSubscriptionGrantsCommandInput,
|
|
408
424
|
ListSubscriptionGrantsCommandOutput,
|
|
@@ -539,6 +555,10 @@ import {
|
|
|
539
555
|
UpdateProjectCommandInput,
|
|
540
556
|
UpdateProjectCommandOutput,
|
|
541
557
|
} from "./commands/UpdateProjectCommand";
|
|
558
|
+
import {
|
|
559
|
+
UpdateRuleCommandInput,
|
|
560
|
+
UpdateRuleCommandOutput,
|
|
561
|
+
} from "./commands/UpdateRuleCommand";
|
|
542
562
|
import {
|
|
543
563
|
UpdateSubscriptionGrantStatusCommandInput,
|
|
544
564
|
UpdateSubscriptionGrantStatusCommandOutput,
|
|
@@ -895,6 +915,19 @@ export interface DataZone {
|
|
|
895
915
|
options: __HttpHandlerOptions,
|
|
896
916
|
cb: (err: any, data?: CreateProjectMembershipCommandOutput) => void
|
|
897
917
|
): void;
|
|
918
|
+
createRule(
|
|
919
|
+
args: CreateRuleCommandInput,
|
|
920
|
+
options?: __HttpHandlerOptions
|
|
921
|
+
): Promise<CreateRuleCommandOutput>;
|
|
922
|
+
createRule(
|
|
923
|
+
args: CreateRuleCommandInput,
|
|
924
|
+
cb: (err: any, data?: CreateRuleCommandOutput) => void
|
|
925
|
+
): void;
|
|
926
|
+
createRule(
|
|
927
|
+
args: CreateRuleCommandInput,
|
|
928
|
+
options: __HttpHandlerOptions,
|
|
929
|
+
cb: (err: any, data?: CreateRuleCommandOutput) => void
|
|
930
|
+
): void;
|
|
898
931
|
createSubscriptionGrant(
|
|
899
932
|
args: CreateSubscriptionGrantCommandInput,
|
|
900
933
|
options?: __HttpHandlerOptions
|
|
@@ -1174,6 +1207,19 @@ export interface DataZone {
|
|
|
1174
1207
|
options: __HttpHandlerOptions,
|
|
1175
1208
|
cb: (err: any, data?: DeleteProjectMembershipCommandOutput) => void
|
|
1176
1209
|
): void;
|
|
1210
|
+
deleteRule(
|
|
1211
|
+
args: DeleteRuleCommandInput,
|
|
1212
|
+
options?: __HttpHandlerOptions
|
|
1213
|
+
): Promise<DeleteRuleCommandOutput>;
|
|
1214
|
+
deleteRule(
|
|
1215
|
+
args: DeleteRuleCommandInput,
|
|
1216
|
+
cb: (err: any, data?: DeleteRuleCommandOutput) => void
|
|
1217
|
+
): void;
|
|
1218
|
+
deleteRule(
|
|
1219
|
+
args: DeleteRuleCommandInput,
|
|
1220
|
+
options: __HttpHandlerOptions,
|
|
1221
|
+
cb: (err: any, data?: DeleteRuleCommandOutput) => void
|
|
1222
|
+
): void;
|
|
1177
1223
|
deleteSubscriptionGrant(
|
|
1178
1224
|
args: DeleteSubscriptionGrantCommandInput,
|
|
1179
1225
|
options?: __HttpHandlerOptions
|
|
@@ -1544,6 +1590,19 @@ export interface DataZone {
|
|
|
1544
1590
|
options: __HttpHandlerOptions,
|
|
1545
1591
|
cb: (err: any, data?: GetProjectCommandOutput) => void
|
|
1546
1592
|
): void;
|
|
1593
|
+
getRule(
|
|
1594
|
+
args: GetRuleCommandInput,
|
|
1595
|
+
options?: __HttpHandlerOptions
|
|
1596
|
+
): Promise<GetRuleCommandOutput>;
|
|
1597
|
+
getRule(
|
|
1598
|
+
args: GetRuleCommandInput,
|
|
1599
|
+
cb: (err: any, data?: GetRuleCommandOutput) => void
|
|
1600
|
+
): void;
|
|
1601
|
+
getRule(
|
|
1602
|
+
args: GetRuleCommandInput,
|
|
1603
|
+
options: __HttpHandlerOptions,
|
|
1604
|
+
cb: (err: any, data?: GetRuleCommandOutput) => void
|
|
1605
|
+
): void;
|
|
1547
1606
|
getSubscription(
|
|
1548
1607
|
args: GetSubscriptionCommandInput,
|
|
1549
1608
|
options?: __HttpHandlerOptions
|
|
@@ -1889,6 +1948,19 @@ export interface DataZone {
|
|
|
1889
1948
|
options: __HttpHandlerOptions,
|
|
1890
1949
|
cb: (err: any, data?: ListProjectsCommandOutput) => void
|
|
1891
1950
|
): void;
|
|
1951
|
+
listRules(
|
|
1952
|
+
args: ListRulesCommandInput,
|
|
1953
|
+
options?: __HttpHandlerOptions
|
|
1954
|
+
): Promise<ListRulesCommandOutput>;
|
|
1955
|
+
listRules(
|
|
1956
|
+
args: ListRulesCommandInput,
|
|
1957
|
+
cb: (err: any, data?: ListRulesCommandOutput) => void
|
|
1958
|
+
): void;
|
|
1959
|
+
listRules(
|
|
1960
|
+
args: ListRulesCommandInput,
|
|
1961
|
+
options: __HttpHandlerOptions,
|
|
1962
|
+
cb: (err: any, data?: ListRulesCommandOutput) => void
|
|
1963
|
+
): void;
|
|
1892
1964
|
listSubscriptionGrants(
|
|
1893
1965
|
args: ListSubscriptionGrantsCommandInput,
|
|
1894
1966
|
options?: __HttpHandlerOptions
|
|
@@ -2337,6 +2409,19 @@ export interface DataZone {
|
|
|
2337
2409
|
options: __HttpHandlerOptions,
|
|
2338
2410
|
cb: (err: any, data?: UpdateProjectCommandOutput) => void
|
|
2339
2411
|
): void;
|
|
2412
|
+
updateRule(
|
|
2413
|
+
args: UpdateRuleCommandInput,
|
|
2414
|
+
options?: __HttpHandlerOptions
|
|
2415
|
+
): Promise<UpdateRuleCommandOutput>;
|
|
2416
|
+
updateRule(
|
|
2417
|
+
args: UpdateRuleCommandInput,
|
|
2418
|
+
cb: (err: any, data?: UpdateRuleCommandOutput) => void
|
|
2419
|
+
): void;
|
|
2420
|
+
updateRule(
|
|
2421
|
+
args: UpdateRuleCommandInput,
|
|
2422
|
+
options: __HttpHandlerOptions,
|
|
2423
|
+
cb: (err: any, data?: UpdateRuleCommandOutput) => void
|
|
2424
|
+
): void;
|
|
2340
2425
|
updateSubscriptionGrantStatus(
|
|
2341
2426
|
args: UpdateSubscriptionGrantStatusCommandInput,
|
|
2342
2427
|
options?: __HttpHandlerOptions
|
|
@@ -149,6 +149,10 @@ import {
|
|
|
149
149
|
CreateProjectMembershipCommandInput,
|
|
150
150
|
CreateProjectMembershipCommandOutput,
|
|
151
151
|
} from "./commands/CreateProjectMembershipCommand";
|
|
152
|
+
import {
|
|
153
|
+
CreateRuleCommandInput,
|
|
154
|
+
CreateRuleCommandOutput,
|
|
155
|
+
} from "./commands/CreateRuleCommand";
|
|
152
156
|
import {
|
|
153
157
|
CreateSubscriptionGrantCommandInput,
|
|
154
158
|
CreateSubscriptionGrantCommandOutput,
|
|
@@ -233,6 +237,10 @@ import {
|
|
|
233
237
|
DeleteProjectMembershipCommandInput,
|
|
234
238
|
DeleteProjectMembershipCommandOutput,
|
|
235
239
|
} from "./commands/DeleteProjectMembershipCommand";
|
|
240
|
+
import {
|
|
241
|
+
DeleteRuleCommandInput,
|
|
242
|
+
DeleteRuleCommandOutput,
|
|
243
|
+
} from "./commands/DeleteRuleCommand";
|
|
236
244
|
import {
|
|
237
245
|
DeleteSubscriptionGrantCommandInput,
|
|
238
246
|
DeleteSubscriptionGrantCommandOutput,
|
|
@@ -345,6 +353,10 @@ import {
|
|
|
345
353
|
GetProjectCommandInput,
|
|
346
354
|
GetProjectCommandOutput,
|
|
347
355
|
} from "./commands/GetProjectCommand";
|
|
356
|
+
import {
|
|
357
|
+
GetRuleCommandInput,
|
|
358
|
+
GetRuleCommandOutput,
|
|
359
|
+
} from "./commands/GetRuleCommand";
|
|
348
360
|
import {
|
|
349
361
|
GetSubscriptionCommandInput,
|
|
350
362
|
GetSubscriptionCommandOutput,
|
|
@@ -449,6 +461,10 @@ import {
|
|
|
449
461
|
ListProjectsCommandInput,
|
|
450
462
|
ListProjectsCommandOutput,
|
|
451
463
|
} from "./commands/ListProjectsCommand";
|
|
464
|
+
import {
|
|
465
|
+
ListRulesCommandInput,
|
|
466
|
+
ListRulesCommandOutput,
|
|
467
|
+
} from "./commands/ListRulesCommand";
|
|
452
468
|
import {
|
|
453
469
|
ListSubscriptionGrantsCommandInput,
|
|
454
470
|
ListSubscriptionGrantsCommandOutput,
|
|
@@ -585,6 +601,10 @@ import {
|
|
|
585
601
|
UpdateProjectCommandInput,
|
|
586
602
|
UpdateProjectCommandOutput,
|
|
587
603
|
} from "./commands/UpdateProjectCommand";
|
|
604
|
+
import {
|
|
605
|
+
UpdateRuleCommandInput,
|
|
606
|
+
UpdateRuleCommandOutput,
|
|
607
|
+
} from "./commands/UpdateRuleCommand";
|
|
588
608
|
import {
|
|
589
609
|
UpdateSubscriptionGrantStatusCommandInput,
|
|
590
610
|
UpdateSubscriptionGrantStatusCommandOutput,
|
|
@@ -635,6 +655,7 @@ export type ServiceInputTypes =
|
|
|
635
655
|
| CreateListingChangeSetCommandInput
|
|
636
656
|
| CreateProjectCommandInput
|
|
637
657
|
| CreateProjectMembershipCommandInput
|
|
658
|
+
| CreateRuleCommandInput
|
|
638
659
|
| CreateSubscriptionGrantCommandInput
|
|
639
660
|
| CreateSubscriptionRequestCommandInput
|
|
640
661
|
| CreateSubscriptionTargetCommandInput
|
|
@@ -656,6 +677,7 @@ export type ServiceInputTypes =
|
|
|
656
677
|
| DeleteListingCommandInput
|
|
657
678
|
| DeleteProjectCommandInput
|
|
658
679
|
| DeleteProjectMembershipCommandInput
|
|
680
|
+
| DeleteRuleCommandInput
|
|
659
681
|
| DeleteSubscriptionGrantCommandInput
|
|
660
682
|
| DeleteSubscriptionRequestCommandInput
|
|
661
683
|
| DeleteSubscriptionTargetCommandInput
|
|
@@ -684,6 +706,7 @@ export type ServiceInputTypes =
|
|
|
684
706
|
| GetListingCommandInput
|
|
685
707
|
| GetMetadataGenerationRunCommandInput
|
|
686
708
|
| GetProjectCommandInput
|
|
709
|
+
| GetRuleCommandInput
|
|
687
710
|
| GetSubscriptionCommandInput
|
|
688
711
|
| GetSubscriptionGrantCommandInput
|
|
689
712
|
| GetSubscriptionRequestDetailsCommandInput
|
|
@@ -710,6 +733,7 @@ export type ServiceInputTypes =
|
|
|
710
733
|
| ListPolicyGrantsCommandInput
|
|
711
734
|
| ListProjectMembershipsCommandInput
|
|
712
735
|
| ListProjectsCommandInput
|
|
736
|
+
| ListRulesCommandInput
|
|
713
737
|
| ListSubscriptionGrantsCommandInput
|
|
714
738
|
| ListSubscriptionRequestsCommandInput
|
|
715
739
|
| ListSubscriptionTargetsCommandInput
|
|
@@ -744,6 +768,7 @@ export type ServiceInputTypes =
|
|
|
744
768
|
| UpdateGlossaryTermCommandInput
|
|
745
769
|
| UpdateGroupProfileCommandInput
|
|
746
770
|
| UpdateProjectCommandInput
|
|
771
|
+
| UpdateRuleCommandInput
|
|
747
772
|
| UpdateSubscriptionGrantStatusCommandInput
|
|
748
773
|
| UpdateSubscriptionRequestCommandInput
|
|
749
774
|
| UpdateSubscriptionTargetCommandInput
|
|
@@ -775,6 +800,7 @@ export type ServiceOutputTypes =
|
|
|
775
800
|
| CreateListingChangeSetCommandOutput
|
|
776
801
|
| CreateProjectCommandOutput
|
|
777
802
|
| CreateProjectMembershipCommandOutput
|
|
803
|
+
| CreateRuleCommandOutput
|
|
778
804
|
| CreateSubscriptionGrantCommandOutput
|
|
779
805
|
| CreateSubscriptionRequestCommandOutput
|
|
780
806
|
| CreateSubscriptionTargetCommandOutput
|
|
@@ -796,6 +822,7 @@ export type ServiceOutputTypes =
|
|
|
796
822
|
| DeleteListingCommandOutput
|
|
797
823
|
| DeleteProjectCommandOutput
|
|
798
824
|
| DeleteProjectMembershipCommandOutput
|
|
825
|
+
| DeleteRuleCommandOutput
|
|
799
826
|
| DeleteSubscriptionGrantCommandOutput
|
|
800
827
|
| DeleteSubscriptionRequestCommandOutput
|
|
801
828
|
| DeleteSubscriptionTargetCommandOutput
|
|
@@ -824,6 +851,7 @@ export type ServiceOutputTypes =
|
|
|
824
851
|
| GetListingCommandOutput
|
|
825
852
|
| GetMetadataGenerationRunCommandOutput
|
|
826
853
|
| GetProjectCommandOutput
|
|
854
|
+
| GetRuleCommandOutput
|
|
827
855
|
| GetSubscriptionCommandOutput
|
|
828
856
|
| GetSubscriptionGrantCommandOutput
|
|
829
857
|
| GetSubscriptionRequestDetailsCommandOutput
|
|
@@ -850,6 +878,7 @@ export type ServiceOutputTypes =
|
|
|
850
878
|
| ListPolicyGrantsCommandOutput
|
|
851
879
|
| ListProjectMembershipsCommandOutput
|
|
852
880
|
| ListProjectsCommandOutput
|
|
881
|
+
| ListRulesCommandOutput
|
|
853
882
|
| ListSubscriptionGrantsCommandOutput
|
|
854
883
|
| ListSubscriptionRequestsCommandOutput
|
|
855
884
|
| ListSubscriptionTargetsCommandOutput
|
|
@@ -884,6 +913,7 @@ export type ServiceOutputTypes =
|
|
|
884
913
|
| UpdateGlossaryTermCommandOutput
|
|
885
914
|
| UpdateGroupProfileCommandOutput
|
|
886
915
|
| UpdateProjectCommandOutput
|
|
916
|
+
| UpdateRuleCommandOutput
|
|
887
917
|
| UpdateSubscriptionGrantStatusCommandOutput
|
|
888
918
|
| UpdateSubscriptionRequestCommandOutput
|
|
889
919
|
| UpdateSubscriptionTargetCommandOutput
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import { CreateRuleInput, CreateRuleOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface CreateRuleCommandInput extends CreateRuleInput {}
|
|
12
|
+
export interface CreateRuleCommandOutput
|
|
13
|
+
extends CreateRuleOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const CreateRuleCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: CreateRuleCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
CreateRuleCommandInput,
|
|
20
|
+
CreateRuleCommandOutput,
|
|
21
|
+
DataZoneClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: CreateRuleCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
CreateRuleCommandInput,
|
|
29
|
+
CreateRuleCommandOutput,
|
|
30
|
+
DataZoneClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class CreateRuleCommand extends CreateRuleCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: CreateRuleInput;
|
|
40
|
+
output: CreateRuleOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: CreateRuleCommandInput;
|
|
44
|
+
output: CreateRuleCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
DeleteDomainUnitInput,
|
|
10
10
|
DeleteDomainUnitOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface DeleteDomainUnitCommandInput extends DeleteDomainUnitInput {}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
DeleteEnvironmentBlueprintConfigurationInput,
|
|
10
|
+
DeleteEnvironmentBlueprintConfigurationOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface DeleteEnvironmentBlueprintConfigurationCommandInput
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import { DeleteRuleInput, DeleteRuleOutput } from "../models/models_1";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteRuleCommandInput extends DeleteRuleInput {}
|
|
12
|
+
export interface DeleteRuleCommandOutput
|
|
13
|
+
extends DeleteRuleOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const DeleteRuleCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteRuleCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
DeleteRuleCommandInput,
|
|
20
|
+
DeleteRuleCommandOutput,
|
|
21
|
+
DataZoneClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: DeleteRuleCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
DeleteRuleCommandInput,
|
|
29
|
+
DeleteRuleCommandOutput,
|
|
30
|
+
DataZoneClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class DeleteRuleCommand extends DeleteRuleCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: DeleteRuleInput;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: DeleteRuleCommandInput;
|
|
44
|
+
output: DeleteRuleCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import { GetDomainUnitInput, GetDomainUnitOutput } from "../models/
|
|
8
|
+
import { GetDomainUnitInput, GetDomainUnitOutput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface GetDomainUnitCommandInput extends GetDomainUnitInput {}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import { GetRuleInput, GetRuleOutput } from "../models/models_1";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetRuleCommandInput extends GetRuleInput {}
|
|
12
|
+
export interface GetRuleCommandOutput extends GetRuleOutput, __MetadataBearer {}
|
|
13
|
+
declare const GetRuleCommand_base: {
|
|
14
|
+
new (input: GetRuleCommandInput): import("@smithy/smithy-client").CommandImpl<
|
|
15
|
+
GetRuleCommandInput,
|
|
16
|
+
GetRuleCommandOutput,
|
|
17
|
+
DataZoneClientResolvedConfig,
|
|
18
|
+
ServiceInputTypes,
|
|
19
|
+
ServiceOutputTypes
|
|
20
|
+
>;
|
|
21
|
+
new (__0_0: GetRuleCommandInput): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetRuleCommandInput,
|
|
23
|
+
GetRuleCommandOutput,
|
|
24
|
+
DataZoneClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class GetRuleCommand extends GetRuleCommand_base {
|
|
31
|
+
protected static __types: {
|
|
32
|
+
api: {
|
|
33
|
+
input: GetRuleInput;
|
|
34
|
+
output: GetRuleOutput;
|
|
35
|
+
};
|
|
36
|
+
sdk: {
|
|
37
|
+
input: GetRuleCommandInput;
|
|
38
|
+
output: GetRuleCommandOutput;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ListDomainUnitsForParentInput,
|
|
10
10
|
ListDomainUnitsForParentOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ListDomainUnitsForParentCommandInput
|
|
@@ -5,7 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import { ListDomainsInput
|
|
8
|
+
import { ListDomainsInput } from "../models/models_0";
|
|
9
|
+
import { ListDomainsOutput } from "../models/models_1";
|
|
9
10
|
export { __MetadataBearer };
|
|
10
11
|
export { $Command };
|
|
11
12
|
export interface ListDomainsCommandInput extends ListDomainsInput {}
|