@aws-sdk/client-datazone 3.540.0 → 3.546.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 (46) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/index.js +267 -10
  3. package/dist-es/DataZone.js +8 -0
  4. package/dist-es/commands/AcceptPredictionsCommand.js +2 -1
  5. package/dist-es/commands/CancelMetadataGenerationRunCommand.js +24 -0
  6. package/dist-es/commands/GetMetadataGenerationRunCommand.js +24 -0
  7. package/dist-es/commands/ListMetadataGenerationRunsCommand.js +24 -0
  8. package/dist-es/commands/StartMetadataGenerationRunCommand.js +24 -0
  9. package/dist-es/commands/index.js +4 -0
  10. package/dist-es/models/models_0.js +14 -3
  11. package/dist-es/models/models_1.js +10 -0
  12. package/dist-es/pagination/ListMetadataGenerationRunsPaginator.js +4 -0
  13. package/dist-es/pagination/index.js +1 -0
  14. package/dist-es/protocols/Aws_restJson1.js +138 -0
  15. package/dist-types/DataZone.d.ts +28 -0
  16. package/dist-types/DataZoneClient.d.ts +6 -2
  17. package/dist-types/commands/AcceptPredictionsCommand.d.ts +2 -1
  18. package/dist-types/commands/CancelMetadataGenerationRunCommand.d.ts +79 -0
  19. package/dist-types/commands/CreateListingChangeSetCommand.d.ts +2 -1
  20. package/dist-types/commands/DeleteListingCommand.d.ts +1 -1
  21. package/dist-types/commands/GetListingCommand.d.ts +1 -1
  22. package/dist-types/commands/GetMetadataGenerationRunCommand.d.ts +90 -0
  23. package/dist-types/commands/ListMetadataGenerationRunsCommand.d.ts +97 -0
  24. package/dist-types/commands/RejectPredictionsCommand.d.ts +5 -3
  25. package/dist-types/commands/SearchListingsCommand.d.ts +1 -1
  26. package/dist-types/commands/StartMetadataGenerationRunCommand.d.ts +97 -0
  27. package/dist-types/commands/index.d.ts +4 -0
  28. package/dist-types/models/models_0.d.ts +107 -118
  29. package/dist-types/models/models_1.d.ts +366 -11
  30. package/dist-types/pagination/ListMetadataGenerationRunsPaginator.d.ts +7 -0
  31. package/dist-types/pagination/index.d.ts +1 -0
  32. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  33. package/dist-types/ts3.4/DataZone.d.ts +68 -0
  34. package/dist-types/ts3.4/DataZoneClient.d.ts +24 -0
  35. package/dist-types/ts3.4/commands/CancelMetadataGenerationRunCommand.d.ts +39 -0
  36. package/dist-types/ts3.4/commands/GetMetadataGenerationRunCommand.d.ts +37 -0
  37. package/dist-types/ts3.4/commands/ListMetadataGenerationRunsCommand.d.ts +39 -0
  38. package/dist-types/ts3.4/commands/RejectPredictionsCommand.d.ts +4 -2
  39. package/dist-types/ts3.4/commands/StartMetadataGenerationRunCommand.d.ts +39 -0
  40. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  41. package/dist-types/ts3.4/models/models_0.d.ts +21 -20
  42. package/dist-types/ts3.4/models/models_1.d.ts +85 -0
  43. package/dist-types/ts3.4/pagination/ListMetadataGenerationRunsPaginator.d.ts +11 -0
  44. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  45. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  46. package/package.json +1 -1
