@aws-sdk/client-datazone 3.641.0 → 3.643.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 +88 -0
- package/dist-cjs/index.js +894 -99
- package/dist-es/DataZone.js +22 -0
- package/dist-es/commands/AddEntityOwnerCommand.js +24 -0
- package/dist-es/commands/AddPolicyGrantCommand.js +24 -0
- package/dist-es/commands/CreateDomainUnitCommand.js +25 -0
- package/dist-es/commands/DeleteDomainUnitCommand.js +24 -0
- package/dist-es/commands/GetDomainUnitCommand.js +25 -0
- package/dist-es/commands/GetEnvironmentBlueprintCommand.js +1 -1
- package/dist-es/commands/GetEnvironmentCommand.js +1 -1
- package/dist-es/commands/GetEnvironmentCredentialsCommand.js +1 -1
- package/dist-es/commands/GetEnvironmentProfileCommand.js +1 -1
- package/dist-es/commands/GetFormTypeCommand.js +1 -1
- package/dist-es/commands/GetGroupProfileCommand.js +1 -1
- package/dist-es/commands/GetLineageNodeCommand.js +1 -1
- package/dist-es/commands/GetProjectCommand.js +1 -1
- package/dist-es/commands/GetSubscriptionCommand.js +1 -1
- package/dist-es/commands/GetSubscriptionRequestDetailsCommand.js +1 -1
- package/dist-es/commands/GetSubscriptionTargetCommand.js +1 -1
- package/dist-es/commands/GetUserProfileCommand.js +1 -1
- package/dist-es/commands/ListDomainUnitsForParentCommand.js +24 -0
- package/dist-es/commands/ListEntityOwnersCommand.js +24 -0
- package/dist-es/commands/ListPolicyGrantsCommand.js +24 -0
- package/dist-es/commands/RemoveEntityOwnerCommand.js +24 -0
- package/dist-es/commands/RemovePolicyGrantCommand.js +24 -0
- package/dist-es/commands/UpdateDomainUnitCommand.js +25 -0
- package/dist-es/commands/index.js +11 -0
- package/dist-es/models/models_0.js +144 -78
- package/dist-es/models/models_1.js +97 -1
- package/dist-es/pagination/ListDomainUnitsForParentPaginator.js +4 -0
- package/dist-es/pagination/ListEntityOwnersPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyGrantsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +358 -0
- package/dist-types/DataZone.d.ts +77 -0
- package/dist-types/DataZoneClient.d.ts +13 -2
- package/dist-types/commands/AddEntityOwnerCommand.d.ts +93 -0
- package/dist-types/commands/AddPolicyGrantCommand.d.ts +141 -0
- package/dist-types/commands/CreateDomainCommand.d.ts +1 -0
- package/dist-types/commands/CreateDomainUnitCommand.d.ts +104 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDomainUnitCommand.d.ts +80 -0
- package/dist-types/commands/DeleteFormTypeCommand.d.ts +1 -1
- package/dist-types/commands/DeleteGlossaryCommand.d.ts +1 -2
- package/dist-types/commands/GetAssetFilterCommand.d.ts +1 -2
- package/dist-types/commands/GetDomainCommand.d.ts +1 -0
- package/dist-types/commands/GetDomainUnitCommand.d.ts +97 -0
- package/dist-types/commands/GetEnvironmentActionCommand.d.ts +1 -1
- package/dist-types/commands/GetEnvironmentBlueprintCommand.d.ts +1 -1
- package/dist-types/commands/GetEnvironmentBlueprintConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/GetEnvironmentCredentialsCommand.d.ts +1 -1
- package/dist-types/commands/GetEnvironmentProfileCommand.d.ts +1 -1
- package/dist-types/commands/GetFormTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetGroupProfileCommand.d.ts +1 -1
- package/dist-types/commands/GetIamPortalLoginUrlCommand.d.ts +1 -1
- package/dist-types/commands/GetLineageNodeCommand.d.ts +1 -1
- package/dist-types/commands/GetProjectCommand.d.ts +2 -1
- package/dist-types/commands/GetSubscriptionCommand.d.ts +1 -1
- package/dist-types/commands/GetSubscriptionGrantCommand.d.ts +1 -1
- package/dist-types/commands/GetSubscriptionRequestDetailsCommand.d.ts +1 -1
- package/dist-types/commands/GetSubscriptionTargetCommand.d.ts +1 -1
- package/dist-types/commands/GetTimeSeriesDataPointCommand.d.ts +1 -1
- package/dist-types/commands/GetUserProfileCommand.d.ts +1 -1
- package/dist-types/commands/ListDomainUnitsForParentCommand.d.ts +84 -0
- package/dist-types/commands/ListEntityOwnersCommand.d.ts +89 -0
- package/dist-types/commands/ListEnvironmentBlueprintConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/ListPolicyGrantsCommand.d.ts +143 -0
- package/dist-types/commands/ListProjectsCommand.d.ts +1 -0
- package/dist-types/commands/PutEnvironmentBlueprintConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/RemoveEntityOwnerCommand.d.ts +87 -0
- package/dist-types/commands/RemovePolicyGrantCommand.d.ts +103 -0
- package/dist-types/commands/UpdateDomainCommand.d.ts +1 -0
- package/dist-types/commands/UpdateDomainUnitCommand.d.ts +102 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +11 -0
- package/dist-types/models/models_0.d.ts +4741 -5090
- package/dist-types/models/models_1.d.ts +1919 -2
- package/dist-types/pagination/ListDomainUnitsForParentPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEntityOwnersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyGrantsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +99 -0
- package/dist-types/ts3.4/DataZone.d.ts +187 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +66 -0
- package/dist-types/ts3.4/commands/AddEntityOwnerCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/AddPolicyGrantCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateDomainUnitCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteDomainUnitCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteFormTypeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteGlossaryCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetAssetFilterCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetDomainUnitCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetEnvironmentActionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetEnvironmentBlueprintCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetEnvironmentBlueprintConfigurationCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetEnvironmentCredentialsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetEnvironmentProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetFormTypeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetGroupProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetIamPortalLoginUrlCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetLineageNodeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetProjectCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetSubscriptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetSubscriptionGrantCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetSubscriptionRequestDetailsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetSubscriptionTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetTimeSeriesDataPointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetUserProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDomainUnitsForParentCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListEntityOwnersCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListEnvironmentBlueprintConfigurationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPolicyGrantsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/PutEnvironmentBlueprintConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RemoveEntityOwnerCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/RemovePolicyGrantCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateDomainUnitCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +11 -0
- package/dist-types/ts3.4/models/models_0.d.ts +575 -380
- package/dist-types/ts3.4/models/models_1.d.ts +487 -2
- package/dist-types/ts3.4/pagination/ListDomainUnitsForParentPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEntityOwnersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyGrantsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +132 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListDomainUnitsForParentCommandInput, ListDomainUnitsForParentCommandOutput } from "../commands/ListDomainUnitsForParentCommand";
|
|
3
|
+
import { DataZonePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListDomainUnitsForParent: (config: DataZonePaginationConfiguration, input: ListDomainUnitsForParentCommandInput, ...rest: any[]) => Paginator<ListDomainUnitsForParentCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListEntityOwnersCommandInput, ListEntityOwnersCommandOutput } from "../commands/ListEntityOwnersCommand";
|
|
3
|
+
import { DataZonePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListEntityOwners: (config: DataZonePaginationConfiguration, input: ListEntityOwnersCommandInput, ...rest: any[]) => Paginator<ListEntityOwnersCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListPolicyGrantsCommandInput, ListPolicyGrantsCommandOutput } from "../commands/ListPolicyGrantsCommand";
|
|
3
|
+
import { DataZonePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListPolicyGrants: (config: DataZonePaginationConfiguration, input: ListPolicyGrantsCommandInput, ...rest: any[]) => Paginator<ListPolicyGrantsCommandOutput>;
|
|
@@ -5,7 +5,9 @@ export * from "./ListDataProductRevisionsPaginator";
|
|
|
5
5
|
export * from "./ListDataSourceRunActivitiesPaginator";
|
|
6
6
|
export * from "./ListDataSourceRunsPaginator";
|
|
7
7
|
export * from "./ListDataSourcesPaginator";
|
|
8
|
+
export * from "./ListDomainUnitsForParentPaginator";
|
|
8
9
|
export * from "./ListDomainsPaginator";
|
|
10
|
+
export * from "./ListEntityOwnersPaginator";
|
|
9
11
|
export * from "./ListEnvironmentActionsPaginator";
|
|
10
12
|
export * from "./ListEnvironmentBlueprintConfigurationsPaginator";
|
|
11
13
|
export * from "./ListEnvironmentBlueprintsPaginator";
|
|
@@ -14,6 +16,7 @@ export * from "./ListEnvironmentsPaginator";
|
|
|
14
16
|
export * from "./ListLineageNodeHistoryPaginator";
|
|
15
17
|
export * from "./ListMetadataGenerationRunsPaginator";
|
|
16
18
|
export * from "./ListNotificationsPaginator";
|
|
19
|
+
export * from "./ListPolicyGrantsPaginator";
|
|
17
20
|
export * from "./ListProjectMembershipsPaginator";
|
|
18
21
|
export * from "./ListProjectsPaginator";
|
|
19
22
|
export * from "./ListSubscriptionGrantsPaginator";
|
|
@@ -2,6 +2,8 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@s
|
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
3
|
import { AcceptPredictionsCommandInput, AcceptPredictionsCommandOutput } from "../commands/AcceptPredictionsCommand";
|
|
4
4
|
import { AcceptSubscriptionRequestCommandInput, AcceptSubscriptionRequestCommandOutput } from "../commands/AcceptSubscriptionRequestCommand";
|
|
5
|
+
import { AddEntityOwnerCommandInput, AddEntityOwnerCommandOutput } from "../commands/AddEntityOwnerCommand";
|
|
6
|
+
import { AddPolicyGrantCommandInput, AddPolicyGrantCommandOutput } from "../commands/AddPolicyGrantCommand";
|
|
5
7
|
import { AssociateEnvironmentRoleCommandInput, AssociateEnvironmentRoleCommandOutput } from "../commands/AssociateEnvironmentRoleCommand";
|
|
6
8
|
import { CancelMetadataGenerationRunCommandInput, CancelMetadataGenerationRunCommandOutput } from "../commands/CancelMetadataGenerationRunCommand";
|
|
7
9
|
import { CancelSubscriptionCommandInput, CancelSubscriptionCommandOutput } from "../commands/CancelSubscriptionCommand";
|
|
@@ -13,6 +15,7 @@ import { CreateDataProductCommandInput, CreateDataProductCommandOutput } from ".
|
|
|
13
15
|
import { CreateDataProductRevisionCommandInput, CreateDataProductRevisionCommandOutput } from "../commands/CreateDataProductRevisionCommand";
|
|
14
16
|
import { CreateDataSourceCommandInput, CreateDataSourceCommandOutput } from "../commands/CreateDataSourceCommand";
|
|
15
17
|
import { CreateDomainCommandInput, CreateDomainCommandOutput } from "../commands/CreateDomainCommand";
|
|
18
|
+
import { CreateDomainUnitCommandInput, CreateDomainUnitCommandOutput } from "../commands/CreateDomainUnitCommand";
|
|
16
19
|
import { CreateEnvironmentActionCommandInput, CreateEnvironmentActionCommandOutput } from "../commands/CreateEnvironmentActionCommand";
|
|
17
20
|
import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "../commands/CreateEnvironmentCommand";
|
|
18
21
|
import { CreateEnvironmentProfileCommandInput, CreateEnvironmentProfileCommandOutput } from "../commands/CreateEnvironmentProfileCommand";
|
|
@@ -33,6 +36,7 @@ import { DeleteAssetTypeCommandInput, DeleteAssetTypeCommandOutput } from "../co
|
|
|
33
36
|
import { DeleteDataProductCommandInput, DeleteDataProductCommandOutput } from "../commands/DeleteDataProductCommand";
|
|
34
37
|
import { DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput } from "../commands/DeleteDataSourceCommand";
|
|
35
38
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "../commands/DeleteDomainCommand";
|
|
39
|
+
import { DeleteDomainUnitCommandInput, DeleteDomainUnitCommandOutput } from "../commands/DeleteDomainUnitCommand";
|
|
36
40
|
import { DeleteEnvironmentActionCommandInput, DeleteEnvironmentActionCommandOutput } from "../commands/DeleteEnvironmentActionCommand";
|
|
37
41
|
import { DeleteEnvironmentBlueprintConfigurationCommandInput, DeleteEnvironmentBlueprintConfigurationCommandOutput } from "../commands/DeleteEnvironmentBlueprintConfigurationCommand";
|
|
38
42
|
import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "../commands/DeleteEnvironmentCommand";
|
|
@@ -55,6 +59,7 @@ import { GetDataProductCommandInput, GetDataProductCommandOutput } from "../comm
|
|
|
55
59
|
import { GetDataSourceCommandInput, GetDataSourceCommandOutput } from "../commands/GetDataSourceCommand";
|
|
56
60
|
import { GetDataSourceRunCommandInput, GetDataSourceRunCommandOutput } from "../commands/GetDataSourceRunCommand";
|
|
57
61
|
import { GetDomainCommandInput, GetDomainCommandOutput } from "../commands/GetDomainCommand";
|
|
62
|
+
import { GetDomainUnitCommandInput, GetDomainUnitCommandOutput } from "../commands/GetDomainUnitCommand";
|
|
58
63
|
import { GetEnvironmentActionCommandInput, GetEnvironmentActionCommandOutput } from "../commands/GetEnvironmentActionCommand";
|
|
59
64
|
import { GetEnvironmentBlueprintCommandInput, GetEnvironmentBlueprintCommandOutput } from "../commands/GetEnvironmentBlueprintCommand";
|
|
60
65
|
import { GetEnvironmentBlueprintConfigurationCommandInput, GetEnvironmentBlueprintConfigurationCommandOutput } from "../commands/GetEnvironmentBlueprintConfigurationCommand";
|
|
@@ -83,6 +88,8 @@ import { ListDataSourceRunActivitiesCommandInput, ListDataSourceRunActivitiesCom
|
|
|
83
88
|
import { ListDataSourceRunsCommandInput, ListDataSourceRunsCommandOutput } from "../commands/ListDataSourceRunsCommand";
|
|
84
89
|
import { ListDataSourcesCommandInput, ListDataSourcesCommandOutput } from "../commands/ListDataSourcesCommand";
|
|
85
90
|
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand";
|
|
91
|
+
import { ListDomainUnitsForParentCommandInput, ListDomainUnitsForParentCommandOutput } from "../commands/ListDomainUnitsForParentCommand";
|
|
92
|
+
import { ListEntityOwnersCommandInput, ListEntityOwnersCommandOutput } from "../commands/ListEntityOwnersCommand";
|
|
86
93
|
import { ListEnvironmentActionsCommandInput, ListEnvironmentActionsCommandOutput } from "../commands/ListEnvironmentActionsCommand";
|
|
87
94
|
import { ListEnvironmentBlueprintConfigurationsCommandInput, ListEnvironmentBlueprintConfigurationsCommandOutput } from "../commands/ListEnvironmentBlueprintConfigurationsCommand";
|
|
88
95
|
import { ListEnvironmentBlueprintsCommandInput, ListEnvironmentBlueprintsCommandOutput } from "../commands/ListEnvironmentBlueprintsCommand";
|
|
@@ -91,6 +98,7 @@ import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../
|
|
|
91
98
|
import { ListLineageNodeHistoryCommandInput, ListLineageNodeHistoryCommandOutput } from "../commands/ListLineageNodeHistoryCommand";
|
|
92
99
|
import { ListMetadataGenerationRunsCommandInput, ListMetadataGenerationRunsCommandOutput } from "../commands/ListMetadataGenerationRunsCommand";
|
|
93
100
|
import { ListNotificationsCommandInput, ListNotificationsCommandOutput } from "../commands/ListNotificationsCommand";
|
|
101
|
+
import { ListPolicyGrantsCommandInput, ListPolicyGrantsCommandOutput } from "../commands/ListPolicyGrantsCommand";
|
|
94
102
|
import { ListProjectMembershipsCommandInput, ListProjectMembershipsCommandOutput } from "../commands/ListProjectMembershipsCommand";
|
|
95
103
|
import { ListProjectsCommandInput, ListProjectsCommandOutput } from "../commands/ListProjectsCommand";
|
|
96
104
|
import { ListSubscriptionGrantsCommandInput, ListSubscriptionGrantsCommandOutput } from "../commands/ListSubscriptionGrantsCommand";
|
|
@@ -104,6 +112,8 @@ import { PostTimeSeriesDataPointsCommandInput, PostTimeSeriesDataPointsCommandOu
|
|
|
104
112
|
import { PutEnvironmentBlueprintConfigurationCommandInput, PutEnvironmentBlueprintConfigurationCommandOutput } from "../commands/PutEnvironmentBlueprintConfigurationCommand";
|
|
105
113
|
import { RejectPredictionsCommandInput, RejectPredictionsCommandOutput } from "../commands/RejectPredictionsCommand";
|
|
106
114
|
import { RejectSubscriptionRequestCommandInput, RejectSubscriptionRequestCommandOutput } from "../commands/RejectSubscriptionRequestCommand";
|
|
115
|
+
import { RemoveEntityOwnerCommandInput, RemoveEntityOwnerCommandOutput } from "../commands/RemoveEntityOwnerCommand";
|
|
116
|
+
import { RemovePolicyGrantCommandInput, RemovePolicyGrantCommandOutput } from "../commands/RemovePolicyGrantCommand";
|
|
107
117
|
import { RevokeSubscriptionCommandInput, RevokeSubscriptionCommandOutput } from "../commands/RevokeSubscriptionCommand";
|
|
108
118
|
import { SearchCommandInput, SearchCommandOutput } from "../commands/SearchCommand";
|
|
109
119
|
import { SearchGroupProfilesCommandInput, SearchGroupProfilesCommandOutput } from "../commands/SearchGroupProfilesCommand";
|
|
@@ -117,6 +127,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../comman
|
|
|
117
127
|
import { UpdateAssetFilterCommandInput, UpdateAssetFilterCommandOutput } from "../commands/UpdateAssetFilterCommand";
|
|
118
128
|
import { UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput } from "../commands/UpdateDataSourceCommand";
|
|
119
129
|
import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "../commands/UpdateDomainCommand";
|
|
130
|
+
import { UpdateDomainUnitCommandInput, UpdateDomainUnitCommandOutput } from "../commands/UpdateDomainUnitCommand";
|
|
120
131
|
import { UpdateEnvironmentActionCommandInput, UpdateEnvironmentActionCommandOutput } from "../commands/UpdateEnvironmentActionCommand";
|
|
121
132
|
import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "../commands/UpdateEnvironmentCommand";
|
|
122
133
|
import { UpdateEnvironmentProfileCommandInput, UpdateEnvironmentProfileCommandOutput } from "../commands/UpdateEnvironmentProfileCommand";
|
|
@@ -136,6 +147,14 @@ export declare const se_AcceptPredictionsCommand: (input: AcceptPredictionsComma
|
|
|
136
147
|
* serializeAws_restJson1AcceptSubscriptionRequestCommand
|
|
137
148
|
*/
|
|
138
149
|
export declare const se_AcceptSubscriptionRequestCommand: (input: AcceptSubscriptionRequestCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
150
|
+
/**
|
|
151
|
+
* serializeAws_restJson1AddEntityOwnerCommand
|
|
152
|
+
*/
|
|
153
|
+
export declare const se_AddEntityOwnerCommand: (input: AddEntityOwnerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
154
|
+
/**
|
|
155
|
+
* serializeAws_restJson1AddPolicyGrantCommand
|
|
156
|
+
*/
|
|
157
|
+
export declare const se_AddPolicyGrantCommand: (input: AddPolicyGrantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
139
158
|
/**
|
|
140
159
|
* serializeAws_restJson1AssociateEnvironmentRoleCommand
|
|
141
160
|
*/
|
|
@@ -180,6 +199,10 @@ export declare const se_CreateDataSourceCommand: (input: CreateDataSourceCommand
|
|
|
180
199
|
* serializeAws_restJson1CreateDomainCommand
|
|
181
200
|
*/
|
|
182
201
|
export declare const se_CreateDomainCommand: (input: CreateDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
202
|
+
/**
|
|
203
|
+
* serializeAws_restJson1CreateDomainUnitCommand
|
|
204
|
+
*/
|
|
205
|
+
export declare const se_CreateDomainUnitCommand: (input: CreateDomainUnitCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
183
206
|
/**
|
|
184
207
|
* serializeAws_restJson1CreateEnvironmentCommand
|
|
185
208
|
*/
|
|
@@ -260,6 +283,10 @@ export declare const se_DeleteDataSourceCommand: (input: DeleteDataSourceCommand
|
|
|
260
283
|
* serializeAws_restJson1DeleteDomainCommand
|
|
261
284
|
*/
|
|
262
285
|
export declare const se_DeleteDomainCommand: (input: DeleteDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
286
|
+
/**
|
|
287
|
+
* serializeAws_restJson1DeleteDomainUnitCommand
|
|
288
|
+
*/
|
|
289
|
+
export declare const se_DeleteDomainUnitCommand: (input: DeleteDomainUnitCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
263
290
|
/**
|
|
264
291
|
* serializeAws_restJson1DeleteEnvironmentCommand
|
|
265
292
|
*/
|
|
@@ -348,6 +375,10 @@ export declare const se_GetDataSourceRunCommand: (input: GetDataSourceRunCommand
|
|
|
348
375
|
* serializeAws_restJson1GetDomainCommand
|
|
349
376
|
*/
|
|
350
377
|
export declare const se_GetDomainCommand: (input: GetDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
378
|
+
/**
|
|
379
|
+
* serializeAws_restJson1GetDomainUnitCommand
|
|
380
|
+
*/
|
|
381
|
+
export declare const se_GetDomainUnitCommand: (input: GetDomainUnitCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
351
382
|
/**
|
|
352
383
|
* serializeAws_restJson1GetEnvironmentCommand
|
|
353
384
|
*/
|
|
@@ -460,6 +491,14 @@ export declare const se_ListDataSourcesCommand: (input: ListDataSourcesCommandIn
|
|
|
460
491
|
* serializeAws_restJson1ListDomainsCommand
|
|
461
492
|
*/
|
|
462
493
|
export declare const se_ListDomainsCommand: (input: ListDomainsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
494
|
+
/**
|
|
495
|
+
* serializeAws_restJson1ListDomainUnitsForParentCommand
|
|
496
|
+
*/
|
|
497
|
+
export declare const se_ListDomainUnitsForParentCommand: (input: ListDomainUnitsForParentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
498
|
+
/**
|
|
499
|
+
* serializeAws_restJson1ListEntityOwnersCommand
|
|
500
|
+
*/
|
|
501
|
+
export declare const se_ListEntityOwnersCommand: (input: ListEntityOwnersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
463
502
|
/**
|
|
464
503
|
* serializeAws_restJson1ListEnvironmentActionsCommand
|
|
465
504
|
*/
|
|
@@ -492,6 +531,10 @@ export declare const se_ListMetadataGenerationRunsCommand: (input: ListMetadataG
|
|
|
492
531
|
* serializeAws_restJson1ListNotificationsCommand
|
|
493
532
|
*/
|
|
494
533
|
export declare const se_ListNotificationsCommand: (input: ListNotificationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
534
|
+
/**
|
|
535
|
+
* serializeAws_restJson1ListPolicyGrantsCommand
|
|
536
|
+
*/
|
|
537
|
+
export declare const se_ListPolicyGrantsCommand: (input: ListPolicyGrantsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
495
538
|
/**
|
|
496
539
|
* serializeAws_restJson1ListProjectMembershipsCommand
|
|
497
540
|
*/
|
|
@@ -544,6 +587,14 @@ export declare const se_RejectPredictionsCommand: (input: RejectPredictionsComma
|
|
|
544
587
|
* serializeAws_restJson1RejectSubscriptionRequestCommand
|
|
545
588
|
*/
|
|
546
589
|
export declare const se_RejectSubscriptionRequestCommand: (input: RejectSubscriptionRequestCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
590
|
+
/**
|
|
591
|
+
* serializeAws_restJson1RemoveEntityOwnerCommand
|
|
592
|
+
*/
|
|
593
|
+
export declare const se_RemoveEntityOwnerCommand: (input: RemoveEntityOwnerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
594
|
+
/**
|
|
595
|
+
* serializeAws_restJson1RemovePolicyGrantCommand
|
|
596
|
+
*/
|
|
597
|
+
export declare const se_RemovePolicyGrantCommand: (input: RemovePolicyGrantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
547
598
|
/**
|
|
548
599
|
* serializeAws_restJson1RevokeSubscriptionCommand
|
|
549
600
|
*/
|
|
@@ -596,6 +647,10 @@ export declare const se_UpdateDataSourceCommand: (input: UpdateDataSourceCommand
|
|
|
596
647
|
* serializeAws_restJson1UpdateDomainCommand
|
|
597
648
|
*/
|
|
598
649
|
export declare const se_UpdateDomainCommand: (input: UpdateDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
650
|
+
/**
|
|
651
|
+
* serializeAws_restJson1UpdateDomainUnitCommand
|
|
652
|
+
*/
|
|
653
|
+
export declare const se_UpdateDomainUnitCommand: (input: UpdateDomainUnitCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
599
654
|
/**
|
|
600
655
|
* serializeAws_restJson1UpdateEnvironmentCommand
|
|
601
656
|
*/
|
|
@@ -648,6 +703,14 @@ export declare const de_AcceptPredictionsCommand: (output: __HttpResponse, conte
|
|
|
648
703
|
* deserializeAws_restJson1AcceptSubscriptionRequestCommand
|
|
649
704
|
*/
|
|
650
705
|
export declare const de_AcceptSubscriptionRequestCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AcceptSubscriptionRequestCommandOutput>;
|
|
706
|
+
/**
|
|
707
|
+
* deserializeAws_restJson1AddEntityOwnerCommand
|
|
708
|
+
*/
|
|
709
|
+
export declare const de_AddEntityOwnerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddEntityOwnerCommandOutput>;
|
|
710
|
+
/**
|
|
711
|
+
* deserializeAws_restJson1AddPolicyGrantCommand
|
|
712
|
+
*/
|
|
713
|
+
export declare const de_AddPolicyGrantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddPolicyGrantCommandOutput>;
|
|
651
714
|
/**
|
|
652
715
|
* deserializeAws_restJson1AssociateEnvironmentRoleCommand
|
|
653
716
|
*/
|
|
@@ -692,6 +755,10 @@ export declare const de_CreateDataSourceCommand: (output: __HttpResponse, contex
|
|
|
692
755
|
* deserializeAws_restJson1CreateDomainCommand
|
|
693
756
|
*/
|
|
694
757
|
export declare const de_CreateDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDomainCommandOutput>;
|
|
758
|
+
/**
|
|
759
|
+
* deserializeAws_restJson1CreateDomainUnitCommand
|
|
760
|
+
*/
|
|
761
|
+
export declare const de_CreateDomainUnitCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDomainUnitCommandOutput>;
|
|
695
762
|
/**
|
|
696
763
|
* deserializeAws_restJson1CreateEnvironmentCommand
|
|
697
764
|
*/
|
|
@@ -772,6 +839,10 @@ export declare const de_DeleteDataSourceCommand: (output: __HttpResponse, contex
|
|
|
772
839
|
* deserializeAws_restJson1DeleteDomainCommand
|
|
773
840
|
*/
|
|
774
841
|
export declare const de_DeleteDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDomainCommandOutput>;
|
|
842
|
+
/**
|
|
843
|
+
* deserializeAws_restJson1DeleteDomainUnitCommand
|
|
844
|
+
*/
|
|
845
|
+
export declare const de_DeleteDomainUnitCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDomainUnitCommandOutput>;
|
|
775
846
|
/**
|
|
776
847
|
* deserializeAws_restJson1DeleteEnvironmentCommand
|
|
777
848
|
*/
|
|
@@ -860,6 +931,10 @@ export declare const de_GetDataSourceRunCommand: (output: __HttpResponse, contex
|
|
|
860
931
|
* deserializeAws_restJson1GetDomainCommand
|
|
861
932
|
*/
|
|
862
933
|
export declare const de_GetDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDomainCommandOutput>;
|
|
934
|
+
/**
|
|
935
|
+
* deserializeAws_restJson1GetDomainUnitCommand
|
|
936
|
+
*/
|
|
937
|
+
export declare const de_GetDomainUnitCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDomainUnitCommandOutput>;
|
|
863
938
|
/**
|
|
864
939
|
* deserializeAws_restJson1GetEnvironmentCommand
|
|
865
940
|
*/
|
|
@@ -972,6 +1047,14 @@ export declare const de_ListDataSourcesCommand: (output: __HttpResponse, context
|
|
|
972
1047
|
* deserializeAws_restJson1ListDomainsCommand
|
|
973
1048
|
*/
|
|
974
1049
|
export declare const de_ListDomainsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDomainsCommandOutput>;
|
|
1050
|
+
/**
|
|
1051
|
+
* deserializeAws_restJson1ListDomainUnitsForParentCommand
|
|
1052
|
+
*/
|
|
1053
|
+
export declare const de_ListDomainUnitsForParentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDomainUnitsForParentCommandOutput>;
|
|
1054
|
+
/**
|
|
1055
|
+
* deserializeAws_restJson1ListEntityOwnersCommand
|
|
1056
|
+
*/
|
|
1057
|
+
export declare const de_ListEntityOwnersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEntityOwnersCommandOutput>;
|
|
975
1058
|
/**
|
|
976
1059
|
* deserializeAws_restJson1ListEnvironmentActionsCommand
|
|
977
1060
|
*/
|
|
@@ -1004,6 +1087,10 @@ export declare const de_ListMetadataGenerationRunsCommand: (output: __HttpRespon
|
|
|
1004
1087
|
* deserializeAws_restJson1ListNotificationsCommand
|
|
1005
1088
|
*/
|
|
1006
1089
|
export declare const de_ListNotificationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListNotificationsCommandOutput>;
|
|
1090
|
+
/**
|
|
1091
|
+
* deserializeAws_restJson1ListPolicyGrantsCommand
|
|
1092
|
+
*/
|
|
1093
|
+
export declare const de_ListPolicyGrantsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPolicyGrantsCommandOutput>;
|
|
1007
1094
|
/**
|
|
1008
1095
|
* deserializeAws_restJson1ListProjectMembershipsCommand
|
|
1009
1096
|
*/
|
|
@@ -1056,6 +1143,14 @@ export declare const de_RejectPredictionsCommand: (output: __HttpResponse, conte
|
|
|
1056
1143
|
* deserializeAws_restJson1RejectSubscriptionRequestCommand
|
|
1057
1144
|
*/
|
|
1058
1145
|
export declare const de_RejectSubscriptionRequestCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RejectSubscriptionRequestCommandOutput>;
|
|
1146
|
+
/**
|
|
1147
|
+
* deserializeAws_restJson1RemoveEntityOwnerCommand
|
|
1148
|
+
*/
|
|
1149
|
+
export declare const de_RemoveEntityOwnerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemoveEntityOwnerCommandOutput>;
|
|
1150
|
+
/**
|
|
1151
|
+
* deserializeAws_restJson1RemovePolicyGrantCommand
|
|
1152
|
+
*/
|
|
1153
|
+
export declare const de_RemovePolicyGrantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemovePolicyGrantCommandOutput>;
|
|
1059
1154
|
/**
|
|
1060
1155
|
* deserializeAws_restJson1RevokeSubscriptionCommand
|
|
1061
1156
|
*/
|
|
@@ -1108,6 +1203,10 @@ export declare const de_UpdateDataSourceCommand: (output: __HttpResponse, contex
|
|
|
1108
1203
|
* deserializeAws_restJson1UpdateDomainCommand
|
|
1109
1204
|
*/
|
|
1110
1205
|
export declare const de_UpdateDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDomainCommandOutput>;
|
|
1206
|
+
/**
|
|
1207
|
+
* deserializeAws_restJson1UpdateDomainUnitCommand
|
|
1208
|
+
*/
|
|
1209
|
+
export declare const de_UpdateDomainUnitCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDomainUnitCommandOutput>;
|
|
1111
1210
|
/**
|
|
1112
1211
|
* deserializeAws_restJson1UpdateEnvironmentCommand
|
|
1113
1212
|
*/
|
|
@@ -7,6 +7,14 @@ import {
|
|
|
7
7
|
AcceptSubscriptionRequestCommandInput,
|
|
8
8
|
AcceptSubscriptionRequestCommandOutput,
|
|
9
9
|
} from "./commands/AcceptSubscriptionRequestCommand";
|
|
10
|
+
import {
|
|
11
|
+
AddEntityOwnerCommandInput,
|
|
12
|
+
AddEntityOwnerCommandOutput,
|
|
13
|
+
} from "./commands/AddEntityOwnerCommand";
|
|
14
|
+
import {
|
|
15
|
+
AddPolicyGrantCommandInput,
|
|
16
|
+
AddPolicyGrantCommandOutput,
|
|
17
|
+
} from "./commands/AddPolicyGrantCommand";
|
|
10
18
|
import {
|
|
11
19
|
AssociateEnvironmentRoleCommandInput,
|
|
12
20
|
AssociateEnvironmentRoleCommandOutput,
|
|
@@ -51,6 +59,10 @@ import {
|
|
|
51
59
|
CreateDomainCommandInput,
|
|
52
60
|
CreateDomainCommandOutput,
|
|
53
61
|
} from "./commands/CreateDomainCommand";
|
|
62
|
+
import {
|
|
63
|
+
CreateDomainUnitCommandInput,
|
|
64
|
+
CreateDomainUnitCommandOutput,
|
|
65
|
+
} from "./commands/CreateDomainUnitCommand";
|
|
54
66
|
import {
|
|
55
67
|
CreateEnvironmentActionCommandInput,
|
|
56
68
|
CreateEnvironmentActionCommandOutput,
|
|
@@ -131,6 +143,10 @@ import {
|
|
|
131
143
|
DeleteDomainCommandInput,
|
|
132
144
|
DeleteDomainCommandOutput,
|
|
133
145
|
} from "./commands/DeleteDomainCommand";
|
|
146
|
+
import {
|
|
147
|
+
DeleteDomainUnitCommandInput,
|
|
148
|
+
DeleteDomainUnitCommandOutput,
|
|
149
|
+
} from "./commands/DeleteDomainUnitCommand";
|
|
134
150
|
import {
|
|
135
151
|
DeleteEnvironmentActionCommandInput,
|
|
136
152
|
DeleteEnvironmentActionCommandOutput,
|
|
@@ -219,6 +235,10 @@ import {
|
|
|
219
235
|
GetDomainCommandInput,
|
|
220
236
|
GetDomainCommandOutput,
|
|
221
237
|
} from "./commands/GetDomainCommand";
|
|
238
|
+
import {
|
|
239
|
+
GetDomainUnitCommandInput,
|
|
240
|
+
GetDomainUnitCommandOutput,
|
|
241
|
+
} from "./commands/GetDomainUnitCommand";
|
|
222
242
|
import {
|
|
223
243
|
GetEnvironmentActionCommandInput,
|
|
224
244
|
GetEnvironmentActionCommandOutput,
|
|
@@ -331,6 +351,14 @@ import {
|
|
|
331
351
|
ListDomainsCommandInput,
|
|
332
352
|
ListDomainsCommandOutput,
|
|
333
353
|
} from "./commands/ListDomainsCommand";
|
|
354
|
+
import {
|
|
355
|
+
ListDomainUnitsForParentCommandInput,
|
|
356
|
+
ListDomainUnitsForParentCommandOutput,
|
|
357
|
+
} from "./commands/ListDomainUnitsForParentCommand";
|
|
358
|
+
import {
|
|
359
|
+
ListEntityOwnersCommandInput,
|
|
360
|
+
ListEntityOwnersCommandOutput,
|
|
361
|
+
} from "./commands/ListEntityOwnersCommand";
|
|
334
362
|
import {
|
|
335
363
|
ListEnvironmentActionsCommandInput,
|
|
336
364
|
ListEnvironmentActionsCommandOutput,
|
|
@@ -363,6 +391,10 @@ import {
|
|
|
363
391
|
ListNotificationsCommandInput,
|
|
364
392
|
ListNotificationsCommandOutput,
|
|
365
393
|
} from "./commands/ListNotificationsCommand";
|
|
394
|
+
import {
|
|
395
|
+
ListPolicyGrantsCommandInput,
|
|
396
|
+
ListPolicyGrantsCommandOutput,
|
|
397
|
+
} from "./commands/ListPolicyGrantsCommand";
|
|
366
398
|
import {
|
|
367
399
|
ListProjectMembershipsCommandInput,
|
|
368
400
|
ListProjectMembershipsCommandOutput,
|
|
@@ -415,6 +447,14 @@ import {
|
|
|
415
447
|
RejectSubscriptionRequestCommandInput,
|
|
416
448
|
RejectSubscriptionRequestCommandOutput,
|
|
417
449
|
} from "./commands/RejectSubscriptionRequestCommand";
|
|
450
|
+
import {
|
|
451
|
+
RemoveEntityOwnerCommandInput,
|
|
452
|
+
RemoveEntityOwnerCommandOutput,
|
|
453
|
+
} from "./commands/RemoveEntityOwnerCommand";
|
|
454
|
+
import {
|
|
455
|
+
RemovePolicyGrantCommandInput,
|
|
456
|
+
RemovePolicyGrantCommandOutput,
|
|
457
|
+
} from "./commands/RemovePolicyGrantCommand";
|
|
418
458
|
import {
|
|
419
459
|
RevokeSubscriptionCommandInput,
|
|
420
460
|
RevokeSubscriptionCommandOutput,
|
|
@@ -467,6 +507,10 @@ import {
|
|
|
467
507
|
UpdateDomainCommandInput,
|
|
468
508
|
UpdateDomainCommandOutput,
|
|
469
509
|
} from "./commands/UpdateDomainCommand";
|
|
510
|
+
import {
|
|
511
|
+
UpdateDomainUnitCommandInput,
|
|
512
|
+
UpdateDomainUnitCommandOutput,
|
|
513
|
+
} from "./commands/UpdateDomainUnitCommand";
|
|
470
514
|
import {
|
|
471
515
|
UpdateEnvironmentActionCommandInput,
|
|
472
516
|
UpdateEnvironmentActionCommandOutput,
|
|
@@ -539,6 +583,32 @@ export interface DataZone {
|
|
|
539
583
|
options: __HttpHandlerOptions,
|
|
540
584
|
cb: (err: any, data?: AcceptSubscriptionRequestCommandOutput) => void
|
|
541
585
|
): void;
|
|
586
|
+
addEntityOwner(
|
|
587
|
+
args: AddEntityOwnerCommandInput,
|
|
588
|
+
options?: __HttpHandlerOptions
|
|
589
|
+
): Promise<AddEntityOwnerCommandOutput>;
|
|
590
|
+
addEntityOwner(
|
|
591
|
+
args: AddEntityOwnerCommandInput,
|
|
592
|
+
cb: (err: any, data?: AddEntityOwnerCommandOutput) => void
|
|
593
|
+
): void;
|
|
594
|
+
addEntityOwner(
|
|
595
|
+
args: AddEntityOwnerCommandInput,
|
|
596
|
+
options: __HttpHandlerOptions,
|
|
597
|
+
cb: (err: any, data?: AddEntityOwnerCommandOutput) => void
|
|
598
|
+
): void;
|
|
599
|
+
addPolicyGrant(
|
|
600
|
+
args: AddPolicyGrantCommandInput,
|
|
601
|
+
options?: __HttpHandlerOptions
|
|
602
|
+
): Promise<AddPolicyGrantCommandOutput>;
|
|
603
|
+
addPolicyGrant(
|
|
604
|
+
args: AddPolicyGrantCommandInput,
|
|
605
|
+
cb: (err: any, data?: AddPolicyGrantCommandOutput) => void
|
|
606
|
+
): void;
|
|
607
|
+
addPolicyGrant(
|
|
608
|
+
args: AddPolicyGrantCommandInput,
|
|
609
|
+
options: __HttpHandlerOptions,
|
|
610
|
+
cb: (err: any, data?: AddPolicyGrantCommandOutput) => void
|
|
611
|
+
): void;
|
|
542
612
|
associateEnvironmentRole(
|
|
543
613
|
args: AssociateEnvironmentRoleCommandInput,
|
|
544
614
|
options?: __HttpHandlerOptions
|
|
@@ -682,6 +752,19 @@ export interface DataZone {
|
|
|
682
752
|
options: __HttpHandlerOptions,
|
|
683
753
|
cb: (err: any, data?: CreateDomainCommandOutput) => void
|
|
684
754
|
): void;
|
|
755
|
+
createDomainUnit(
|
|
756
|
+
args: CreateDomainUnitCommandInput,
|
|
757
|
+
options?: __HttpHandlerOptions
|
|
758
|
+
): Promise<CreateDomainUnitCommandOutput>;
|
|
759
|
+
createDomainUnit(
|
|
760
|
+
args: CreateDomainUnitCommandInput,
|
|
761
|
+
cb: (err: any, data?: CreateDomainUnitCommandOutput) => void
|
|
762
|
+
): void;
|
|
763
|
+
createDomainUnit(
|
|
764
|
+
args: CreateDomainUnitCommandInput,
|
|
765
|
+
options: __HttpHandlerOptions,
|
|
766
|
+
cb: (err: any, data?: CreateDomainUnitCommandOutput) => void
|
|
767
|
+
): void;
|
|
685
768
|
createEnvironment(
|
|
686
769
|
args: CreateEnvironmentCommandInput,
|
|
687
770
|
options?: __HttpHandlerOptions
|
|
@@ -942,6 +1025,19 @@ export interface DataZone {
|
|
|
942
1025
|
options: __HttpHandlerOptions,
|
|
943
1026
|
cb: (err: any, data?: DeleteDomainCommandOutput) => void
|
|
944
1027
|
): void;
|
|
1028
|
+
deleteDomainUnit(
|
|
1029
|
+
args: DeleteDomainUnitCommandInput,
|
|
1030
|
+
options?: __HttpHandlerOptions
|
|
1031
|
+
): Promise<DeleteDomainUnitCommandOutput>;
|
|
1032
|
+
deleteDomainUnit(
|
|
1033
|
+
args: DeleteDomainUnitCommandInput,
|
|
1034
|
+
cb: (err: any, data?: DeleteDomainUnitCommandOutput) => void
|
|
1035
|
+
): void;
|
|
1036
|
+
deleteDomainUnit(
|
|
1037
|
+
args: DeleteDomainUnitCommandInput,
|
|
1038
|
+
options: __HttpHandlerOptions,
|
|
1039
|
+
cb: (err: any, data?: DeleteDomainUnitCommandOutput) => void
|
|
1040
|
+
): void;
|
|
945
1041
|
deleteEnvironment(
|
|
946
1042
|
args: DeleteEnvironmentCommandInput,
|
|
947
1043
|
options?: __HttpHandlerOptions
|
|
@@ -1234,6 +1330,19 @@ export interface DataZone {
|
|
|
1234
1330
|
options: __HttpHandlerOptions,
|
|
1235
1331
|
cb: (err: any, data?: GetDomainCommandOutput) => void
|
|
1236
1332
|
): void;
|
|
1333
|
+
getDomainUnit(
|
|
1334
|
+
args: GetDomainUnitCommandInput,
|
|
1335
|
+
options?: __HttpHandlerOptions
|
|
1336
|
+
): Promise<GetDomainUnitCommandOutput>;
|
|
1337
|
+
getDomainUnit(
|
|
1338
|
+
args: GetDomainUnitCommandInput,
|
|
1339
|
+
cb: (err: any, data?: GetDomainUnitCommandOutput) => void
|
|
1340
|
+
): void;
|
|
1341
|
+
getDomainUnit(
|
|
1342
|
+
args: GetDomainUnitCommandInput,
|
|
1343
|
+
options: __HttpHandlerOptions,
|
|
1344
|
+
cb: (err: any, data?: GetDomainUnitCommandOutput) => void
|
|
1345
|
+
): void;
|
|
1237
1346
|
getEnvironment(
|
|
1238
1347
|
args: GetEnvironmentCommandInput,
|
|
1239
1348
|
options?: __HttpHandlerOptions
|
|
@@ -1605,6 +1714,32 @@ export interface DataZone {
|
|
|
1605
1714
|
options: __HttpHandlerOptions,
|
|
1606
1715
|
cb: (err: any, data?: ListDomainsCommandOutput) => void
|
|
1607
1716
|
): void;
|
|
1717
|
+
listDomainUnitsForParent(
|
|
1718
|
+
args: ListDomainUnitsForParentCommandInput,
|
|
1719
|
+
options?: __HttpHandlerOptions
|
|
1720
|
+
): Promise<ListDomainUnitsForParentCommandOutput>;
|
|
1721
|
+
listDomainUnitsForParent(
|
|
1722
|
+
args: ListDomainUnitsForParentCommandInput,
|
|
1723
|
+
cb: (err: any, data?: ListDomainUnitsForParentCommandOutput) => void
|
|
1724
|
+
): void;
|
|
1725
|
+
listDomainUnitsForParent(
|
|
1726
|
+
args: ListDomainUnitsForParentCommandInput,
|
|
1727
|
+
options: __HttpHandlerOptions,
|
|
1728
|
+
cb: (err: any, data?: ListDomainUnitsForParentCommandOutput) => void
|
|
1729
|
+
): void;
|
|
1730
|
+
listEntityOwners(
|
|
1731
|
+
args: ListEntityOwnersCommandInput,
|
|
1732
|
+
options?: __HttpHandlerOptions
|
|
1733
|
+
): Promise<ListEntityOwnersCommandOutput>;
|
|
1734
|
+
listEntityOwners(
|
|
1735
|
+
args: ListEntityOwnersCommandInput,
|
|
1736
|
+
cb: (err: any, data?: ListEntityOwnersCommandOutput) => void
|
|
1737
|
+
): void;
|
|
1738
|
+
listEntityOwners(
|
|
1739
|
+
args: ListEntityOwnersCommandInput,
|
|
1740
|
+
options: __HttpHandlerOptions,
|
|
1741
|
+
cb: (err: any, data?: ListEntityOwnersCommandOutput) => void
|
|
1742
|
+
): void;
|
|
1608
1743
|
listEnvironmentActions(
|
|
1609
1744
|
args: ListEnvironmentActionsCommandInput,
|
|
1610
1745
|
options?: __HttpHandlerOptions
|
|
@@ -1715,6 +1850,19 @@ export interface DataZone {
|
|
|
1715
1850
|
options: __HttpHandlerOptions,
|
|
1716
1851
|
cb: (err: any, data?: ListNotificationsCommandOutput) => void
|
|
1717
1852
|
): void;
|
|
1853
|
+
listPolicyGrants(
|
|
1854
|
+
args: ListPolicyGrantsCommandInput,
|
|
1855
|
+
options?: __HttpHandlerOptions
|
|
1856
|
+
): Promise<ListPolicyGrantsCommandOutput>;
|
|
1857
|
+
listPolicyGrants(
|
|
1858
|
+
args: ListPolicyGrantsCommandInput,
|
|
1859
|
+
cb: (err: any, data?: ListPolicyGrantsCommandOutput) => void
|
|
1860
|
+
): void;
|
|
1861
|
+
listPolicyGrants(
|
|
1862
|
+
args: ListPolicyGrantsCommandInput,
|
|
1863
|
+
options: __HttpHandlerOptions,
|
|
1864
|
+
cb: (err: any, data?: ListPolicyGrantsCommandOutput) => void
|
|
1865
|
+
): void;
|
|
1718
1866
|
listProjectMemberships(
|
|
1719
1867
|
args: ListProjectMembershipsCommandInput,
|
|
1720
1868
|
options?: __HttpHandlerOptions
|
|
@@ -1890,6 +2038,32 @@ export interface DataZone {
|
|
|
1890
2038
|
options: __HttpHandlerOptions,
|
|
1891
2039
|
cb: (err: any, data?: RejectSubscriptionRequestCommandOutput) => void
|
|
1892
2040
|
): void;
|
|
2041
|
+
removeEntityOwner(
|
|
2042
|
+
args: RemoveEntityOwnerCommandInput,
|
|
2043
|
+
options?: __HttpHandlerOptions
|
|
2044
|
+
): Promise<RemoveEntityOwnerCommandOutput>;
|
|
2045
|
+
removeEntityOwner(
|
|
2046
|
+
args: RemoveEntityOwnerCommandInput,
|
|
2047
|
+
cb: (err: any, data?: RemoveEntityOwnerCommandOutput) => void
|
|
2048
|
+
): void;
|
|
2049
|
+
removeEntityOwner(
|
|
2050
|
+
args: RemoveEntityOwnerCommandInput,
|
|
2051
|
+
options: __HttpHandlerOptions,
|
|
2052
|
+
cb: (err: any, data?: RemoveEntityOwnerCommandOutput) => void
|
|
2053
|
+
): void;
|
|
2054
|
+
removePolicyGrant(
|
|
2055
|
+
args: RemovePolicyGrantCommandInput,
|
|
2056
|
+
options?: __HttpHandlerOptions
|
|
2057
|
+
): Promise<RemovePolicyGrantCommandOutput>;
|
|
2058
|
+
removePolicyGrant(
|
|
2059
|
+
args: RemovePolicyGrantCommandInput,
|
|
2060
|
+
cb: (err: any, data?: RemovePolicyGrantCommandOutput) => void
|
|
2061
|
+
): void;
|
|
2062
|
+
removePolicyGrant(
|
|
2063
|
+
args: RemovePolicyGrantCommandInput,
|
|
2064
|
+
options: __HttpHandlerOptions,
|
|
2065
|
+
cb: (err: any, data?: RemovePolicyGrantCommandOutput) => void
|
|
2066
|
+
): void;
|
|
1893
2067
|
revokeSubscription(
|
|
1894
2068
|
args: RevokeSubscriptionCommandInput,
|
|
1895
2069
|
options?: __HttpHandlerOptions
|
|
@@ -2059,6 +2233,19 @@ export interface DataZone {
|
|
|
2059
2233
|
options: __HttpHandlerOptions,
|
|
2060
2234
|
cb: (err: any, data?: UpdateDomainCommandOutput) => void
|
|
2061
2235
|
): void;
|
|
2236
|
+
updateDomainUnit(
|
|
2237
|
+
args: UpdateDomainUnitCommandInput,
|
|
2238
|
+
options?: __HttpHandlerOptions
|
|
2239
|
+
): Promise<UpdateDomainUnitCommandOutput>;
|
|
2240
|
+
updateDomainUnit(
|
|
2241
|
+
args: UpdateDomainUnitCommandInput,
|
|
2242
|
+
cb: (err: any, data?: UpdateDomainUnitCommandOutput) => void
|
|
2243
|
+
): void;
|
|
2244
|
+
updateDomainUnit(
|
|
2245
|
+
args: UpdateDomainUnitCommandInput,
|
|
2246
|
+
options: __HttpHandlerOptions,
|
|
2247
|
+
cb: (err: any, data?: UpdateDomainUnitCommandOutput) => void
|
|
2248
|
+
): void;
|
|
2062
2249
|
updateEnvironment(
|
|
2063
2250
|
args: UpdateEnvironmentCommandInput,
|
|
2064
2251
|
options?: __HttpHandlerOptions
|