@aws-sdk/client-datazone 3.616.0 → 3.617.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +40 -0
- package/dist-cjs/index.js +573 -79
- package/dist-es/DataZone.js +10 -0
- package/dist-es/commands/CreateAssetFilterCommand.js +25 -0
- package/dist-es/commands/DeleteAssetFilterCommand.js +24 -0
- package/dist-es/commands/GetAssetFilterCommand.js +25 -0
- package/dist-es/commands/GetListingCommand.js +1 -1
- package/dist-es/commands/ListAssetFiltersCommand.js +25 -0
- package/dist-es/commands/ListEnvironmentBlueprintsCommand.js +1 -1
- package/dist-es/commands/ListEnvironmentProfilesCommand.js +1 -1
- package/dist-es/commands/ListEnvironmentsCommand.js +1 -1
- package/dist-es/commands/ListNotificationsCommand.js +1 -1
- package/dist-es/commands/UpdateAssetFilterCommand.js +25 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +49 -64
- package/dist-es/models/models_1.js +118 -1
- package/dist-es/pagination/ListAssetFiltersPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +270 -1
- package/dist-types/DataZone.d.ts +35 -0
- package/dist-types/DataZoneClient.d.ts +7 -2
- package/dist-types/commands/CreateAssetFilterCommand.d.ts +357 -0
- package/dist-types/commands/DeleteAssetFilterCommand.d.ts +81 -0
- package/dist-types/commands/DeleteListingCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetFilterCommand.d.ts +221 -0
- package/dist-types/commands/GetEnvironmentBlueprintConfigurationCommand.d.ts +10 -0
- package/dist-types/commands/GetListingCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetFiltersCommand.d.ts +98 -0
- package/dist-types/commands/ListEnvironmentBlueprintConfigurationsCommand.d.ts +10 -0
- package/dist-types/commands/ListEnvironmentBlueprintsCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListLineageNodeHistoryCommand.d.ts +1 -1
- package/dist-types/commands/ListNotificationsCommand.d.ts +1 -2
- package/dist-types/commands/PutEnvironmentBlueprintConfigurationCommand.d.ts +20 -0
- package/dist-types/commands/UpdateAssetFilterCommand.d.ts +354 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +725 -829
- package/dist-types/models/models_1.d.ts +1199 -1
- package/dist-types/pagination/ListAssetFiltersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/DataZone.d.ts +85 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateAssetFilterCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteAssetFilterCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteListingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetAssetFilterCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetListingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetFiltersCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListEnvironmentBlueprintsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEnvironmentProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListLineageNodeHistoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListNotificationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateAssetFilterCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +346 -204
- package/dist-types/ts3.4/models/models_1.d.ts +348 -3
- package/dist-types/ts3.4/pagination/ListAssetFiltersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAssetFiltersCommandInput, ListAssetFiltersCommandOutput } from "../commands/ListAssetFiltersCommand";
|
|
3
|
+
import { DataZonePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAssetFilters: (config: DataZonePaginationConfiguration, input: ListAssetFiltersCommandInput, ...rest: any[]) => Paginator<ListAssetFiltersCommandOutput>;
|
|
@@ -6,6 +6,7 @@ import { AssociateEnvironmentRoleCommandInput, AssociateEnvironmentRoleCommandOu
|
|
|
6
6
|
import { CancelMetadataGenerationRunCommandInput, CancelMetadataGenerationRunCommandOutput } from "../commands/CancelMetadataGenerationRunCommand";
|
|
7
7
|
import { CancelSubscriptionCommandInput, CancelSubscriptionCommandOutput } from "../commands/CancelSubscriptionCommand";
|
|
8
8
|
import { CreateAssetCommandInput, CreateAssetCommandOutput } from "../commands/CreateAssetCommand";
|
|
9
|
+
import { CreateAssetFilterCommandInput, CreateAssetFilterCommandOutput } from "../commands/CreateAssetFilterCommand";
|
|
9
10
|
import { CreateAssetRevisionCommandInput, CreateAssetRevisionCommandOutput } from "../commands/CreateAssetRevisionCommand";
|
|
10
11
|
import { CreateAssetTypeCommandInput, CreateAssetTypeCommandOutput } from "../commands/CreateAssetTypeCommand";
|
|
11
12
|
import { CreateDataSourceCommandInput, CreateDataSourceCommandOutput } from "../commands/CreateDataSourceCommand";
|
|
@@ -25,6 +26,7 @@ import { CreateSubscriptionRequestCommandInput, CreateSubscriptionRequestCommand
|
|
|
25
26
|
import { CreateSubscriptionTargetCommandInput, CreateSubscriptionTargetCommandOutput } from "../commands/CreateSubscriptionTargetCommand";
|
|
26
27
|
import { CreateUserProfileCommandInput, CreateUserProfileCommandOutput } from "../commands/CreateUserProfileCommand";
|
|
27
28
|
import { DeleteAssetCommandInput, DeleteAssetCommandOutput } from "../commands/DeleteAssetCommand";
|
|
29
|
+
import { DeleteAssetFilterCommandInput, DeleteAssetFilterCommandOutput } from "../commands/DeleteAssetFilterCommand";
|
|
28
30
|
import { DeleteAssetTypeCommandInput, DeleteAssetTypeCommandOutput } from "../commands/DeleteAssetTypeCommand";
|
|
29
31
|
import { DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput } from "../commands/DeleteDataSourceCommand";
|
|
30
32
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "../commands/DeleteDomainCommand";
|
|
@@ -44,6 +46,7 @@ import { DeleteSubscriptionTargetCommandInput, DeleteSubscriptionTargetCommandOu
|
|
|
44
46
|
import { DeleteTimeSeriesDataPointsCommandInput, DeleteTimeSeriesDataPointsCommandOutput } from "../commands/DeleteTimeSeriesDataPointsCommand";
|
|
45
47
|
import { DisassociateEnvironmentRoleCommandInput, DisassociateEnvironmentRoleCommandOutput } from "../commands/DisassociateEnvironmentRoleCommand";
|
|
46
48
|
import { GetAssetCommandInput, GetAssetCommandOutput } from "../commands/GetAssetCommand";
|
|
49
|
+
import { GetAssetFilterCommandInput, GetAssetFilterCommandOutput } from "../commands/GetAssetFilterCommand";
|
|
47
50
|
import { GetAssetTypeCommandInput, GetAssetTypeCommandOutput } from "../commands/GetAssetTypeCommand";
|
|
48
51
|
import { GetDataSourceCommandInput, GetDataSourceCommandOutput } from "../commands/GetDataSourceCommand";
|
|
49
52
|
import { GetDataSourceRunCommandInput, GetDataSourceRunCommandOutput } from "../commands/GetDataSourceRunCommand";
|
|
@@ -68,6 +71,7 @@ import { GetSubscriptionRequestDetailsCommandInput, GetSubscriptionRequestDetail
|
|
|
68
71
|
import { GetSubscriptionTargetCommandInput, GetSubscriptionTargetCommandOutput } from "../commands/GetSubscriptionTargetCommand";
|
|
69
72
|
import { GetTimeSeriesDataPointCommandInput, GetTimeSeriesDataPointCommandOutput } from "../commands/GetTimeSeriesDataPointCommand";
|
|
70
73
|
import { GetUserProfileCommandInput, GetUserProfileCommandOutput } from "../commands/GetUserProfileCommand";
|
|
74
|
+
import { ListAssetFiltersCommandInput, ListAssetFiltersCommandOutput } from "../commands/ListAssetFiltersCommand";
|
|
71
75
|
import { ListAssetRevisionsCommandInput, ListAssetRevisionsCommandOutput } from "../commands/ListAssetRevisionsCommand";
|
|
72
76
|
import { ListDataSourceRunActivitiesCommandInput, ListDataSourceRunActivitiesCommandOutput } from "../commands/ListDataSourceRunActivitiesCommand";
|
|
73
77
|
import { ListDataSourceRunsCommandInput, ListDataSourceRunsCommandOutput } from "../commands/ListDataSourceRunsCommand";
|
|
@@ -104,6 +108,7 @@ import { StartDataSourceRunCommandInput, StartDataSourceRunCommandOutput } from
|
|
|
104
108
|
import { StartMetadataGenerationRunCommandInput, StartMetadataGenerationRunCommandOutput } from "../commands/StartMetadataGenerationRunCommand";
|
|
105
109
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
106
110
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
111
|
+
import { UpdateAssetFilterCommandInput, UpdateAssetFilterCommandOutput } from "../commands/UpdateAssetFilterCommand";
|
|
107
112
|
import { UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput } from "../commands/UpdateDataSourceCommand";
|
|
108
113
|
import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "../commands/UpdateDomainCommand";
|
|
109
114
|
import { UpdateEnvironmentActionCommandInput, UpdateEnvironmentActionCommandOutput } from "../commands/UpdateEnvironmentActionCommand";
|
|
@@ -141,6 +146,10 @@ export declare const se_CancelSubscriptionCommand: (input: CancelSubscriptionCom
|
|
|
141
146
|
* serializeAws_restJson1CreateAssetCommand
|
|
142
147
|
*/
|
|
143
148
|
export declare const se_CreateAssetCommand: (input: CreateAssetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
149
|
+
/**
|
|
150
|
+
* serializeAws_restJson1CreateAssetFilterCommand
|
|
151
|
+
*/
|
|
152
|
+
export declare const se_CreateAssetFilterCommand: (input: CreateAssetFilterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
144
153
|
/**
|
|
145
154
|
* serializeAws_restJson1CreateAssetRevisionCommand
|
|
146
155
|
*/
|
|
@@ -217,6 +226,10 @@ export declare const se_CreateUserProfileCommand: (input: CreateUserProfileComma
|
|
|
217
226
|
* serializeAws_restJson1DeleteAssetCommand
|
|
218
227
|
*/
|
|
219
228
|
export declare const se_DeleteAssetCommand: (input: DeleteAssetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
229
|
+
/**
|
|
230
|
+
* serializeAws_restJson1DeleteAssetFilterCommand
|
|
231
|
+
*/
|
|
232
|
+
export declare const se_DeleteAssetFilterCommand: (input: DeleteAssetFilterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
220
233
|
/**
|
|
221
234
|
* serializeAws_restJson1DeleteAssetTypeCommand
|
|
222
235
|
*/
|
|
@@ -293,6 +306,10 @@ export declare const se_DisassociateEnvironmentRoleCommand: (input: Disassociate
|
|
|
293
306
|
* serializeAws_restJson1GetAssetCommand
|
|
294
307
|
*/
|
|
295
308
|
export declare const se_GetAssetCommand: (input: GetAssetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
309
|
+
/**
|
|
310
|
+
* serializeAws_restJson1GetAssetFilterCommand
|
|
311
|
+
*/
|
|
312
|
+
export declare const se_GetAssetFilterCommand: (input: GetAssetFilterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
296
313
|
/**
|
|
297
314
|
* serializeAws_restJson1GetAssetTypeCommand
|
|
298
315
|
*/
|
|
@@ -389,6 +406,10 @@ export declare const se_GetTimeSeriesDataPointCommand: (input: GetTimeSeriesData
|
|
|
389
406
|
* serializeAws_restJson1GetUserProfileCommand
|
|
390
407
|
*/
|
|
391
408
|
export declare const se_GetUserProfileCommand: (input: GetUserProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
409
|
+
/**
|
|
410
|
+
* serializeAws_restJson1ListAssetFiltersCommand
|
|
411
|
+
*/
|
|
412
|
+
export declare const se_ListAssetFiltersCommand: (input: ListAssetFiltersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
392
413
|
/**
|
|
393
414
|
* serializeAws_restJson1ListAssetRevisionsCommand
|
|
394
415
|
*/
|
|
@@ -533,6 +554,10 @@ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, con
|
|
|
533
554
|
* serializeAws_restJson1UntagResourceCommand
|
|
534
555
|
*/
|
|
535
556
|
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
557
|
+
/**
|
|
558
|
+
* serializeAws_restJson1UpdateAssetFilterCommand
|
|
559
|
+
*/
|
|
560
|
+
export declare const se_UpdateAssetFilterCommand: (input: UpdateAssetFilterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
536
561
|
/**
|
|
537
562
|
* serializeAws_restJson1UpdateDataSourceCommand
|
|
538
563
|
*/
|
|
@@ -609,6 +634,10 @@ export declare const de_CancelSubscriptionCommand: (output: __HttpResponse, cont
|
|
|
609
634
|
* deserializeAws_restJson1CreateAssetCommand
|
|
610
635
|
*/
|
|
611
636
|
export declare const de_CreateAssetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAssetCommandOutput>;
|
|
637
|
+
/**
|
|
638
|
+
* deserializeAws_restJson1CreateAssetFilterCommand
|
|
639
|
+
*/
|
|
640
|
+
export declare const de_CreateAssetFilterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAssetFilterCommandOutput>;
|
|
612
641
|
/**
|
|
613
642
|
* deserializeAws_restJson1CreateAssetRevisionCommand
|
|
614
643
|
*/
|
|
@@ -685,6 +714,10 @@ export declare const de_CreateUserProfileCommand: (output: __HttpResponse, conte
|
|
|
685
714
|
* deserializeAws_restJson1DeleteAssetCommand
|
|
686
715
|
*/
|
|
687
716
|
export declare const de_DeleteAssetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAssetCommandOutput>;
|
|
717
|
+
/**
|
|
718
|
+
* deserializeAws_restJson1DeleteAssetFilterCommand
|
|
719
|
+
*/
|
|
720
|
+
export declare const de_DeleteAssetFilterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAssetFilterCommandOutput>;
|
|
688
721
|
/**
|
|
689
722
|
* deserializeAws_restJson1DeleteAssetTypeCommand
|
|
690
723
|
*/
|
|
@@ -761,6 +794,10 @@ export declare const de_DisassociateEnvironmentRoleCommand: (output: __HttpRespo
|
|
|
761
794
|
* deserializeAws_restJson1GetAssetCommand
|
|
762
795
|
*/
|
|
763
796
|
export declare const de_GetAssetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAssetCommandOutput>;
|
|
797
|
+
/**
|
|
798
|
+
* deserializeAws_restJson1GetAssetFilterCommand
|
|
799
|
+
*/
|
|
800
|
+
export declare const de_GetAssetFilterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAssetFilterCommandOutput>;
|
|
764
801
|
/**
|
|
765
802
|
* deserializeAws_restJson1GetAssetTypeCommand
|
|
766
803
|
*/
|
|
@@ -857,6 +894,10 @@ export declare const de_GetTimeSeriesDataPointCommand: (output: __HttpResponse,
|
|
|
857
894
|
* deserializeAws_restJson1GetUserProfileCommand
|
|
858
895
|
*/
|
|
859
896
|
export declare const de_GetUserProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserProfileCommandOutput>;
|
|
897
|
+
/**
|
|
898
|
+
* deserializeAws_restJson1ListAssetFiltersCommand
|
|
899
|
+
*/
|
|
900
|
+
export declare const de_ListAssetFiltersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssetFiltersCommandOutput>;
|
|
860
901
|
/**
|
|
861
902
|
* deserializeAws_restJson1ListAssetRevisionsCommand
|
|
862
903
|
*/
|
|
@@ -1001,6 +1042,10 @@ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __
|
|
|
1001
1042
|
* deserializeAws_restJson1UntagResourceCommand
|
|
1002
1043
|
*/
|
|
1003
1044
|
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
1045
|
+
/**
|
|
1046
|
+
* deserializeAws_restJson1UpdateAssetFilterCommand
|
|
1047
|
+
*/
|
|
1048
|
+
export declare const de_UpdateAssetFilterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAssetFilterCommandOutput>;
|
|
1004
1049
|
/**
|
|
1005
1050
|
* deserializeAws_restJson1UpdateDataSourceCommand
|
|
1006
1051
|
*/
|
|
@@ -23,6 +23,10 @@ import {
|
|
|
23
23
|
CreateAssetCommandInput,
|
|
24
24
|
CreateAssetCommandOutput,
|
|
25
25
|
} from "./commands/CreateAssetCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreateAssetFilterCommandInput,
|
|
28
|
+
CreateAssetFilterCommandOutput,
|
|
29
|
+
} from "./commands/CreateAssetFilterCommand";
|
|
26
30
|
import {
|
|
27
31
|
CreateAssetRevisionCommandInput,
|
|
28
32
|
CreateAssetRevisionCommandOutput,
|
|
@@ -99,6 +103,10 @@ import {
|
|
|
99
103
|
DeleteAssetCommandInput,
|
|
100
104
|
DeleteAssetCommandOutput,
|
|
101
105
|
} from "./commands/DeleteAssetCommand";
|
|
106
|
+
import {
|
|
107
|
+
DeleteAssetFilterCommandInput,
|
|
108
|
+
DeleteAssetFilterCommandOutput,
|
|
109
|
+
} from "./commands/DeleteAssetFilterCommand";
|
|
102
110
|
import {
|
|
103
111
|
DeleteAssetTypeCommandInput,
|
|
104
112
|
DeleteAssetTypeCommandOutput,
|
|
@@ -175,6 +183,10 @@ import {
|
|
|
175
183
|
GetAssetCommandInput,
|
|
176
184
|
GetAssetCommandOutput,
|
|
177
185
|
} from "./commands/GetAssetCommand";
|
|
186
|
+
import {
|
|
187
|
+
GetAssetFilterCommandInput,
|
|
188
|
+
GetAssetFilterCommandOutput,
|
|
189
|
+
} from "./commands/GetAssetFilterCommand";
|
|
178
190
|
import {
|
|
179
191
|
GetAssetTypeCommandInput,
|
|
180
192
|
GetAssetTypeCommandOutput,
|
|
@@ -271,6 +283,10 @@ import {
|
|
|
271
283
|
GetUserProfileCommandInput,
|
|
272
284
|
GetUserProfileCommandOutput,
|
|
273
285
|
} from "./commands/GetUserProfileCommand";
|
|
286
|
+
import {
|
|
287
|
+
ListAssetFiltersCommandInput,
|
|
288
|
+
ListAssetFiltersCommandOutput,
|
|
289
|
+
} from "./commands/ListAssetFiltersCommand";
|
|
274
290
|
import {
|
|
275
291
|
ListAssetRevisionsCommandInput,
|
|
276
292
|
ListAssetRevisionsCommandOutput,
|
|
@@ -415,6 +431,10 @@ import {
|
|
|
415
431
|
UntagResourceCommandInput,
|
|
416
432
|
UntagResourceCommandOutput,
|
|
417
433
|
} from "./commands/UntagResourceCommand";
|
|
434
|
+
import {
|
|
435
|
+
UpdateAssetFilterCommandInput,
|
|
436
|
+
UpdateAssetFilterCommandOutput,
|
|
437
|
+
} from "./commands/UpdateAssetFilterCommand";
|
|
418
438
|
import {
|
|
419
439
|
UpdateDataSourceCommandInput,
|
|
420
440
|
UpdateDataSourceCommandOutput,
|
|
@@ -547,6 +567,19 @@ export interface DataZone {
|
|
|
547
567
|
options: __HttpHandlerOptions,
|
|
548
568
|
cb: (err: any, data?: CreateAssetCommandOutput) => void
|
|
549
569
|
): void;
|
|
570
|
+
createAssetFilter(
|
|
571
|
+
args: CreateAssetFilterCommandInput,
|
|
572
|
+
options?: __HttpHandlerOptions
|
|
573
|
+
): Promise<CreateAssetFilterCommandOutput>;
|
|
574
|
+
createAssetFilter(
|
|
575
|
+
args: CreateAssetFilterCommandInput,
|
|
576
|
+
cb: (err: any, data?: CreateAssetFilterCommandOutput) => void
|
|
577
|
+
): void;
|
|
578
|
+
createAssetFilter(
|
|
579
|
+
args: CreateAssetFilterCommandInput,
|
|
580
|
+
options: __HttpHandlerOptions,
|
|
581
|
+
cb: (err: any, data?: CreateAssetFilterCommandOutput) => void
|
|
582
|
+
): void;
|
|
550
583
|
createAssetRevision(
|
|
551
584
|
args: CreateAssetRevisionCommandInput,
|
|
552
585
|
options?: __HttpHandlerOptions
|
|
@@ -794,6 +827,19 @@ export interface DataZone {
|
|
|
794
827
|
options: __HttpHandlerOptions,
|
|
795
828
|
cb: (err: any, data?: DeleteAssetCommandOutput) => void
|
|
796
829
|
): void;
|
|
830
|
+
deleteAssetFilter(
|
|
831
|
+
args: DeleteAssetFilterCommandInput,
|
|
832
|
+
options?: __HttpHandlerOptions
|
|
833
|
+
): Promise<DeleteAssetFilterCommandOutput>;
|
|
834
|
+
deleteAssetFilter(
|
|
835
|
+
args: DeleteAssetFilterCommandInput,
|
|
836
|
+
cb: (err: any, data?: DeleteAssetFilterCommandOutput) => void
|
|
837
|
+
): void;
|
|
838
|
+
deleteAssetFilter(
|
|
839
|
+
args: DeleteAssetFilterCommandInput,
|
|
840
|
+
options: __HttpHandlerOptions,
|
|
841
|
+
cb: (err: any, data?: DeleteAssetFilterCommandOutput) => void
|
|
842
|
+
): void;
|
|
797
843
|
deleteAssetType(
|
|
798
844
|
args: DeleteAssetTypeCommandInput,
|
|
799
845
|
options?: __HttpHandlerOptions
|
|
@@ -1047,6 +1093,19 @@ export interface DataZone {
|
|
|
1047
1093
|
options: __HttpHandlerOptions,
|
|
1048
1094
|
cb: (err: any, data?: GetAssetCommandOutput) => void
|
|
1049
1095
|
): void;
|
|
1096
|
+
getAssetFilter(
|
|
1097
|
+
args: GetAssetFilterCommandInput,
|
|
1098
|
+
options?: __HttpHandlerOptions
|
|
1099
|
+
): Promise<GetAssetFilterCommandOutput>;
|
|
1100
|
+
getAssetFilter(
|
|
1101
|
+
args: GetAssetFilterCommandInput,
|
|
1102
|
+
cb: (err: any, data?: GetAssetFilterCommandOutput) => void
|
|
1103
|
+
): void;
|
|
1104
|
+
getAssetFilter(
|
|
1105
|
+
args: GetAssetFilterCommandInput,
|
|
1106
|
+
options: __HttpHandlerOptions,
|
|
1107
|
+
cb: (err: any, data?: GetAssetFilterCommandOutput) => void
|
|
1108
|
+
): void;
|
|
1050
1109
|
getAssetType(
|
|
1051
1110
|
args: GetAssetTypeCommandInput,
|
|
1052
1111
|
options?: __HttpHandlerOptions
|
|
@@ -1365,6 +1424,19 @@ export interface DataZone {
|
|
|
1365
1424
|
options: __HttpHandlerOptions,
|
|
1366
1425
|
cb: (err: any, data?: GetUserProfileCommandOutput) => void
|
|
1367
1426
|
): void;
|
|
1427
|
+
listAssetFilters(
|
|
1428
|
+
args: ListAssetFiltersCommandInput,
|
|
1429
|
+
options?: __HttpHandlerOptions
|
|
1430
|
+
): Promise<ListAssetFiltersCommandOutput>;
|
|
1431
|
+
listAssetFilters(
|
|
1432
|
+
args: ListAssetFiltersCommandInput,
|
|
1433
|
+
cb: (err: any, data?: ListAssetFiltersCommandOutput) => void
|
|
1434
|
+
): void;
|
|
1435
|
+
listAssetFilters(
|
|
1436
|
+
args: ListAssetFiltersCommandInput,
|
|
1437
|
+
options: __HttpHandlerOptions,
|
|
1438
|
+
cb: (err: any, data?: ListAssetFiltersCommandOutput) => void
|
|
1439
|
+
): void;
|
|
1368
1440
|
listAssetRevisions(
|
|
1369
1441
|
args: ListAssetRevisionsCommandInput,
|
|
1370
1442
|
options?: __HttpHandlerOptions
|
|
@@ -1846,6 +1918,19 @@ export interface DataZone {
|
|
|
1846
1918
|
options: __HttpHandlerOptions,
|
|
1847
1919
|
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
1848
1920
|
): void;
|
|
1921
|
+
updateAssetFilter(
|
|
1922
|
+
args: UpdateAssetFilterCommandInput,
|
|
1923
|
+
options?: __HttpHandlerOptions
|
|
1924
|
+
): Promise<UpdateAssetFilterCommandOutput>;
|
|
1925
|
+
updateAssetFilter(
|
|
1926
|
+
args: UpdateAssetFilterCommandInput,
|
|
1927
|
+
cb: (err: any, data?: UpdateAssetFilterCommandOutput) => void
|
|
1928
|
+
): void;
|
|
1929
|
+
updateAssetFilter(
|
|
1930
|
+
args: UpdateAssetFilterCommandInput,
|
|
1931
|
+
options: __HttpHandlerOptions,
|
|
1932
|
+
cb: (err: any, data?: UpdateAssetFilterCommandOutput) => void
|
|
1933
|
+
): void;
|
|
1849
1934
|
updateDataSource(
|
|
1850
1935
|
args: UpdateDataSourceCommandInput,
|
|
1851
1936
|
options?: __HttpHandlerOptions
|
|
@@ -69,6 +69,10 @@ import {
|
|
|
69
69
|
CreateAssetCommandInput,
|
|
70
70
|
CreateAssetCommandOutput,
|
|
71
71
|
} from "./commands/CreateAssetCommand";
|
|
72
|
+
import {
|
|
73
|
+
CreateAssetFilterCommandInput,
|
|
74
|
+
CreateAssetFilterCommandOutput,
|
|
75
|
+
} from "./commands/CreateAssetFilterCommand";
|
|
72
76
|
import {
|
|
73
77
|
CreateAssetRevisionCommandInput,
|
|
74
78
|
CreateAssetRevisionCommandOutput,
|
|
@@ -145,6 +149,10 @@ import {
|
|
|
145
149
|
DeleteAssetCommandInput,
|
|
146
150
|
DeleteAssetCommandOutput,
|
|
147
151
|
} from "./commands/DeleteAssetCommand";
|
|
152
|
+
import {
|
|
153
|
+
DeleteAssetFilterCommandInput,
|
|
154
|
+
DeleteAssetFilterCommandOutput,
|
|
155
|
+
} from "./commands/DeleteAssetFilterCommand";
|
|
148
156
|
import {
|
|
149
157
|
DeleteAssetTypeCommandInput,
|
|
150
158
|
DeleteAssetTypeCommandOutput,
|
|
@@ -221,6 +229,10 @@ import {
|
|
|
221
229
|
GetAssetCommandInput,
|
|
222
230
|
GetAssetCommandOutput,
|
|
223
231
|
} from "./commands/GetAssetCommand";
|
|
232
|
+
import {
|
|
233
|
+
GetAssetFilterCommandInput,
|
|
234
|
+
GetAssetFilterCommandOutput,
|
|
235
|
+
} from "./commands/GetAssetFilterCommand";
|
|
224
236
|
import {
|
|
225
237
|
GetAssetTypeCommandInput,
|
|
226
238
|
GetAssetTypeCommandOutput,
|
|
@@ -317,6 +329,10 @@ import {
|
|
|
317
329
|
GetUserProfileCommandInput,
|
|
318
330
|
GetUserProfileCommandOutput,
|
|
319
331
|
} from "./commands/GetUserProfileCommand";
|
|
332
|
+
import {
|
|
333
|
+
ListAssetFiltersCommandInput,
|
|
334
|
+
ListAssetFiltersCommandOutput,
|
|
335
|
+
} from "./commands/ListAssetFiltersCommand";
|
|
320
336
|
import {
|
|
321
337
|
ListAssetRevisionsCommandInput,
|
|
322
338
|
ListAssetRevisionsCommandOutput,
|
|
@@ -461,6 +477,10 @@ import {
|
|
|
461
477
|
UntagResourceCommandInput,
|
|
462
478
|
UntagResourceCommandOutput,
|
|
463
479
|
} from "./commands/UntagResourceCommand";
|
|
480
|
+
import {
|
|
481
|
+
UpdateAssetFilterCommandInput,
|
|
482
|
+
UpdateAssetFilterCommandOutput,
|
|
483
|
+
} from "./commands/UpdateAssetFilterCommand";
|
|
464
484
|
import {
|
|
465
485
|
UpdateDataSourceCommandInput,
|
|
466
486
|
UpdateDataSourceCommandOutput,
|
|
@@ -527,6 +547,7 @@ export type ServiceInputTypes =
|
|
|
527
547
|
| CancelMetadataGenerationRunCommandInput
|
|
528
548
|
| CancelSubscriptionCommandInput
|
|
529
549
|
| CreateAssetCommandInput
|
|
550
|
+
| CreateAssetFilterCommandInput
|
|
530
551
|
| CreateAssetRevisionCommandInput
|
|
531
552
|
| CreateAssetTypeCommandInput
|
|
532
553
|
| CreateDataSourceCommandInput
|
|
@@ -546,6 +567,7 @@ export type ServiceInputTypes =
|
|
|
546
567
|
| CreateSubscriptionTargetCommandInput
|
|
547
568
|
| CreateUserProfileCommandInput
|
|
548
569
|
| DeleteAssetCommandInput
|
|
570
|
+
| DeleteAssetFilterCommandInput
|
|
549
571
|
| DeleteAssetTypeCommandInput
|
|
550
572
|
| DeleteDataSourceCommandInput
|
|
551
573
|
| DeleteDomainCommandInput
|
|
@@ -565,6 +587,7 @@ export type ServiceInputTypes =
|
|
|
565
587
|
| DeleteTimeSeriesDataPointsCommandInput
|
|
566
588
|
| DisassociateEnvironmentRoleCommandInput
|
|
567
589
|
| GetAssetCommandInput
|
|
590
|
+
| GetAssetFilterCommandInput
|
|
568
591
|
| GetAssetTypeCommandInput
|
|
569
592
|
| GetDataSourceCommandInput
|
|
570
593
|
| GetDataSourceRunCommandInput
|
|
@@ -589,6 +612,7 @@ export type ServiceInputTypes =
|
|
|
589
612
|
| GetSubscriptionTargetCommandInput
|
|
590
613
|
| GetTimeSeriesDataPointCommandInput
|
|
591
614
|
| GetUserProfileCommandInput
|
|
615
|
+
| ListAssetFiltersCommandInput
|
|
592
616
|
| ListAssetRevisionsCommandInput
|
|
593
617
|
| ListDataSourceRunActivitiesCommandInput
|
|
594
618
|
| ListDataSourceRunsCommandInput
|
|
@@ -625,6 +649,7 @@ export type ServiceInputTypes =
|
|
|
625
649
|
| StartMetadataGenerationRunCommandInput
|
|
626
650
|
| TagResourceCommandInput
|
|
627
651
|
| UntagResourceCommandInput
|
|
652
|
+
| UpdateAssetFilterCommandInput
|
|
628
653
|
| UpdateDataSourceCommandInput
|
|
629
654
|
| UpdateDomainCommandInput
|
|
630
655
|
| UpdateEnvironmentActionCommandInput
|
|
@@ -645,6 +670,7 @@ export type ServiceOutputTypes =
|
|
|
645
670
|
| CancelMetadataGenerationRunCommandOutput
|
|
646
671
|
| CancelSubscriptionCommandOutput
|
|
647
672
|
| CreateAssetCommandOutput
|
|
673
|
+
| CreateAssetFilterCommandOutput
|
|
648
674
|
| CreateAssetRevisionCommandOutput
|
|
649
675
|
| CreateAssetTypeCommandOutput
|
|
650
676
|
| CreateDataSourceCommandOutput
|
|
@@ -664,6 +690,7 @@ export type ServiceOutputTypes =
|
|
|
664
690
|
| CreateSubscriptionTargetCommandOutput
|
|
665
691
|
| CreateUserProfileCommandOutput
|
|
666
692
|
| DeleteAssetCommandOutput
|
|
693
|
+
| DeleteAssetFilterCommandOutput
|
|
667
694
|
| DeleteAssetTypeCommandOutput
|
|
668
695
|
| DeleteDataSourceCommandOutput
|
|
669
696
|
| DeleteDomainCommandOutput
|
|
@@ -683,6 +710,7 @@ export type ServiceOutputTypes =
|
|
|
683
710
|
| DeleteTimeSeriesDataPointsCommandOutput
|
|
684
711
|
| DisassociateEnvironmentRoleCommandOutput
|
|
685
712
|
| GetAssetCommandOutput
|
|
713
|
+
| GetAssetFilterCommandOutput
|
|
686
714
|
| GetAssetTypeCommandOutput
|
|
687
715
|
| GetDataSourceCommandOutput
|
|
688
716
|
| GetDataSourceRunCommandOutput
|
|
@@ -707,6 +735,7 @@ export type ServiceOutputTypes =
|
|
|
707
735
|
| GetSubscriptionTargetCommandOutput
|
|
708
736
|
| GetTimeSeriesDataPointCommandOutput
|
|
709
737
|
| GetUserProfileCommandOutput
|
|
738
|
+
| ListAssetFiltersCommandOutput
|
|
710
739
|
| ListAssetRevisionsCommandOutput
|
|
711
740
|
| ListDataSourceRunActivitiesCommandOutput
|
|
712
741
|
| ListDataSourceRunsCommandOutput
|
|
@@ -743,6 +772,7 @@ export type ServiceOutputTypes =
|
|
|
743
772
|
| StartMetadataGenerationRunCommandOutput
|
|
744
773
|
| TagResourceCommandOutput
|
|
745
774
|
| UntagResourceCommandOutput
|
|
775
|
+
| UpdateAssetFilterCommandOutput
|
|
746
776
|
| UpdateDataSourceCommandOutput
|
|
747
777
|
| UpdateDomainCommandOutput
|
|
748
778
|
| UpdateEnvironmentActionCommandOutput
|
|
@@ -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
|
+
CreateAssetFilterInput,
|
|
10
|
+
CreateAssetFilterOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateAssetFilterCommandInput extends CreateAssetFilterInput {}
|
|
15
|
+
export interface CreateAssetFilterCommandOutput
|
|
16
|
+
extends CreateAssetFilterOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateAssetFilterCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateAssetFilterCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateAssetFilterCommandInput,
|
|
23
|
+
CreateAssetFilterCommandOutput,
|
|
24
|
+
DataZoneClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateAssetFilterCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateAssetFilterCommandInput,
|
|
32
|
+
CreateAssetFilterCommandOutput,
|
|
33
|
+
DataZoneClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CreateAssetFilterCommand extends CreateAssetFilterCommand_base {}
|
|
@@ -0,0 +1,34 @@
|
|
|
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 { DeleteAssetFilterInput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteAssetFilterCommandInput extends DeleteAssetFilterInput {}
|
|
12
|
+
export interface DeleteAssetFilterCommandOutput extends __MetadataBearer {}
|
|
13
|
+
declare const DeleteAssetFilterCommand_base: {
|
|
14
|
+
new (
|
|
15
|
+
input: DeleteAssetFilterCommandInput
|
|
16
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
17
|
+
DeleteAssetFilterCommandInput,
|
|
18
|
+
DeleteAssetFilterCommandOutput,
|
|
19
|
+
DataZoneClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
new (
|
|
24
|
+
__0_0: DeleteAssetFilterCommandInput
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
DeleteAssetFilterCommandInput,
|
|
27
|
+
DeleteAssetFilterCommandOutput,
|
|
28
|
+
DataZoneClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
32
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
33
|
+
};
|
|
34
|
+
export declare class DeleteAssetFilterCommand extends DeleteAssetFilterCommand_base {}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import { DeleteListingInput, DeleteListingOutput } from "../models/
|
|
8
|
+
import { DeleteListingInput, DeleteListingOutput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface DeleteListingCommandInput extends DeleteListingInput {}
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { GetAssetFilterInput } from "../models/models_0";
|
|
9
|
+
import { GetAssetFilterOutput } from "../models/models_1";
|
|
10
|
+
export { __MetadataBearer };
|
|
11
|
+
export { $Command };
|
|
12
|
+
export interface GetAssetFilterCommandInput extends GetAssetFilterInput {}
|
|
13
|
+
export interface GetAssetFilterCommandOutput
|
|
14
|
+
extends GetAssetFilterOutput,
|
|
15
|
+
__MetadataBearer {}
|
|
16
|
+
declare const GetAssetFilterCommand_base: {
|
|
17
|
+
new (
|
|
18
|
+
input: GetAssetFilterCommandInput
|
|
19
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
20
|
+
GetAssetFilterCommandInput,
|
|
21
|
+
GetAssetFilterCommandOutput,
|
|
22
|
+
DataZoneClientResolvedConfig,
|
|
23
|
+
ServiceInputTypes,
|
|
24
|
+
ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
new (
|
|
27
|
+
__0_0: GetAssetFilterCommandInput
|
|
28
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
29
|
+
GetAssetFilterCommandInput,
|
|
30
|
+
GetAssetFilterCommandOutput,
|
|
31
|
+
DataZoneClientResolvedConfig,
|
|
32
|
+
ServiceInputTypes,
|
|
33
|
+
ServiceOutputTypes
|
|
34
|
+
>;
|
|
35
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
36
|
+
};
|
|
37
|
+
export declare class GetAssetFilterCommand extends GetAssetFilterCommand_base {}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import { GetListingInput, GetListingOutput } from "../models/
|
|
8
|
+
import { GetListingInput, GetListingOutput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface GetListingCommandInput extends GetListingInput {}
|
|
@@ -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
|
+
ListAssetFiltersInput,
|
|
10
|
+
ListAssetFiltersOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListAssetFiltersCommandInput extends ListAssetFiltersInput {}
|
|
15
|
+
export interface ListAssetFiltersCommandOutput
|
|
16
|
+
extends ListAssetFiltersOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListAssetFiltersCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListAssetFiltersCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListAssetFiltersCommandInput,
|
|
23
|
+
ListAssetFiltersCommandOutput,
|
|
24
|
+
DataZoneClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListAssetFiltersCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListAssetFiltersCommandInput,
|
|
32
|
+
ListAssetFiltersCommandOutput,
|
|
33
|
+
DataZoneClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListAssetFiltersCommand extends ListAssetFiltersCommand_base {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ListEnvironmentBlueprintsInput,
|
|
10
10
|
ListEnvironmentBlueprintsOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ListEnvironmentBlueprintsCommandInput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ListEnvironmentsInput,
|
|
10
10
|
ListEnvironmentsOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ListEnvironmentsCommandInput extends ListEnvironmentsInput {}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
ListNotificationsInput,
|
|
10
|
+
ListNotificationsOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface ListNotificationsCommandInput extends ListNotificationsInput {}
|