@@ -1,20 +1,374 @@
1
- import { AssetItem, AssetListingItem, AssetTypeItem, ConfigurableEnvironmentAction, CustomParameter, DataProductSummary, Deployment, DeploymentProperties, EnvironmentParameter, EnvironmentStatus, FailureCause, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GrantedEntity, GroupProfileStatus, Import, Model, ProjectDeletionError, ProjectStatus, ProvisioningProperties, Resource, SortOrder, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, SubscriptionStatus, SubscriptionTargetForm, TermRelations, UserProfileDetails, UserProfileStatus, UserProfileType } from "./models_0";
1
+ import { AssetItem, AssetListingItem, AssetTypeItem, ConfigurableEnvironmentAction, CustomParameter, DataProductSummary, Deployment, DeploymentProperties, EnvironmentParameter, EnvironmentStatus, FailureCause, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GrantedEntity, GroupProfileStatus, Import, MetadataGenerationRunStatus, Model, ProjectDeletionError, ProjectStatus, ProvisioningProperties, Resource, SortOrder, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, SubscriptionStatus, SubscriptionTargetForm, TermRelations, UserProfileDetails, UserProfileStatus, UserProfileType } from "./models_0";
2
+ /**
3
+ * @public
4
+ * @enum
5
+ */
6
+ export declare const MetadataGenerationTargetType: {
7
+ readonly ASSET: "ASSET";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type MetadataGenerationTargetType = (typeof MetadataGenerationTargetType)[keyof typeof MetadataGenerationTargetType];
13
+ /**
14
+ * <p>The asset for which metadata was generated.</p>
15
+ * @public
16
+ */
17
+ export interface MetadataGenerationRunTarget {
18
+ /**
19
+ * <p>The type of the asset for which metadata was generated.</p>
20
+ * @public
21
+ */
22
+ type: MetadataGenerationTargetType | undefined;
23
+ /**
24
+ * <p>The ID of the metadata generation run's target.</p>
25
+ * @public
26
+ */
27
+ identifier: string | undefined;
28
+ /**
29
+ * <p>The revision of the asset for which metadata was generated.</p>
30
+ * @public
31
+ */
32
+ revision?: string;
33
+ }
34
+ /**
35
+ * @public
36
+ * @enum
37
+ */
38
+ export declare const MetadataGenerationRunType: {
39
+ readonly BUSINESS_DESCRIPTIONS: "BUSINESS_DESCRIPTIONS";
40
+ };
41
+ /**
42
+ * @public
43
+ */
44
+ export type MetadataGenerationRunType = (typeof MetadataGenerationRunType)[keyof typeof MetadataGenerationRunType];
45
+ /**
46
+ * @public
47
+ */
48
+ export interface GetMetadataGenerationRunOutput {
49
+ /**
50
+ * <p>The ID of the Amazon DataZone domain the metadata generation run of which you want to
51
+ * get.</p>
52
+ * @public
53
+ */
54
+ domainId: string | undefined;
55
+ /**
56
+ * <p>The ID of the metadata generation run.</p>
57
+ * @public
58
+ */
59
+ id: string | undefined;
60
+ /**
61
+ * <p>The asset for which you're generating metadata.</p>
62
+ * @public
63
+ */
64
+ target?: MetadataGenerationRunTarget;
65
+ /**
66
+ * <p>The status of the metadata generation run.</p>
67
+ * @public
68
+ */
69
+ status?: MetadataGenerationRunStatus;
70
+ /**
71
+ * <p>The type of metadata generation run.</p>
72
+ * @public
73
+ */
74
+ type?: MetadataGenerationRunType;
75
+ /**
76
+ * <p>The timestamp of when the metadata generation run was start.</p>
77
+ * @public
78
+ */
79
+ createdAt?: Date;
80
+ /**
81
+ * <p>The Amazon DataZone user who started the metadata generation run.</p>
82
+ * @public
83
+ */
84
+ createdBy?: string;
85
+ /**
86
+ * <p>The ID of the project that owns the assets for which you're running metadata
87
+ * generation.</p>
88
+ * @public
89
+ */
90
+ owningProjectId: string | undefined;
91
+ }
92
+ /**
93
+ * @public
94
+ */
95
+ export interface ListMetadataGenerationRunsInput {
96
+ /**
97
+ * <p>The ID of the Amazon DataZone domain where you want to list metadata generation
98
+ * runs.</p>
99
+ * @public
100
+ */
101
+ domainIdentifier: string | undefined;
102
+ /**
103
+ * <p>The status of the metadata generation runs.</p>
104
+ * @public
105
+ */
106
+ status?: MetadataGenerationRunStatus;
107
+ /**
108
+ * <p>The type of the metadata generation runs.</p>
109
+ * @public
110
+ */
111
+ type?: MetadataGenerationRunType;
112
+ /**
113
+ * <p>When the number of metadata generation runs is greater than the default value for the
114
+ * MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than
115
+ * the number of metadata generation runs, the response includes a pagination token named
116
+ * NextToken. You can specify this NextToken value in a subsequent call to
117
+ * ListMetadataGenerationRuns to list the next set of revisions.</p>
118
+ * @public
119
+ */
120
+ nextToken?: string;
121
+ /**
122
+ * <p>The maximum number of metadata generation runs to return in a single call to
123
+ * ListMetadataGenerationRuns. When the number of metadata generation runs to be listed is
124
+ * greater than the value of MaxResults, the response contains a NextToken value that you can
125
+ * use in a subsequent call to ListMetadataGenerationRuns to list the next set of
126
+ * revisions.</p>
127
+ * @public
128
+ */
129
+ maxResults?: number;
130
+ }
131
+ /**
132
+ * <p>The metadata generation run.</p>
133
+ * @public
134
+ */
135
+ export interface MetadataGenerationRunItem {
136
+ /**
137
+ * <p>The ID of the Amazon DataZone domain in which the metadata generation run was
138
+ * created.</p>
139
+ * @public
140
+ */
141
+ domainId: string | undefined;
142
+ /**
143
+ * <p>The ID of the metadata generation run.</p>
144
+ * @public
145
+ */
146
+ id: string | undefined;
147
+ /**
148
+ * <p>The asset for which metadata was generated.</p>
149
+ * @public
150
+ */
151
+ target?: MetadataGenerationRunTarget;
152
+ /**
153
+ * <p>The status of the metadata generation run.</p>
154
+ * @public
155
+ */
156
+ status?: MetadataGenerationRunStatus;
157
+ /**
158
+ * <p>The type of the metadata generation run.</p>
159
+ * @public
160
+ */
161
+ type?: MetadataGenerationRunType;
162
+ /**
163
+ * <p>The timestamp at which the metadata generation run was created.</p>
164
+ * @public
165
+ */
166
+ createdAt?: Date;
167
+ /**
168
+ * <p>The user who created the metadata generation run.</p>
169
+ * @public
170
+ */
171
+ createdBy?: string;
172
+ /**
173
+ * <p>The ID of the project that owns the asset for which the metadata generation was
174
+ * ran.</p>
175
+ * @public
176
+ */
177
+ owningProjectId: string | undefined;
178
+ }
179
+ /**
180
+ * @public
181
+ */
182
+ export interface ListMetadataGenerationRunsOutput {
183
+ /**
184
+ * <p>The results of the ListMetadataGenerationRuns action.</p>
185
+ * @public
186
+ */
187
+ items?: MetadataGenerationRunItem[];
188
+ /**
189
+ * <p>When the number of metadata generation runs is greater than the default value for the
190
+ * MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than
191
+ * the number of metadata generation runs, the response includes a pagination token named
192
+ * NextToken. You can specify this NextToken value in a subsequent call to
193
+ * ListMetadataGenerationRuns to list the next set of revisions.</p>
194
+ * @public
195
+ */
196
+ nextToken?: string;
197
+ }
198
+ /**
199
+ * @public
200
+ */
201
+ export interface StartMetadataGenerationRunInput {
202
+ /**
203
+ * <p>The ID of the Amazon DataZone domain where you want to start a metadata generation
204
+ * run.</p>
205
+ * @public
206
+ */
207
+ domainIdentifier: string | undefined;
208
+ /**
209
+ * <p>The type of the metadata generation run.</p>
210
+ * @public
211
+ */
212
+ type: MetadataGenerationRunType | undefined;
213
+ /**
214
+ * <p>The asset for which you want to start a metadata generation run.</p>
215
+ * @public
216
+ */
217
+ target: MetadataGenerationRunTarget | undefined;
218
+ /**
219
+ * <p>A unique, case-sensitive identifier to ensure idempotency of the request. This field is
220
+ * automatically populated if not provided.</p>
221
+ * @public
222
+ */
223
+ clientToken?: string;
224
+ /**
225
+ * <p>The ID of the project that owns the asset for which you want to start a metadata
226
+ * generation run.</p>
227
+ * @public
228
+ */
229
+ owningProjectIdentifier: string | undefined;
230
+ }
231
+ /**
232
+ * @public
233
+ */
234
+ export interface StartMetadataGenerationRunOutput {
235
+ /**
236
+ * <p>The ID of the Amazon DataZone domain in which the metadata generation run was
237
+ * started.</p>
238
+ * @public
239
+ */
240
+ domainId: string | undefined;
241
+ /**
242
+ * <p>The ID of the metadata generation run.</p>
243
+ * @public
244
+ */
245
+ id: string | undefined;
246
+ /**
247
+ * <p>The status of the metadata generation run.</p>
248
+ * @public
249
+ */
250
+ status?: MetadataGenerationRunStatus;
251
+ /**
252
+ * <p>The type of the metadata generation run.</p>
253
+ * @public
254
+ */
255
+ type?: MetadataGenerationRunType;
256
+ /**
257
+ * <p>The timestamp at which the metadata generation run was started.</p>
258
+ * @public
259
+ */
260
+ createdAt?: Date;
261
+ /**
262
+ * <p>The ID of the user who started the metadata generation run.</p>
263
+ * @public
264
+ */
265
+ createdBy?: string;
266
+ /**
267
+ * <p>The ID of the project that owns the asset for which the metadata generation run was
268
+ * started.</p>
269
+ * @public
270
+ */
271
+ owningProjectId?: string;
272
+ }
273
+ /**
274
+ * <p>The details of the automatically generated business metadata that is rejected.</p>
275
+ * @public
276
+ */
277
+ export interface RejectChoice {
278
+ /**
279
+ * <p>Specifies the target (for example, a column name) where a prediction can be
280
+ * rejected.</p>
281
+ * @public
282
+ */
283
+ predictionTarget: string | undefined;
284
+ /**
285
+ * <p>Specifies the the automatically generated business metadata that can be rejected.</p>
286
+ * @public
287
+ */
288
+ predictionChoices?: number[];
289
+ }
290
+ /**
291
+ * @public
292
+ * @enum
293
+ */
294
+ export declare const RejectRuleBehavior: {
295
+ readonly ALL: "ALL";
296
+ readonly NONE: "NONE";
297
+ };
298
+ /**
299
+ * @public
300
+ */
301
+ export type RejectRuleBehavior = (typeof RejectRuleBehavior)[keyof typeof RejectRuleBehavior];
302
+ /**
303
+ * <p>Specifies the rule and the threshold under which a prediction can be rejected.</p>
304
+ * @public
305
+ */
306
+ export interface RejectRule {
307
+ /**
308
+ * <p>Specifies whether you want to reject the top prediction for all targets or none.</p>
309
+ * @public
310
+ */
311
+ rule?: RejectRuleBehavior;
312
+ /**
313
+ * <p>The confidence score that specifies the condition at which a prediction can be
314
+ * rejected.</p>
315
+ * @public
316
+ */
317
+ threshold?: number;
318
+ }
319
+ /**
320
+ * @public
321
+ */
322
+ export interface RejectPredictionsInput {
323
+ /**
324
+ * <p>The identifier of the Amazon DataZone domain.</p>
325
+ * @public
326
+ */
327
+ domainIdentifier: string | undefined;
328
+ /**
329
+ * <p>The identifier of the prediction.</p>
330
+ * @public
331
+ */
332
+ identifier: string | undefined;
333
+ /**
334
+ * <p>The revision that is to be made to the asset.</p>
335
+ * @public
336
+ */
337
+ revision?: string;
338
+ /**
339
+ * <p>Specifies the rule (or the conditions) under which a prediction can be rejected.</p>
340
+ * @public
341
+ */
342
+ rejectRule?: RejectRule;
343
+ /**
344
+ * <p>Specifies the prediction (aka, the automatically generated piece of metadata) and the
345
+ * target (for example, a column name) that can be rejected.</p>
346
+ * @public
347
+ */
348
+ rejectChoices?: RejectChoice[];
349
+ /**
350
+ * <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
351
+ * request.</p>
352
+ * @public
353
+ */
354
+ clientToken?: string;
355
+ }
2
356
  /**
3
357
  * @public
4
358
  */
5
359
  export interface RejectPredictionsOutput {
6
360
  /**
7
- * <p/>
361
+ * <p>The ID of the Amazon DataZone domain.</p>
8
362
  * @public
9
363
  */
10
364
  domainId: string | undefined;
11
365
  /**
12
- * <p/>
366
+ * <p>The ID of the asset.</p>
13
367
  * @public
14
368
  */
15
369
  assetId: string | undefined;
16
370
  /**
17
- * <p/>
371
+ * <p>The revision that is to be made to the asset.</p>
18
372
  * @public
19
373
  */
20
374
  assetRevision: string | undefined;
@@ -1284,12 +1638,13 @@ export interface UpdateProjectOutput {
1284
1638
  */
1285
1639
  description?: string;
1286
1640
  /**
1287
- * Status of the project
1641
+ * <p>The status of the project.</p>
1288
1642
  * @public
1289
1643
  */
1290
1644
  projectStatus?: ProjectStatus;
1291
1645
  /**
1292
- * Reasons for failed project deletion
1646
+ * <p>Specifies the error message that is returned if the operation cannot be successfully
1647
+ * completed.</p>
1293
1648
  * @public
1294
1649
  */
1295
1650
  failureReasons?: ProjectDeletionError[];
@@ -1408,7 +1763,7 @@ export interface UpdateSubscriptionGrantStatusOutput {
1408
1763
  */
1409
1764
  status: SubscriptionGrantOverallStatus | undefined;
1410
1765
  /**
1411
- * <p/>
1766
+ * <p>The details of the asset for which the subscription grant is created.</p>
1412
1767
  * @public
1413
1768
  */
1414
1769
  assets?: SubscribedAsset[];
@@ -1805,7 +2160,7 @@ export interface SearchInput {
1805
2160
  */
1806
2161
  searchText?: string;
1807
2162
  /**
1808
- * <p/>
2163
+ * <p>The details of the search.</p>
1809
2164
  * @public
1810
2165
  */
1811
2166
  searchIn?: SearchInItem[];
@@ -1840,7 +2195,7 @@ export interface SearchListingsInput {
1840
2195
  */
1841
2196
  searchText?: string;
1842
2197
  /**
1843
- * <p/>
2198
+ * <p>The details of the search.</p>
1844
2199
  * @public
1845
2200
  */
1846
2201
  searchIn?: SearchInItem[];
@@ -1919,7 +2274,7 @@ export interface SearchTypesInput {
1919
2274
  */
1920
2275
  searchText?: string;
1921
2276
  /**
1922
- * <p/>
2277
+ * <p>The details of the search.</p>
1923
2278
  * @public
1924
2279
  */
1925
2280
  searchIn?: SearchInItem[];
@@ -1934,7 +2289,7 @@ export interface SearchTypesInput {
1934
2289
  */
1935
2290
  sort?: SearchSort;
1936
2291
  /**
1937
- * <p/>
2292
+ * <p>Specifies whether the search is managed.</p>
1938
2293
  * @public
1939
2294
  */
1940
2295
  managed: boolean | undefined;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListMetadataGenerationRunsCommandInput, ListMetadataGenerationRunsCommandOutput } from "../commands/ListMetadataGenerationRunsCommand";
3
+ import { DataZonePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListMetadataGenerationRuns: (config: DataZonePaginationConfiguration, input: ListMetadataGenerationRunsCommandInput, ...rest: any[]) => Paginator<ListMetadataGenerationRunsCommandOutput>;
@@ -8,6 +8,7 @@ export * from "./ListEnvironmentBlueprintConfigurationsPaginator";
8
8
  export * from "./ListEnvironmentBlueprintsPaginator";
9
9
  export * from "./ListEnvironmentProfilesPaginator";
10
10
  export * from "./ListEnvironmentsPaginator";
11
+ export * from "./ListMetadataGenerationRunsPaginator";
11
12
  export * from "./ListNotificationsPaginator";
12
13
  export * from "./ListProjectMembershipsPaginator";
13
14
  export * from "./ListProjectsPaginator";
@@ -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 { CancelMetadataGenerationRunCommandInput, CancelMetadataGenerationRunCommandOutput } from "../commands/CancelMetadataGenerationRunCommand";
5
6
  import { CancelSubscriptionCommandInput, CancelSubscriptionCommandOutput } from "../commands/CancelSubscriptionCommand";
6
7
  import { CreateAssetCommandInput, CreateAssetCommandOutput } from "../commands/CreateAssetCommand";
7
8
  import { CreateAssetRevisionCommandInput, CreateAssetRevisionCommandOutput } from "../commands/CreateAssetRevisionCommand";
@@ -52,6 +53,7 @@ import { GetGlossaryTermCommandInput, GetGlossaryTermCommandOutput } from "../co
52
53
  import { GetGroupProfileCommandInput, GetGroupProfileCommandOutput } from "../commands/GetGroupProfileCommand";
53
54
  import { GetIamPortalLoginUrlCommandInput, GetIamPortalLoginUrlCommandOutput } from "../commands/GetIamPortalLoginUrlCommand";
54
55
  import { GetListingCommandInput, GetListingCommandOutput } from "../commands/GetListingCommand";
56
+ import { GetMetadataGenerationRunCommandInput, GetMetadataGenerationRunCommandOutput } from "../commands/GetMetadataGenerationRunCommand";
55
57
  import { GetProjectCommandInput, GetProjectCommandOutput } from "../commands/GetProjectCommand";
56
58
  import { GetSubscriptionCommandInput, GetSubscriptionCommandOutput } from "../commands/GetSubscriptionCommand";
57
59
  import { GetSubscriptionGrantCommandInput, GetSubscriptionGrantCommandOutput } from "../commands/GetSubscriptionGrantCommand";
@@ -67,6 +69,7 @@ import { ListEnvironmentBlueprintConfigurationsCommandInput, ListEnvironmentBlue
67
69
  import { ListEnvironmentBlueprintsCommandInput, ListEnvironmentBlueprintsCommandOutput } from "../commands/ListEnvironmentBlueprintsCommand";
68
70
  import { ListEnvironmentProfilesCommandInput, ListEnvironmentProfilesCommandOutput } from "../commands/ListEnvironmentProfilesCommand";
69
71
  import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../commands/ListEnvironmentsCommand";
72
+ import { ListMetadataGenerationRunsCommandInput, ListMetadataGenerationRunsCommandOutput } from "../commands/ListMetadataGenerationRunsCommand";
70
73
  import { ListNotificationsCommandInput, ListNotificationsCommandOutput } from "../commands/ListNotificationsCommand";
71
74
  import { ListProjectMembershipsCommandInput, ListProjectMembershipsCommandOutput } from "../commands/ListProjectMembershipsCommand";
72
75
  import { ListProjectsCommandInput, ListProjectsCommandOutput } from "../commands/ListProjectsCommand";
@@ -85,6 +88,7 @@ import { SearchListingsCommandInput, SearchListingsCommandOutput } from "../comm
85
88
  import { SearchTypesCommandInput, SearchTypesCommandOutput } from "../commands/SearchTypesCommand";
86
89
  import { SearchUserProfilesCommandInput, SearchUserProfilesCommandOutput } from "../commands/SearchUserProfilesCommand";
87
90
  import { StartDataSourceRunCommandInput, StartDataSourceRunCommandOutput } from "../commands/StartDataSourceRunCommand";
91
+ import { StartMetadataGenerationRunCommandInput, StartMetadataGenerationRunCommandOutput } from "../commands/StartMetadataGenerationRunCommand";
88
92
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
89
93
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
90
94
  import { UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput } from "../commands/UpdateDataSourceCommand";
@@ -107,6 +111,10 @@ export declare const se_AcceptPredictionsCommand: (input: AcceptPredictionsComma
107
111
  * serializeAws_restJson1AcceptSubscriptionRequestCommand
108
112
  */
109
113
  export declare const se_AcceptSubscriptionRequestCommand: (input: AcceptSubscriptionRequestCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
114
+ /**
115
+ * serializeAws_restJson1CancelMetadataGenerationRunCommand
116
+ */
117
+ export declare const se_CancelMetadataGenerationRunCommand: (input: CancelMetadataGenerationRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
110
118
  /**
111
119
  * serializeAws_restJson1CancelSubscriptionCommand
112
120
  */
@@ -307,6 +315,10 @@ export declare const se_GetIamPortalLoginUrlCommand: (input: GetIamPortalLoginUr
307
315
  * serializeAws_restJson1GetListingCommand
308
316
  */
309
317
  export declare const se_GetListingCommand: (input: GetListingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
318
+ /**
319
+ * serializeAws_restJson1GetMetadataGenerationRunCommand
320
+ */
321
+ export declare const se_GetMetadataGenerationRunCommand: (input: GetMetadataGenerationRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
310
322
  /**
311
323
  * serializeAws_restJson1GetProjectCommand
312
324
  */
@@ -367,6 +379,10 @@ export declare const se_ListEnvironmentProfilesCommand: (input: ListEnvironmentP
367
379
  * serializeAws_restJson1ListEnvironmentsCommand
368
380
  */
369
381
  export declare const se_ListEnvironmentsCommand: (input: ListEnvironmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
382
+ /**
383
+ * serializeAws_restJson1ListMetadataGenerationRunsCommand
384
+ */
385
+ export declare const se_ListMetadataGenerationRunsCommand: (input: ListMetadataGenerationRunsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
370
386
  /**
371
387
  * serializeAws_restJson1ListNotificationsCommand
372
388
  */
@@ -439,6 +455,10 @@ export declare const se_SearchUserProfilesCommand: (input: SearchUserProfilesCom
439
455
  * serializeAws_restJson1StartDataSourceRunCommand
440
456
  */
441
457
  export declare const se_StartDataSourceRunCommand: (input: StartDataSourceRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
458
+ /**
459
+ * serializeAws_restJson1StartMetadataGenerationRunCommand
460
+ */
461
+ export declare const se_StartMetadataGenerationRunCommand: (input: StartMetadataGenerationRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
442
462
  /**
443
463
  * serializeAws_restJson1TagResourceCommand
444
464
  */
@@ -503,6 +523,10 @@ export declare const de_AcceptPredictionsCommand: (output: __HttpResponse, conte
503
523
  * deserializeAws_restJson1AcceptSubscriptionRequestCommand
504
524
  */
505
525
  export declare const de_AcceptSubscriptionRequestCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AcceptSubscriptionRequestCommandOutput>;
526
+ /**
527
+ * deserializeAws_restJson1CancelMetadataGenerationRunCommand
528
+ */
529
+ export declare const de_CancelMetadataGenerationRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelMetadataGenerationRunCommandOutput>;
506
530
  /**
507
531
  * deserializeAws_restJson1CancelSubscriptionCommand
508
532
  */
@@ -703,6 +727,10 @@ export declare const de_GetIamPortalLoginUrlCommand: (output: __HttpResponse, co
703
727
  * deserializeAws_restJson1GetListingCommand
704
728
  */
705
729
  export declare const de_GetListingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetListingCommandOutput>;
730
+ /**
731
+ * deserializeAws_restJson1GetMetadataGenerationRunCommand
732
+ */
733
+ export declare const de_GetMetadataGenerationRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMetadataGenerationRunCommandOutput>;
706
734
  /**
707
735
  * deserializeAws_restJson1GetProjectCommand
708
736
  */
@@ -763,6 +791,10 @@ export declare const de_ListEnvironmentProfilesCommand: (output: __HttpResponse,
763
791
  * deserializeAws_restJson1ListEnvironmentsCommand
764
792
  */
765
793
  export declare const de_ListEnvironmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentsCommandOutput>;
794
+ /**
795
+ * deserializeAws_restJson1ListMetadataGenerationRunsCommand
796
+ */
797
+ export declare const de_ListMetadataGenerationRunsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMetadataGenerationRunsCommandOutput>;
766
798
  /**
767
799
  * deserializeAws_restJson1ListNotificationsCommand
768
800
  */
@@ -835,6 +867,10 @@ export declare const de_SearchUserProfilesCommand: (output: __HttpResponse, cont
835
867
  * deserializeAws_restJson1StartDataSourceRunCommand
836
868
  */
837
869
  export declare const de_StartDataSourceRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartDataSourceRunCommandOutput>;
870
+ /**
871
+ * deserializeAws_restJson1StartMetadataGenerationRunCommand
872
+ */
873
+ export declare const de_StartMetadataGenerationRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartMetadataGenerationRunCommandOutput>;
838
874
  /**
839
875
  * deserializeAws_restJson1TagResourceCommand
840
876
  */
@@ -7,6 +7,10 @@ import {
7
7
  AcceptSubscriptionRequestCommandInput,
8
8
  AcceptSubscriptionRequestCommandOutput,
9
9
  } from "./commands/AcceptSubscriptionRequestCommand";
10
+ import {
11
+ CancelMetadataGenerationRunCommandInput,
12
+ CancelMetadataGenerationRunCommandOutput,
13
+ } from "./commands/CancelMetadataGenerationRunCommand";
10
14
  import {
11
15
  CancelSubscriptionCommandInput,
12
16
  CancelSubscriptionCommandOutput,
@@ -207,6 +211,10 @@ import {
207
211
  GetListingCommandInput,
208
212
  GetListingCommandOutput,
209
213
  } from "./commands/GetListingCommand";
214
+ import {
215
+ GetMetadataGenerationRunCommandInput,
216
+ GetMetadataGenerationRunCommandOutput,
217
+ } from "./commands/GetMetadataGenerationRunCommand";
210
218
  import {
211
219
  GetProjectCommandInput,
212
220
  GetProjectCommandOutput,
@@ -267,6 +275,10 @@ import {
267
275
  ListEnvironmentsCommandInput,
268
276
  ListEnvironmentsCommandOutput,
269
277
  } from "./commands/ListEnvironmentsCommand";
278
+ import {
279
+ ListMetadataGenerationRunsCommandInput,
280
+ ListMetadataGenerationRunsCommandOutput,
281
+ } from "./commands/ListMetadataGenerationRunsCommand";
270
282
  import {
271
283
  ListNotificationsCommandInput,
272
284
  ListNotificationsCommandOutput,
@@ -339,6 +351,10 @@ import {
339
351
  StartDataSourceRunCommandInput,
340
352
  StartDataSourceRunCommandOutput,
341
353
  } from "./commands/StartDataSourceRunCommand";
354
+ import {
355
+ StartMetadataGenerationRunCommandInput,
356
+ StartMetadataGenerationRunCommandOutput,
357
+ } from "./commands/StartMetadataGenerationRunCommand";
342
358
  import {
343
359
  TagResourceCommandInput,
344
360
  TagResourceCommandOutput,
@@ -423,6 +439,19 @@ export interface DataZone {
423
439
  options: __HttpHandlerOptions,
424
440
  cb: (err: any, data?: AcceptSubscriptionRequestCommandOutput) => void
425
441
  ): void;
442
+ cancelMetadataGenerationRun(
443
+ args: CancelMetadataGenerationRunCommandInput,
444
+ options?: __HttpHandlerOptions
445
+ ): Promise<CancelMetadataGenerationRunCommandOutput>;
446
+ cancelMetadataGenerationRun(
447
+ args: CancelMetadataGenerationRunCommandInput,
448
+ cb: (err: any, data?: CancelMetadataGenerationRunCommandOutput) => void
449
+ ): void;
450
+ cancelMetadataGenerationRun(
451
+ args: CancelMetadataGenerationRunCommandInput,
452
+ options: __HttpHandlerOptions,
453
+ cb: (err: any, data?: CancelMetadataGenerationRunCommandOutput) => void
454
+ ): void;
426
455
  cancelSubscription(
427
456
  args: CancelSubscriptionCommandInput,
428
457
  options?: __HttpHandlerOptions
@@ -1085,6 +1114,19 @@ export interface DataZone {
1085
1114
  options: __HttpHandlerOptions,
1086
1115
  cb: (err: any, data?: GetListingCommandOutput) => void
1087
1116
  ): void;
1117
+ getMetadataGenerationRun(
1118
+ args: GetMetadataGenerationRunCommandInput,
1119
+ options?: __HttpHandlerOptions
1120
+ ): Promise<GetMetadataGenerationRunCommandOutput>;
1121
+ getMetadataGenerationRun(
1122
+ args: GetMetadataGenerationRunCommandInput,
1123
+ cb: (err: any, data?: GetMetadataGenerationRunCommandOutput) => void
1124
+ ): void;
1125
+ getMetadataGenerationRun(
1126
+ args: GetMetadataGenerationRunCommandInput,
1127
+ options: __HttpHandlerOptions,
1128
+ cb: (err: any, data?: GetMetadataGenerationRunCommandOutput) => void
1129
+ ): void;
1088
1130
  getProject(
1089
1131
  args: GetProjectCommandInput,
1090
1132
  options?: __HttpHandlerOptions
@@ -1287,6 +1329,19 @@ export interface DataZone {
1287
1329
  options: __HttpHandlerOptions,
1288
1330
  cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
1289
1331
  ): void;
1332
+ listMetadataGenerationRuns(
1333
+ args: ListMetadataGenerationRunsCommandInput,
1334
+ options?: __HttpHandlerOptions
1335
+ ): Promise<ListMetadataGenerationRunsCommandOutput>;
1336
+ listMetadataGenerationRuns(
1337
+ args: ListMetadataGenerationRunsCommandInput,
1338
+ cb: (err: any, data?: ListMetadataGenerationRunsCommandOutput) => void
1339
+ ): void;
1340
+ listMetadataGenerationRuns(
1341
+ args: ListMetadataGenerationRunsCommandInput,
1342
+ options: __HttpHandlerOptions,
1343
+ cb: (err: any, data?: ListMetadataGenerationRunsCommandOutput) => void
1344
+ ): void;
1290
1345
  listNotifications(
1291
1346
  args: ListNotificationsCommandInput,
1292
1347
  options?: __HttpHandlerOptions
@@ -1527,6 +1582,19 @@ export interface DataZone {
1527
1582
  options: __HttpHandlerOptions,
1528
1583
  cb: (err: any, data?: StartDataSourceRunCommandOutput) => void
1529
1584
  ): void;
1585
+ startMetadataGenerationRun(
1586
+ args: StartMetadataGenerationRunCommandInput,
1587
+ options?: __HttpHandlerOptions
1588
+ ): Promise<StartMetadataGenerationRunCommandOutput>;
1589
+ startMetadataGenerationRun(
1590
+ args: StartMetadataGenerationRunCommandInput,
1591
+ cb: (err: any, data?: StartMetadataGenerationRunCommandOutput) => void
1592
+ ): void;
1593
+ startMetadataGenerationRun(
1594
+ args: StartMetadataGenerationRunCommandInput,
1595
+ options: __HttpHandlerOptions,
1596
+ cb: (err: any, data?: StartMetadataGenerationRunCommandOutput) => void
1597
+ ): void;
1530
1598
  tagResource(
1531
1599
  args: TagResourceCommandInput,
1532
1600
  options?: __HttpHandlerOptions