@aws-sdk/client-datazone 3.614.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.
Files changed (70) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +578 -84
  3. package/dist-es/DataZone.js +10 -0
  4. package/dist-es/DataZoneClient.js +5 -5
  5. package/dist-es/commands/CreateAssetFilterCommand.js +25 -0
  6. package/dist-es/commands/DeleteAssetFilterCommand.js +24 -0
  7. package/dist-es/commands/GetAssetFilterCommand.js +25 -0
  8. package/dist-es/commands/GetListingCommand.js +1 -1
  9. package/dist-es/commands/ListAssetFiltersCommand.js +25 -0
  10. package/dist-es/commands/ListEnvironmentBlueprintsCommand.js +1 -1
  11. package/dist-es/commands/ListEnvironmentProfilesCommand.js +1 -1
  12. package/dist-es/commands/ListEnvironmentsCommand.js +1 -1
  13. package/dist-es/commands/ListNotificationsCommand.js +1 -1
  14. package/dist-es/commands/UpdateAssetFilterCommand.js +25 -0
  15. package/dist-es/commands/index.js +5 -0
  16. package/dist-es/models/models_0.js +49 -64
  17. package/dist-es/models/models_1.js +118 -1
  18. package/dist-es/pagination/ListAssetFiltersPaginator.js +4 -0
  19. package/dist-es/pagination/index.js +1 -0
  20. package/dist-es/protocols/Aws_restJson1.js +270 -1
  21. package/dist-types/DataZone.d.ts +35 -0
  22. package/dist-types/DataZoneClient.d.ts +9 -4
  23. package/dist-types/commands/CreateAssetFilterCommand.d.ts +357 -0
  24. package/dist-types/commands/DeleteAssetFilterCommand.d.ts +81 -0
  25. package/dist-types/commands/DeleteListingCommand.d.ts +1 -1
  26. package/dist-types/commands/GetAssetFilterCommand.d.ts +221 -0
  27. package/dist-types/commands/GetEnvironmentBlueprintConfigurationCommand.d.ts +10 -0
  28. package/dist-types/commands/GetListingCommand.d.ts +1 -1
  29. package/dist-types/commands/ListAssetFiltersCommand.d.ts +98 -0
  30. package/dist-types/commands/ListEnvironmentBlueprintConfigurationsCommand.d.ts +10 -0
  31. package/dist-types/commands/ListEnvironmentBlueprintsCommand.d.ts +1 -1
  32. package/dist-types/commands/ListEnvironmentProfilesCommand.d.ts +1 -1
  33. package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -1
  34. package/dist-types/commands/ListLineageNodeHistoryCommand.d.ts +1 -1
  35. package/dist-types/commands/ListNotificationsCommand.d.ts +1 -2
  36. package/dist-types/commands/PutEnvironmentBlueprintConfigurationCommand.d.ts +20 -0
  37. package/dist-types/commands/UpdateAssetFilterCommand.d.ts +354 -0
  38. package/dist-types/commands/index.d.ts +5 -0
  39. package/dist-types/models/models_0.d.ts +725 -829
  40. package/dist-types/models/models_1.d.ts +1199 -1
  41. package/dist-types/pagination/ListAssetFiltersPaginator.d.ts +7 -0
  42. package/dist-types/pagination/index.d.ts +1 -0
  43. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  44. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  45. package/dist-types/runtimeConfig.d.ts +1 -1
  46. package/dist-types/runtimeConfig.native.d.ts +1 -1
  47. package/dist-types/ts3.4/DataZone.d.ts +85 -0
  48. package/dist-types/ts3.4/DataZoneClient.d.ts +32 -2
  49. package/dist-types/ts3.4/commands/CreateAssetFilterCommand.d.ts +39 -0
  50. package/dist-types/ts3.4/commands/DeleteAssetFilterCommand.d.ts +34 -0
  51. package/dist-types/ts3.4/commands/DeleteListingCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/GetAssetFilterCommand.d.ts +37 -0
  53. package/dist-types/ts3.4/commands/GetListingCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/ListAssetFiltersCommand.d.ts +39 -0
  55. package/dist-types/ts3.4/commands/ListEnvironmentBlueprintsCommand.d.ts +1 -1
  56. package/dist-types/ts3.4/commands/ListEnvironmentProfilesCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +1 -1
  58. package/dist-types/ts3.4/commands/ListLineageNodeHistoryCommand.d.ts +1 -1
  59. package/dist-types/ts3.4/commands/ListNotificationsCommand.d.ts +4 -2
  60. package/dist-types/ts3.4/commands/UpdateAssetFilterCommand.d.ts +39 -0
  61. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  62. package/dist-types/ts3.4/models/models_0.d.ts +346 -204
  63. package/dist-types/ts3.4/models/models_1.d.ts +348 -3
  64. package/dist-types/ts3.4/pagination/ListAssetFiltersPaginator.d.ts +11 -0
  65. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  66. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  67. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  68. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  69. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  70. package/package.json +17 -17
