@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
|
@@ -53,6 +53,14 @@ import {
|
|
|
53
53
|
AcceptSubscriptionRequestCommandInput,
|
|
54
54
|
AcceptSubscriptionRequestCommandOutput,
|
|
55
55
|
} from "./commands/AcceptSubscriptionRequestCommand";
|
|
56
|
+
import {
|
|
57
|
+
AddEntityOwnerCommandInput,
|
|
58
|
+
AddEntityOwnerCommandOutput,
|
|
59
|
+
} from "./commands/AddEntityOwnerCommand";
|
|
60
|
+
import {
|
|
61
|
+
AddPolicyGrantCommandInput,
|
|
62
|
+
AddPolicyGrantCommandOutput,
|
|
63
|
+
} from "./commands/AddPolicyGrantCommand";
|
|
56
64
|
import {
|
|
57
65
|
AssociateEnvironmentRoleCommandInput,
|
|
58
66
|
AssociateEnvironmentRoleCommandOutput,
|
|
@@ -97,6 +105,10 @@ import {
|
|
|
97
105
|
CreateDomainCommandInput,
|
|
98
106
|
CreateDomainCommandOutput,
|
|
99
107
|
} from "./commands/CreateDomainCommand";
|
|
108
|
+
import {
|
|
109
|
+
CreateDomainUnitCommandInput,
|
|
110
|
+
CreateDomainUnitCommandOutput,
|
|
111
|
+
} from "./commands/CreateDomainUnitCommand";
|
|
100
112
|
import {
|
|
101
113
|
CreateEnvironmentActionCommandInput,
|
|
102
114
|
CreateEnvironmentActionCommandOutput,
|
|
@@ -177,6 +189,10 @@ import {
|
|
|
177
189
|
DeleteDomainCommandInput,
|
|
178
190
|
DeleteDomainCommandOutput,
|
|
179
191
|
} from "./commands/DeleteDomainCommand";
|
|
192
|
+
import {
|
|
193
|
+
DeleteDomainUnitCommandInput,
|
|
194
|
+
DeleteDomainUnitCommandOutput,
|
|
195
|
+
} from "./commands/DeleteDomainUnitCommand";
|
|
180
196
|
import {
|
|
181
197
|
DeleteEnvironmentActionCommandInput,
|
|
182
198
|
DeleteEnvironmentActionCommandOutput,
|
|
@@ -265,6 +281,10 @@ import {
|
|
|
265
281
|
GetDomainCommandInput,
|
|
266
282
|
GetDomainCommandOutput,
|
|
267
283
|
} from "./commands/GetDomainCommand";
|
|
284
|
+
import {
|
|
285
|
+
GetDomainUnitCommandInput,
|
|
286
|
+
GetDomainUnitCommandOutput,
|
|
287
|
+
} from "./commands/GetDomainUnitCommand";
|
|
268
288
|
import {
|
|
269
289
|
GetEnvironmentActionCommandInput,
|
|
270
290
|
GetEnvironmentActionCommandOutput,
|
|
@@ -377,6 +397,14 @@ import {
|
|
|
377
397
|
ListDomainsCommandInput,
|
|
378
398
|
ListDomainsCommandOutput,
|
|
379
399
|
} from "./commands/ListDomainsCommand";
|
|
400
|
+
import {
|
|
401
|
+
ListDomainUnitsForParentCommandInput,
|
|
402
|
+
ListDomainUnitsForParentCommandOutput,
|
|
403
|
+
} from "./commands/ListDomainUnitsForParentCommand";
|
|
404
|
+
import {
|
|
405
|
+
ListEntityOwnersCommandInput,
|
|
406
|
+
ListEntityOwnersCommandOutput,
|
|
407
|
+
} from "./commands/ListEntityOwnersCommand";
|
|
380
408
|
import {
|
|
381
409
|
ListEnvironmentActionsCommandInput,
|
|
382
410
|
ListEnvironmentActionsCommandOutput,
|
|
@@ -409,6 +437,10 @@ import {
|
|
|
409
437
|
ListNotificationsCommandInput,
|
|
410
438
|
ListNotificationsCommandOutput,
|
|
411
439
|
} from "./commands/ListNotificationsCommand";
|
|
440
|
+
import {
|
|
441
|
+
ListPolicyGrantsCommandInput,
|
|
442
|
+
ListPolicyGrantsCommandOutput,
|
|
443
|
+
} from "./commands/ListPolicyGrantsCommand";
|
|
412
444
|
import {
|
|
413
445
|
ListProjectMembershipsCommandInput,
|
|
414
446
|
ListProjectMembershipsCommandOutput,
|
|
@@ -461,6 +493,14 @@ import {
|
|
|
461
493
|
RejectSubscriptionRequestCommandInput,
|
|
462
494
|
RejectSubscriptionRequestCommandOutput,
|
|
463
495
|
} from "./commands/RejectSubscriptionRequestCommand";
|
|
496
|
+
import {
|
|
497
|
+
RemoveEntityOwnerCommandInput,
|
|
498
|
+
RemoveEntityOwnerCommandOutput,
|
|
499
|
+
} from "./commands/RemoveEntityOwnerCommand";
|
|
500
|
+
import {
|
|
501
|
+
RemovePolicyGrantCommandInput,
|
|
502
|
+
RemovePolicyGrantCommandOutput,
|
|
503
|
+
} from "./commands/RemovePolicyGrantCommand";
|
|
464
504
|
import {
|
|
465
505
|
RevokeSubscriptionCommandInput,
|
|
466
506
|
RevokeSubscriptionCommandOutput,
|
|
@@ -513,6 +553,10 @@ import {
|
|
|
513
553
|
UpdateDomainCommandInput,
|
|
514
554
|
UpdateDomainCommandOutput,
|
|
515
555
|
} from "./commands/UpdateDomainCommand";
|
|
556
|
+
import {
|
|
557
|
+
UpdateDomainUnitCommandInput,
|
|
558
|
+
UpdateDomainUnitCommandOutput,
|
|
559
|
+
} from "./commands/UpdateDomainUnitCommand";
|
|
516
560
|
import {
|
|
517
561
|
UpdateEnvironmentActionCommandInput,
|
|
518
562
|
UpdateEnvironmentActionCommandOutput,
|
|
@@ -567,6 +611,8 @@ export { __Client };
|
|
|
567
611
|
export type ServiceInputTypes =
|
|
568
612
|
| AcceptPredictionsCommandInput
|
|
569
613
|
| AcceptSubscriptionRequestCommandInput
|
|
614
|
+
| AddEntityOwnerCommandInput
|
|
615
|
+
| AddPolicyGrantCommandInput
|
|
570
616
|
| AssociateEnvironmentRoleCommandInput
|
|
571
617
|
| CancelMetadataGenerationRunCommandInput
|
|
572
618
|
| CancelSubscriptionCommandInput
|
|
@@ -578,6 +624,7 @@ export type ServiceInputTypes =
|
|
|
578
624
|
| CreateDataProductRevisionCommandInput
|
|
579
625
|
| CreateDataSourceCommandInput
|
|
580
626
|
| CreateDomainCommandInput
|
|
627
|
+
| CreateDomainUnitCommandInput
|
|
581
628
|
| CreateEnvironmentActionCommandInput
|
|
582
629
|
| CreateEnvironmentCommandInput
|
|
583
630
|
| CreateEnvironmentProfileCommandInput
|
|
@@ -598,6 +645,7 @@ export type ServiceInputTypes =
|
|
|
598
645
|
| DeleteDataProductCommandInput
|
|
599
646
|
| DeleteDataSourceCommandInput
|
|
600
647
|
| DeleteDomainCommandInput
|
|
648
|
+
| DeleteDomainUnitCommandInput
|
|
601
649
|
| DeleteEnvironmentActionCommandInput
|
|
602
650
|
| DeleteEnvironmentBlueprintConfigurationCommandInput
|
|
603
651
|
| DeleteEnvironmentCommandInput
|
|
@@ -620,6 +668,7 @@ export type ServiceInputTypes =
|
|
|
620
668
|
| GetDataSourceCommandInput
|
|
621
669
|
| GetDataSourceRunCommandInput
|
|
622
670
|
| GetDomainCommandInput
|
|
671
|
+
| GetDomainUnitCommandInput
|
|
623
672
|
| GetEnvironmentActionCommandInput
|
|
624
673
|
| GetEnvironmentBlueprintCommandInput
|
|
625
674
|
| GetEnvironmentBlueprintConfigurationCommandInput
|
|
@@ -647,7 +696,9 @@ export type ServiceInputTypes =
|
|
|
647
696
|
| ListDataSourceRunActivitiesCommandInput
|
|
648
697
|
| ListDataSourceRunsCommandInput
|
|
649
698
|
| ListDataSourcesCommandInput
|
|
699
|
+
| ListDomainUnitsForParentCommandInput
|
|
650
700
|
| ListDomainsCommandInput
|
|
701
|
+
| ListEntityOwnersCommandInput
|
|
651
702
|
| ListEnvironmentActionsCommandInput
|
|
652
703
|
| ListEnvironmentBlueprintConfigurationsCommandInput
|
|
653
704
|
| ListEnvironmentBlueprintsCommandInput
|
|
@@ -656,6 +707,7 @@ export type ServiceInputTypes =
|
|
|
656
707
|
| ListLineageNodeHistoryCommandInput
|
|
657
708
|
| ListMetadataGenerationRunsCommandInput
|
|
658
709
|
| ListNotificationsCommandInput
|
|
710
|
+
| ListPolicyGrantsCommandInput
|
|
659
711
|
| ListProjectMembershipsCommandInput
|
|
660
712
|
| ListProjectsCommandInput
|
|
661
713
|
| ListSubscriptionGrantsCommandInput
|
|
@@ -669,6 +721,8 @@ export type ServiceInputTypes =
|
|
|
669
721
|
| PutEnvironmentBlueprintConfigurationCommandInput
|
|
670
722
|
| RejectPredictionsCommandInput
|
|
671
723
|
| RejectSubscriptionRequestCommandInput
|
|
724
|
+
| RemoveEntityOwnerCommandInput
|
|
725
|
+
| RemovePolicyGrantCommandInput
|
|
672
726
|
| RevokeSubscriptionCommandInput
|
|
673
727
|
| SearchCommandInput
|
|
674
728
|
| SearchGroupProfilesCommandInput
|
|
@@ -682,6 +736,7 @@ export type ServiceInputTypes =
|
|
|
682
736
|
| UpdateAssetFilterCommandInput
|
|
683
737
|
| UpdateDataSourceCommandInput
|
|
684
738
|
| UpdateDomainCommandInput
|
|
739
|
+
| UpdateDomainUnitCommandInput
|
|
685
740
|
| UpdateEnvironmentActionCommandInput
|
|
686
741
|
| UpdateEnvironmentCommandInput
|
|
687
742
|
| UpdateEnvironmentProfileCommandInput
|
|
@@ -696,6 +751,8 @@ export type ServiceInputTypes =
|
|
|
696
751
|
export type ServiceOutputTypes =
|
|
697
752
|
| AcceptPredictionsCommandOutput
|
|
698
753
|
| AcceptSubscriptionRequestCommandOutput
|
|
754
|
+
| AddEntityOwnerCommandOutput
|
|
755
|
+
| AddPolicyGrantCommandOutput
|
|
699
756
|
| AssociateEnvironmentRoleCommandOutput
|
|
700
757
|
| CancelMetadataGenerationRunCommandOutput
|
|
701
758
|
| CancelSubscriptionCommandOutput
|
|
@@ -707,6 +764,7 @@ export type ServiceOutputTypes =
|
|
|
707
764
|
| CreateDataProductRevisionCommandOutput
|
|
708
765
|
| CreateDataSourceCommandOutput
|
|
709
766
|
| CreateDomainCommandOutput
|
|
767
|
+
| CreateDomainUnitCommandOutput
|
|
710
768
|
| CreateEnvironmentActionCommandOutput
|
|
711
769
|
| CreateEnvironmentCommandOutput
|
|
712
770
|
| CreateEnvironmentProfileCommandOutput
|
|
@@ -727,6 +785,7 @@ export type ServiceOutputTypes =
|
|
|
727
785
|
| DeleteDataProductCommandOutput
|
|
728
786
|
| DeleteDataSourceCommandOutput
|
|
729
787
|
| DeleteDomainCommandOutput
|
|
788
|
+
| DeleteDomainUnitCommandOutput
|
|
730
789
|
| DeleteEnvironmentActionCommandOutput
|
|
731
790
|
| DeleteEnvironmentBlueprintConfigurationCommandOutput
|
|
732
791
|
| DeleteEnvironmentCommandOutput
|
|
@@ -749,6 +808,7 @@ export type ServiceOutputTypes =
|
|
|
749
808
|
| GetDataSourceCommandOutput
|
|
750
809
|
| GetDataSourceRunCommandOutput
|
|
751
810
|
| GetDomainCommandOutput
|
|
811
|
+
| GetDomainUnitCommandOutput
|
|
752
812
|
| GetEnvironmentActionCommandOutput
|
|
753
813
|
| GetEnvironmentBlueprintCommandOutput
|
|
754
814
|
| GetEnvironmentBlueprintConfigurationCommandOutput
|
|
@@ -776,7 +836,9 @@ export type ServiceOutputTypes =
|
|
|
776
836
|
| ListDataSourceRunActivitiesCommandOutput
|
|
777
837
|
| ListDataSourceRunsCommandOutput
|
|
778
838
|
| ListDataSourcesCommandOutput
|
|
839
|
+
| ListDomainUnitsForParentCommandOutput
|
|
779
840
|
| ListDomainsCommandOutput
|
|
841
|
+
| ListEntityOwnersCommandOutput
|
|
780
842
|
| ListEnvironmentActionsCommandOutput
|
|
781
843
|
| ListEnvironmentBlueprintConfigurationsCommandOutput
|
|
782
844
|
| ListEnvironmentBlueprintsCommandOutput
|
|
@@ -785,6 +847,7 @@ export type ServiceOutputTypes =
|
|
|
785
847
|
| ListLineageNodeHistoryCommandOutput
|
|
786
848
|
| ListMetadataGenerationRunsCommandOutput
|
|
787
849
|
| ListNotificationsCommandOutput
|
|
850
|
+
| ListPolicyGrantsCommandOutput
|
|
788
851
|
| ListProjectMembershipsCommandOutput
|
|
789
852
|
| ListProjectsCommandOutput
|
|
790
853
|
| ListSubscriptionGrantsCommandOutput
|
|
@@ -798,6 +861,8 @@ export type ServiceOutputTypes =
|
|
|
798
861
|
| PutEnvironmentBlueprintConfigurationCommandOutput
|
|
799
862
|
| RejectPredictionsCommandOutput
|
|
800
863
|
| RejectSubscriptionRequestCommandOutput
|
|
864
|
+
| RemoveEntityOwnerCommandOutput
|
|
865
|
+
| RemovePolicyGrantCommandOutput
|
|
801
866
|
| RevokeSubscriptionCommandOutput
|
|
802
867
|
| SearchCommandOutput
|
|
803
868
|
| SearchGroupProfilesCommandOutput
|
|
@@ -811,6 +876,7 @@ export type ServiceOutputTypes =
|
|
|
811
876
|
| UpdateAssetFilterCommandOutput
|
|
812
877
|
| UpdateDataSourceCommandOutput
|
|
813
878
|
| UpdateDomainCommandOutput
|
|
879
|
+
| UpdateDomainUnitCommandOutput
|
|
814
880
|
| UpdateEnvironmentActionCommandOutput
|
|
815
881
|
| UpdateEnvironmentCommandOutput
|
|
816
882
|
| UpdateEnvironmentProfileCommandOutput
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import { AddEntityOwnerInput, AddEntityOwnerOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface AddEntityOwnerCommandInput extends AddEntityOwnerInput {}
|
|
12
|
+
export interface AddEntityOwnerCommandOutput
|
|
13
|
+
extends AddEntityOwnerOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const AddEntityOwnerCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: AddEntityOwnerCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
AddEntityOwnerCommandInput,
|
|
20
|
+
AddEntityOwnerCommandOutput,
|
|
21
|
+
DataZoneClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: AddEntityOwnerCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
AddEntityOwnerCommandInput,
|
|
29
|
+
AddEntityOwnerCommandOutput,
|
|
30
|
+
DataZoneClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class AddEntityOwnerCommand extends AddEntityOwnerCommand_base {}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import { AddPolicyGrantInput, AddPolicyGrantOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface AddPolicyGrantCommandInput extends AddPolicyGrantInput {}
|
|
12
|
+
export interface AddPolicyGrantCommandOutput
|
|
13
|
+
extends AddPolicyGrantOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const AddPolicyGrantCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: AddPolicyGrantCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
AddPolicyGrantCommandInput,
|
|
20
|
+
AddPolicyGrantCommandOutput,
|
|
21
|
+
DataZoneClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: AddPolicyGrantCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
AddPolicyGrantCommandInput,
|
|
29
|
+
AddPolicyGrantCommandOutput,
|
|
30
|
+
DataZoneClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class AddPolicyGrantCommand extends AddPolicyGrantCommand_base {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateDomainUnitInput,
|
|
10
|
+
CreateDomainUnitOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateDomainUnitCommandInput extends CreateDomainUnitInput {}
|
|
15
|
+
export interface CreateDomainUnitCommandOutput
|
|
16
|
+
extends CreateDomainUnitOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateDomainUnitCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateDomainUnitCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateDomainUnitCommandInput,
|
|
23
|
+
CreateDomainUnitCommandOutput,
|
|
24
|
+
DataZoneClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateDomainUnitCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateDomainUnitCommandInput,
|
|
32
|
+
CreateDomainUnitCommandOutput,
|
|
33
|
+
DataZoneClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CreateDomainUnitCommand extends CreateDomainUnitCommand_base {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteDomainUnitInput,
|
|
10
|
+
DeleteDomainUnitOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteDomainUnitCommandInput extends DeleteDomainUnitInput {}
|
|
15
|
+
export interface DeleteDomainUnitCommandOutput
|
|
16
|
+
extends DeleteDomainUnitOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DeleteDomainUnitCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteDomainUnitCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DeleteDomainUnitCommandInput,
|
|
23
|
+
DeleteDomainUnitCommandOutput,
|
|
24
|
+
DataZoneClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DeleteDomainUnitCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeleteDomainUnitCommandInput,
|
|
32
|
+
DeleteDomainUnitCommandOutput,
|
|
33
|
+
DataZoneClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DeleteDomainUnitCommand extends DeleteDomainUnitCommand_base {}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import { DeleteFormTypeInput, DeleteFormTypeOutput } from "../models/
|
|
8
|
+
import { DeleteFormTypeInput, DeleteFormTypeOutput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface DeleteFormTypeCommandInput extends DeleteFormTypeInput {}
|
|
@@ -5,8 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import { DeleteGlossaryInput } from "../models/
|
|
9
|
-
import { DeleteGlossaryOutput } from "../models/models_1";
|
|
8
|
+
import { DeleteGlossaryInput, DeleteGlossaryOutput } from "../models/models_1";
|
|
10
9
|
export { __MetadataBearer };
|
|
11
10
|
export { $Command };
|
|
12
11
|
export interface DeleteGlossaryCommandInput extends DeleteGlossaryInput {}
|
|
@@ -5,8 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import { GetAssetFilterInput } from "../models/
|
|
9
|
-
import { GetAssetFilterOutput } from "../models/models_1";
|
|
8
|
+
import { GetAssetFilterInput, GetAssetFilterOutput } from "../models/models_1";
|
|
10
9
|
export { __MetadataBearer };
|
|
11
10
|
export { $Command };
|
|
12
11
|
export interface GetAssetFilterCommandInput extends GetAssetFilterInput {}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import { GetDomainUnitInput, GetDomainUnitOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetDomainUnitCommandInput extends GetDomainUnitInput {}
|
|
12
|
+
export interface GetDomainUnitCommandOutput
|
|
13
|
+
extends GetDomainUnitOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetDomainUnitCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetDomainUnitCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetDomainUnitCommandInput,
|
|
20
|
+
GetDomainUnitCommandOutput,
|
|
21
|
+
DataZoneClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: GetDomainUnitCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetDomainUnitCommandInput,
|
|
29
|
+
GetDomainUnitCommandOutput,
|
|
30
|
+
DataZoneClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetDomainUnitCommand extends GetDomainUnitCommand_base {}
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
GetEnvironmentBlueprintConfigurationOutput,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { GetEnvironmentBlueprintConfigurationInput } from "../models/models_0";
|
|
9
|
+
import { GetEnvironmentBlueprintConfigurationOutput } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface GetEnvironmentBlueprintConfigurationCommandInput
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import { GetEnvironmentInput, GetEnvironmentOutput } from "../models/
|
|
8
|
+
import { GetEnvironmentInput, GetEnvironmentOutput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface GetEnvironmentCommandInput extends GetEnvironmentInput {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
GetEnvironmentCredentialsInput,
|
|
10
10
|
GetEnvironmentCredentialsOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface GetEnvironmentCredentialsCommandInput
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import { GetFormTypeInput, GetFormTypeOutput } from "../models/
|
|
8
|
+
import { GetFormTypeInput, GetFormTypeOutput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface GetFormTypeCommandInput extends GetFormTypeInput {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
GetGroupProfileInput,
|
|
10
10
|
GetGroupProfileOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface GetGroupProfileCommandInput extends GetGroupProfileInput {}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import { GetLineageNodeInput, GetLineageNodeOutput } from "../models/
|
|
8
|
+
import { GetLineageNodeInput, GetLineageNodeOutput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface GetLineageNodeCommandInput extends GetLineageNodeInput {}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import { GetProjectInput, GetProjectOutput } from "../models/
|
|
8
|
+
import { GetProjectInput, GetProjectOutput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface GetProjectCommandInput extends GetProjectInput {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
GetSubscriptionInput,
|
|
10
10
|
GetSubscriptionOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface GetSubscriptionCommandInput extends GetSubscriptionInput {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
GetSubscriptionRequestDetailsInput,
|
|
10
10
|
GetSubscriptionRequestDetailsOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface GetSubscriptionRequestDetailsCommandInput
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import { GetUserProfileInput, GetUserProfileOutput } from "../models/
|
|
8
|
+
import { GetUserProfileInput, GetUserProfileOutput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface GetUserProfileCommandInput extends GetUserProfileInput {}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import {
|
|
9
|
+
ListDomainUnitsForParentInput,
|
|
10
|
+
ListDomainUnitsForParentOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListDomainUnitsForParentCommandInput
|
|
15
|
+
extends ListDomainUnitsForParentInput {}
|
|
16
|
+
export interface ListDomainUnitsForParentCommandOutput
|
|
17
|
+
extends ListDomainUnitsForParentOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListDomainUnitsForParentCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListDomainUnitsForParentCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListDomainUnitsForParentCommandInput,
|
|
24
|
+
ListDomainUnitsForParentCommandOutput,
|
|
25
|
+
DataZoneClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListDomainUnitsForParentCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListDomainUnitsForParentCommandInput,
|
|
33
|
+
ListDomainUnitsForParentCommandOutput,
|
|
34
|
+
DataZoneClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListDomainUnitsForParentCommand extends ListDomainUnitsForParentCommand_base {}
|