@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
package/dist-cjs/index.js
CHANGED
|
@@ -30,6 +30,8 @@ __export(src_exports, {
|
|
|
30
30
|
AcceptSubscriptionRequestOutputFilterSensitiveLog: () => AcceptSubscriptionRequestOutputFilterSensitiveLog,
|
|
31
31
|
AccessDeniedException: () => AccessDeniedException,
|
|
32
32
|
ActionParameters: () => ActionParameters,
|
|
33
|
+
AddEntityOwnerCommand: () => AddEntityOwnerCommand,
|
|
34
|
+
AddPolicyGrantCommand: () => AddPolicyGrantCommand,
|
|
33
35
|
AssetFilterConfiguration: () => AssetFilterConfiguration,
|
|
34
36
|
AssetFilterSummaryFilterSensitiveLog: () => AssetFilterSummaryFilterSensitiveLog,
|
|
35
37
|
AssetItemAdditionalAttributesFilterSensitiveLog: () => AssetItemAdditionalAttributesFilterSensitiveLog,
|
|
@@ -67,6 +69,9 @@ __export(src_exports, {
|
|
|
67
69
|
CreateDataSourceInputFilterSensitiveLog: () => CreateDataSourceInputFilterSensitiveLog,
|
|
68
70
|
CreateDataSourceOutputFilterSensitiveLog: () => CreateDataSourceOutputFilterSensitiveLog,
|
|
69
71
|
CreateDomainCommand: () => CreateDomainCommand,
|
|
72
|
+
CreateDomainUnitCommand: () => CreateDomainUnitCommand,
|
|
73
|
+
CreateDomainUnitInputFilterSensitiveLog: () => CreateDomainUnitInputFilterSensitiveLog,
|
|
74
|
+
CreateDomainUnitOutputFilterSensitiveLog: () => CreateDomainUnitOutputFilterSensitiveLog,
|
|
70
75
|
CreateEnvironmentActionCommand: () => CreateEnvironmentActionCommand,
|
|
71
76
|
CreateEnvironmentCommand: () => CreateEnvironmentCommand,
|
|
72
77
|
CreateEnvironmentOutputFilterSensitiveLog: () => CreateEnvironmentOutputFilterSensitiveLog,
|
|
@@ -115,6 +120,7 @@ __export(src_exports, {
|
|
|
115
120
|
DataSourceSummaryFilterSensitiveLog: () => DataSourceSummaryFilterSensitiveLog,
|
|
116
121
|
DataZone: () => DataZone,
|
|
117
122
|
DataZoneClient: () => DataZoneClient,
|
|
123
|
+
DataZoneEntityType: () => DataZoneEntityType,
|
|
118
124
|
DataZoneServiceException: () => DataZoneServiceException,
|
|
119
125
|
DeleteAssetCommand: () => DeleteAssetCommand,
|
|
120
126
|
DeleteAssetFilterCommand: () => DeleteAssetFilterCommand,
|
|
@@ -123,6 +129,7 @@ __export(src_exports, {
|
|
|
123
129
|
DeleteDataSourceCommand: () => DeleteDataSourceCommand,
|
|
124
130
|
DeleteDataSourceOutputFilterSensitiveLog: () => DeleteDataSourceOutputFilterSensitiveLog,
|
|
125
131
|
DeleteDomainCommand: () => DeleteDomainCommand,
|
|
132
|
+
DeleteDomainUnitCommand: () => DeleteDomainUnitCommand,
|
|
126
133
|
DeleteEnvironmentActionCommand: () => DeleteEnvironmentActionCommand,
|
|
127
134
|
DeleteEnvironmentBlueprintConfigurationCommand: () => DeleteEnvironmentBlueprintConfigurationCommand,
|
|
128
135
|
DeleteEnvironmentCommand: () => DeleteEnvironmentCommand,
|
|
@@ -143,6 +150,9 @@ __export(src_exports, {
|
|
|
143
150
|
DisassociateEnvironmentRoleCommand: () => DisassociateEnvironmentRoleCommand,
|
|
144
151
|
DomainStatus: () => DomainStatus,
|
|
145
152
|
DomainSummaryFilterSensitiveLog: () => DomainSummaryFilterSensitiveLog,
|
|
153
|
+
DomainUnitDesignation: () => DomainUnitDesignation,
|
|
154
|
+
DomainUnitGrantFilter: () => DomainUnitGrantFilter,
|
|
155
|
+
DomainUnitOwnerProperties: () => DomainUnitOwnerProperties,
|
|
146
156
|
EdgeDirection: () => EdgeDirection,
|
|
147
157
|
EnableSetting: () => EnableSetting,
|
|
148
158
|
EntityType: () => EntityType,
|
|
@@ -170,6 +180,8 @@ __export(src_exports, {
|
|
|
170
180
|
GetDataSourceOutputFilterSensitiveLog: () => GetDataSourceOutputFilterSensitiveLog,
|
|
171
181
|
GetDataSourceRunCommand: () => GetDataSourceRunCommand,
|
|
172
182
|
GetDomainCommand: () => GetDomainCommand,
|
|
183
|
+
GetDomainUnitCommand: () => GetDomainUnitCommand,
|
|
184
|
+
GetDomainUnitOutputFilterSensitiveLog: () => GetDomainUnitOutputFilterSensitiveLog,
|
|
173
185
|
GetEnvironmentActionCommand: () => GetEnvironmentActionCommand,
|
|
174
186
|
GetEnvironmentBlueprintCommand: () => GetEnvironmentBlueprintCommand,
|
|
175
187
|
GetEnvironmentBlueprintConfigurationCommand: () => GetEnvironmentBlueprintConfigurationCommand,
|
|
@@ -212,6 +224,7 @@ __export(src_exports, {
|
|
|
212
224
|
GlossaryTermStatus: () => GlossaryTermStatus,
|
|
213
225
|
GrantedEntity: () => GrantedEntity,
|
|
214
226
|
GrantedEntityInput: () => GrantedEntityInput,
|
|
227
|
+
GroupPolicyGrantPrincipal: () => GroupPolicyGrantPrincipal,
|
|
215
228
|
GroupProfileStatus: () => GroupProfileStatus,
|
|
216
229
|
GroupProfileSummaryFilterSensitiveLog: () => GroupProfileSummaryFilterSensitiveLog,
|
|
217
230
|
GroupSearchType: () => GroupSearchType,
|
|
@@ -229,8 +242,10 @@ __export(src_exports, {
|
|
|
229
242
|
ListDataSourcesCommand: () => ListDataSourcesCommand,
|
|
230
243
|
ListDataSourcesInputFilterSensitiveLog: () => ListDataSourcesInputFilterSensitiveLog,
|
|
231
244
|
ListDataSourcesOutputFilterSensitiveLog: () => ListDataSourcesOutputFilterSensitiveLog,
|
|
245
|
+
ListDomainUnitsForParentCommand: () => ListDomainUnitsForParentCommand,
|
|
232
246
|
ListDomainsCommand: () => ListDomainsCommand,
|
|
233
247
|
ListDomainsOutputFilterSensitiveLog: () => ListDomainsOutputFilterSensitiveLog,
|
|
248
|
+
ListEntityOwnersCommand: () => ListEntityOwnersCommand,
|
|
234
249
|
ListEnvironmentActionsCommand: () => ListEnvironmentActionsCommand,
|
|
235
250
|
ListEnvironmentBlueprintConfigurationsCommand: () => ListEnvironmentBlueprintConfigurationsCommand,
|
|
236
251
|
ListEnvironmentBlueprintsCommand: () => ListEnvironmentBlueprintsCommand,
|
|
@@ -244,6 +259,7 @@ __export(src_exports, {
|
|
|
244
259
|
ListMetadataGenerationRunsCommand: () => ListMetadataGenerationRunsCommand,
|
|
245
260
|
ListNotificationsCommand: () => ListNotificationsCommand,
|
|
246
261
|
ListNotificationsOutputFilterSensitiveLog: () => ListNotificationsOutputFilterSensitiveLog,
|
|
262
|
+
ListPolicyGrantsCommand: () => ListPolicyGrantsCommand,
|
|
247
263
|
ListProjectMembershipsCommand: () => ListProjectMembershipsCommand,
|
|
248
264
|
ListProjectsCommand: () => ListProjectsCommand,
|
|
249
265
|
ListProjectsInputFilterSensitiveLog: () => ListProjectsInputFilterSensitiveLog,
|
|
@@ -262,6 +278,7 @@ __export(src_exports, {
|
|
|
262
278
|
ListingStatus: () => ListingStatus,
|
|
263
279
|
ListingSummaryFilterSensitiveLog: () => ListingSummaryFilterSensitiveLog,
|
|
264
280
|
ListingSummaryItemFilterSensitiveLog: () => ListingSummaryItemFilterSensitiveLog,
|
|
281
|
+
ManagedPolicyType: () => ManagedPolicyType,
|
|
265
282
|
Member: () => Member,
|
|
266
283
|
MemberDetails: () => MemberDetails,
|
|
267
284
|
MetadataGenerationRunStatus: () => MetadataGenerationRunStatus,
|
|
@@ -273,9 +290,15 @@ __export(src_exports, {
|
|
|
273
290
|
NotificationResourceType: () => NotificationResourceType,
|
|
274
291
|
NotificationRole: () => NotificationRole,
|
|
275
292
|
NotificationType: () => NotificationType,
|
|
293
|
+
OwnerProperties: () => OwnerProperties,
|
|
294
|
+
OwnerPropertiesOutput: () => OwnerPropertiesOutput,
|
|
295
|
+
PolicyGrantDetail: () => PolicyGrantDetail,
|
|
296
|
+
PolicyGrantPrincipal: () => PolicyGrantPrincipal,
|
|
276
297
|
PostLineageEventCommand: () => PostLineageEventCommand,
|
|
277
298
|
PostLineageEventInputFilterSensitiveLog: () => PostLineageEventInputFilterSensitiveLog,
|
|
278
299
|
PostTimeSeriesDataPointsCommand: () => PostTimeSeriesDataPointsCommand,
|
|
300
|
+
ProjectDesignation: () => ProjectDesignation,
|
|
301
|
+
ProjectGrantFilter: () => ProjectGrantFilter,
|
|
279
302
|
ProjectStatus: () => ProjectStatus,
|
|
280
303
|
ProjectSummaryFilterSensitiveLog: () => ProjectSummaryFilterSensitiveLog,
|
|
281
304
|
ProvisioningConfiguration: () => ProvisioningConfiguration,
|
|
@@ -287,6 +310,8 @@ __export(src_exports, {
|
|
|
287
310
|
RejectSubscriptionRequestCommand: () => RejectSubscriptionRequestCommand,
|
|
288
311
|
RejectSubscriptionRequestInputFilterSensitiveLog: () => RejectSubscriptionRequestInputFilterSensitiveLog,
|
|
289
312
|
RejectSubscriptionRequestOutputFilterSensitiveLog: () => RejectSubscriptionRequestOutputFilterSensitiveLog,
|
|
313
|
+
RemoveEntityOwnerCommand: () => RemoveEntityOwnerCommand,
|
|
314
|
+
RemovePolicyGrantCommand: () => RemovePolicyGrantCommand,
|
|
290
315
|
ResourceNotFoundException: () => ResourceNotFoundException,
|
|
291
316
|
RevokeSubscriptionCommand: () => RevokeSubscriptionCommand,
|
|
292
317
|
RevokeSubscriptionOutputFilterSensitiveLog: () => RevokeSubscriptionOutputFilterSensitiveLog,
|
|
@@ -338,6 +363,7 @@ __export(src_exports, {
|
|
|
338
363
|
SubscriptionSummaryFilterSensitiveLog: () => SubscriptionSummaryFilterSensitiveLog,
|
|
339
364
|
SubscriptionTargetSummaryFilterSensitiveLog: () => SubscriptionTargetSummaryFilterSensitiveLog,
|
|
340
365
|
TagResourceCommand: () => TagResourceCommand,
|
|
366
|
+
TargetEntityType: () => TargetEntityType,
|
|
341
367
|
TaskStatus: () => TaskStatus,
|
|
342
368
|
ThrottlingException: () => ThrottlingException,
|
|
343
369
|
TimeSeriesEntityType: () => TimeSeriesEntityType,
|
|
@@ -352,6 +378,9 @@ __export(src_exports, {
|
|
|
352
378
|
UpdateDataSourceInputFilterSensitiveLog: () => UpdateDataSourceInputFilterSensitiveLog,
|
|
353
379
|
UpdateDataSourceOutputFilterSensitiveLog: () => UpdateDataSourceOutputFilterSensitiveLog,
|
|
354
380
|
UpdateDomainCommand: () => UpdateDomainCommand,
|
|
381
|
+
UpdateDomainUnitCommand: () => UpdateDomainUnitCommand,
|
|
382
|
+
UpdateDomainUnitInputFilterSensitiveLog: () => UpdateDomainUnitInputFilterSensitiveLog,
|
|
383
|
+
UpdateDomainUnitOutputFilterSensitiveLog: () => UpdateDomainUnitOutputFilterSensitiveLog,
|
|
355
384
|
UpdateEnvironmentActionCommand: () => UpdateEnvironmentActionCommand,
|
|
356
385
|
UpdateEnvironmentCommand: () => UpdateEnvironmentCommand,
|
|
357
386
|
UpdateEnvironmentOutputFilterSensitiveLog: () => UpdateEnvironmentOutputFilterSensitiveLog,
|
|
@@ -380,6 +409,7 @@ __export(src_exports, {
|
|
|
380
409
|
UpdateUserProfileOutputFilterSensitiveLog: () => UpdateUserProfileOutputFilterSensitiveLog,
|
|
381
410
|
UserAssignment: () => UserAssignment,
|
|
382
411
|
UserDesignation: () => UserDesignation,
|
|
412
|
+
UserPolicyGrantPrincipal: () => UserPolicyGrantPrincipal,
|
|
383
413
|
UserProfileDetails: () => UserProfileDetails,
|
|
384
414
|
UserProfileDetailsFilterSensitiveLog: () => UserProfileDetailsFilterSensitiveLog,
|
|
385
415
|
UserProfileStatus: () => UserProfileStatus,
|
|
@@ -395,7 +425,9 @@ __export(src_exports, {
|
|
|
395
425
|
paginateListDataSourceRunActivities: () => paginateListDataSourceRunActivities,
|
|
396
426
|
paginateListDataSourceRuns: () => paginateListDataSourceRuns,
|
|
397
427
|
paginateListDataSources: () => paginateListDataSources,
|
|
428
|
+
paginateListDomainUnitsForParent: () => paginateListDomainUnitsForParent,
|
|
398
429
|
paginateListDomains: () => paginateListDomains,
|
|
430
|
+
paginateListEntityOwners: () => paginateListEntityOwners,
|
|
399
431
|
paginateListEnvironmentActions: () => paginateListEnvironmentActions,
|
|
400
432
|
paginateListEnvironmentBlueprintConfigurations: () => paginateListEnvironmentBlueprintConfigurations,
|
|
401
433
|
paginateListEnvironmentBlueprints: () => paginateListEnvironmentBlueprints,
|
|
@@ -404,6 +436,7 @@ __export(src_exports, {
|
|
|
404
436
|
paginateListLineageNodeHistory: () => paginateListLineageNodeHistory,
|
|
405
437
|
paginateListMetadataGenerationRuns: () => paginateListMetadataGenerationRuns,
|
|
406
438
|
paginateListNotifications: () => paginateListNotifications,
|
|
439
|
+
paginateListPolicyGrants: () => paginateListPolicyGrants,
|
|
407
440
|
paginateListProjectMemberships: () => paginateListProjectMemberships,
|
|
408
441
|
paginateListProjects: () => paginateListProjects,
|
|
409
442
|
paginateListSubscriptionGrants: () => paginateListSubscriptionGrants,
|
|
@@ -736,11 +769,19 @@ var ActionParameters;
|
|
|
736
769
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
737
770
|
}, "visit");
|
|
738
771
|
})(ActionParameters || (ActionParameters = {}));
|
|
739
|
-
var
|
|
740
|
-
|
|
741
|
-
CREATING: "CREATING",
|
|
742
|
-
INACTIVE: "INACTIVE"
|
|
772
|
+
var DataZoneEntityType = {
|
|
773
|
+
DOMAIN_UNIT: "DOMAIN_UNIT"
|
|
743
774
|
};
|
|
775
|
+
var OwnerProperties;
|
|
776
|
+
((OwnerProperties4) => {
|
|
777
|
+
OwnerProperties4.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
778
|
+
if (value.user !== void 0)
|
|
779
|
+
return visitor.user(value.user);
|
|
780
|
+
if (value.group !== void 0)
|
|
781
|
+
return visitor.group(value.group);
|
|
782
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
783
|
+
}, "visit");
|
|
784
|
+
})(OwnerProperties || (OwnerProperties = {}));
|
|
744
785
|
var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extends DataZoneServiceException {
|
|
745
786
|
/**
|
|
746
787
|
* @internal
|
|
@@ -758,6 +799,112 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
758
799
|
};
|
|
759
800
|
__name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
|
|
760
801
|
var ServiceQuotaExceededException = _ServiceQuotaExceededException;
|
|
802
|
+
var PolicyGrantDetail;
|
|
803
|
+
((PolicyGrantDetail4) => {
|
|
804
|
+
PolicyGrantDetail4.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
805
|
+
if (value.createDomainUnit !== void 0)
|
|
806
|
+
return visitor.createDomainUnit(value.createDomainUnit);
|
|
807
|
+
if (value.overrideDomainUnitOwners !== void 0)
|
|
808
|
+
return visitor.overrideDomainUnitOwners(value.overrideDomainUnitOwners);
|
|
809
|
+
if (value.addToProjectMemberPool !== void 0)
|
|
810
|
+
return visitor.addToProjectMemberPool(value.addToProjectMemberPool);
|
|
811
|
+
if (value.overrideProjectOwners !== void 0)
|
|
812
|
+
return visitor.overrideProjectOwners(value.overrideProjectOwners);
|
|
813
|
+
if (value.createGlossary !== void 0)
|
|
814
|
+
return visitor.createGlossary(value.createGlossary);
|
|
815
|
+
if (value.createFormType !== void 0)
|
|
816
|
+
return visitor.createFormType(value.createFormType);
|
|
817
|
+
if (value.createAssetType !== void 0)
|
|
818
|
+
return visitor.createAssetType(value.createAssetType);
|
|
819
|
+
if (value.createProject !== void 0)
|
|
820
|
+
return visitor.createProject(value.createProject);
|
|
821
|
+
if (value.createEnvironmentProfile !== void 0)
|
|
822
|
+
return visitor.createEnvironmentProfile(value.createEnvironmentProfile);
|
|
823
|
+
if (value.delegateCreateEnvironmentProfile !== void 0)
|
|
824
|
+
return visitor.delegateCreateEnvironmentProfile(value.delegateCreateEnvironmentProfile);
|
|
825
|
+
if (value.createEnvironment !== void 0)
|
|
826
|
+
return visitor.createEnvironment(value.createEnvironment);
|
|
827
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
828
|
+
}, "visit");
|
|
829
|
+
})(PolicyGrantDetail || (PolicyGrantDetail = {}));
|
|
830
|
+
var TargetEntityType = {
|
|
831
|
+
DOMAIN_UNIT: "DOMAIN_UNIT",
|
|
832
|
+
ENVIRONMENT_BLUEPRINT_CONFIGURATION: "ENVIRONMENT_BLUEPRINT_CONFIGURATION",
|
|
833
|
+
ENVIRONMENT_PROFILE: "ENVIRONMENT_PROFILE"
|
|
834
|
+
};
|
|
835
|
+
var ManagedPolicyType = {
|
|
836
|
+
ADD_TO_PROJECT_MEMBER_POOL: "ADD_TO_PROJECT_MEMBER_POOL",
|
|
837
|
+
CREATE_ASSET_TYPE: "CREATE_ASSET_TYPE",
|
|
838
|
+
CREATE_DOMAIN_UNIT: "CREATE_DOMAIN_UNIT",
|
|
839
|
+
CREATE_ENVIRONMENT: "CREATE_ENVIRONMENT",
|
|
840
|
+
CREATE_ENVIRONMENT_PROFILE: "CREATE_ENVIRONMENT_PROFILE",
|
|
841
|
+
CREATE_FORM_TYPE: "CREATE_FORM_TYPE",
|
|
842
|
+
CREATE_GLOSSARY: "CREATE_GLOSSARY",
|
|
843
|
+
CREATE_PROJECT: "CREATE_PROJECT",
|
|
844
|
+
DELEGATE_CREATE_ENVIRONMENT_PROFILE: "DELEGATE_CREATE_ENVIRONMENT_PROFILE",
|
|
845
|
+
OVERRIDE_DOMAIN_UNIT_OWNERS: "OVERRIDE_DOMAIN_UNIT_OWNERS",
|
|
846
|
+
OVERRIDE_PROJECT_OWNERS: "OVERRIDE_PROJECT_OWNERS"
|
|
847
|
+
};
|
|
848
|
+
var DomainUnitDesignation = {
|
|
849
|
+
OWNER: "OWNER"
|
|
850
|
+
};
|
|
851
|
+
var DomainUnitGrantFilter;
|
|
852
|
+
((DomainUnitGrantFilter3) => {
|
|
853
|
+
DomainUnitGrantFilter3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
854
|
+
if (value.allDomainUnitsGrantFilter !== void 0)
|
|
855
|
+
return visitor.allDomainUnitsGrantFilter(value.allDomainUnitsGrantFilter);
|
|
856
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
857
|
+
}, "visit");
|
|
858
|
+
})(DomainUnitGrantFilter || (DomainUnitGrantFilter = {}));
|
|
859
|
+
var GroupPolicyGrantPrincipal;
|
|
860
|
+
((GroupPolicyGrantPrincipal3) => {
|
|
861
|
+
GroupPolicyGrantPrincipal3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
862
|
+
if (value.groupIdentifier !== void 0)
|
|
863
|
+
return visitor.groupIdentifier(value.groupIdentifier);
|
|
864
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
865
|
+
}, "visit");
|
|
866
|
+
})(GroupPolicyGrantPrincipal || (GroupPolicyGrantPrincipal = {}));
|
|
867
|
+
var ProjectDesignation = {
|
|
868
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
869
|
+
OWNER: "OWNER"
|
|
870
|
+
};
|
|
871
|
+
var ProjectGrantFilter;
|
|
872
|
+
((ProjectGrantFilter3) => {
|
|
873
|
+
ProjectGrantFilter3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
874
|
+
if (value.domainUnitFilter !== void 0)
|
|
875
|
+
return visitor.domainUnitFilter(value.domainUnitFilter);
|
|
876
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
877
|
+
}, "visit");
|
|
878
|
+
})(ProjectGrantFilter || (ProjectGrantFilter = {}));
|
|
879
|
+
var UserPolicyGrantPrincipal;
|
|
880
|
+
((UserPolicyGrantPrincipal3) => {
|
|
881
|
+
UserPolicyGrantPrincipal3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
882
|
+
if (value.userIdentifier !== void 0)
|
|
883
|
+
return visitor.userIdentifier(value.userIdentifier);
|
|
884
|
+
if (value.allUsersGrantFilter !== void 0)
|
|
885
|
+
return visitor.allUsersGrantFilter(value.allUsersGrantFilter);
|
|
886
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
887
|
+
}, "visit");
|
|
888
|
+
})(UserPolicyGrantPrincipal || (UserPolicyGrantPrincipal = {}));
|
|
889
|
+
var PolicyGrantPrincipal;
|
|
890
|
+
((PolicyGrantPrincipal4) => {
|
|
891
|
+
PolicyGrantPrincipal4.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
892
|
+
if (value.user !== void 0)
|
|
893
|
+
return visitor.user(value.user);
|
|
894
|
+
if (value.group !== void 0)
|
|
895
|
+
return visitor.group(value.group);
|
|
896
|
+
if (value.project !== void 0)
|
|
897
|
+
return visitor.project(value.project);
|
|
898
|
+
if (value.domainUnit !== void 0)
|
|
899
|
+
return visitor.domainUnit(value.domainUnit);
|
|
900
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
901
|
+
}, "visit");
|
|
902
|
+
})(PolicyGrantPrincipal || (PolicyGrantPrincipal = {}));
|
|
903
|
+
var ListingStatus = {
|
|
904
|
+
ACTIVE: "ACTIVE",
|
|
905
|
+
CREATING: "CREATING",
|
|
906
|
+
INACTIVE: "INACTIVE"
|
|
907
|
+
};
|
|
761
908
|
var RowFilterExpression;
|
|
762
909
|
((RowFilterExpression4) => {
|
|
763
910
|
RowFilterExpression4.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -959,6 +1106,16 @@ var DomainStatus = {
|
|
|
959
1106
|
DELETING: "DELETING",
|
|
960
1107
|
DELETION_FAILED: "DELETION_FAILED"
|
|
961
1108
|
};
|
|
1109
|
+
var DomainUnitOwnerProperties;
|
|
1110
|
+
((DomainUnitOwnerProperties2) => {
|
|
1111
|
+
DomainUnitOwnerProperties2.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
1112
|
+
if (value.user !== void 0)
|
|
1113
|
+
return visitor.user(value.user);
|
|
1114
|
+
if (value.group !== void 0)
|
|
1115
|
+
return visitor.group(value.group);
|
|
1116
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1117
|
+
}, "visit");
|
|
1118
|
+
})(DomainUnitOwnerProperties || (DomainUnitOwnerProperties = {}));
|
|
962
1119
|
var DeploymentStatus = {
|
|
963
1120
|
FAILED: "FAILED",
|
|
964
1121
|
IN_PROGRESS: "IN_PROGRESS",
|
|
@@ -1145,14 +1302,6 @@ var TimeSeriesEntityType = {
|
|
|
1145
1302
|
ASSET: "ASSET",
|
|
1146
1303
|
LISTING: "LISTING"
|
|
1147
1304
|
};
|
|
1148
|
-
var ProvisioningConfiguration;
|
|
1149
|
-
((ProvisioningConfiguration3) => {
|
|
1150
|
-
ProvisioningConfiguration3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
1151
|
-
if (value.lakeFormationConfiguration !== void 0)
|
|
1152
|
-
return visitor.lakeFormationConfiguration(value.lakeFormationConfiguration);
|
|
1153
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1154
|
-
}, "visit");
|
|
1155
|
-
})(ProvisioningConfiguration || (ProvisioningConfiguration = {}));
|
|
1156
1305
|
var AcceptChoiceFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1157
1306
|
...obj,
|
|
1158
1307
|
...obj.editedValue && { editedValue: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -1391,6 +1540,17 @@ var CreateDataSourceOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => (
|
|
|
1391
1540
|
},
|
|
1392
1541
|
...obj.schedule && { schedule: import_smithy_client.SENSITIVE_STRING }
|
|
1393
1542
|
}), "CreateDataSourceOutputFilterSensitiveLog");
|
|
1543
|
+
var CreateDomainUnitInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1544
|
+
...obj,
|
|
1545
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
1546
|
+
...obj.description && { description: import_smithy_client.SENSITIVE_STRING }
|
|
1547
|
+
}), "CreateDomainUnitInputFilterSensitiveLog");
|
|
1548
|
+
var CreateDomainUnitOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1549
|
+
...obj,
|
|
1550
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
1551
|
+
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
1552
|
+
...obj.owners && { owners: obj.owners.map((item) => item) }
|
|
1553
|
+
}), "CreateDomainUnitOutputFilterSensitiveLog");
|
|
1394
1554
|
var CustomParameterFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1395
1555
|
...obj,
|
|
1396
1556
|
...obj.description && { description: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -1618,84 +1778,23 @@ var ListDomainsOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
1618
1778
|
...obj,
|
|
1619
1779
|
...obj.items && { items: obj.items.map((item) => DomainSummaryFilterSensitiveLog(item)) }
|
|
1620
1780
|
}), "ListDomainsOutputFilterSensitiveLog");
|
|
1621
|
-
var
|
|
1622
|
-
...obj,
|
|
1623
|
-
...obj.name && { name: import_smithy_client.SENSITIVE_STRING }
|
|
1624
|
-
}), "ImportFilterSensitiveLog");
|
|
1625
|
-
var GetFormTypeOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1781
|
+
var GetDomainUnitOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1626
1782
|
...obj,
|
|
1627
1783
|
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
1628
|
-
...obj.model && { model: import_smithy_client.SENSITIVE_STRING },
|
|
1629
|
-
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
1630
|
-
...obj.imports && { imports: obj.imports.map((item) => ImportFilterSensitiveLog(item)) }
|
|
1631
|
-
}), "GetFormTypeOutputFilterSensitiveLog");
|
|
1632
|
-
var GetEnvironmentOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1633
|
-
...obj,
|
|
1634
|
-
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
1635
|
-
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
1636
|
-
...obj.userParameters && {
|
|
1637
|
-
userParameters: obj.userParameters.map((item) => CustomParameterFilterSensitiveLog(item))
|
|
1638
|
-
},
|
|
1639
|
-
...obj.provisioningProperties && { provisioningProperties: obj.provisioningProperties }
|
|
1640
|
-
}), "GetEnvironmentOutputFilterSensitiveLog");
|
|
1641
|
-
var GetEnvironmentBlueprintOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1642
|
-
...obj,
|
|
1643
1784
|
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
1644
|
-
...obj.
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
}
|
|
1648
|
-
}), "GetEnvironmentBlueprintOutputFilterSensitiveLog");
|
|
1649
|
-
var GetEnvironmentCredentialsOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1650
|
-
...obj
|
|
1651
|
-
}), "GetEnvironmentCredentialsOutputFilterSensitiveLog");
|
|
1652
|
-
var GetEnvironmentProfileOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1785
|
+
...obj.owners && { owners: obj.owners.map((item) => item) }
|
|
1786
|
+
}), "GetDomainUnitOutputFilterSensitiveLog");
|
|
1787
|
+
var UpdateDomainUnitInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1653
1788
|
...obj,
|
|
1654
|
-
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
1655
1789
|
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
1656
|
-
...obj.
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
}), "GetEnvironmentProfileOutputFilterSensitiveLog");
|
|
1660
|
-
var GetGroupProfileOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1661
|
-
...obj,
|
|
1662
|
-
...obj.groupName && { groupName: import_smithy_client.SENSITIVE_STRING }
|
|
1663
|
-
}), "GetGroupProfileOutputFilterSensitiveLog");
|
|
1664
|
-
var GetLineageNodeOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1665
|
-
...obj,
|
|
1666
|
-
...obj.formsOutput && { formsOutput: obj.formsOutput.map((item) => FormOutputFilterSensitiveLog(item)) }
|
|
1667
|
-
}), "GetLineageNodeOutputFilterSensitiveLog");
|
|
1668
|
-
var GetProjectOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1790
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING }
|
|
1791
|
+
}), "UpdateDomainUnitInputFilterSensitiveLog");
|
|
1792
|
+
var UpdateDomainUnitOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1669
1793
|
...obj,
|
|
1670
1794
|
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
1795
|
+
...obj.owners && { owners: obj.owners.map((item) => item) },
|
|
1671
1796
|
...obj.description && { description: import_smithy_client.SENSITIVE_STRING }
|
|
1672
|
-
}), "
|
|
1673
|
-
var GetSubscriptionOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1674
|
-
...obj,
|
|
1675
|
-
...obj.subscribedPrincipal && {
|
|
1676
|
-
subscribedPrincipal: SubscribedPrincipalFilterSensitiveLog(obj.subscribedPrincipal)
|
|
1677
|
-
},
|
|
1678
|
-
...obj.subscribedListing && { subscribedListing: SubscribedListingFilterSensitiveLog(obj.subscribedListing) }
|
|
1679
|
-
}), "GetSubscriptionOutputFilterSensitiveLog");
|
|
1680
|
-
var GetSubscriptionRequestDetailsOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1681
|
-
...obj,
|
|
1682
|
-
...obj.requestReason && { requestReason: import_smithy_client.SENSITIVE_STRING },
|
|
1683
|
-
...obj.subscribedPrincipals && {
|
|
1684
|
-
subscribedPrincipals: obj.subscribedPrincipals.map((item) => SubscribedPrincipalFilterSensitiveLog(item))
|
|
1685
|
-
},
|
|
1686
|
-
...obj.subscribedListings && {
|
|
1687
|
-
subscribedListings: obj.subscribedListings.map((item) => SubscribedListingFilterSensitiveLog(item))
|
|
1688
|
-
},
|
|
1689
|
-
...obj.decisionComment && { decisionComment: import_smithy_client.SENSITIVE_STRING }
|
|
1690
|
-
}), "GetSubscriptionRequestDetailsOutputFilterSensitiveLog");
|
|
1691
|
-
var GetSubscriptionTargetOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1692
|
-
...obj,
|
|
1693
|
-
...obj.name && { name: import_smithy_client.SENSITIVE_STRING }
|
|
1694
|
-
}), "GetSubscriptionTargetOutputFilterSensitiveLog");
|
|
1695
|
-
var GetUserProfileOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1696
|
-
...obj,
|
|
1697
|
-
...obj.details && { details: UserProfileDetailsFilterSensitiveLog(obj.details) }
|
|
1698
|
-
}), "GetUserProfileOutputFilterSensitiveLog");
|
|
1797
|
+
}), "UpdateDomainUnitOutputFilterSensitiveLog");
|
|
1699
1798
|
|
|
1700
1799
|
// src/protocols/Aws_restJson1.ts
|
|
1701
1800
|
var import_core2 = require("@aws-sdk/core");
|
|
@@ -1705,6 +1804,24 @@ var import_uuid = require("uuid");
|
|
|
1705
1804
|
|
|
1706
1805
|
// src/models/models_1.ts
|
|
1707
1806
|
|
|
1807
|
+
var ProvisioningConfiguration;
|
|
1808
|
+
((ProvisioningConfiguration3) => {
|
|
1809
|
+
ProvisioningConfiguration3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
1810
|
+
if (value.lakeFormationConfiguration !== void 0)
|
|
1811
|
+
return visitor.lakeFormationConfiguration(value.lakeFormationConfiguration);
|
|
1812
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1813
|
+
}, "visit");
|
|
1814
|
+
})(ProvisioningConfiguration || (ProvisioningConfiguration = {}));
|
|
1815
|
+
var OwnerPropertiesOutput;
|
|
1816
|
+
((OwnerPropertiesOutput2) => {
|
|
1817
|
+
OwnerPropertiesOutput2.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
1818
|
+
if (value.user !== void 0)
|
|
1819
|
+
return visitor.user(value.user);
|
|
1820
|
+
if (value.group !== void 0)
|
|
1821
|
+
return visitor.group(value.group);
|
|
1822
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1823
|
+
}, "visit");
|
|
1824
|
+
})(OwnerPropertiesOutput || (OwnerPropertiesOutput = {}));
|
|
1708
1825
|
var ListingItem;
|
|
1709
1826
|
((ListingItem3) => {
|
|
1710
1827
|
ListingItem3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -1870,6 +1987,84 @@ var AssetFilterConfiguration;
|
|
|
1870
1987
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1871
1988
|
}, "visit");
|
|
1872
1989
|
})(AssetFilterConfiguration || (AssetFilterConfiguration = {}));
|
|
1990
|
+
var ImportFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1991
|
+
...obj,
|
|
1992
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING }
|
|
1993
|
+
}), "ImportFilterSensitiveLog");
|
|
1994
|
+
var GetFormTypeOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1995
|
+
...obj,
|
|
1996
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
1997
|
+
...obj.model && { model: import_smithy_client.SENSITIVE_STRING },
|
|
1998
|
+
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
1999
|
+
...obj.imports && { imports: obj.imports.map((item) => ImportFilterSensitiveLog(item)) }
|
|
2000
|
+
}), "GetFormTypeOutputFilterSensitiveLog");
|
|
2001
|
+
var GetEnvironmentOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2002
|
+
...obj,
|
|
2003
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
2004
|
+
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
2005
|
+
...obj.userParameters && {
|
|
2006
|
+
userParameters: obj.userParameters.map((item) => CustomParameterFilterSensitiveLog(item))
|
|
2007
|
+
},
|
|
2008
|
+
...obj.provisioningProperties && { provisioningProperties: obj.provisioningProperties }
|
|
2009
|
+
}), "GetEnvironmentOutputFilterSensitiveLog");
|
|
2010
|
+
var GetEnvironmentBlueprintOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2011
|
+
...obj,
|
|
2012
|
+
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
2013
|
+
...obj.provisioningProperties && { provisioningProperties: obj.provisioningProperties },
|
|
2014
|
+
...obj.userParameters && {
|
|
2015
|
+
userParameters: obj.userParameters.map((item) => CustomParameterFilterSensitiveLog(item))
|
|
2016
|
+
}
|
|
2017
|
+
}), "GetEnvironmentBlueprintOutputFilterSensitiveLog");
|
|
2018
|
+
var GetEnvironmentCredentialsOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2019
|
+
...obj
|
|
2020
|
+
}), "GetEnvironmentCredentialsOutputFilterSensitiveLog");
|
|
2021
|
+
var GetEnvironmentProfileOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2022
|
+
...obj,
|
|
2023
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
2024
|
+
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
2025
|
+
...obj.userParameters && {
|
|
2026
|
+
userParameters: obj.userParameters.map((item) => CustomParameterFilterSensitiveLog(item))
|
|
2027
|
+
}
|
|
2028
|
+
}), "GetEnvironmentProfileOutputFilterSensitiveLog");
|
|
2029
|
+
var GetGroupProfileOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2030
|
+
...obj,
|
|
2031
|
+
...obj.groupName && { groupName: import_smithy_client.SENSITIVE_STRING }
|
|
2032
|
+
}), "GetGroupProfileOutputFilterSensitiveLog");
|
|
2033
|
+
var GetLineageNodeOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2034
|
+
...obj,
|
|
2035
|
+
...obj.formsOutput && { formsOutput: obj.formsOutput.map((item) => FormOutputFilterSensitiveLog(item)) }
|
|
2036
|
+
}), "GetLineageNodeOutputFilterSensitiveLog");
|
|
2037
|
+
var GetProjectOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2038
|
+
...obj,
|
|
2039
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
2040
|
+
...obj.description && { description: import_smithy_client.SENSITIVE_STRING }
|
|
2041
|
+
}), "GetProjectOutputFilterSensitiveLog");
|
|
2042
|
+
var GetSubscriptionOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2043
|
+
...obj,
|
|
2044
|
+
...obj.subscribedPrincipal && {
|
|
2045
|
+
subscribedPrincipal: SubscribedPrincipalFilterSensitiveLog(obj.subscribedPrincipal)
|
|
2046
|
+
},
|
|
2047
|
+
...obj.subscribedListing && { subscribedListing: SubscribedListingFilterSensitiveLog(obj.subscribedListing) }
|
|
2048
|
+
}), "GetSubscriptionOutputFilterSensitiveLog");
|
|
2049
|
+
var GetSubscriptionRequestDetailsOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2050
|
+
...obj,
|
|
2051
|
+
...obj.requestReason && { requestReason: import_smithy_client.SENSITIVE_STRING },
|
|
2052
|
+
...obj.subscribedPrincipals && {
|
|
2053
|
+
subscribedPrincipals: obj.subscribedPrincipals.map((item) => SubscribedPrincipalFilterSensitiveLog(item))
|
|
2054
|
+
},
|
|
2055
|
+
...obj.subscribedListings && {
|
|
2056
|
+
subscribedListings: obj.subscribedListings.map((item) => SubscribedListingFilterSensitiveLog(item))
|
|
2057
|
+
},
|
|
2058
|
+
...obj.decisionComment && { decisionComment: import_smithy_client.SENSITIVE_STRING }
|
|
2059
|
+
}), "GetSubscriptionRequestDetailsOutputFilterSensitiveLog");
|
|
2060
|
+
var GetSubscriptionTargetOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2061
|
+
...obj,
|
|
2062
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING }
|
|
2063
|
+
}), "GetSubscriptionTargetOutputFilterSensitiveLog");
|
|
2064
|
+
var GetUserProfileOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2065
|
+
...obj,
|
|
2066
|
+
...obj.details && { details: UserProfileDetailsFilterSensitiveLog(obj.details) }
|
|
2067
|
+
}), "GetUserProfileOutputFilterSensitiveLog");
|
|
1873
2068
|
var GetGlossaryOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1874
2069
|
...obj,
|
|
1875
2070
|
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
@@ -2265,6 +2460,46 @@ var se_AcceptSubscriptionRequestCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
2265
2460
|
b.m("PUT").h(headers).b(body);
|
|
2266
2461
|
return b.build();
|
|
2267
2462
|
}, "se_AcceptSubscriptionRequestCommand");
|
|
2463
|
+
var se_AddEntityOwnerCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2464
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2465
|
+
const headers = {
|
|
2466
|
+
"content-type": "application/json"
|
|
2467
|
+
};
|
|
2468
|
+
b.bp("/v2/domains/{domainIdentifier}/entities/{entityType}/{entityIdentifier}/addOwner");
|
|
2469
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
2470
|
+
b.p("entityType", () => input.entityType, "{entityType}", false);
|
|
2471
|
+
b.p("entityIdentifier", () => input.entityIdentifier, "{entityIdentifier}", false);
|
|
2472
|
+
let body;
|
|
2473
|
+
body = JSON.stringify(
|
|
2474
|
+
(0, import_smithy_client.take)(input, {
|
|
2475
|
+
clientToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
2476
|
+
owner: (_) => (0, import_smithy_client._json)(_)
|
|
2477
|
+
})
|
|
2478
|
+
);
|
|
2479
|
+
b.m("POST").h(headers).b(body);
|
|
2480
|
+
return b.build();
|
|
2481
|
+
}, "se_AddEntityOwnerCommand");
|
|
2482
|
+
var se_AddPolicyGrantCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2483
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2484
|
+
const headers = {
|
|
2485
|
+
"content-type": "application/json"
|
|
2486
|
+
};
|
|
2487
|
+
b.bp("/v2/domains/{domainIdentifier}/policies/managed/{entityType}/{entityIdentifier}/addGrant");
|
|
2488
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
2489
|
+
b.p("entityType", () => input.entityType, "{entityType}", false);
|
|
2490
|
+
b.p("entityIdentifier", () => input.entityIdentifier, "{entityIdentifier}", false);
|
|
2491
|
+
let body;
|
|
2492
|
+
body = JSON.stringify(
|
|
2493
|
+
(0, import_smithy_client.take)(input, {
|
|
2494
|
+
clientToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
2495
|
+
detail: (_) => (0, import_smithy_client._json)(_),
|
|
2496
|
+
policyType: [],
|
|
2497
|
+
principal: (_) => (0, import_smithy_client._json)(_)
|
|
2498
|
+
})
|
|
2499
|
+
);
|
|
2500
|
+
b.m("POST").h(headers).b(body);
|
|
2501
|
+
return b.build();
|
|
2502
|
+
}, "se_AddPolicyGrantCommand");
|
|
2268
2503
|
var se_AssociateEnvironmentRoleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2269
2504
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
2270
2505
|
const headers = {};
|
|
@@ -2475,6 +2710,25 @@ var se_CreateDomainCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2475
2710
|
b.m("POST").h(headers).b(body);
|
|
2476
2711
|
return b.build();
|
|
2477
2712
|
}, "se_CreateDomainCommand");
|
|
2713
|
+
var se_CreateDomainUnitCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2714
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2715
|
+
const headers = {
|
|
2716
|
+
"content-type": "application/json"
|
|
2717
|
+
};
|
|
2718
|
+
b.bp("/v2/domains/{domainIdentifier}/domain-units");
|
|
2719
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
2720
|
+
let body;
|
|
2721
|
+
body = JSON.stringify(
|
|
2722
|
+
(0, import_smithy_client.take)(input, {
|
|
2723
|
+
clientToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
2724
|
+
description: [],
|
|
2725
|
+
name: [],
|
|
2726
|
+
parentDomainUnitIdentifier: []
|
|
2727
|
+
})
|
|
2728
|
+
);
|
|
2729
|
+
b.m("POST").h(headers).b(body);
|
|
2730
|
+
return b.build();
|
|
2731
|
+
}, "se_CreateDomainUnitCommand");
|
|
2478
2732
|
var se_CreateEnvironmentCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2479
2733
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
2480
2734
|
const headers = {
|
|
@@ -2650,6 +2904,7 @@ var se_CreateProjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2650
2904
|
body = JSON.stringify(
|
|
2651
2905
|
(0, import_smithy_client.take)(input, {
|
|
2652
2906
|
description: [],
|
|
2907
|
+
domainUnitId: [],
|
|
2653
2908
|
glossaryTerms: (_) => (0, import_smithy_client._json)(_),
|
|
2654
2909
|
name: []
|
|
2655
2910
|
})
|
|
@@ -2824,6 +3079,16 @@ var se_DeleteDomainCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2824
3079
|
b.m("DELETE").h(headers).q(query).b(body);
|
|
2825
3080
|
return b.build();
|
|
2826
3081
|
}, "se_DeleteDomainCommand");
|
|
3082
|
+
var se_DeleteDomainUnitCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3083
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3084
|
+
const headers = {};
|
|
3085
|
+
b.bp("/v2/domains/{domainIdentifier}/domain-units/{identifier}");
|
|
3086
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
3087
|
+
b.p("identifier", () => input.identifier, "{identifier}", false);
|
|
3088
|
+
let body;
|
|
3089
|
+
b.m("DELETE").h(headers).b(body);
|
|
3090
|
+
return b.build();
|
|
3091
|
+
}, "se_DeleteDomainUnitCommand");
|
|
2827
3092
|
var se_DeleteEnvironmentCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2828
3093
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
2829
3094
|
const headers = {};
|
|
@@ -3076,6 +3341,16 @@ var se_GetDomainCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3076
3341
|
b.m("GET").h(headers).b(body);
|
|
3077
3342
|
return b.build();
|
|
3078
3343
|
}, "se_GetDomainCommand");
|
|
3344
|
+
var se_GetDomainUnitCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3345
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3346
|
+
const headers = {};
|
|
3347
|
+
b.bp("/v2/domains/{domainIdentifier}/domain-units/{identifier}");
|
|
3348
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
3349
|
+
b.p("identifier", () => input.identifier, "{identifier}", false);
|
|
3350
|
+
let body;
|
|
3351
|
+
b.m("GET").h(headers).b(body);
|
|
3352
|
+
return b.build();
|
|
3353
|
+
}, "se_GetDomainUnitCommand");
|
|
3079
3354
|
var se_GetEnvironmentCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3080
3355
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
3081
3356
|
const headers = {};
|
|
@@ -3413,6 +3688,35 @@ var se_ListDomainsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3413
3688
|
b.m("GET").h(headers).q(query).b(body);
|
|
3414
3689
|
return b.build();
|
|
3415
3690
|
}, "se_ListDomainsCommand");
|
|
3691
|
+
var se_ListDomainUnitsForParentCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3692
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3693
|
+
const headers = {};
|
|
3694
|
+
b.bp("/v2/domains/{domainIdentifier}/domain-units");
|
|
3695
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
3696
|
+
const query = (0, import_smithy_client.map)({
|
|
3697
|
+
[_pDUI]: [, (0, import_smithy_client.expectNonNull)(input[_pDUI], `parentDomainUnitIdentifier`)],
|
|
3698
|
+
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
3699
|
+
[_nT]: [, input[_nT]]
|
|
3700
|
+
});
|
|
3701
|
+
let body;
|
|
3702
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
3703
|
+
return b.build();
|
|
3704
|
+
}, "se_ListDomainUnitsForParentCommand");
|
|
3705
|
+
var se_ListEntityOwnersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3706
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3707
|
+
const headers = {};
|
|
3708
|
+
b.bp("/v2/domains/{domainIdentifier}/entities/{entityType}/{entityIdentifier}/owners");
|
|
3709
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
3710
|
+
b.p("entityType", () => input.entityType, "{entityType}", false);
|
|
3711
|
+
b.p("entityIdentifier", () => input.entityIdentifier, "{entityIdentifier}", false);
|
|
3712
|
+
const query = (0, import_smithy_client.map)({
|
|
3713
|
+
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
3714
|
+
[_nT]: [, input[_nT]]
|
|
3715
|
+
});
|
|
3716
|
+
let body;
|
|
3717
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
3718
|
+
return b.build();
|
|
3719
|
+
}, "se_ListEntityOwnersCommand");
|
|
3416
3720
|
var se_ListEnvironmentActionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3417
3721
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
3418
3722
|
const headers = {};
|
|
@@ -3545,6 +3849,22 @@ var se_ListNotificationsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3545
3849
|
b.m("GET").h(headers).q(query).b(body);
|
|
3546
3850
|
return b.build();
|
|
3547
3851
|
}, "se_ListNotificationsCommand");
|
|
3852
|
+
var se_ListPolicyGrantsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3853
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3854
|
+
const headers = {};
|
|
3855
|
+
b.bp("/v2/domains/{domainIdentifier}/policies/managed/{entityType}/{entityIdentifier}/grants");
|
|
3856
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
3857
|
+
b.p("entityType", () => input.entityType, "{entityType}", false);
|
|
3858
|
+
b.p("entityIdentifier", () => input.entityIdentifier, "{entityIdentifier}", false);
|
|
3859
|
+
const query = (0, import_smithy_client.map)({
|
|
3860
|
+
[_pT]: [, (0, import_smithy_client.expectNonNull)(input[_pT], `policyType`)],
|
|
3861
|
+
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
3862
|
+
[_nT]: [, input[_nT]]
|
|
3863
|
+
});
|
|
3864
|
+
let body;
|
|
3865
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
3866
|
+
return b.build();
|
|
3867
|
+
}, "se_ListPolicyGrantsCommand");
|
|
3548
3868
|
var se_ListProjectMembershipsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3549
3869
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
3550
3870
|
const headers = {};
|
|
@@ -3780,6 +4100,45 @@ var se_RejectSubscriptionRequestCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
3780
4100
|
b.m("PUT").h(headers).b(body);
|
|
3781
4101
|
return b.build();
|
|
3782
4102
|
}, "se_RejectSubscriptionRequestCommand");
|
|
4103
|
+
var se_RemoveEntityOwnerCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4104
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4105
|
+
const headers = {
|
|
4106
|
+
"content-type": "application/json"
|
|
4107
|
+
};
|
|
4108
|
+
b.bp("/v2/domains/{domainIdentifier}/entities/{entityType}/{entityIdentifier}/removeOwner");
|
|
4109
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
4110
|
+
b.p("entityType", () => input.entityType, "{entityType}", false);
|
|
4111
|
+
b.p("entityIdentifier", () => input.entityIdentifier, "{entityIdentifier}", false);
|
|
4112
|
+
let body;
|
|
4113
|
+
body = JSON.stringify(
|
|
4114
|
+
(0, import_smithy_client.take)(input, {
|
|
4115
|
+
clientToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
4116
|
+
owner: (_) => (0, import_smithy_client._json)(_)
|
|
4117
|
+
})
|
|
4118
|
+
);
|
|
4119
|
+
b.m("POST").h(headers).b(body);
|
|
4120
|
+
return b.build();
|
|
4121
|
+
}, "se_RemoveEntityOwnerCommand");
|
|
4122
|
+
var se_RemovePolicyGrantCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4123
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4124
|
+
const headers = {
|
|
4125
|
+
"content-type": "application/json"
|
|
4126
|
+
};
|
|
4127
|
+
b.bp("/v2/domains/{domainIdentifier}/policies/managed/{entityType}/{entityIdentifier}/removeGrant");
|
|
4128
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
4129
|
+
b.p("entityType", () => input.entityType, "{entityType}", false);
|
|
4130
|
+
b.p("entityIdentifier", () => input.entityIdentifier, "{entityIdentifier}", false);
|
|
4131
|
+
let body;
|
|
4132
|
+
body = JSON.stringify(
|
|
4133
|
+
(0, import_smithy_client.take)(input, {
|
|
4134
|
+
clientToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
4135
|
+
policyType: [],
|
|
4136
|
+
principal: (_) => (0, import_smithy_client._json)(_)
|
|
4137
|
+
})
|
|
4138
|
+
);
|
|
4139
|
+
b.m("POST").h(headers).b(body);
|
|
4140
|
+
return b.build();
|
|
4141
|
+
}, "se_RemovePolicyGrantCommand");
|
|
3783
4142
|
var se_RevokeSubscriptionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3784
4143
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
3785
4144
|
const headers = {
|
|
@@ -4038,6 +4397,24 @@ var se_UpdateDomainCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4038
4397
|
b.m("PUT").h(headers).q(query).b(body);
|
|
4039
4398
|
return b.build();
|
|
4040
4399
|
}, "se_UpdateDomainCommand");
|
|
4400
|
+
var se_UpdateDomainUnitCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4401
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4402
|
+
const headers = {
|
|
4403
|
+
"content-type": "application/json"
|
|
4404
|
+
};
|
|
4405
|
+
b.bp("/v2/domains/{domainIdentifier}/domain-units/{identifier}");
|
|
4406
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
4407
|
+
b.p("identifier", () => input.identifier, "{identifier}", false);
|
|
4408
|
+
let body;
|
|
4409
|
+
body = JSON.stringify(
|
|
4410
|
+
(0, import_smithy_client.take)(input, {
|
|
4411
|
+
description: [],
|
|
4412
|
+
name: []
|
|
4413
|
+
})
|
|
4414
|
+
);
|
|
4415
|
+
b.m("PUT").h(headers).b(body);
|
|
4416
|
+
return b.build();
|
|
4417
|
+
}, "se_UpdateDomainUnitCommand");
|
|
4041
4418
|
var se_UpdateEnvironmentCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4042
4419
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
4043
4420
|
const headers = {
|
|
@@ -4295,6 +4672,26 @@ var de_AcceptSubscriptionRequestCommand = /* @__PURE__ */ __name(async (output,
|
|
|
4295
4672
|
Object.assign(contents, doc);
|
|
4296
4673
|
return contents;
|
|
4297
4674
|
}, "de_AcceptSubscriptionRequestCommand");
|
|
4675
|
+
var de_AddEntityOwnerCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4676
|
+
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
4677
|
+
return de_CommandError(output, context);
|
|
4678
|
+
}
|
|
4679
|
+
const contents = (0, import_smithy_client.map)({
|
|
4680
|
+
$metadata: deserializeMetadata(output)
|
|
4681
|
+
});
|
|
4682
|
+
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
4683
|
+
return contents;
|
|
4684
|
+
}, "de_AddEntityOwnerCommand");
|
|
4685
|
+
var de_AddPolicyGrantCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4686
|
+
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
4687
|
+
return de_CommandError(output, context);
|
|
4688
|
+
}
|
|
4689
|
+
const contents = (0, import_smithy_client.map)({
|
|
4690
|
+
$metadata: deserializeMetadata(output)
|
|
4691
|
+
});
|
|
4692
|
+
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
4693
|
+
return contents;
|
|
4694
|
+
}, "de_AddPolicyGrantCommand");
|
|
4298
4695
|
var de_AssociateEnvironmentRoleCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4299
4696
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4300
4697
|
return de_CommandError(output, context);
|
|
@@ -4555,6 +4952,7 @@ var de_CreateDomainCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
4555
4952
|
kmsKeyIdentifier: import_smithy_client.expectString,
|
|
4556
4953
|
name: import_smithy_client.expectString,
|
|
4557
4954
|
portalUrl: import_smithy_client.expectString,
|
|
4955
|
+
rootDomainUnitId: import_smithy_client.expectString,
|
|
4558
4956
|
singleSignOn: import_smithy_client._json,
|
|
4559
4957
|
status: import_smithy_client.expectString,
|
|
4560
4958
|
tags: import_smithy_client._json
|
|
@@ -4562,6 +4960,28 @@ var de_CreateDomainCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
4562
4960
|
Object.assign(contents, doc);
|
|
4563
4961
|
return contents;
|
|
4564
4962
|
}, "de_CreateDomainCommand");
|
|
4963
|
+
var de_CreateDomainUnitCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4964
|
+
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
4965
|
+
return de_CommandError(output, context);
|
|
4966
|
+
}
|
|
4967
|
+
const contents = (0, import_smithy_client.map)({
|
|
4968
|
+
$metadata: deserializeMetadata(output)
|
|
4969
|
+
});
|
|
4970
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
4971
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
4972
|
+
ancestorDomainUnitIds: import_smithy_client._json,
|
|
4973
|
+
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
4974
|
+
createdBy: import_smithy_client.expectString,
|
|
4975
|
+
description: import_smithy_client.expectString,
|
|
4976
|
+
domainId: import_smithy_client.expectString,
|
|
4977
|
+
id: import_smithy_client.expectString,
|
|
4978
|
+
name: import_smithy_client.expectString,
|
|
4979
|
+
owners: import_smithy_client._json,
|
|
4980
|
+
parentDomainUnitId: import_smithy_client.expectString
|
|
4981
|
+
});
|
|
4982
|
+
Object.assign(contents, doc);
|
|
4983
|
+
return contents;
|
|
4984
|
+
}, "de_CreateDomainUnitCommand");
|
|
4565
4985
|
var de_CreateEnvironmentCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4566
4986
|
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
4567
4987
|
return de_CommandError(output, context);
|
|
@@ -4746,6 +5166,7 @@ var de_CreateProjectCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
4746
5166
|
createdBy: import_smithy_client.expectString,
|
|
4747
5167
|
description: import_smithy_client.expectString,
|
|
4748
5168
|
domainId: import_smithy_client.expectString,
|
|
5169
|
+
domainUnitId: import_smithy_client.expectString,
|
|
4749
5170
|
failureReasons: import_smithy_client._json,
|
|
4750
5171
|
glossaryTerms: import_smithy_client._json,
|
|
4751
5172
|
id: import_smithy_client.expectString,
|
|
@@ -4946,9 +5367,19 @@ var de_DeleteDomainCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
4946
5367
|
const doc = (0, import_smithy_client.take)(data, {
|
|
4947
5368
|
status: import_smithy_client.expectString
|
|
4948
5369
|
});
|
|
4949
|
-
Object.assign(contents, doc);
|
|
5370
|
+
Object.assign(contents, doc);
|
|
5371
|
+
return contents;
|
|
5372
|
+
}, "de_DeleteDomainCommand");
|
|
5373
|
+
var de_DeleteDomainUnitCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5374
|
+
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
5375
|
+
return de_CommandError(output, context);
|
|
5376
|
+
}
|
|
5377
|
+
const contents = (0, import_smithy_client.map)({
|
|
5378
|
+
$metadata: deserializeMetadata(output)
|
|
5379
|
+
});
|
|
5380
|
+
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
4950
5381
|
return contents;
|
|
4951
|
-
}, "
|
|
5382
|
+
}, "de_DeleteDomainUnitCommand");
|
|
4952
5383
|
var de_DeleteEnvironmentCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4953
5384
|
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
4954
5385
|
return de_CommandError(output, context);
|
|
@@ -5299,6 +5730,7 @@ var de_GetDomainCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
5299
5730
|
lastUpdatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
5300
5731
|
name: import_smithy_client.expectString,
|
|
5301
5732
|
portalUrl: import_smithy_client.expectString,
|
|
5733
|
+
rootDomainUnitId: import_smithy_client.expectString,
|
|
5302
5734
|
singleSignOn: import_smithy_client._json,
|
|
5303
5735
|
status: import_smithy_client.expectString,
|
|
5304
5736
|
tags: import_smithy_client._json
|
|
@@ -5306,6 +5738,29 @@ var de_GetDomainCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
5306
5738
|
Object.assign(contents, doc);
|
|
5307
5739
|
return contents;
|
|
5308
5740
|
}, "de_GetDomainCommand");
|
|
5741
|
+
var de_GetDomainUnitCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5742
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5743
|
+
return de_CommandError(output, context);
|
|
5744
|
+
}
|
|
5745
|
+
const contents = (0, import_smithy_client.map)({
|
|
5746
|
+
$metadata: deserializeMetadata(output)
|
|
5747
|
+
});
|
|
5748
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
5749
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
5750
|
+
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
5751
|
+
createdBy: import_smithy_client.expectString,
|
|
5752
|
+
description: import_smithy_client.expectString,
|
|
5753
|
+
domainId: import_smithy_client.expectString,
|
|
5754
|
+
id: import_smithy_client.expectString,
|
|
5755
|
+
lastUpdatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
5756
|
+
lastUpdatedBy: import_smithy_client.expectString,
|
|
5757
|
+
name: import_smithy_client.expectString,
|
|
5758
|
+
owners: import_smithy_client._json,
|
|
5759
|
+
parentDomainUnitId: import_smithy_client.expectString
|
|
5760
|
+
});
|
|
5761
|
+
Object.assign(contents, doc);
|
|
5762
|
+
return contents;
|
|
5763
|
+
}, "de_GetDomainUnitCommand");
|
|
5309
5764
|
var de_GetEnvironmentCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5310
5765
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5311
5766
|
return de_CommandError(output, context);
|
|
@@ -5637,6 +6092,7 @@ var de_GetProjectCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
5637
6092
|
createdBy: import_smithy_client.expectString,
|
|
5638
6093
|
description: import_smithy_client.expectString,
|
|
5639
6094
|
domainId: import_smithy_client.expectString,
|
|
6095
|
+
domainUnitId: import_smithy_client.expectString,
|
|
5640
6096
|
failureReasons: import_smithy_client._json,
|
|
5641
6097
|
glossaryTerms: import_smithy_client._json,
|
|
5642
6098
|
id: import_smithy_client.expectString,
|
|
@@ -5889,6 +6345,36 @@ var de_ListDomainsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
5889
6345
|
Object.assign(contents, doc);
|
|
5890
6346
|
return contents;
|
|
5891
6347
|
}, "de_ListDomainsCommand");
|
|
6348
|
+
var de_ListDomainUnitsForParentCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6349
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6350
|
+
return de_CommandError(output, context);
|
|
6351
|
+
}
|
|
6352
|
+
const contents = (0, import_smithy_client.map)({
|
|
6353
|
+
$metadata: deserializeMetadata(output)
|
|
6354
|
+
});
|
|
6355
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
6356
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
6357
|
+
items: import_smithy_client._json,
|
|
6358
|
+
nextToken: import_smithy_client.expectString
|
|
6359
|
+
});
|
|
6360
|
+
Object.assign(contents, doc);
|
|
6361
|
+
return contents;
|
|
6362
|
+
}, "de_ListDomainUnitsForParentCommand");
|
|
6363
|
+
var de_ListEntityOwnersCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6364
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6365
|
+
return de_CommandError(output, context);
|
|
6366
|
+
}
|
|
6367
|
+
const contents = (0, import_smithy_client.map)({
|
|
6368
|
+
$metadata: deserializeMetadata(output)
|
|
6369
|
+
});
|
|
6370
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
6371
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
6372
|
+
nextToken: import_smithy_client.expectString,
|
|
6373
|
+
owners: import_smithy_client._json
|
|
6374
|
+
});
|
|
6375
|
+
Object.assign(contents, doc);
|
|
6376
|
+
return contents;
|
|
6377
|
+
}, "de_ListEntityOwnersCommand");
|
|
5892
6378
|
var de_ListEnvironmentActionsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5893
6379
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5894
6380
|
return de_CommandError(output, context);
|
|
@@ -6009,6 +6495,21 @@ var de_ListNotificationsCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
6009
6495
|
Object.assign(contents, doc);
|
|
6010
6496
|
return contents;
|
|
6011
6497
|
}, "de_ListNotificationsCommand");
|
|
6498
|
+
var de_ListPolicyGrantsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6499
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6500
|
+
return de_CommandError(output, context);
|
|
6501
|
+
}
|
|
6502
|
+
const contents = (0, import_smithy_client.map)({
|
|
6503
|
+
$metadata: deserializeMetadata(output)
|
|
6504
|
+
});
|
|
6505
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
6506
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
6507
|
+
grantList: (_) => de_PolicyGrantList(_, context),
|
|
6508
|
+
nextToken: import_smithy_client.expectString
|
|
6509
|
+
});
|
|
6510
|
+
Object.assign(contents, doc);
|
|
6511
|
+
return contents;
|
|
6512
|
+
}, "de_ListPolicyGrantsCommand");
|
|
6012
6513
|
var de_ListProjectMembershipsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6013
6514
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6014
6515
|
return de_CommandError(output, context);
|
|
@@ -6218,6 +6719,26 @@ var de_RejectSubscriptionRequestCommand = /* @__PURE__ */ __name(async (output,
|
|
|
6218
6719
|
Object.assign(contents, doc);
|
|
6219
6720
|
return contents;
|
|
6220
6721
|
}, "de_RejectSubscriptionRequestCommand");
|
|
6722
|
+
var de_RemoveEntityOwnerCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6723
|
+
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
6724
|
+
return de_CommandError(output, context);
|
|
6725
|
+
}
|
|
6726
|
+
const contents = (0, import_smithy_client.map)({
|
|
6727
|
+
$metadata: deserializeMetadata(output)
|
|
6728
|
+
});
|
|
6729
|
+
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
6730
|
+
return contents;
|
|
6731
|
+
}, "de_RemoveEntityOwnerCommand");
|
|
6732
|
+
var de_RemovePolicyGrantCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6733
|
+
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
6734
|
+
return de_CommandError(output, context);
|
|
6735
|
+
}
|
|
6736
|
+
const contents = (0, import_smithy_client.map)({
|
|
6737
|
+
$metadata: deserializeMetadata(output)
|
|
6738
|
+
});
|
|
6739
|
+
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
6740
|
+
return contents;
|
|
6741
|
+
}, "de_RemovePolicyGrantCommand");
|
|
6221
6742
|
var de_RevokeSubscriptionCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6222
6743
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6223
6744
|
return de_CommandError(output, context);
|
|
@@ -6459,11 +6980,35 @@ var de_UpdateDomainCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
6459
6980
|
id: import_smithy_client.expectString,
|
|
6460
6981
|
lastUpdatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
6461
6982
|
name: import_smithy_client.expectString,
|
|
6983
|
+
rootDomainUnitId: import_smithy_client.expectString,
|
|
6462
6984
|
singleSignOn: import_smithy_client._json
|
|
6463
6985
|
});
|
|
6464
6986
|
Object.assign(contents, doc);
|
|
6465
6987
|
return contents;
|
|
6466
6988
|
}, "de_UpdateDomainCommand");
|
|
6989
|
+
var de_UpdateDomainUnitCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6990
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6991
|
+
return de_CommandError(output, context);
|
|
6992
|
+
}
|
|
6993
|
+
const contents = (0, import_smithy_client.map)({
|
|
6994
|
+
$metadata: deserializeMetadata(output)
|
|
6995
|
+
});
|
|
6996
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
6997
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
6998
|
+
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
6999
|
+
createdBy: import_smithy_client.expectString,
|
|
7000
|
+
description: import_smithy_client.expectString,
|
|
7001
|
+
domainId: import_smithy_client.expectString,
|
|
7002
|
+
id: import_smithy_client.expectString,
|
|
7003
|
+
lastUpdatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
7004
|
+
lastUpdatedBy: import_smithy_client.expectString,
|
|
7005
|
+
name: import_smithy_client.expectString,
|
|
7006
|
+
owners: import_smithy_client._json,
|
|
7007
|
+
parentDomainUnitId: import_smithy_client.expectString
|
|
7008
|
+
});
|
|
7009
|
+
Object.assign(contents, doc);
|
|
7010
|
+
return contents;
|
|
7011
|
+
}, "de_UpdateDomainUnitCommand");
|
|
6467
7012
|
var de_UpdateEnvironmentCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6468
7013
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6469
7014
|
return de_CommandError(output, context);
|
|
@@ -6612,6 +7157,7 @@ var de_UpdateProjectCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
6612
7157
|
createdBy: import_smithy_client.expectString,
|
|
6613
7158
|
description: import_smithy_client.expectString,
|
|
6614
7159
|
domainId: import_smithy_client.expectString,
|
|
7160
|
+
domainUnitId: import_smithy_client.expectString,
|
|
6615
7161
|
failureReasons: import_smithy_client._json,
|
|
6616
7162
|
glossaryTerms: import_smithy_client._json,
|
|
6617
7163
|
id: import_smithy_client.expectString,
|
|
@@ -7417,6 +7963,20 @@ var de_NotificationsList = /* @__PURE__ */ __name((output, context) => {
|
|
|
7417
7963
|
});
|
|
7418
7964
|
return retVal;
|
|
7419
7965
|
}, "de_NotificationsList");
|
|
7966
|
+
var de_PolicyGrantList = /* @__PURE__ */ __name((output, context) => {
|
|
7967
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
7968
|
+
return de_PolicyGrantMember(entry, context);
|
|
7969
|
+
});
|
|
7970
|
+
return retVal;
|
|
7971
|
+
}, "de_PolicyGrantList");
|
|
7972
|
+
var de_PolicyGrantMember = /* @__PURE__ */ __name((output, context) => {
|
|
7973
|
+
return (0, import_smithy_client.take)(output, {
|
|
7974
|
+
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
7975
|
+
createdBy: import_smithy_client.expectString,
|
|
7976
|
+
detail: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
7977
|
+
principal: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_))
|
|
7978
|
+
});
|
|
7979
|
+
}, "de_PolicyGrantMember");
|
|
7420
7980
|
var de_ProjectSummaries = /* @__PURE__ */ __name((output, context) => {
|
|
7421
7981
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
7422
7982
|
return de_ProjectSummary(entry, context);
|
|
@@ -7429,6 +7989,7 @@ var de_ProjectSummary = /* @__PURE__ */ __name((output, context) => {
|
|
|
7429
7989
|
createdBy: import_smithy_client.expectString,
|
|
7430
7990
|
description: import_smithy_client.expectString,
|
|
7431
7991
|
domainId: import_smithy_client.expectString,
|
|
7992
|
+
domainUnitId: import_smithy_client.expectString,
|
|
7432
7993
|
failureReasons: import_smithy_client._json,
|
|
7433
7994
|
id: import_smithy_client.expectString,
|
|
7434
7995
|
name: import_smithy_client.expectString,
|
|
@@ -7706,7 +8267,9 @@ var _n = "name";
|
|
|
7706
8267
|
var _nT = "nextToken";
|
|
7707
8268
|
var _oPI = "owningProjectId";
|
|
7708
8269
|
var _p = "provider";
|
|
8270
|
+
var _pDUI = "parentDomainUnitIdentifier";
|
|
7709
8271
|
var _pI = "projectIdentifier";
|
|
8272
|
+
var _pT = "policyType";
|
|
7710
8273
|
var _r = "revision";
|
|
7711
8274
|
var _rPORF = "retainPermissionsOnRevokeFailure";
|
|
7712
8275
|
var _s = "status";
|
|
@@ -7756,6 +8319,38 @@ var _AcceptSubscriptionRequestCommand = class _AcceptSubscriptionRequestCommand
|
|
|
7756
8319
|
__name(_AcceptSubscriptionRequestCommand, "AcceptSubscriptionRequestCommand");
|
|
7757
8320
|
var AcceptSubscriptionRequestCommand = _AcceptSubscriptionRequestCommand;
|
|
7758
8321
|
|
|
8322
|
+
// src/commands/AddEntityOwnerCommand.ts
|
|
8323
|
+
|
|
8324
|
+
|
|
8325
|
+
|
|
8326
|
+
var _AddEntityOwnerCommand = class _AddEntityOwnerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
8327
|
+
...commonParams
|
|
8328
|
+
}).m(function(Command, cs, config, o) {
|
|
8329
|
+
return [
|
|
8330
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8331
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8332
|
+
];
|
|
8333
|
+
}).s("DataZone", "AddEntityOwner", {}).n("DataZoneClient", "AddEntityOwnerCommand").f(void 0, void 0).ser(se_AddEntityOwnerCommand).de(de_AddEntityOwnerCommand).build() {
|
|
8334
|
+
};
|
|
8335
|
+
__name(_AddEntityOwnerCommand, "AddEntityOwnerCommand");
|
|
8336
|
+
var AddEntityOwnerCommand = _AddEntityOwnerCommand;
|
|
8337
|
+
|
|
8338
|
+
// src/commands/AddPolicyGrantCommand.ts
|
|
8339
|
+
|
|
8340
|
+
|
|
8341
|
+
|
|
8342
|
+
var _AddPolicyGrantCommand = class _AddPolicyGrantCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
8343
|
+
...commonParams
|
|
8344
|
+
}).m(function(Command, cs, config, o) {
|
|
8345
|
+
return [
|
|
8346
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8347
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8348
|
+
];
|
|
8349
|
+
}).s("DataZone", "AddPolicyGrant", {}).n("DataZoneClient", "AddPolicyGrantCommand").f(void 0, void 0).ser(se_AddPolicyGrantCommand).de(de_AddPolicyGrantCommand).build() {
|
|
8350
|
+
};
|
|
8351
|
+
__name(_AddPolicyGrantCommand, "AddPolicyGrantCommand");
|
|
8352
|
+
var AddPolicyGrantCommand = _AddPolicyGrantCommand;
|
|
8353
|
+
|
|
7759
8354
|
// src/commands/AssociateEnvironmentRoleCommand.ts
|
|
7760
8355
|
|
|
7761
8356
|
|
|
@@ -7932,6 +8527,22 @@ var _CreateDomainCommand = class _CreateDomainCommand extends import_smithy_clie
|
|
|
7932
8527
|
__name(_CreateDomainCommand, "CreateDomainCommand");
|
|
7933
8528
|
var CreateDomainCommand = _CreateDomainCommand;
|
|
7934
8529
|
|
|
8530
|
+
// src/commands/CreateDomainUnitCommand.ts
|
|
8531
|
+
|
|
8532
|
+
|
|
8533
|
+
|
|
8534
|
+
var _CreateDomainUnitCommand = class _CreateDomainUnitCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
8535
|
+
...commonParams
|
|
8536
|
+
}).m(function(Command, cs, config, o) {
|
|
8537
|
+
return [
|
|
8538
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8539
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8540
|
+
];
|
|
8541
|
+
}).s("DataZone", "CreateDomainUnit", {}).n("DataZoneClient", "CreateDomainUnitCommand").f(CreateDomainUnitInputFilterSensitiveLog, CreateDomainUnitOutputFilterSensitiveLog).ser(se_CreateDomainUnitCommand).de(de_CreateDomainUnitCommand).build() {
|
|
8542
|
+
};
|
|
8543
|
+
__name(_CreateDomainUnitCommand, "CreateDomainUnitCommand");
|
|
8544
|
+
var CreateDomainUnitCommand = _CreateDomainUnitCommand;
|
|
8545
|
+
|
|
7935
8546
|
// src/commands/CreateEnvironmentActionCommand.ts
|
|
7936
8547
|
|
|
7937
8548
|
|
|
@@ -8252,6 +8863,22 @@ var _DeleteDomainCommand = class _DeleteDomainCommand extends import_smithy_clie
|
|
|
8252
8863
|
__name(_DeleteDomainCommand, "DeleteDomainCommand");
|
|
8253
8864
|
var DeleteDomainCommand = _DeleteDomainCommand;
|
|
8254
8865
|
|
|
8866
|
+
// src/commands/DeleteDomainUnitCommand.ts
|
|
8867
|
+
|
|
8868
|
+
|
|
8869
|
+
|
|
8870
|
+
var _DeleteDomainUnitCommand = class _DeleteDomainUnitCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
8871
|
+
...commonParams
|
|
8872
|
+
}).m(function(Command, cs, config, o) {
|
|
8873
|
+
return [
|
|
8874
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8875
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8876
|
+
];
|
|
8877
|
+
}).s("DataZone", "DeleteDomainUnit", {}).n("DataZoneClient", "DeleteDomainUnitCommand").f(void 0, void 0).ser(se_DeleteDomainUnitCommand).de(de_DeleteDomainUnitCommand).build() {
|
|
8878
|
+
};
|
|
8879
|
+
__name(_DeleteDomainUnitCommand, "DeleteDomainUnitCommand");
|
|
8880
|
+
var DeleteDomainUnitCommand = _DeleteDomainUnitCommand;
|
|
8881
|
+
|
|
8255
8882
|
// src/commands/DeleteEnvironmentActionCommand.ts
|
|
8256
8883
|
|
|
8257
8884
|
|
|
@@ -8604,6 +9231,22 @@ var _GetDomainCommand = class _GetDomainCommand extends import_smithy_client.Com
|
|
|
8604
9231
|
__name(_GetDomainCommand, "GetDomainCommand");
|
|
8605
9232
|
var GetDomainCommand = _GetDomainCommand;
|
|
8606
9233
|
|
|
9234
|
+
// src/commands/GetDomainUnitCommand.ts
|
|
9235
|
+
|
|
9236
|
+
|
|
9237
|
+
|
|
9238
|
+
var _GetDomainUnitCommand = class _GetDomainUnitCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
9239
|
+
...commonParams
|
|
9240
|
+
}).m(function(Command, cs, config, o) {
|
|
9241
|
+
return [
|
|
9242
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
9243
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
9244
|
+
];
|
|
9245
|
+
}).s("DataZone", "GetDomainUnit", {}).n("DataZoneClient", "GetDomainUnitCommand").f(void 0, GetDomainUnitOutputFilterSensitiveLog).ser(se_GetDomainUnitCommand).de(de_GetDomainUnitCommand).build() {
|
|
9246
|
+
};
|
|
9247
|
+
__name(_GetDomainUnitCommand, "GetDomainUnitCommand");
|
|
9248
|
+
var GetDomainUnitCommand = _GetDomainUnitCommand;
|
|
9249
|
+
|
|
8607
9250
|
// src/commands/GetEnvironmentActionCommand.ts
|
|
8608
9251
|
|
|
8609
9252
|
|
|
@@ -9052,6 +9695,38 @@ var _ListDomainsCommand = class _ListDomainsCommand extends import_smithy_client
|
|
|
9052
9695
|
__name(_ListDomainsCommand, "ListDomainsCommand");
|
|
9053
9696
|
var ListDomainsCommand = _ListDomainsCommand;
|
|
9054
9697
|
|
|
9698
|
+
// src/commands/ListDomainUnitsForParentCommand.ts
|
|
9699
|
+
|
|
9700
|
+
|
|
9701
|
+
|
|
9702
|
+
var _ListDomainUnitsForParentCommand = class _ListDomainUnitsForParentCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
9703
|
+
...commonParams
|
|
9704
|
+
}).m(function(Command, cs, config, o) {
|
|
9705
|
+
return [
|
|
9706
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
9707
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
9708
|
+
];
|
|
9709
|
+
}).s("DataZone", "ListDomainUnitsForParent", {}).n("DataZoneClient", "ListDomainUnitsForParentCommand").f(void 0, void 0).ser(se_ListDomainUnitsForParentCommand).de(de_ListDomainUnitsForParentCommand).build() {
|
|
9710
|
+
};
|
|
9711
|
+
__name(_ListDomainUnitsForParentCommand, "ListDomainUnitsForParentCommand");
|
|
9712
|
+
var ListDomainUnitsForParentCommand = _ListDomainUnitsForParentCommand;
|
|
9713
|
+
|
|
9714
|
+
// src/commands/ListEntityOwnersCommand.ts
|
|
9715
|
+
|
|
9716
|
+
|
|
9717
|
+
|
|
9718
|
+
var _ListEntityOwnersCommand = class _ListEntityOwnersCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
9719
|
+
...commonParams
|
|
9720
|
+
}).m(function(Command, cs, config, o) {
|
|
9721
|
+
return [
|
|
9722
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
9723
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
9724
|
+
];
|
|
9725
|
+
}).s("DataZone", "ListEntityOwners", {}).n("DataZoneClient", "ListEntityOwnersCommand").f(void 0, void 0).ser(se_ListEntityOwnersCommand).de(de_ListEntityOwnersCommand).build() {
|
|
9726
|
+
};
|
|
9727
|
+
__name(_ListEntityOwnersCommand, "ListEntityOwnersCommand");
|
|
9728
|
+
var ListEntityOwnersCommand = _ListEntityOwnersCommand;
|
|
9729
|
+
|
|
9055
9730
|
// src/commands/ListEnvironmentActionsCommand.ts
|
|
9056
9731
|
|
|
9057
9732
|
|
|
@@ -9180,6 +9855,22 @@ var _ListNotificationsCommand = class _ListNotificationsCommand extends import_s
|
|
|
9180
9855
|
__name(_ListNotificationsCommand, "ListNotificationsCommand");
|
|
9181
9856
|
var ListNotificationsCommand = _ListNotificationsCommand;
|
|
9182
9857
|
|
|
9858
|
+
// src/commands/ListPolicyGrantsCommand.ts
|
|
9859
|
+
|
|
9860
|
+
|
|
9861
|
+
|
|
9862
|
+
var _ListPolicyGrantsCommand = class _ListPolicyGrantsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
9863
|
+
...commonParams
|
|
9864
|
+
}).m(function(Command, cs, config, o) {
|
|
9865
|
+
return [
|
|
9866
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
9867
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
9868
|
+
];
|
|
9869
|
+
}).s("DataZone", "ListPolicyGrants", {}).n("DataZoneClient", "ListPolicyGrantsCommand").f(void 0, void 0).ser(se_ListPolicyGrantsCommand).de(de_ListPolicyGrantsCommand).build() {
|
|
9870
|
+
};
|
|
9871
|
+
__name(_ListPolicyGrantsCommand, "ListPolicyGrantsCommand");
|
|
9872
|
+
var ListPolicyGrantsCommand = _ListPolicyGrantsCommand;
|
|
9873
|
+
|
|
9183
9874
|
// src/commands/ListProjectMembershipsCommand.ts
|
|
9184
9875
|
|
|
9185
9876
|
|
|
@@ -9388,6 +10079,38 @@ var _RejectSubscriptionRequestCommand = class _RejectSubscriptionRequestCommand
|
|
|
9388
10079
|
__name(_RejectSubscriptionRequestCommand, "RejectSubscriptionRequestCommand");
|
|
9389
10080
|
var RejectSubscriptionRequestCommand = _RejectSubscriptionRequestCommand;
|
|
9390
10081
|
|
|
10082
|
+
// src/commands/RemoveEntityOwnerCommand.ts
|
|
10083
|
+
|
|
10084
|
+
|
|
10085
|
+
|
|
10086
|
+
var _RemoveEntityOwnerCommand = class _RemoveEntityOwnerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
10087
|
+
...commonParams
|
|
10088
|
+
}).m(function(Command, cs, config, o) {
|
|
10089
|
+
return [
|
|
10090
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10091
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10092
|
+
];
|
|
10093
|
+
}).s("DataZone", "RemoveEntityOwner", {}).n("DataZoneClient", "RemoveEntityOwnerCommand").f(void 0, void 0).ser(se_RemoveEntityOwnerCommand).de(de_RemoveEntityOwnerCommand).build() {
|
|
10094
|
+
};
|
|
10095
|
+
__name(_RemoveEntityOwnerCommand, "RemoveEntityOwnerCommand");
|
|
10096
|
+
var RemoveEntityOwnerCommand = _RemoveEntityOwnerCommand;
|
|
10097
|
+
|
|
10098
|
+
// src/commands/RemovePolicyGrantCommand.ts
|
|
10099
|
+
|
|
10100
|
+
|
|
10101
|
+
|
|
10102
|
+
var _RemovePolicyGrantCommand = class _RemovePolicyGrantCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
10103
|
+
...commonParams
|
|
10104
|
+
}).m(function(Command, cs, config, o) {
|
|
10105
|
+
return [
|
|
10106
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10107
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10108
|
+
];
|
|
10109
|
+
}).s("DataZone", "RemovePolicyGrant", {}).n("DataZoneClient", "RemovePolicyGrantCommand").f(void 0, void 0).ser(se_RemovePolicyGrantCommand).de(de_RemovePolicyGrantCommand).build() {
|
|
10110
|
+
};
|
|
10111
|
+
__name(_RemovePolicyGrantCommand, "RemovePolicyGrantCommand");
|
|
10112
|
+
var RemovePolicyGrantCommand = _RemovePolicyGrantCommand;
|
|
10113
|
+
|
|
9391
10114
|
// src/commands/RevokeSubscriptionCommand.ts
|
|
9392
10115
|
|
|
9393
10116
|
|
|
@@ -9596,6 +10319,22 @@ var _UpdateDomainCommand = class _UpdateDomainCommand extends import_smithy_clie
|
|
|
9596
10319
|
__name(_UpdateDomainCommand, "UpdateDomainCommand");
|
|
9597
10320
|
var UpdateDomainCommand = _UpdateDomainCommand;
|
|
9598
10321
|
|
|
10322
|
+
// src/commands/UpdateDomainUnitCommand.ts
|
|
10323
|
+
|
|
10324
|
+
|
|
10325
|
+
|
|
10326
|
+
var _UpdateDomainUnitCommand = class _UpdateDomainUnitCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
10327
|
+
...commonParams
|
|
10328
|
+
}).m(function(Command, cs, config, o) {
|
|
10329
|
+
return [
|
|
10330
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10331
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10332
|
+
];
|
|
10333
|
+
}).s("DataZone", "UpdateDomainUnit", {}).n("DataZoneClient", "UpdateDomainUnitCommand").f(UpdateDomainUnitInputFilterSensitiveLog, UpdateDomainUnitOutputFilterSensitiveLog).ser(se_UpdateDomainUnitCommand).de(de_UpdateDomainUnitCommand).build() {
|
|
10334
|
+
};
|
|
10335
|
+
__name(_UpdateDomainUnitCommand, "UpdateDomainUnitCommand");
|
|
10336
|
+
var UpdateDomainUnitCommand = _UpdateDomainUnitCommand;
|
|
10337
|
+
|
|
9599
10338
|
// src/commands/UpdateEnvironmentActionCommand.ts
|
|
9600
10339
|
|
|
9601
10340
|
|
|
@@ -9776,6 +10515,8 @@ var UpdateUserProfileCommand = _UpdateUserProfileCommand;
|
|
|
9776
10515
|
var commands = {
|
|
9777
10516
|
AcceptPredictionsCommand,
|
|
9778
10517
|
AcceptSubscriptionRequestCommand,
|
|
10518
|
+
AddEntityOwnerCommand,
|
|
10519
|
+
AddPolicyGrantCommand,
|
|
9779
10520
|
AssociateEnvironmentRoleCommand,
|
|
9780
10521
|
CancelMetadataGenerationRunCommand,
|
|
9781
10522
|
CancelSubscriptionCommand,
|
|
@@ -9787,6 +10528,7 @@ var commands = {
|
|
|
9787
10528
|
CreateDataProductRevisionCommand,
|
|
9788
10529
|
CreateDataSourceCommand,
|
|
9789
10530
|
CreateDomainCommand,
|
|
10531
|
+
CreateDomainUnitCommand,
|
|
9790
10532
|
CreateEnvironmentCommand,
|
|
9791
10533
|
CreateEnvironmentActionCommand,
|
|
9792
10534
|
CreateEnvironmentProfileCommand,
|
|
@@ -9807,6 +10549,7 @@ var commands = {
|
|
|
9807
10549
|
DeleteDataProductCommand,
|
|
9808
10550
|
DeleteDataSourceCommand,
|
|
9809
10551
|
DeleteDomainCommand,
|
|
10552
|
+
DeleteDomainUnitCommand,
|
|
9810
10553
|
DeleteEnvironmentCommand,
|
|
9811
10554
|
DeleteEnvironmentActionCommand,
|
|
9812
10555
|
DeleteEnvironmentBlueprintConfigurationCommand,
|
|
@@ -9829,6 +10572,7 @@ var commands = {
|
|
|
9829
10572
|
GetDataSourceCommand,
|
|
9830
10573
|
GetDataSourceRunCommand,
|
|
9831
10574
|
GetDomainCommand,
|
|
10575
|
+
GetDomainUnitCommand,
|
|
9832
10576
|
GetEnvironmentCommand,
|
|
9833
10577
|
GetEnvironmentActionCommand,
|
|
9834
10578
|
GetEnvironmentBlueprintCommand,
|
|
@@ -9857,6 +10601,8 @@ var commands = {
|
|
|
9857
10601
|
ListDataSourceRunsCommand,
|
|
9858
10602
|
ListDataSourcesCommand,
|
|
9859
10603
|
ListDomainsCommand,
|
|
10604
|
+
ListDomainUnitsForParentCommand,
|
|
10605
|
+
ListEntityOwnersCommand,
|
|
9860
10606
|
ListEnvironmentActionsCommand,
|
|
9861
10607
|
ListEnvironmentBlueprintConfigurationsCommand,
|
|
9862
10608
|
ListEnvironmentBlueprintsCommand,
|
|
@@ -9865,6 +10611,7 @@ var commands = {
|
|
|
9865
10611
|
ListLineageNodeHistoryCommand,
|
|
9866
10612
|
ListMetadataGenerationRunsCommand,
|
|
9867
10613
|
ListNotificationsCommand,
|
|
10614
|
+
ListPolicyGrantsCommand,
|
|
9868
10615
|
ListProjectMembershipsCommand,
|
|
9869
10616
|
ListProjectsCommand,
|
|
9870
10617
|
ListSubscriptionGrantsCommand,
|
|
@@ -9878,6 +10625,8 @@ var commands = {
|
|
|
9878
10625
|
PutEnvironmentBlueprintConfigurationCommand,
|
|
9879
10626
|
RejectPredictionsCommand,
|
|
9880
10627
|
RejectSubscriptionRequestCommand,
|
|
10628
|
+
RemoveEntityOwnerCommand,
|
|
10629
|
+
RemovePolicyGrantCommand,
|
|
9881
10630
|
RevokeSubscriptionCommand,
|
|
9882
10631
|
SearchCommand,
|
|
9883
10632
|
SearchGroupProfilesCommand,
|
|
@@ -9891,6 +10640,7 @@ var commands = {
|
|
|
9891
10640
|
UpdateAssetFilterCommand,
|
|
9892
10641
|
UpdateDataSourceCommand,
|
|
9893
10642
|
UpdateDomainCommand,
|
|
10643
|
+
UpdateDomainUnitCommand,
|
|
9894
10644
|
UpdateEnvironmentCommand,
|
|
9895
10645
|
UpdateEnvironmentActionCommand,
|
|
9896
10646
|
UpdateEnvironmentProfileCommand,
|
|
@@ -9933,10 +10683,18 @@ var paginateListDataSourceRuns = (0, import_core.createPaginator)(DataZoneClient
|
|
|
9933
10683
|
|
|
9934
10684
|
var paginateListDataSources = (0, import_core.createPaginator)(DataZoneClient, ListDataSourcesCommand, "nextToken", "nextToken", "maxResults");
|
|
9935
10685
|
|
|
10686
|
+
// src/pagination/ListDomainUnitsForParentPaginator.ts
|
|
10687
|
+
|
|
10688
|
+
var paginateListDomainUnitsForParent = (0, import_core.createPaginator)(DataZoneClient, ListDomainUnitsForParentCommand, "nextToken", "nextToken", "maxResults");
|
|
10689
|
+
|
|
9936
10690
|
// src/pagination/ListDomainsPaginator.ts
|
|
9937
10691
|
|
|
9938
10692
|
var paginateListDomains = (0, import_core.createPaginator)(DataZoneClient, ListDomainsCommand, "nextToken", "nextToken", "maxResults");
|
|
9939
10693
|
|
|
10694
|
+
// src/pagination/ListEntityOwnersPaginator.ts
|
|
10695
|
+
|
|
10696
|
+
var paginateListEntityOwners = (0, import_core.createPaginator)(DataZoneClient, ListEntityOwnersCommand, "nextToken", "nextToken", "maxResults");
|
|
10697
|
+
|
|
9940
10698
|
// src/pagination/ListEnvironmentActionsPaginator.ts
|
|
9941
10699
|
|
|
9942
10700
|
var paginateListEnvironmentActions = (0, import_core.createPaginator)(DataZoneClient, ListEnvironmentActionsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -9969,6 +10727,10 @@ var paginateListMetadataGenerationRuns = (0, import_core.createPaginator)(DataZo
|
|
|
9969
10727
|
|
|
9970
10728
|
var paginateListNotifications = (0, import_core.createPaginator)(DataZoneClient, ListNotificationsCommand, "nextToken", "nextToken", "maxResults");
|
|
9971
10729
|
|
|
10730
|
+
// src/pagination/ListPolicyGrantsPaginator.ts
|
|
10731
|
+
|
|
10732
|
+
var paginateListPolicyGrants = (0, import_core.createPaginator)(DataZoneClient, ListPolicyGrantsCommand, "nextToken", "nextToken", "maxResults");
|
|
10733
|
+
|
|
9972
10734
|
// src/pagination/ListProjectMembershipsPaginator.ts
|
|
9973
10735
|
|
|
9974
10736
|
var paginateListProjectMemberships = (0, import_core.createPaginator)(DataZoneClient, ListProjectMembershipsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -10026,6 +10788,8 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
10026
10788
|
$Command,
|
|
10027
10789
|
AcceptPredictionsCommand,
|
|
10028
10790
|
AcceptSubscriptionRequestCommand,
|
|
10791
|
+
AddEntityOwnerCommand,
|
|
10792
|
+
AddPolicyGrantCommand,
|
|
10029
10793
|
AssociateEnvironmentRoleCommand,
|
|
10030
10794
|
CancelMetadataGenerationRunCommand,
|
|
10031
10795
|
CancelSubscriptionCommand,
|
|
@@ -10037,6 +10801,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
10037
10801
|
CreateDataProductRevisionCommand,
|
|
10038
10802
|
CreateDataSourceCommand,
|
|
10039
10803
|
CreateDomainCommand,
|
|
10804
|
+
CreateDomainUnitCommand,
|
|
10040
10805
|
CreateEnvironmentActionCommand,
|
|
10041
10806
|
CreateEnvironmentCommand,
|
|
10042
10807
|
CreateEnvironmentProfileCommand,
|
|
@@ -10057,6 +10822,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
10057
10822
|
DeleteDataProductCommand,
|
|
10058
10823
|
DeleteDataSourceCommand,
|
|
10059
10824
|
DeleteDomainCommand,
|
|
10825
|
+
DeleteDomainUnitCommand,
|
|
10060
10826
|
DeleteEnvironmentActionCommand,
|
|
10061
10827
|
DeleteEnvironmentBlueprintConfigurationCommand,
|
|
10062
10828
|
DeleteEnvironmentCommand,
|
|
@@ -10079,6 +10845,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
10079
10845
|
GetDataSourceCommand,
|
|
10080
10846
|
GetDataSourceRunCommand,
|
|
10081
10847
|
GetDomainCommand,
|
|
10848
|
+
GetDomainUnitCommand,
|
|
10082
10849
|
GetEnvironmentActionCommand,
|
|
10083
10850
|
GetEnvironmentBlueprintCommand,
|
|
10084
10851
|
GetEnvironmentBlueprintConfigurationCommand,
|
|
@@ -10106,7 +10873,9 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
10106
10873
|
ListDataSourceRunActivitiesCommand,
|
|
10107
10874
|
ListDataSourceRunsCommand,
|
|
10108
10875
|
ListDataSourcesCommand,
|
|
10876
|
+
ListDomainUnitsForParentCommand,
|
|
10109
10877
|
ListDomainsCommand,
|
|
10878
|
+
ListEntityOwnersCommand,
|
|
10110
10879
|
ListEnvironmentActionsCommand,
|
|
10111
10880
|
ListEnvironmentBlueprintConfigurationsCommand,
|
|
10112
10881
|
ListEnvironmentBlueprintsCommand,
|
|
@@ -10115,6 +10884,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
10115
10884
|
ListLineageNodeHistoryCommand,
|
|
10116
10885
|
ListMetadataGenerationRunsCommand,
|
|
10117
10886
|
ListNotificationsCommand,
|
|
10887
|
+
ListPolicyGrantsCommand,
|
|
10118
10888
|
ListProjectMembershipsCommand,
|
|
10119
10889
|
ListProjectsCommand,
|
|
10120
10890
|
ListSubscriptionGrantsCommand,
|
|
@@ -10128,6 +10898,8 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
10128
10898
|
PutEnvironmentBlueprintConfigurationCommand,
|
|
10129
10899
|
RejectPredictionsCommand,
|
|
10130
10900
|
RejectSubscriptionRequestCommand,
|
|
10901
|
+
RemoveEntityOwnerCommand,
|
|
10902
|
+
RemovePolicyGrantCommand,
|
|
10131
10903
|
RevokeSubscriptionCommand,
|
|
10132
10904
|
SearchCommand,
|
|
10133
10905
|
SearchGroupProfilesCommand,
|
|
@@ -10141,6 +10913,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
10141
10913
|
UpdateAssetFilterCommand,
|
|
10142
10914
|
UpdateDataSourceCommand,
|
|
10143
10915
|
UpdateDomainCommand,
|
|
10916
|
+
UpdateDomainUnitCommand,
|
|
10144
10917
|
UpdateEnvironmentActionCommand,
|
|
10145
10918
|
UpdateEnvironmentCommand,
|
|
10146
10919
|
UpdateEnvironmentProfileCommand,
|
|
@@ -10158,7 +10931,9 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
10158
10931
|
paginateListDataSourceRunActivities,
|
|
10159
10932
|
paginateListDataSourceRuns,
|
|
10160
10933
|
paginateListDataSources,
|
|
10934
|
+
paginateListDomainUnitsForParent,
|
|
10161
10935
|
paginateListDomains,
|
|
10936
|
+
paginateListEntityOwners,
|
|
10162
10937
|
paginateListEnvironmentActions,
|
|
10163
10938
|
paginateListEnvironmentBlueprintConfigurations,
|
|
10164
10939
|
paginateListEnvironmentBlueprints,
|
|
@@ -10167,6 +10942,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
10167
10942
|
paginateListLineageNodeHistory,
|
|
10168
10943
|
paginateListMetadataGenerationRuns,
|
|
10169
10944
|
paginateListNotifications,
|
|
10945
|
+
paginateListPolicyGrants,
|
|
10170
10946
|
paginateListProjectMemberships,
|
|
10171
10947
|
paginateListProjects,
|
|
10172
10948
|
paginateListSubscriptionGrants,
|
|
@@ -10191,8 +10967,20 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
10191
10967
|
SubscribedListingItem,
|
|
10192
10968
|
SubscribedPrincipal,
|
|
10193
10969
|
ActionParameters,
|
|
10194
|
-
|
|
10970
|
+
DataZoneEntityType,
|
|
10971
|
+
OwnerProperties,
|
|
10195
10972
|
ServiceQuotaExceededException,
|
|
10973
|
+
PolicyGrantDetail,
|
|
10974
|
+
TargetEntityType,
|
|
10975
|
+
ManagedPolicyType,
|
|
10976
|
+
DomainUnitDesignation,
|
|
10977
|
+
DomainUnitGrantFilter,
|
|
10978
|
+
GroupPolicyGrantPrincipal,
|
|
10979
|
+
ProjectDesignation,
|
|
10980
|
+
ProjectGrantFilter,
|
|
10981
|
+
UserPolicyGrantPrincipal,
|
|
10982
|
+
PolicyGrantPrincipal,
|
|
10983
|
+
ListingStatus,
|
|
10196
10984
|
RowFilterExpression,
|
|
10197
10985
|
FilterStatus,
|
|
10198
10986
|
AuthType,
|
|
@@ -10212,6 +11000,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
10212
11000
|
DataSourceStatus,
|
|
10213
11001
|
UserAssignment,
|
|
10214
11002
|
DomainStatus,
|
|
11003
|
+
DomainUnitOwnerProperties,
|
|
10215
11004
|
DeploymentStatus,
|
|
10216
11005
|
DeploymentType,
|
|
10217
11006
|
ProvisioningProperties,
|
|
@@ -10239,7 +11028,6 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
10239
11028
|
SelfGrantStatusOutput,
|
|
10240
11029
|
DataSourceRunType,
|
|
10241
11030
|
TimeSeriesEntityType,
|
|
10242
|
-
ProvisioningConfiguration,
|
|
10243
11031
|
AcceptChoiceFilterSensitiveLog,
|
|
10244
11032
|
AcceptPredictionsInputFilterSensitiveLog,
|
|
10245
11033
|
AcceptSubscriptionRequestInputFilterSensitiveLog,
|
|
@@ -10276,6 +11064,8 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
10276
11064
|
ScheduleConfigurationFilterSensitiveLog,
|
|
10277
11065
|
CreateDataSourceInputFilterSensitiveLog,
|
|
10278
11066
|
CreateDataSourceOutputFilterSensitiveLog,
|
|
11067
|
+
CreateDomainUnitInputFilterSensitiveLog,
|
|
11068
|
+
CreateDomainUnitOutputFilterSensitiveLog,
|
|
10279
11069
|
CustomParameterFilterSensitiveLog,
|
|
10280
11070
|
CreateEnvironmentOutputFilterSensitiveLog,
|
|
10281
11071
|
CreateEnvironmentProfileInputFilterSensitiveLog,
|
|
@@ -10313,19 +11103,11 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
10313
11103
|
DataSourceRunActivityFilterSensitiveLog,
|
|
10314
11104
|
DomainSummaryFilterSensitiveLog,
|
|
10315
11105
|
ListDomainsOutputFilterSensitiveLog,
|
|
10316
|
-
|
|
10317
|
-
|
|
10318
|
-
|
|
10319
|
-
|
|
10320
|
-
|
|
10321
|
-
GetEnvironmentProfileOutputFilterSensitiveLog,
|
|
10322
|
-
GetGroupProfileOutputFilterSensitiveLog,
|
|
10323
|
-
GetLineageNodeOutputFilterSensitiveLog,
|
|
10324
|
-
GetProjectOutputFilterSensitiveLog,
|
|
10325
|
-
GetSubscriptionOutputFilterSensitiveLog,
|
|
10326
|
-
GetSubscriptionRequestDetailsOutputFilterSensitiveLog,
|
|
10327
|
-
GetSubscriptionTargetOutputFilterSensitiveLog,
|
|
10328
|
-
GetUserProfileOutputFilterSensitiveLog,
|
|
11106
|
+
GetDomainUnitOutputFilterSensitiveLog,
|
|
11107
|
+
UpdateDomainUnitInputFilterSensitiveLog,
|
|
11108
|
+
UpdateDomainUnitOutputFilterSensitiveLog,
|
|
11109
|
+
ProvisioningConfiguration,
|
|
11110
|
+
OwnerPropertiesOutput,
|
|
10329
11111
|
ListingItem,
|
|
10330
11112
|
EdgeDirection,
|
|
10331
11113
|
SortOrder,
|
|
@@ -10351,6 +11133,19 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
10351
11133
|
FilterClause,
|
|
10352
11134
|
RowFilter,
|
|
10353
11135
|
AssetFilterConfiguration,
|
|
11136
|
+
ImportFilterSensitiveLog,
|
|
11137
|
+
GetFormTypeOutputFilterSensitiveLog,
|
|
11138
|
+
GetEnvironmentOutputFilterSensitiveLog,
|
|
11139
|
+
GetEnvironmentBlueprintOutputFilterSensitiveLog,
|
|
11140
|
+
GetEnvironmentCredentialsOutputFilterSensitiveLog,
|
|
11141
|
+
GetEnvironmentProfileOutputFilterSensitiveLog,
|
|
11142
|
+
GetGroupProfileOutputFilterSensitiveLog,
|
|
11143
|
+
GetLineageNodeOutputFilterSensitiveLog,
|
|
11144
|
+
GetProjectOutputFilterSensitiveLog,
|
|
11145
|
+
GetSubscriptionOutputFilterSensitiveLog,
|
|
11146
|
+
GetSubscriptionRequestDetailsOutputFilterSensitiveLog,
|
|
11147
|
+
GetSubscriptionTargetOutputFilterSensitiveLog,
|
|
11148
|
+
GetUserProfileOutputFilterSensitiveLog,
|
|
10354
11149
|
GetGlossaryOutputFilterSensitiveLog,
|
|
10355
11150
|
UpdateGlossaryInputFilterSensitiveLog,
|
|
10356
11151
|
UpdateGlossaryOutputFilterSensitiveLog,
|