@@ -1,8 +1,10 @@
1
1
  import {
2
2
  ActionParameters,
3
3
  AssetItem,
4
+ AssetListing,
4
5
  AssetListingItem,
5
6
  AssetTypeItem,
7
+ ColumnFilterConfiguration,
6
8
  ConfigurableEnvironmentAction,
7
9
  CustomParameter,
8
10
  DataProductSummary,
@@ -11,6 +13,7 @@ import {
11
13
  EnvironmentParameter,
12
14
  EnvironmentStatus,
13
15
  FailureCause,
16
+ FilterStatus,
14
17
  FormEntryOutput,
15
18
  FormTypeStatus,
16
19
  GlossaryStatus,
@@ -18,13 +21,13 @@ import {
18
21
  GrantedEntity,
19
22
  GroupProfileStatus,
20
23
  Import,
24
+ ListingStatus,
21
25
  Model,
22
- NotificationType,
23
26
  ProjectDeletionError,
24
27
  ProjectStatus,
25
28
  ProvisioningProperties,
26
29
  Resource,
27
- SortOrder,
30
+ RowFilterExpression,
28
31
  SubscribedAsset,
29
32
  SubscribedListing,
30
33
  SubscribedPrincipal,
@@ -33,7 +36,6 @@ import {
33
36
  SubscriptionRequestStatus,
34
37
  SubscriptionStatus,
35
38
  SubscriptionTargetForm,
36
- TaskStatus,
37
39
  TermRelations,
38
40
  TimeSeriesDataPointFormOutput,
39
41
  TimeSeriesDataPointSummaryFormOutput,
@@ -43,6 +45,185 @@ import {
43
45
  UserProfileStatus,
44
46
  UserProfileType,
45
47
  } from "./models_0";
48
+ export interface ListEnvironmentBlueprintsInput {
49
+ domainIdentifier: string | undefined;
50
+ maxResults?: number;
51
+ nextToken?: string;
52
+ name?: string;
53
+ managed?: boolean;
54
+ }
55
+ export interface EnvironmentBlueprintSummary {
56
+ id: string | undefined;
57
+ name: string | undefined;
58
+ description?: string;
59
+ provider: string | undefined;
60
+ provisioningProperties: ProvisioningProperties | undefined;
61
+ createdAt?: Date;
62
+ updatedAt?: Date;
63
+ }
64
+ export interface ListEnvironmentBlueprintsOutput {
65
+ items: EnvironmentBlueprintSummary[] | undefined;
66
+ nextToken?: string;
67
+ }
68
+ export interface ListEnvironmentProfilesInput {
69
+ domainIdentifier: string | undefined;
70
+ awsAccountId?: string;
71
+ awsAccountRegion?: string;
72
+ environmentBlueprintIdentifier?: string;
73
+ projectIdentifier?: string;
74
+ name?: string;
75
+ nextToken?: string;
76
+ maxResults?: number;
77
+ }
78
+ export interface EnvironmentProfileSummary {
79
+ id: string | undefined;
80
+ domainId: string | undefined;
81
+ awsAccountId?: string;
82
+ awsAccountRegion?: string;
83
+ createdBy: string | undefined;
84
+ createdAt?: Date;
85
+ updatedAt?: Date;
86
+ name: string | undefined;
87
+ description?: string;
88
+ environmentBlueprintId: string | undefined;
89
+ projectId?: string;
90
+ }
91
+ export interface ListEnvironmentProfilesOutput {
92
+ items: EnvironmentProfileSummary[] | undefined;
93
+ nextToken?: string;
94
+ }
95
+ export interface ListEnvironmentsInput {
96
+ domainIdentifier: string | undefined;
97
+ awsAccountId?: string;
98
+ status?: EnvironmentStatus;
99
+ awsAccountRegion?: string;
100
+ projectIdentifier: string | undefined;
101
+ environmentProfileIdentifier?: string;
102
+ environmentBlueprintIdentifier?: string;
103
+ provider?: string;
104
+ name?: string;
105
+ maxResults?: number;
106
+ nextToken?: string;
107
+ }
108
+ export interface EnvironmentSummary {
109
+ projectId: string | undefined;
110
+ id?: string;
111
+ domainId: string | undefined;
112
+ createdBy: string | undefined;
113
+ createdAt?: Date;
114
+ updatedAt?: Date;
115
+ name: string | undefined;
116
+ description?: string;
117
+ environmentProfileId?: string;
118
+ awsAccountId?: string;
119
+ awsAccountRegion?: string;
120
+ provider: string | undefined;
121
+ status?: EnvironmentStatus;
122
+ }
123
+ export interface ListEnvironmentsOutput {
124
+ items: EnvironmentSummary[] | undefined;
125
+ nextToken?: string;
126
+ }
127
+ export interface DeleteListingInput {
128
+ domainIdentifier: string | undefined;
129
+ identifier: string | undefined;
130
+ }
131
+ export interface DeleteListingOutput {}
132
+ export interface GetListingInput {
133
+ domainIdentifier: string | undefined;
134
+ identifier: string | undefined;
135
+ listingRevision?: string;
136
+ }
137
+ export type ListingItem =
138
+ | ListingItem.AssetListingMember
139
+ | ListingItem.$UnknownMember;
140
+ export declare namespace ListingItem {
141
+ interface AssetListingMember {
142
+ assetListing: AssetListing;
143
+ $unknown?: never;
144
+ }
145
+ interface $UnknownMember {
146
+ assetListing?: never;
147
+ $unknown: [string, any];
148
+ }
149
+ interface Visitor<T> {
150
+ assetListing: (value: AssetListing) => T;
151
+ _: (name: string, value: any) => T;
152
+ }
153
+ const visit: <T>(value: ListingItem, visitor: Visitor<T>) => T;
154
+ }
155
+ export interface GetListingOutput {
156
+ domainId: string | undefined;
157
+ id: string | undefined;
158
+ listingRevision: string | undefined;
159
+ createdAt?: Date;
160
+ updatedAt?: Date;
161
+ createdBy?: string;
162
+ updatedBy?: string;
163
+ item?: ListingItem;
164
+ name?: string;
165
+ description?: string;
166
+ status?: ListingStatus;
167
+ }
168
+ export declare const EdgeDirection: {
169
+ readonly DOWNSTREAM: "DOWNSTREAM";
170
+ readonly UPSTREAM: "UPSTREAM";
171
+ };
172
+ export type EdgeDirection = (typeof EdgeDirection)[keyof typeof EdgeDirection];
173
+ export declare const SortOrder: {
174
+ readonly ASCENDING: "ASCENDING";
175
+ readonly DESCENDING: "DESCENDING";
176
+ };
177
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
178
+ export interface ListLineageNodeHistoryInput {
179
+ domainIdentifier: string | undefined;
180
+ maxResults?: number;
181
+ nextToken?: string;
182
+ identifier: string | undefined;
183
+ direction?: EdgeDirection;
184
+ eventTimestampGTE?: Date;
185
+ eventTimestampLTE?: Date;
186
+ sortOrder?: SortOrder;
187
+ }
188
+ export interface LineageNodeSummary {
189
+ domainId: string | undefined;
190
+ name?: string;
191
+ description?: string;
192
+ createdAt?: Date;
193
+ createdBy?: string;
194
+ updatedAt?: Date;
195
+ updatedBy?: string;
196
+ id: string | undefined;
197
+ typeName: string | undefined;
198
+ typeRevision?: string;
199
+ sourceIdentifier?: string;
200
+ eventTimestamp?: Date;
201
+ }
202
+ export interface ListLineageNodeHistoryOutput {
203
+ nodes?: LineageNodeSummary[];
204
+ nextToken?: string;
205
+ }
206
+ export declare const TaskStatus: {
207
+ readonly ACTIVE: "ACTIVE";
208
+ readonly INACTIVE: "INACTIVE";
209
+ };
210
+ export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
211
+ export declare const NotificationType: {
212
+ readonly EVENT: "EVENT";
213
+ readonly TASK: "TASK";
214
+ };
215
+ export type NotificationType =
216
+ (typeof NotificationType)[keyof typeof NotificationType];
217
+ export interface ListNotificationsInput {
218
+ domainIdentifier: string | undefined;
219
+ type: NotificationType | undefined;
220
+ afterTimestamp?: Date;
221
+ beforeTimestamp?: Date;
222
+ subjects?: string[];
223
+ taskStatus?: TaskStatus;
224
+ maxResults?: number;
225
+ nextToken?: string;
226
+ }
46
227
  export declare const NotificationResourceType: {
47
228
  readonly PROJECT: "PROJECT";
48
229
  };
@@ -947,6 +1128,48 @@ export declare namespace FilterClause {
947
1128
  }
948
1129
  const visit: <T>(value: FilterClause, visitor: Visitor<T>) => T;
949
1130
  }
1131
+ export type RowFilter =
1132
+ | RowFilter.AndMember
1133
+ | RowFilter.ExpressionMember
1134
+ | RowFilter.OrMember
1135
+ | RowFilter.$UnknownMember;
1136
+ export declare namespace RowFilter {
1137
+ interface ExpressionMember {
1138
+ expression: RowFilterExpression;
1139
+ and?: never;
1140
+ or?: never;
1141
+ $unknown?: never;
1142
+ }
1143
+ interface AndMember {
1144
+ expression?: never;
1145
+ and: RowFilter[];
1146
+ or?: never;
1147
+ $unknown?: never;
1148
+ }
1149
+ interface OrMember {
1150
+ expression?: never;
1151
+ and?: never;
1152
+ or: RowFilter[];
1153
+ $unknown?: never;
1154
+ }
1155
+ interface $UnknownMember {
1156
+ expression?: never;
1157
+ and?: never;
1158
+ or?: never;
1159
+ $unknown: [string, any];
1160
+ }
1161
+ interface Visitor<T> {
1162
+ expression: (value: RowFilterExpression) => T;
1163
+ and: (value: RowFilter[]) => T;
1164
+ or: (value: RowFilter[]) => T;
1165
+ _: (name: string, value: any) => T;
1166
+ }
1167
+ const visit: <T>(value: RowFilter, visitor: Visitor<T>) => T;
1168
+ }
1169
+ export interface RowFilterConfiguration {
1170
+ rowFilter: RowFilter | undefined;
1171
+ sensitive?: boolean;
1172
+ }
950
1173
  export interface SearchInput {
951
1174
  domainIdentifier: string | undefined;
952
1175
  owningProjectIdentifier?: string;
@@ -980,6 +1203,113 @@ export interface SearchTypesInput {
980
1203
  sort?: SearchSort;
981
1204
  managed: boolean | undefined;
982
1205
  }
1206
+ export type AssetFilterConfiguration =
1207
+ | AssetFilterConfiguration.ColumnConfigurationMember
1208
+ | AssetFilterConfiguration.RowConfigurationMember
1209
+ | AssetFilterConfiguration.$UnknownMember;
1210
+ export declare namespace AssetFilterConfiguration {
1211
+ interface ColumnConfigurationMember {
1212
+ columnConfiguration: ColumnFilterConfiguration;
1213
+ rowConfiguration?: never;
1214
+ $unknown?: never;
1215
+ }
1216
+ interface RowConfigurationMember {
1217
+ columnConfiguration?: never;
1218
+ rowConfiguration: RowFilterConfiguration;
1219
+ $unknown?: never;
1220
+ }
1221
+ interface $UnknownMember {
1222
+ columnConfiguration?: never;
1223
+ rowConfiguration?: never;
1224
+ $unknown: [string, any];
1225
+ }
1226
+ interface Visitor<T> {
1227
+ columnConfiguration: (value: ColumnFilterConfiguration) => T;
1228
+ rowConfiguration: (value: RowFilterConfiguration) => T;
1229
+ _: (name: string, value: any) => T;
1230
+ }
1231
+ const visit: <T>(value: AssetFilterConfiguration, visitor: Visitor<T>) => T;
1232
+ }
1233
+ export interface CreateAssetFilterInput {
1234
+ domainIdentifier: string | undefined;
1235
+ assetIdentifier: string | undefined;
1236
+ name: string | undefined;
1237
+ description?: string;
1238
+ configuration: AssetFilterConfiguration | undefined;
1239
+ clientToken?: string;
1240
+ }
1241
+ export interface CreateAssetFilterOutput {
1242
+ id: string | undefined;
1243
+ domainId: string | undefined;
1244
+ assetId: string | undefined;
1245
+ name: string | undefined;
1246
+ description?: string;
1247
+ status?: FilterStatus;
1248
+ configuration: AssetFilterConfiguration | undefined;
1249
+ createdAt?: Date;
1250
+ errorMessage?: string;
1251
+ effectiveColumnNames?: string[];
1252
+ effectiveRowFilter?: string;
1253
+ }
1254
+ export interface GetAssetFilterOutput {
1255
+ id: string | undefined;
1256
+ domainId: string | undefined;
1257
+ assetId: string | undefined;
1258
+ name: string | undefined;
1259
+ description?: string;
1260
+ status?: FilterStatus;
1261
+ configuration: AssetFilterConfiguration | undefined;
1262
+ createdAt?: Date;
1263
+ errorMessage?: string;
1264
+ effectiveColumnNames?: string[];
1265
+ effectiveRowFilter?: string;
1266
+ }
1267
+ export interface UpdateAssetFilterInput {
1268
+ domainIdentifier: string | undefined;
1269
+ assetIdentifier: string | undefined;
1270
+ identifier: string | undefined;
1271
+ name?: string;
1272
+ description?: string;
1273
+ configuration?: AssetFilterConfiguration;
1274
+ }
1275
+ export interface UpdateAssetFilterOutput {
1276
+ id: string | undefined;
1277
+ domainId: string | undefined;
1278
+ assetId: string | undefined;
1279
+ name: string | undefined;
1280
+ description?: string;
1281
+ status?: FilterStatus;
1282
+ configuration: AssetFilterConfiguration | undefined;
1283
+ createdAt?: Date;
1284
+ errorMessage?: string;
1285
+ effectiveColumnNames?: string[];
1286
+ effectiveRowFilter?: string;
1287
+ }
1288
+ export declare const EnvironmentBlueprintSummaryFilterSensitiveLog: (
1289
+ obj: EnvironmentBlueprintSummary
1290
+ ) => any;
1291
+ export declare const ListEnvironmentBlueprintsOutputFilterSensitiveLog: (
1292
+ obj: ListEnvironmentBlueprintsOutput
1293
+ ) => any;
1294
+ export declare const ListEnvironmentProfilesInputFilterSensitiveLog: (
1295
+ obj: ListEnvironmentProfilesInput
1296
+ ) => any;
1297
+ export declare const EnvironmentProfileSummaryFilterSensitiveLog: (
1298
+ obj: EnvironmentProfileSummary
1299
+ ) => any;
1300
+ export declare const ListEnvironmentProfilesOutputFilterSensitiveLog: (
1301
+ obj: ListEnvironmentProfilesOutput
1302
+ ) => any;
1303
+ export declare const EnvironmentSummaryFilterSensitiveLog: (
1304
+ obj: EnvironmentSummary
1305
+ ) => any;
1306
+ export declare const ListEnvironmentsOutputFilterSensitiveLog: (
1307
+ obj: ListEnvironmentsOutput
1308
+ ) => any;
1309
+ export declare const ListingItemFilterSensitiveLog: (obj: ListingItem) => any;
1310
+ export declare const GetListingOutputFilterSensitiveLog: (
1311
+ obj: GetListingOutput
1312
+ ) => any;
983
1313
  export declare const NotificationOutputFilterSensitiveLog: (
984
1314
  obj: NotificationOutput
985
1315
  ) => any;
@@ -1100,3 +1430,18 @@ export declare const UpdateSubscriptionTargetOutputFilterSensitiveLog: (
1100
1430
  export declare const UpdateUserProfileOutputFilterSensitiveLog: (
1101
1431
  obj: UpdateUserProfileOutput
1102
1432
  ) => any;
1433
+ export declare const CreateAssetFilterInputFilterSensitiveLog: (
1434
+ obj: CreateAssetFilterInput
1435
+ ) => any;
1436
+ export declare const CreateAssetFilterOutputFilterSensitiveLog: (
1437
+ obj: CreateAssetFilterOutput
1438
+ ) => any;
1439
+ export declare const GetAssetFilterOutputFilterSensitiveLog: (
1440
+ obj: GetAssetFilterOutput
1441
+ ) => any;
1442
+ export declare const UpdateAssetFilterInputFilterSensitiveLog: (
1443
+ obj: UpdateAssetFilterInput
1444
+ ) => any;
1445
+ export declare const UpdateAssetFilterOutputFilterSensitiveLog: (
1446
+ obj: UpdateAssetFilterOutput
1447
+ ) => any;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListAssetFiltersCommandInput,
4
+ ListAssetFiltersCommandOutput,
5
+ } from "../commands/ListAssetFiltersCommand";
6
+ import { DataZonePaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListAssetFilters: (
8
+ config: DataZonePaginationConfiguration,
9
+ input: ListAssetFiltersCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListAssetFiltersCommandOutput>;
@@ -1,4 +1,5 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListAssetFiltersPaginator";
2
3
  export * from "./ListAssetRevisionsPaginator";
3
4
  export * from "./ListDataSourceRunActivitiesPaginator";
4
5
  export * from "./ListDataSourceRunsPaginator";
@@ -27,6 +27,10 @@ import {
27
27
  CreateAssetCommandInput,
28
28
  CreateAssetCommandOutput,
29
29
  } from "../commands/CreateAssetCommand";
30
+ import {
31
+ CreateAssetFilterCommandInput,
32
+ CreateAssetFilterCommandOutput,
33
+ } from "../commands/CreateAssetFilterCommand";
30
34
  import {
31
35
  CreateAssetRevisionCommandInput,
32
36
  CreateAssetRevisionCommandOutput,
@@ -103,6 +107,10 @@ import {
103
107
  DeleteAssetCommandInput,
104
108
  DeleteAssetCommandOutput,
105
109
  } from "../commands/DeleteAssetCommand";
110
+ import {
111
+ DeleteAssetFilterCommandInput,
112
+ DeleteAssetFilterCommandOutput,
113
+ } from "../commands/DeleteAssetFilterCommand";
106
114
  import {
107
115
  DeleteAssetTypeCommandInput,
108
116
  DeleteAssetTypeCommandOutput,
@@ -179,6 +187,10 @@ import {
179
187
  GetAssetCommandInput,
180
188
  GetAssetCommandOutput,
181
189
  } from "../commands/GetAssetCommand";
190
+ import {
191
+ GetAssetFilterCommandInput,
192
+ GetAssetFilterCommandOutput,
193
+ } from "../commands/GetAssetFilterCommand";
182
194
  import {
183
195
  GetAssetTypeCommandInput,
184
196
  GetAssetTypeCommandOutput,
@@ -275,6 +287,10 @@ import {
275
287
  GetUserProfileCommandInput,
276
288
  GetUserProfileCommandOutput,
277
289
  } from "../commands/GetUserProfileCommand";
290
+ import {
291
+ ListAssetFiltersCommandInput,
292
+ ListAssetFiltersCommandOutput,
293
+ } from "../commands/ListAssetFiltersCommand";
278
294
  import {
279
295
  ListAssetRevisionsCommandInput,
280
296
  ListAssetRevisionsCommandOutput,
@@ -419,6 +435,10 @@ import {
419
435
  UntagResourceCommandInput,
420
436
  UntagResourceCommandOutput,
421
437
  } from "../commands/UntagResourceCommand";
438
+ import {
439
+ UpdateAssetFilterCommandInput,
440
+ UpdateAssetFilterCommandOutput,
441
+ } from "../commands/UpdateAssetFilterCommand";
422
442
  import {
423
443
  UpdateDataSourceCommandInput,
424
444
  UpdateDataSourceCommandOutput,
@@ -495,6 +515,10 @@ export declare const se_CreateAssetCommand: (
495
515
  input: CreateAssetCommandInput,
496
516
  context: __SerdeContext
497
517
  ) => Promise<__HttpRequest>;
518
+ export declare const se_CreateAssetFilterCommand: (
519
+ input: CreateAssetFilterCommandInput,
520
+ context: __SerdeContext
521
+ ) => Promise<__HttpRequest>;
498
522
  export declare const se_CreateAssetRevisionCommand: (
499
523
  input: CreateAssetRevisionCommandInput,
500
524
  context: __SerdeContext
@@ -571,6 +595,10 @@ export declare const se_DeleteAssetCommand: (
571
595
  input: DeleteAssetCommandInput,
572
596
  context: __SerdeContext
573
597
  ) => Promise<__HttpRequest>;
598
+ export declare const se_DeleteAssetFilterCommand: (
599
+ input: DeleteAssetFilterCommandInput,
600
+ context: __SerdeContext
601
+ ) => Promise<__HttpRequest>;
574
602
  export declare const se_DeleteAssetTypeCommand: (
575
603
  input: DeleteAssetTypeCommandInput,
576
604
  context: __SerdeContext
@@ -647,6 +675,10 @@ export declare const se_GetAssetCommand: (
647
675
  input: GetAssetCommandInput,
648
676
  context: __SerdeContext
649
677
  ) => Promise<__HttpRequest>;
678
+ export declare const se_GetAssetFilterCommand: (
679
+ input: GetAssetFilterCommandInput,
680
+ context: __SerdeContext
681
+ ) => Promise<__HttpRequest>;
650
682
  export declare const se_GetAssetTypeCommand: (
651
683
  input: GetAssetTypeCommandInput,
652
684
  context: __SerdeContext
@@ -743,6 +775,10 @@ export declare const se_GetUserProfileCommand: (
743
775
  input: GetUserProfileCommandInput,
744
776
  context: __SerdeContext
745
777
  ) => Promise<__HttpRequest>;
778
+ export declare const se_ListAssetFiltersCommand: (
779
+ input: ListAssetFiltersCommandInput,
780
+ context: __SerdeContext
781
+ ) => Promise<__HttpRequest>;
746
782
  export declare const se_ListAssetRevisionsCommand: (
747
783
  input: ListAssetRevisionsCommandInput,
748
784
  context: __SerdeContext
@@ -887,6 +923,10 @@ export declare const se_UntagResourceCommand: (
887
923
  input: UntagResourceCommandInput,
888
924
  context: __SerdeContext
889
925
  ) => Promise<__HttpRequest>;
926
+ export declare const se_UpdateAssetFilterCommand: (
927
+ input: UpdateAssetFilterCommandInput,
928
+ context: __SerdeContext
929
+ ) => Promise<__HttpRequest>;
890
930
  export declare const se_UpdateDataSourceCommand: (
891
931
  input: UpdateDataSourceCommandInput,
892
932
  context: __SerdeContext
@@ -963,6 +1003,10 @@ export declare const de_CreateAssetCommand: (
963
1003
  output: __HttpResponse,
964
1004
  context: __SerdeContext
965
1005
  ) => Promise<CreateAssetCommandOutput>;
1006
+ export declare const de_CreateAssetFilterCommand: (
1007
+ output: __HttpResponse,
1008
+ context: __SerdeContext
1009
+ ) => Promise<CreateAssetFilterCommandOutput>;
966
1010
  export declare const de_CreateAssetRevisionCommand: (
967
1011
  output: __HttpResponse,
968
1012
  context: __SerdeContext
@@ -1039,6 +1083,10 @@ export declare const de_DeleteAssetCommand: (
1039
1083
  output: __HttpResponse,
1040
1084
  context: __SerdeContext
1041
1085
  ) => Promise<DeleteAssetCommandOutput>;
1086
+ export declare const de_DeleteAssetFilterCommand: (
1087
+ output: __HttpResponse,
1088
+ context: __SerdeContext
1089
+ ) => Promise<DeleteAssetFilterCommandOutput>;
1042
1090
  export declare const de_DeleteAssetTypeCommand: (
1043
1091
  output: __HttpResponse,
1044
1092
  context: __SerdeContext
@@ -1115,6 +1163,10 @@ export declare const de_GetAssetCommand: (
1115
1163
  output: __HttpResponse,
1116
1164
  context: __SerdeContext
1117
1165
  ) => Promise<GetAssetCommandOutput>;
1166
+ export declare const de_GetAssetFilterCommand: (
1167
+ output: __HttpResponse,
1168
+ context: __SerdeContext
1169
+ ) => Promise<GetAssetFilterCommandOutput>;
1118
1170
  export declare const de_GetAssetTypeCommand: (
1119
1171
  output: __HttpResponse,
1120
1172
  context: __SerdeContext
@@ -1211,6 +1263,10 @@ export declare const de_GetUserProfileCommand: (
1211
1263
  output: __HttpResponse,
1212
1264
  context: __SerdeContext
1213
1265
  ) => Promise<GetUserProfileCommandOutput>;
1266
+ export declare const de_ListAssetFiltersCommand: (
1267
+ output: __HttpResponse,
1268
+ context: __SerdeContext
1269
+ ) => Promise<ListAssetFiltersCommandOutput>;
1214
1270
  export declare const de_ListAssetRevisionsCommand: (
1215
1271
  output: __HttpResponse,
1216
1272
  context: __SerdeContext
@@ -1355,6 +1411,10 @@ export declare const de_UntagResourceCommand: (
1355
1411
  output: __HttpResponse,
1356
1412
  context: __SerdeContext
1357
1413
  ) => Promise<UntagResourceCommandOutput>;
1414
+ export declare const de_UpdateAssetFilterCommand: (
1415
+ output: __HttpResponse,
1416
+ context: __SerdeContext
1417
+ ) => Promise<UpdateAssetFilterCommandOutput>;
1358
1418
  export declare const de_UpdateDataSourceCommand: (
1359
1419
  output: __HttpResponse,
1360
1420
  context: __SerdeContext
@@ -56,11 +56,11 @@ export declare const getRuntimeConfig: (config: DataZoneClientConfig) => {
56
56
  }
57
57
  ) => import("@smithy/types").EndpointV2;
58
58
  tls?: boolean | undefined;
59
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
59
60
  retryStrategy?:
60
61
  | import("@smithy/types").RetryStrategy
61
62
  | import("@smithy/types").RetryStrategyV2
62
63
  | undefined;
63
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
64
64
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
65
65
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DataZoneHttpAuthSchemeProvider;
66
66
  credentials?:
@@ -60,11 +60,11 @@ export declare const getRuntimeConfig: (config: DataZoneClientConfig) => {
60
60
  }
61
61
  ) => import("@smithy/types").EndpointV2;
62
62
  tls?: boolean | undefined;
63
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
63
64
  retryStrategy?:
64
65
  | import("@smithy/types").RetryStrategy
65
66
  | import("@smithy/types").RetryStrategyV2
66
67
  | undefined;
67
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
68
68
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
69
69
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DataZoneHttpAuthSchemeProvider;
70
70
  credentials?:
@@ -50,11 +50,11 @@ export declare const getRuntimeConfig: (config: DataZoneClientConfig) => {
50
50
  }
51
51
  ) => import("@smithy/types").EndpointV2;
52
52
  tls?: boolean | undefined;
53
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
53
54
  retryStrategy?:
54
55
  | import("@smithy/types").RetryStrategy
55
56
  | import("@smithy/types").RetryStrategyV2
56
57
  | undefined;
57
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
58
58
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
59
59
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DataZoneHttpAuthSchemeProvider;
60
60
  credentials?:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-datazone",
3
3
  "description": "AWS SDK for JavaScript Datazone Client for Node.js, Browser and React Native",
4
- "version": "3.614.0",
4
+ "version": "3.617.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-datazone",
@@ -20,40 +20,40 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.614.0",
24
- "@aws-sdk/client-sts": "3.614.0",
25
- "@aws-sdk/core": "3.614.0",
26
- "@aws-sdk/credential-provider-node": "3.614.0",
27
- "@aws-sdk/middleware-host-header": "3.609.0",
23
+ "@aws-sdk/client-sso-oidc": "3.616.0",
24
+ "@aws-sdk/client-sts": "3.616.0",
25
+ "@aws-sdk/core": "3.616.0",
26
+ "@aws-sdk/credential-provider-node": "3.616.0",
27
+ "@aws-sdk/middleware-host-header": "3.616.0",
28
28
  "@aws-sdk/middleware-logger": "3.609.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.609.0",
30
- "@aws-sdk/middleware-user-agent": "3.614.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.616.0",
30
+ "@aws-sdk/middleware-user-agent": "3.616.0",
31
31
  "@aws-sdk/region-config-resolver": "3.614.0",
32
32
  "@aws-sdk/types": "3.609.0",
33
33
  "@aws-sdk/util-endpoints": "3.614.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.609.0",
35
35
  "@aws-sdk/util-user-agent-node": "3.614.0",
36
36
  "@smithy/config-resolver": "^3.0.5",
37
- "@smithy/core": "^2.2.6",
38
- "@smithy/fetch-http-handler": "^3.2.1",
37
+ "@smithy/core": "^2.2.7",
38
+ "@smithy/fetch-http-handler": "^3.2.2",
39
39
  "@smithy/hash-node": "^3.0.3",
40
40
  "@smithy/invalid-dependency": "^3.0.3",
41
- "@smithy/middleware-content-length": "^3.0.3",
41
+ "@smithy/middleware-content-length": "^3.0.4",
42
42
  "@smithy/middleware-endpoint": "^3.0.5",
43
- "@smithy/middleware-retry": "^3.0.9",
43
+ "@smithy/middleware-retry": "^3.0.10",
44
44
  "@smithy/middleware-serde": "^3.0.3",
45
45
  "@smithy/middleware-stack": "^3.0.3",
46
46
  "@smithy/node-config-provider": "^3.1.4",
47
- "@smithy/node-http-handler": "^3.1.2",
48
- "@smithy/protocol-http": "^4.0.3",
49
- "@smithy/smithy-client": "^3.1.7",
47
+ "@smithy/node-http-handler": "^3.1.3",
48
+ "@smithy/protocol-http": "^4.0.4",
49
+ "@smithy/smithy-client": "^3.1.8",
50
50
  "@smithy/types": "^3.3.0",
51
51
  "@smithy/url-parser": "^3.0.3",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.9",
56
- "@smithy/util-defaults-mode-node": "^3.0.9",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.10",
56
+ "@smithy/util-defaults-mode-node": "^3.0.10",
57
57
  "@smithy/util-endpoints": "^2.0.5",
58
58
  "@smithy/util-middleware": "^3.0.3",
59
59
  "@smithy/util-retry": "^3.0.3",