@aws-sdk/client-datazone 3.592.0 → 3.598.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 +56 -0
- package/dist-cjs/index.js +451 -66
- package/dist-es/DataZone.js +14 -0
- package/dist-es/commands/AssociateEnvironmentRoleCommand.js +24 -0
- package/dist-es/commands/CreateEnvironmentActionCommand.js +24 -0
- package/dist-es/commands/DeleteEnvironmentActionCommand.js +24 -0
- package/dist-es/commands/DisassociateEnvironmentRoleCommand.js +24 -0
- package/dist-es/commands/GetEnvironmentActionCommand.js +24 -0
- package/dist-es/commands/ListEnvironmentActionsCommand.js +24 -0
- package/dist-es/commands/ListProjectsCommand.js +1 -1
- package/dist-es/commands/ListSubscriptionRequestsCommand.js +1 -1
- package/dist-es/commands/ListSubscriptionsCommand.js +1 -1
- package/dist-es/commands/UpdateEnvironmentActionCommand.js +24 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +30 -53
- package/dist-es/models/models_1.js +53 -0
- package/dist-es/pagination/ListEnvironmentActionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +206 -0
- package/dist-types/DataZone.d.ts +49 -0
- package/dist-types/DataZoneClient.d.ts +9 -2
- package/dist-types/commands/AssociateEnvironmentRoleCommand.d.ts +81 -0
- package/dist-types/commands/CreateEnvironmentActionCommand.d.ts +99 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +4 -1
- package/dist-types/commands/DeleteDataSourceCommand.d.ts +24 -0
- package/dist-types/commands/DeleteEnvironmentActionCommand.d.ts +82 -0
- package/dist-types/commands/DisassociateEnvironmentRoleCommand.d.ts +81 -0
- package/dist-types/commands/GetDataSourceCommand.d.ts +22 -0
- package/dist-types/commands/GetEnvironmentActionCommand.d.ts +89 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentActionsCommand.d.ts +92 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListProjectMembershipsCommand.d.ts +1 -1
- package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/commands/ListSubscriptionGrantsCommand.d.ts +1 -1
- package/dist-types/commands/ListSubscriptionRequestsCommand.d.ts +1 -1
- package/dist-types/commands/ListSubscriptionsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +24 -0
- package/dist-types/commands/UpdateEnvironmentActionCommand.d.ts +99 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +516 -766
- package/dist-types/models/models_1.d.ts +808 -2
- package/dist-types/pagination/ListEnvironmentActionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/dist-types/ts3.4/DataZone.d.ts +119 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/AssociateEnvironmentRoleCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentActionCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentActionCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DisassociateEnvironmentRoleCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/GetEnvironmentActionCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListEnvironmentActionsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListProjectMembershipsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscriptionGrantsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscriptionRequestsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEnvironmentActionCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +147 -187
- package/dist-types/ts3.4/models/models_1.d.ts +204 -2
- package/dist-types/ts3.4/pagination/ListEnvironmentActionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
- package/package.json +37 -37
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListEnvironmentActionsCommandInput, ListEnvironmentActionsCommandOutput } from "../commands/ListEnvironmentActionsCommand";
|
|
3
|
+
import { DataZonePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListEnvironmentActions: (config: DataZonePaginationConfiguration, input: ListEnvironmentActionsCommandInput, ...rest: any[]) => Paginator<ListEnvironmentActionsCommandOutput>;
|
|
@@ -4,6 +4,7 @@ export * from "./ListDataSourceRunActivitiesPaginator";
|
|
|
4
4
|
export * from "./ListDataSourceRunsPaginator";
|
|
5
5
|
export * from "./ListDataSourcesPaginator";
|
|
6
6
|
export * from "./ListDomainsPaginator";
|
|
7
|
+
export * from "./ListEnvironmentActionsPaginator";
|
|
7
8
|
export * from "./ListEnvironmentBlueprintConfigurationsPaginator";
|
|
8
9
|
export * from "./ListEnvironmentBlueprintsPaginator";
|
|
9
10
|
export * from "./ListEnvironmentProfilesPaginator";
|
|
@@ -2,6 +2,7 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@s
|
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
3
|
import { AcceptPredictionsCommandInput, AcceptPredictionsCommandOutput } from "../commands/AcceptPredictionsCommand";
|
|
4
4
|
import { AcceptSubscriptionRequestCommandInput, AcceptSubscriptionRequestCommandOutput } from "../commands/AcceptSubscriptionRequestCommand";
|
|
5
|
+
import { AssociateEnvironmentRoleCommandInput, AssociateEnvironmentRoleCommandOutput } from "../commands/AssociateEnvironmentRoleCommand";
|
|
5
6
|
import { CancelMetadataGenerationRunCommandInput, CancelMetadataGenerationRunCommandOutput } from "../commands/CancelMetadataGenerationRunCommand";
|
|
6
7
|
import { CancelSubscriptionCommandInput, CancelSubscriptionCommandOutput } from "../commands/CancelSubscriptionCommand";
|
|
7
8
|
import { CreateAssetCommandInput, CreateAssetCommandOutput } from "../commands/CreateAssetCommand";
|
|
@@ -9,6 +10,7 @@ import { CreateAssetRevisionCommandInput, CreateAssetRevisionCommandOutput } fro
|
|
|
9
10
|
import { CreateAssetTypeCommandInput, CreateAssetTypeCommandOutput } from "../commands/CreateAssetTypeCommand";
|
|
10
11
|
import { CreateDataSourceCommandInput, CreateDataSourceCommandOutput } from "../commands/CreateDataSourceCommand";
|
|
11
12
|
import { CreateDomainCommandInput, CreateDomainCommandOutput } from "../commands/CreateDomainCommand";
|
|
13
|
+
import { CreateEnvironmentActionCommandInput, CreateEnvironmentActionCommandOutput } from "../commands/CreateEnvironmentActionCommand";
|
|
12
14
|
import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "../commands/CreateEnvironmentCommand";
|
|
13
15
|
import { CreateEnvironmentProfileCommandInput, CreateEnvironmentProfileCommandOutput } from "../commands/CreateEnvironmentProfileCommand";
|
|
14
16
|
import { CreateFormTypeCommandInput, CreateFormTypeCommandOutput } from "../commands/CreateFormTypeCommand";
|
|
@@ -26,6 +28,7 @@ import { DeleteAssetCommandInput, DeleteAssetCommandOutput } from "../commands/D
|
|
|
26
28
|
import { DeleteAssetTypeCommandInput, DeleteAssetTypeCommandOutput } from "../commands/DeleteAssetTypeCommand";
|
|
27
29
|
import { DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput } from "../commands/DeleteDataSourceCommand";
|
|
28
30
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "../commands/DeleteDomainCommand";
|
|
31
|
+
import { DeleteEnvironmentActionCommandInput, DeleteEnvironmentActionCommandOutput } from "../commands/DeleteEnvironmentActionCommand";
|
|
29
32
|
import { DeleteEnvironmentBlueprintConfigurationCommandInput, DeleteEnvironmentBlueprintConfigurationCommandOutput } from "../commands/DeleteEnvironmentBlueprintConfigurationCommand";
|
|
30
33
|
import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "../commands/DeleteEnvironmentCommand";
|
|
31
34
|
import { DeleteEnvironmentProfileCommandInput, DeleteEnvironmentProfileCommandOutput } from "../commands/DeleteEnvironmentProfileCommand";
|
|
@@ -39,11 +42,13 @@ import { DeleteSubscriptionGrantCommandInput, DeleteSubscriptionGrantCommandOutp
|
|
|
39
42
|
import { DeleteSubscriptionRequestCommandInput, DeleteSubscriptionRequestCommandOutput } from "../commands/DeleteSubscriptionRequestCommand";
|
|
40
43
|
import { DeleteSubscriptionTargetCommandInput, DeleteSubscriptionTargetCommandOutput } from "../commands/DeleteSubscriptionTargetCommand";
|
|
41
44
|
import { DeleteTimeSeriesDataPointsCommandInput, DeleteTimeSeriesDataPointsCommandOutput } from "../commands/DeleteTimeSeriesDataPointsCommand";
|
|
45
|
+
import { DisassociateEnvironmentRoleCommandInput, DisassociateEnvironmentRoleCommandOutput } from "../commands/DisassociateEnvironmentRoleCommand";
|
|
42
46
|
import { GetAssetCommandInput, GetAssetCommandOutput } from "../commands/GetAssetCommand";
|
|
43
47
|
import { GetAssetTypeCommandInput, GetAssetTypeCommandOutput } from "../commands/GetAssetTypeCommand";
|
|
44
48
|
import { GetDataSourceCommandInput, GetDataSourceCommandOutput } from "../commands/GetDataSourceCommand";
|
|
45
49
|
import { GetDataSourceRunCommandInput, GetDataSourceRunCommandOutput } from "../commands/GetDataSourceRunCommand";
|
|
46
50
|
import { GetDomainCommandInput, GetDomainCommandOutput } from "../commands/GetDomainCommand";
|
|
51
|
+
import { GetEnvironmentActionCommandInput, GetEnvironmentActionCommandOutput } from "../commands/GetEnvironmentActionCommand";
|
|
47
52
|
import { GetEnvironmentBlueprintCommandInput, GetEnvironmentBlueprintCommandOutput } from "../commands/GetEnvironmentBlueprintCommand";
|
|
48
53
|
import { GetEnvironmentBlueprintConfigurationCommandInput, GetEnvironmentBlueprintConfigurationCommandOutput } from "../commands/GetEnvironmentBlueprintConfigurationCommand";
|
|
49
54
|
import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "../commands/GetEnvironmentCommand";
|
|
@@ -67,6 +72,7 @@ import { ListDataSourceRunActivitiesCommandInput, ListDataSourceRunActivitiesCom
|
|
|
67
72
|
import { ListDataSourceRunsCommandInput, ListDataSourceRunsCommandOutput } from "../commands/ListDataSourceRunsCommand";
|
|
68
73
|
import { ListDataSourcesCommandInput, ListDataSourcesCommandOutput } from "../commands/ListDataSourcesCommand";
|
|
69
74
|
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand";
|
|
75
|
+
import { ListEnvironmentActionsCommandInput, ListEnvironmentActionsCommandOutput } from "../commands/ListEnvironmentActionsCommand";
|
|
70
76
|
import { ListEnvironmentBlueprintConfigurationsCommandInput, ListEnvironmentBlueprintConfigurationsCommandOutput } from "../commands/ListEnvironmentBlueprintConfigurationsCommand";
|
|
71
77
|
import { ListEnvironmentBlueprintsCommandInput, ListEnvironmentBlueprintsCommandOutput } from "../commands/ListEnvironmentBlueprintsCommand";
|
|
72
78
|
import { ListEnvironmentProfilesCommandInput, ListEnvironmentProfilesCommandOutput } from "../commands/ListEnvironmentProfilesCommand";
|
|
@@ -97,6 +103,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/T
|
|
|
97
103
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
98
104
|
import { UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput } from "../commands/UpdateDataSourceCommand";
|
|
99
105
|
import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "../commands/UpdateDomainCommand";
|
|
106
|
+
import { UpdateEnvironmentActionCommandInput, UpdateEnvironmentActionCommandOutput } from "../commands/UpdateEnvironmentActionCommand";
|
|
100
107
|
import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "../commands/UpdateEnvironmentCommand";
|
|
101
108
|
import { UpdateEnvironmentProfileCommandInput, UpdateEnvironmentProfileCommandOutput } from "../commands/UpdateEnvironmentProfileCommand";
|
|
102
109
|
import { UpdateGlossaryCommandInput, UpdateGlossaryCommandOutput } from "../commands/UpdateGlossaryCommand";
|
|
@@ -115,6 +122,10 @@ export declare const se_AcceptPredictionsCommand: (input: AcceptPredictionsComma
|
|
|
115
122
|
* serializeAws_restJson1AcceptSubscriptionRequestCommand
|
|
116
123
|
*/
|
|
117
124
|
export declare const se_AcceptSubscriptionRequestCommand: (input: AcceptSubscriptionRequestCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
|
+
/**
|
|
126
|
+
* serializeAws_restJson1AssociateEnvironmentRoleCommand
|
|
127
|
+
*/
|
|
128
|
+
export declare const se_AssociateEnvironmentRoleCommand: (input: AssociateEnvironmentRoleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
129
|
/**
|
|
119
130
|
* serializeAws_restJson1CancelMetadataGenerationRunCommand
|
|
120
131
|
*/
|
|
@@ -147,6 +158,10 @@ export declare const se_CreateDomainCommand: (input: CreateDomainCommandInput, c
|
|
|
147
158
|
* serializeAws_restJson1CreateEnvironmentCommand
|
|
148
159
|
*/
|
|
149
160
|
export declare const se_CreateEnvironmentCommand: (input: CreateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
161
|
+
/**
|
|
162
|
+
* serializeAws_restJson1CreateEnvironmentActionCommand
|
|
163
|
+
*/
|
|
164
|
+
export declare const se_CreateEnvironmentActionCommand: (input: CreateEnvironmentActionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
150
165
|
/**
|
|
151
166
|
* serializeAws_restJson1CreateEnvironmentProfileCommand
|
|
152
167
|
*/
|
|
@@ -215,6 +230,10 @@ export declare const se_DeleteDomainCommand: (input: DeleteDomainCommandInput, c
|
|
|
215
230
|
* serializeAws_restJson1DeleteEnvironmentCommand
|
|
216
231
|
*/
|
|
217
232
|
export declare const se_DeleteEnvironmentCommand: (input: DeleteEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
233
|
+
/**
|
|
234
|
+
* serializeAws_restJson1DeleteEnvironmentActionCommand
|
|
235
|
+
*/
|
|
236
|
+
export declare const se_DeleteEnvironmentActionCommand: (input: DeleteEnvironmentActionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
218
237
|
/**
|
|
219
238
|
* serializeAws_restJson1DeleteEnvironmentBlueprintConfigurationCommand
|
|
220
239
|
*/
|
|
@@ -263,6 +282,10 @@ export declare const se_DeleteSubscriptionTargetCommand: (input: DeleteSubscript
|
|
|
263
282
|
* serializeAws_restJson1DeleteTimeSeriesDataPointsCommand
|
|
264
283
|
*/
|
|
265
284
|
export declare const se_DeleteTimeSeriesDataPointsCommand: (input: DeleteTimeSeriesDataPointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
285
|
+
/**
|
|
286
|
+
* serializeAws_restJson1DisassociateEnvironmentRoleCommand
|
|
287
|
+
*/
|
|
288
|
+
export declare const se_DisassociateEnvironmentRoleCommand: (input: DisassociateEnvironmentRoleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
266
289
|
/**
|
|
267
290
|
* serializeAws_restJson1GetAssetCommand
|
|
268
291
|
*/
|
|
@@ -287,6 +310,10 @@ export declare const se_GetDomainCommand: (input: GetDomainCommandInput, context
|
|
|
287
310
|
* serializeAws_restJson1GetEnvironmentCommand
|
|
288
311
|
*/
|
|
289
312
|
export declare const se_GetEnvironmentCommand: (input: GetEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
313
|
+
/**
|
|
314
|
+
* serializeAws_restJson1GetEnvironmentActionCommand
|
|
315
|
+
*/
|
|
316
|
+
export declare const se_GetEnvironmentActionCommand: (input: GetEnvironmentActionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
290
317
|
/**
|
|
291
318
|
* serializeAws_restJson1GetEnvironmentBlueprintCommand
|
|
292
319
|
*/
|
|
@@ -375,6 +402,10 @@ export declare const se_ListDataSourcesCommand: (input: ListDataSourcesCommandIn
|
|
|
375
402
|
* serializeAws_restJson1ListDomainsCommand
|
|
376
403
|
*/
|
|
377
404
|
export declare const se_ListDomainsCommand: (input: ListDomainsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
405
|
+
/**
|
|
406
|
+
* serializeAws_restJson1ListEnvironmentActionsCommand
|
|
407
|
+
*/
|
|
408
|
+
export declare const se_ListEnvironmentActionsCommand: (input: ListEnvironmentActionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
378
409
|
/**
|
|
379
410
|
* serializeAws_restJson1ListEnvironmentBlueprintConfigurationsCommand
|
|
380
411
|
*/
|
|
@@ -499,6 +530,10 @@ export declare const se_UpdateDomainCommand: (input: UpdateDomainCommandInput, c
|
|
|
499
530
|
* serializeAws_restJson1UpdateEnvironmentCommand
|
|
500
531
|
*/
|
|
501
532
|
export declare const se_UpdateEnvironmentCommand: (input: UpdateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
533
|
+
/**
|
|
534
|
+
* serializeAws_restJson1UpdateEnvironmentActionCommand
|
|
535
|
+
*/
|
|
536
|
+
export declare const se_UpdateEnvironmentActionCommand: (input: UpdateEnvironmentActionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
502
537
|
/**
|
|
503
538
|
* serializeAws_restJson1UpdateEnvironmentProfileCommand
|
|
504
539
|
*/
|
|
@@ -543,6 +578,10 @@ export declare const de_AcceptPredictionsCommand: (output: __HttpResponse, conte
|
|
|
543
578
|
* deserializeAws_restJson1AcceptSubscriptionRequestCommand
|
|
544
579
|
*/
|
|
545
580
|
export declare const de_AcceptSubscriptionRequestCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AcceptSubscriptionRequestCommandOutput>;
|
|
581
|
+
/**
|
|
582
|
+
* deserializeAws_restJson1AssociateEnvironmentRoleCommand
|
|
583
|
+
*/
|
|
584
|
+
export declare const de_AssociateEnvironmentRoleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateEnvironmentRoleCommandOutput>;
|
|
546
585
|
/**
|
|
547
586
|
* deserializeAws_restJson1CancelMetadataGenerationRunCommand
|
|
548
587
|
*/
|
|
@@ -575,6 +614,10 @@ export declare const de_CreateDomainCommand: (output: __HttpResponse, context: _
|
|
|
575
614
|
* deserializeAws_restJson1CreateEnvironmentCommand
|
|
576
615
|
*/
|
|
577
616
|
export declare const de_CreateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentCommandOutput>;
|
|
617
|
+
/**
|
|
618
|
+
* deserializeAws_restJson1CreateEnvironmentActionCommand
|
|
619
|
+
*/
|
|
620
|
+
export declare const de_CreateEnvironmentActionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentActionCommandOutput>;
|
|
578
621
|
/**
|
|
579
622
|
* deserializeAws_restJson1CreateEnvironmentProfileCommand
|
|
580
623
|
*/
|
|
@@ -643,6 +686,10 @@ export declare const de_DeleteDomainCommand: (output: __HttpResponse, context: _
|
|
|
643
686
|
* deserializeAws_restJson1DeleteEnvironmentCommand
|
|
644
687
|
*/
|
|
645
688
|
export declare const de_DeleteEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentCommandOutput>;
|
|
689
|
+
/**
|
|
690
|
+
* deserializeAws_restJson1DeleteEnvironmentActionCommand
|
|
691
|
+
*/
|
|
692
|
+
export declare const de_DeleteEnvironmentActionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentActionCommandOutput>;
|
|
646
693
|
/**
|
|
647
694
|
* deserializeAws_restJson1DeleteEnvironmentBlueprintConfigurationCommand
|
|
648
695
|
*/
|
|
@@ -691,6 +738,10 @@ export declare const de_DeleteSubscriptionTargetCommand: (output: __HttpResponse
|
|
|
691
738
|
* deserializeAws_restJson1DeleteTimeSeriesDataPointsCommand
|
|
692
739
|
*/
|
|
693
740
|
export declare const de_DeleteTimeSeriesDataPointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTimeSeriesDataPointsCommandOutput>;
|
|
741
|
+
/**
|
|
742
|
+
* deserializeAws_restJson1DisassociateEnvironmentRoleCommand
|
|
743
|
+
*/
|
|
744
|
+
export declare const de_DisassociateEnvironmentRoleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateEnvironmentRoleCommandOutput>;
|
|
694
745
|
/**
|
|
695
746
|
* deserializeAws_restJson1GetAssetCommand
|
|
696
747
|
*/
|
|
@@ -715,6 +766,10 @@ export declare const de_GetDomainCommand: (output: __HttpResponse, context: __Se
|
|
|
715
766
|
* deserializeAws_restJson1GetEnvironmentCommand
|
|
716
767
|
*/
|
|
717
768
|
export declare const de_GetEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentCommandOutput>;
|
|
769
|
+
/**
|
|
770
|
+
* deserializeAws_restJson1GetEnvironmentActionCommand
|
|
771
|
+
*/
|
|
772
|
+
export declare const de_GetEnvironmentActionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentActionCommandOutput>;
|
|
718
773
|
/**
|
|
719
774
|
* deserializeAws_restJson1GetEnvironmentBlueprintCommand
|
|
720
775
|
*/
|
|
@@ -803,6 +858,10 @@ export declare const de_ListDataSourcesCommand: (output: __HttpResponse, context
|
|
|
803
858
|
* deserializeAws_restJson1ListDomainsCommand
|
|
804
859
|
*/
|
|
805
860
|
export declare const de_ListDomainsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDomainsCommandOutput>;
|
|
861
|
+
/**
|
|
862
|
+
* deserializeAws_restJson1ListEnvironmentActionsCommand
|
|
863
|
+
*/
|
|
864
|
+
export declare const de_ListEnvironmentActionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentActionsCommandOutput>;
|
|
806
865
|
/**
|
|
807
866
|
* deserializeAws_restJson1ListEnvironmentBlueprintConfigurationsCommand
|
|
808
867
|
*/
|
|
@@ -927,6 +986,10 @@ export declare const de_UpdateDomainCommand: (output: __HttpResponse, context: _
|
|
|
927
986
|
* deserializeAws_restJson1UpdateEnvironmentCommand
|
|
928
987
|
*/
|
|
929
988
|
export declare const de_UpdateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEnvironmentCommandOutput>;
|
|
989
|
+
/**
|
|
990
|
+
* deserializeAws_restJson1UpdateEnvironmentActionCommand
|
|
991
|
+
*/
|
|
992
|
+
export declare const de_UpdateEnvironmentActionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEnvironmentActionCommandOutput>;
|
|
930
993
|
/**
|
|
931
994
|
* deserializeAws_restJson1UpdateEnvironmentProfileCommand
|
|
932
995
|
*/
|
|
@@ -7,6 +7,10 @@ import {
|
|
|
7
7
|
AcceptSubscriptionRequestCommandInput,
|
|
8
8
|
AcceptSubscriptionRequestCommandOutput,
|
|
9
9
|
} from "./commands/AcceptSubscriptionRequestCommand";
|
|
10
|
+
import {
|
|
11
|
+
AssociateEnvironmentRoleCommandInput,
|
|
12
|
+
AssociateEnvironmentRoleCommandOutput,
|
|
13
|
+
} from "./commands/AssociateEnvironmentRoleCommand";
|
|
10
14
|
import {
|
|
11
15
|
CancelMetadataGenerationRunCommandInput,
|
|
12
16
|
CancelMetadataGenerationRunCommandOutput,
|
|
@@ -35,6 +39,10 @@ import {
|
|
|
35
39
|
CreateDomainCommandInput,
|
|
36
40
|
CreateDomainCommandOutput,
|
|
37
41
|
} from "./commands/CreateDomainCommand";
|
|
42
|
+
import {
|
|
43
|
+
CreateEnvironmentActionCommandInput,
|
|
44
|
+
CreateEnvironmentActionCommandOutput,
|
|
45
|
+
} from "./commands/CreateEnvironmentActionCommand";
|
|
38
46
|
import {
|
|
39
47
|
CreateEnvironmentCommandInput,
|
|
40
48
|
CreateEnvironmentCommandOutput,
|
|
@@ -103,6 +111,10 @@ import {
|
|
|
103
111
|
DeleteDomainCommandInput,
|
|
104
112
|
DeleteDomainCommandOutput,
|
|
105
113
|
} from "./commands/DeleteDomainCommand";
|
|
114
|
+
import {
|
|
115
|
+
DeleteEnvironmentActionCommandInput,
|
|
116
|
+
DeleteEnvironmentActionCommandOutput,
|
|
117
|
+
} from "./commands/DeleteEnvironmentActionCommand";
|
|
106
118
|
import {
|
|
107
119
|
DeleteEnvironmentBlueprintConfigurationCommandInput,
|
|
108
120
|
DeleteEnvironmentBlueprintConfigurationCommandOutput,
|
|
@@ -155,6 +167,10 @@ import {
|
|
|
155
167
|
DeleteTimeSeriesDataPointsCommandInput,
|
|
156
168
|
DeleteTimeSeriesDataPointsCommandOutput,
|
|
157
169
|
} from "./commands/DeleteTimeSeriesDataPointsCommand";
|
|
170
|
+
import {
|
|
171
|
+
DisassociateEnvironmentRoleCommandInput,
|
|
172
|
+
DisassociateEnvironmentRoleCommandOutput,
|
|
173
|
+
} from "./commands/DisassociateEnvironmentRoleCommand";
|
|
158
174
|
import {
|
|
159
175
|
GetAssetCommandInput,
|
|
160
176
|
GetAssetCommandOutput,
|
|
@@ -175,6 +191,10 @@ import {
|
|
|
175
191
|
GetDomainCommandInput,
|
|
176
192
|
GetDomainCommandOutput,
|
|
177
193
|
} from "./commands/GetDomainCommand";
|
|
194
|
+
import {
|
|
195
|
+
GetEnvironmentActionCommandInput,
|
|
196
|
+
GetEnvironmentActionCommandOutput,
|
|
197
|
+
} from "./commands/GetEnvironmentActionCommand";
|
|
178
198
|
import {
|
|
179
199
|
GetEnvironmentBlueprintCommandInput,
|
|
180
200
|
GetEnvironmentBlueprintCommandOutput,
|
|
@@ -267,6 +287,10 @@ import {
|
|
|
267
287
|
ListDomainsCommandInput,
|
|
268
288
|
ListDomainsCommandOutput,
|
|
269
289
|
} from "./commands/ListDomainsCommand";
|
|
290
|
+
import {
|
|
291
|
+
ListEnvironmentActionsCommandInput,
|
|
292
|
+
ListEnvironmentActionsCommandOutput,
|
|
293
|
+
} from "./commands/ListEnvironmentActionsCommand";
|
|
270
294
|
import {
|
|
271
295
|
ListEnvironmentBlueprintConfigurationsCommandInput,
|
|
272
296
|
ListEnvironmentBlueprintConfigurationsCommandOutput,
|
|
@@ -387,6 +411,10 @@ import {
|
|
|
387
411
|
UpdateDomainCommandInput,
|
|
388
412
|
UpdateDomainCommandOutput,
|
|
389
413
|
} from "./commands/UpdateDomainCommand";
|
|
414
|
+
import {
|
|
415
|
+
UpdateEnvironmentActionCommandInput,
|
|
416
|
+
UpdateEnvironmentActionCommandOutput,
|
|
417
|
+
} from "./commands/UpdateEnvironmentActionCommand";
|
|
390
418
|
import {
|
|
391
419
|
UpdateEnvironmentCommandInput,
|
|
392
420
|
UpdateEnvironmentCommandOutput,
|
|
@@ -455,6 +483,19 @@ export interface DataZone {
|
|
|
455
483
|
options: __HttpHandlerOptions,
|
|
456
484
|
cb: (err: any, data?: AcceptSubscriptionRequestCommandOutput) => void
|
|
457
485
|
): void;
|
|
486
|
+
associateEnvironmentRole(
|
|
487
|
+
args: AssociateEnvironmentRoleCommandInput,
|
|
488
|
+
options?: __HttpHandlerOptions
|
|
489
|
+
): Promise<AssociateEnvironmentRoleCommandOutput>;
|
|
490
|
+
associateEnvironmentRole(
|
|
491
|
+
args: AssociateEnvironmentRoleCommandInput,
|
|
492
|
+
cb: (err: any, data?: AssociateEnvironmentRoleCommandOutput) => void
|
|
493
|
+
): void;
|
|
494
|
+
associateEnvironmentRole(
|
|
495
|
+
args: AssociateEnvironmentRoleCommandInput,
|
|
496
|
+
options: __HttpHandlerOptions,
|
|
497
|
+
cb: (err: any, data?: AssociateEnvironmentRoleCommandOutput) => void
|
|
498
|
+
): void;
|
|
458
499
|
cancelMetadataGenerationRun(
|
|
459
500
|
args: CancelMetadataGenerationRunCommandInput,
|
|
460
501
|
options?: __HttpHandlerOptions
|
|
@@ -559,6 +600,19 @@ export interface DataZone {
|
|
|
559
600
|
options: __HttpHandlerOptions,
|
|
560
601
|
cb: (err: any, data?: CreateEnvironmentCommandOutput) => void
|
|
561
602
|
): void;
|
|
603
|
+
createEnvironmentAction(
|
|
604
|
+
args: CreateEnvironmentActionCommandInput,
|
|
605
|
+
options?: __HttpHandlerOptions
|
|
606
|
+
): Promise<CreateEnvironmentActionCommandOutput>;
|
|
607
|
+
createEnvironmentAction(
|
|
608
|
+
args: CreateEnvironmentActionCommandInput,
|
|
609
|
+
cb: (err: any, data?: CreateEnvironmentActionCommandOutput) => void
|
|
610
|
+
): void;
|
|
611
|
+
createEnvironmentAction(
|
|
612
|
+
args: CreateEnvironmentActionCommandInput,
|
|
613
|
+
options: __HttpHandlerOptions,
|
|
614
|
+
cb: (err: any, data?: CreateEnvironmentActionCommandOutput) => void
|
|
615
|
+
): void;
|
|
562
616
|
createEnvironmentProfile(
|
|
563
617
|
args: CreateEnvironmentProfileCommandInput,
|
|
564
618
|
options?: __HttpHandlerOptions
|
|
@@ -780,6 +834,19 @@ export interface DataZone {
|
|
|
780
834
|
options: __HttpHandlerOptions,
|
|
781
835
|
cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void
|
|
782
836
|
): void;
|
|
837
|
+
deleteEnvironmentAction(
|
|
838
|
+
args: DeleteEnvironmentActionCommandInput,
|
|
839
|
+
options?: __HttpHandlerOptions
|
|
840
|
+
): Promise<DeleteEnvironmentActionCommandOutput>;
|
|
841
|
+
deleteEnvironmentAction(
|
|
842
|
+
args: DeleteEnvironmentActionCommandInput,
|
|
843
|
+
cb: (err: any, data?: DeleteEnvironmentActionCommandOutput) => void
|
|
844
|
+
): void;
|
|
845
|
+
deleteEnvironmentAction(
|
|
846
|
+
args: DeleteEnvironmentActionCommandInput,
|
|
847
|
+
options: __HttpHandlerOptions,
|
|
848
|
+
cb: (err: any, data?: DeleteEnvironmentActionCommandOutput) => void
|
|
849
|
+
): void;
|
|
783
850
|
deleteEnvironmentBlueprintConfiguration(
|
|
784
851
|
args: DeleteEnvironmentBlueprintConfigurationCommandInput,
|
|
785
852
|
options?: __HttpHandlerOptions
|
|
@@ -942,6 +1009,19 @@ export interface DataZone {
|
|
|
942
1009
|
options: __HttpHandlerOptions,
|
|
943
1010
|
cb: (err: any, data?: DeleteTimeSeriesDataPointsCommandOutput) => void
|
|
944
1011
|
): void;
|
|
1012
|
+
disassociateEnvironmentRole(
|
|
1013
|
+
args: DisassociateEnvironmentRoleCommandInput,
|
|
1014
|
+
options?: __HttpHandlerOptions
|
|
1015
|
+
): Promise<DisassociateEnvironmentRoleCommandOutput>;
|
|
1016
|
+
disassociateEnvironmentRole(
|
|
1017
|
+
args: DisassociateEnvironmentRoleCommandInput,
|
|
1018
|
+
cb: (err: any, data?: DisassociateEnvironmentRoleCommandOutput) => void
|
|
1019
|
+
): void;
|
|
1020
|
+
disassociateEnvironmentRole(
|
|
1021
|
+
args: DisassociateEnvironmentRoleCommandInput,
|
|
1022
|
+
options: __HttpHandlerOptions,
|
|
1023
|
+
cb: (err: any, data?: DisassociateEnvironmentRoleCommandOutput) => void
|
|
1024
|
+
): void;
|
|
945
1025
|
getAsset(
|
|
946
1026
|
args: GetAssetCommandInput,
|
|
947
1027
|
options?: __HttpHandlerOptions
|
|
@@ -1020,6 +1100,19 @@ export interface DataZone {
|
|
|
1020
1100
|
options: __HttpHandlerOptions,
|
|
1021
1101
|
cb: (err: any, data?: GetEnvironmentCommandOutput) => void
|
|
1022
1102
|
): void;
|
|
1103
|
+
getEnvironmentAction(
|
|
1104
|
+
args: GetEnvironmentActionCommandInput,
|
|
1105
|
+
options?: __HttpHandlerOptions
|
|
1106
|
+
): Promise<GetEnvironmentActionCommandOutput>;
|
|
1107
|
+
getEnvironmentAction(
|
|
1108
|
+
args: GetEnvironmentActionCommandInput,
|
|
1109
|
+
cb: (err: any, data?: GetEnvironmentActionCommandOutput) => void
|
|
1110
|
+
): void;
|
|
1111
|
+
getEnvironmentAction(
|
|
1112
|
+
args: GetEnvironmentActionCommandInput,
|
|
1113
|
+
options: __HttpHandlerOptions,
|
|
1114
|
+
cb: (err: any, data?: GetEnvironmentActionCommandOutput) => void
|
|
1115
|
+
): void;
|
|
1023
1116
|
getEnvironmentBlueprint(
|
|
1024
1117
|
args: GetEnvironmentBlueprintCommandInput,
|
|
1025
1118
|
options?: __HttpHandlerOptions
|
|
@@ -1313,6 +1406,19 @@ export interface DataZone {
|
|
|
1313
1406
|
options: __HttpHandlerOptions,
|
|
1314
1407
|
cb: (err: any, data?: ListDomainsCommandOutput) => void
|
|
1315
1408
|
): void;
|
|
1409
|
+
listEnvironmentActions(
|
|
1410
|
+
args: ListEnvironmentActionsCommandInput,
|
|
1411
|
+
options?: __HttpHandlerOptions
|
|
1412
|
+
): Promise<ListEnvironmentActionsCommandOutput>;
|
|
1413
|
+
listEnvironmentActions(
|
|
1414
|
+
args: ListEnvironmentActionsCommandInput,
|
|
1415
|
+
cb: (err: any, data?: ListEnvironmentActionsCommandOutput) => void
|
|
1416
|
+
): void;
|
|
1417
|
+
listEnvironmentActions(
|
|
1418
|
+
args: ListEnvironmentActionsCommandInput,
|
|
1419
|
+
options: __HttpHandlerOptions,
|
|
1420
|
+
cb: (err: any, data?: ListEnvironmentActionsCommandOutput) => void
|
|
1421
|
+
): void;
|
|
1316
1422
|
listEnvironmentBlueprintConfigurations(
|
|
1317
1423
|
args: ListEnvironmentBlueprintConfigurationsCommandInput,
|
|
1318
1424
|
options?: __HttpHandlerOptions
|
|
@@ -1728,6 +1834,19 @@ export interface DataZone {
|
|
|
1728
1834
|
options: __HttpHandlerOptions,
|
|
1729
1835
|
cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void
|
|
1730
1836
|
): void;
|
|
1837
|
+
updateEnvironmentAction(
|
|
1838
|
+
args: UpdateEnvironmentActionCommandInput,
|
|
1839
|
+
options?: __HttpHandlerOptions
|
|
1840
|
+
): Promise<UpdateEnvironmentActionCommandOutput>;
|
|
1841
|
+
updateEnvironmentAction(
|
|
1842
|
+
args: UpdateEnvironmentActionCommandInput,
|
|
1843
|
+
cb: (err: any, data?: UpdateEnvironmentActionCommandOutput) => void
|
|
1844
|
+
): void;
|
|
1845
|
+
updateEnvironmentAction(
|
|
1846
|
+
args: UpdateEnvironmentActionCommandInput,
|
|
1847
|
+
options: __HttpHandlerOptions,
|
|
1848
|
+
cb: (err: any, data?: UpdateEnvironmentActionCommandOutput) => void
|
|
1849
|
+
): void;
|
|
1731
1850
|
updateEnvironmentProfile(
|
|
1732
1851
|
args: UpdateEnvironmentProfileCommandInput,
|
|
1733
1852
|
options?: __HttpHandlerOptions
|
|
@@ -53,6 +53,10 @@ import {
|
|
|
53
53
|
AcceptSubscriptionRequestCommandInput,
|
|
54
54
|
AcceptSubscriptionRequestCommandOutput,
|
|
55
55
|
} from "./commands/AcceptSubscriptionRequestCommand";
|
|
56
|
+
import {
|
|
57
|
+
AssociateEnvironmentRoleCommandInput,
|
|
58
|
+
AssociateEnvironmentRoleCommandOutput,
|
|
59
|
+
} from "./commands/AssociateEnvironmentRoleCommand";
|
|
56
60
|
import {
|
|
57
61
|
CancelMetadataGenerationRunCommandInput,
|
|
58
62
|
CancelMetadataGenerationRunCommandOutput,
|
|
@@ -81,6 +85,10 @@ import {
|
|
|
81
85
|
CreateDomainCommandInput,
|
|
82
86
|
CreateDomainCommandOutput,
|
|
83
87
|
} from "./commands/CreateDomainCommand";
|
|
88
|
+
import {
|
|
89
|
+
CreateEnvironmentActionCommandInput,
|
|
90
|
+
CreateEnvironmentActionCommandOutput,
|
|
91
|
+
} from "./commands/CreateEnvironmentActionCommand";
|
|
84
92
|
import {
|
|
85
93
|
CreateEnvironmentCommandInput,
|
|
86
94
|
CreateEnvironmentCommandOutput,
|
|
@@ -149,6 +157,10 @@ import {
|
|
|
149
157
|
DeleteDomainCommandInput,
|
|
150
158
|
DeleteDomainCommandOutput,
|
|
151
159
|
} from "./commands/DeleteDomainCommand";
|
|
160
|
+
import {
|
|
161
|
+
DeleteEnvironmentActionCommandInput,
|
|
162
|
+
DeleteEnvironmentActionCommandOutput,
|
|
163
|
+
} from "./commands/DeleteEnvironmentActionCommand";
|
|
152
164
|
import {
|
|
153
165
|
DeleteEnvironmentBlueprintConfigurationCommandInput,
|
|
154
166
|
DeleteEnvironmentBlueprintConfigurationCommandOutput,
|
|
@@ -201,6 +213,10 @@ import {
|
|
|
201
213
|
DeleteTimeSeriesDataPointsCommandInput,
|
|
202
214
|
DeleteTimeSeriesDataPointsCommandOutput,
|
|
203
215
|
} from "./commands/DeleteTimeSeriesDataPointsCommand";
|
|
216
|
+
import {
|
|
217
|
+
DisassociateEnvironmentRoleCommandInput,
|
|
218
|
+
DisassociateEnvironmentRoleCommandOutput,
|
|
219
|
+
} from "./commands/DisassociateEnvironmentRoleCommand";
|
|
204
220
|
import {
|
|
205
221
|
GetAssetCommandInput,
|
|
206
222
|
GetAssetCommandOutput,
|
|
@@ -221,6 +237,10 @@ import {
|
|
|
221
237
|
GetDomainCommandInput,
|
|
222
238
|
GetDomainCommandOutput,
|
|
223
239
|
} from "./commands/GetDomainCommand";
|
|
240
|
+
import {
|
|
241
|
+
GetEnvironmentActionCommandInput,
|
|
242
|
+
GetEnvironmentActionCommandOutput,
|
|
243
|
+
} from "./commands/GetEnvironmentActionCommand";
|
|
224
244
|
import {
|
|
225
245
|
GetEnvironmentBlueprintCommandInput,
|
|
226
246
|
GetEnvironmentBlueprintCommandOutput,
|
|
@@ -313,6 +333,10 @@ import {
|
|
|
313
333
|
ListDomainsCommandInput,
|
|
314
334
|
ListDomainsCommandOutput,
|
|
315
335
|
} from "./commands/ListDomainsCommand";
|
|
336
|
+
import {
|
|
337
|
+
ListEnvironmentActionsCommandInput,
|
|
338
|
+
ListEnvironmentActionsCommandOutput,
|
|
339
|
+
} from "./commands/ListEnvironmentActionsCommand";
|
|
316
340
|
import {
|
|
317
341
|
ListEnvironmentBlueprintConfigurationsCommandInput,
|
|
318
342
|
ListEnvironmentBlueprintConfigurationsCommandOutput,
|
|
@@ -433,6 +457,10 @@ import {
|
|
|
433
457
|
UpdateDomainCommandInput,
|
|
434
458
|
UpdateDomainCommandOutput,
|
|
435
459
|
} from "./commands/UpdateDomainCommand";
|
|
460
|
+
import {
|
|
461
|
+
UpdateEnvironmentActionCommandInput,
|
|
462
|
+
UpdateEnvironmentActionCommandOutput,
|
|
463
|
+
} from "./commands/UpdateEnvironmentActionCommand";
|
|
436
464
|
import {
|
|
437
465
|
UpdateEnvironmentCommandInput,
|
|
438
466
|
UpdateEnvironmentCommandOutput,
|
|
@@ -483,6 +511,7 @@ export { __Client };
|
|
|
483
511
|
export type ServiceInputTypes =
|
|
484
512
|
| AcceptPredictionsCommandInput
|
|
485
513
|
| AcceptSubscriptionRequestCommandInput
|
|
514
|
+
| AssociateEnvironmentRoleCommandInput
|
|
486
515
|
| CancelMetadataGenerationRunCommandInput
|
|
487
516
|
| CancelSubscriptionCommandInput
|
|
488
517
|
| CreateAssetCommandInput
|
|
@@ -490,6 +519,7 @@ export type ServiceInputTypes =
|
|
|
490
519
|
| CreateAssetTypeCommandInput
|
|
491
520
|
| CreateDataSourceCommandInput
|
|
492
521
|
| CreateDomainCommandInput
|
|
522
|
+
| CreateEnvironmentActionCommandInput
|
|
493
523
|
| CreateEnvironmentCommandInput
|
|
494
524
|
| CreateEnvironmentProfileCommandInput
|
|
495
525
|
| CreateFormTypeCommandInput
|
|
@@ -507,6 +537,7 @@ export type ServiceInputTypes =
|
|
|
507
537
|
| DeleteAssetTypeCommandInput
|
|
508
538
|
| DeleteDataSourceCommandInput
|
|
509
539
|
| DeleteDomainCommandInput
|
|
540
|
+
| DeleteEnvironmentActionCommandInput
|
|
510
541
|
| DeleteEnvironmentBlueprintConfigurationCommandInput
|
|
511
542
|
| DeleteEnvironmentCommandInput
|
|
512
543
|
| DeleteEnvironmentProfileCommandInput
|
|
@@ -520,11 +551,13 @@ export type ServiceInputTypes =
|
|
|
520
551
|
| DeleteSubscriptionRequestCommandInput
|
|
521
552
|
| DeleteSubscriptionTargetCommandInput
|
|
522
553
|
| DeleteTimeSeriesDataPointsCommandInput
|
|
554
|
+
| DisassociateEnvironmentRoleCommandInput
|
|
523
555
|
| GetAssetCommandInput
|
|
524
556
|
| GetAssetTypeCommandInput
|
|
525
557
|
| GetDataSourceCommandInput
|
|
526
558
|
| GetDataSourceRunCommandInput
|
|
527
559
|
| GetDomainCommandInput
|
|
560
|
+
| GetEnvironmentActionCommandInput
|
|
528
561
|
| GetEnvironmentBlueprintCommandInput
|
|
529
562
|
| GetEnvironmentBlueprintConfigurationCommandInput
|
|
530
563
|
| GetEnvironmentCommandInput
|
|
@@ -548,6 +581,7 @@ export type ServiceInputTypes =
|
|
|
548
581
|
| ListDataSourceRunsCommandInput
|
|
549
582
|
| ListDataSourcesCommandInput
|
|
550
583
|
| ListDomainsCommandInput
|
|
584
|
+
| ListEnvironmentActionsCommandInput
|
|
551
585
|
| ListEnvironmentBlueprintConfigurationsCommandInput
|
|
552
586
|
| ListEnvironmentBlueprintsCommandInput
|
|
553
587
|
| ListEnvironmentProfilesCommandInput
|
|
@@ -578,6 +612,7 @@ export type ServiceInputTypes =
|
|
|
578
612
|
| UntagResourceCommandInput
|
|
579
613
|
| UpdateDataSourceCommandInput
|
|
580
614
|
| UpdateDomainCommandInput
|
|
615
|
+
| UpdateEnvironmentActionCommandInput
|
|
581
616
|
| UpdateEnvironmentCommandInput
|
|
582
617
|
| UpdateEnvironmentProfileCommandInput
|
|
583
618
|
| UpdateGlossaryCommandInput
|
|
@@ -591,6 +626,7 @@ export type ServiceInputTypes =
|
|
|
591
626
|
export type ServiceOutputTypes =
|
|
592
627
|
| AcceptPredictionsCommandOutput
|
|
593
628
|
| AcceptSubscriptionRequestCommandOutput
|
|
629
|
+
| AssociateEnvironmentRoleCommandOutput
|
|
594
630
|
| CancelMetadataGenerationRunCommandOutput
|
|
595
631
|
| CancelSubscriptionCommandOutput
|
|
596
632
|
| CreateAssetCommandOutput
|
|
@@ -598,6 +634,7 @@ export type ServiceOutputTypes =
|
|
|
598
634
|
| CreateAssetTypeCommandOutput
|
|
599
635
|
| CreateDataSourceCommandOutput
|
|
600
636
|
| CreateDomainCommandOutput
|
|
637
|
+
| CreateEnvironmentActionCommandOutput
|
|
601
638
|
| CreateEnvironmentCommandOutput
|
|
602
639
|
| CreateEnvironmentProfileCommandOutput
|
|
603
640
|
| CreateFormTypeCommandOutput
|
|
@@ -615,6 +652,7 @@ export type ServiceOutputTypes =
|
|
|
615
652
|
| DeleteAssetTypeCommandOutput
|
|
616
653
|
| DeleteDataSourceCommandOutput
|
|
617
654
|
| DeleteDomainCommandOutput
|
|
655
|
+
| DeleteEnvironmentActionCommandOutput
|
|
618
656
|
| DeleteEnvironmentBlueprintConfigurationCommandOutput
|
|
619
657
|
| DeleteEnvironmentCommandOutput
|
|
620
658
|
| DeleteEnvironmentProfileCommandOutput
|
|
@@ -628,11 +666,13 @@ export type ServiceOutputTypes =
|
|
|
628
666
|
| DeleteSubscriptionRequestCommandOutput
|
|
629
667
|
| DeleteSubscriptionTargetCommandOutput
|
|
630
668
|
| DeleteTimeSeriesDataPointsCommandOutput
|
|
669
|
+
| DisassociateEnvironmentRoleCommandOutput
|
|
631
670
|
| GetAssetCommandOutput
|
|
632
671
|
| GetAssetTypeCommandOutput
|
|
633
672
|
| GetDataSourceCommandOutput
|
|
634
673
|
| GetDataSourceRunCommandOutput
|
|
635
674
|
| GetDomainCommandOutput
|
|
675
|
+
| GetEnvironmentActionCommandOutput
|
|
636
676
|
| GetEnvironmentBlueprintCommandOutput
|
|
637
677
|
| GetEnvironmentBlueprintConfigurationCommandOutput
|
|
638
678
|
| GetEnvironmentCommandOutput
|
|
@@ -656,6 +696,7 @@ export type ServiceOutputTypes =
|
|
|
656
696
|
| ListDataSourceRunsCommandOutput
|
|
657
697
|
| ListDataSourcesCommandOutput
|
|
658
698
|
| ListDomainsCommandOutput
|
|
699
|
+
| ListEnvironmentActionsCommandOutput
|
|
659
700
|
| ListEnvironmentBlueprintConfigurationsCommandOutput
|
|
660
701
|
| ListEnvironmentBlueprintsCommandOutput
|
|
661
702
|
| ListEnvironmentProfilesCommandOutput
|
|
@@ -686,6 +727,7 @@ export type ServiceOutputTypes =
|
|
|
686
727
|
| UntagResourceCommandOutput
|
|
687
728
|
| UpdateDataSourceCommandOutput
|
|
688
729
|
| UpdateDomainCommandOutput
|
|
730
|
+
| UpdateEnvironmentActionCommandOutput
|
|
689
731
|
| UpdateEnvironmentCommandOutput
|
|
690
732
|
| UpdateEnvironmentProfileCommandOutput
|
|
691
733
|
| UpdateGlossaryCommandOutput
|
|
@@ -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
|
+
AssociateEnvironmentRoleInput,
|
|
10
|
+
AssociateEnvironmentRoleOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface AssociateEnvironmentRoleCommandInput
|
|
15
|
+
extends AssociateEnvironmentRoleInput {}
|
|
16
|
+
export interface AssociateEnvironmentRoleCommandOutput
|
|
17
|
+
extends AssociateEnvironmentRoleOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const AssociateEnvironmentRoleCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: AssociateEnvironmentRoleCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
AssociateEnvironmentRoleCommandInput,
|
|
24
|
+
AssociateEnvironmentRoleCommandOutput,
|
|
25
|
+
DataZoneClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: AssociateEnvironmentRoleCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
AssociateEnvironmentRoleCommandInput,
|
|
33
|
+
AssociateEnvironmentRoleCommandOutput,
|
|
34
|
+
DataZoneClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class AssociateEnvironmentRoleCommand extends AssociateEnvironmentRoleCommand_base {}
|