@@ -12,6 +12,11 @@ import {
1212 AcceptSubscriptionRequestCommandInput ,
1313 AcceptSubscriptionRequestCommandOutput ,
1414} from "./commands/AcceptSubscriptionRequestCommand" ;
15+ import {
16+ CancelMetadataGenerationRunCommand ,
17+ CancelMetadataGenerationRunCommandInput ,
18+ CancelMetadataGenerationRunCommandOutput ,
19+ } from "./commands/CancelMetadataGenerationRunCommand" ;
1520import {
1621 CancelSubscriptionCommand ,
1722 CancelSubscriptionCommandInput ,
@@ -234,6 +239,11 @@ import {
234239 GetIamPortalLoginUrlCommandOutput ,
235240} from "./commands/GetIamPortalLoginUrlCommand" ;
236241import { GetListingCommand , GetListingCommandInput , GetListingCommandOutput } from "./commands/GetListingCommand" ;
242+ import {
243+ GetMetadataGenerationRunCommand ,
244+ GetMetadataGenerationRunCommandInput ,
245+ GetMetadataGenerationRunCommandOutput ,
246+ } from "./commands/GetMetadataGenerationRunCommand" ;
237247import { GetProjectCommand , GetProjectCommandInput , GetProjectCommandOutput } from "./commands/GetProjectCommand" ;
238248import {
239249 GetSubscriptionCommand ,
@@ -301,6 +311,11 @@ import {
301311 ListEnvironmentsCommandInput ,
302312 ListEnvironmentsCommandOutput ,
303313} from "./commands/ListEnvironmentsCommand" ;
314+ import {
315+ ListMetadataGenerationRunsCommand ,
316+ ListMetadataGenerationRunsCommandInput ,
317+ ListMetadataGenerationRunsCommandOutput ,
318+ } from "./commands/ListMetadataGenerationRunsCommand" ;
304319import {
305320 ListNotificationsCommand ,
306321 ListNotificationsCommandInput ,
@@ -383,6 +398,11 @@ import {
383398 StartDataSourceRunCommandInput ,
384399 StartDataSourceRunCommandOutput ,
385400} from "./commands/StartDataSourceRunCommand" ;
401+ import {
402+ StartMetadataGenerationRunCommand ,
403+ StartMetadataGenerationRunCommandInput ,
404+ StartMetadataGenerationRunCommandOutput ,
405+ } from "./commands/StartMetadataGenerationRunCommand" ;
386406import { TagResourceCommand , TagResourceCommandInput , TagResourceCommandOutput } from "./commands/TagResourceCommand" ;
387407import {
388408 UntagResourceCommand ,
@@ -454,6 +474,7 @@ import { DataZoneClient, DataZoneClientConfig } from "./DataZoneClient";
454474const commands = {
455475 AcceptPredictionsCommand,
456476 AcceptSubscriptionRequestCommand,
477+ CancelMetadataGenerationRunCommand,
457478 CancelSubscriptionCommand,
458479 CreateAssetCommand,
459480 CreateAssetRevisionCommand,
@@ -504,6 +525,7 @@ const commands = {
504525 GetGroupProfileCommand,
505526 GetIamPortalLoginUrlCommand,
506527 GetListingCommand,
528+ GetMetadataGenerationRunCommand,
507529 GetProjectCommand,
508530 GetSubscriptionCommand,
509531 GetSubscriptionGrantCommand,
@@ -519,6 +541,7 @@ const commands = {
519541 ListEnvironmentBlueprintsCommand,
520542 ListEnvironmentProfilesCommand,
521543 ListEnvironmentsCommand,
544+ ListMetadataGenerationRunsCommand,
522545 ListNotificationsCommand,
523546 ListProjectMembershipsCommand,
524547 ListProjectsCommand,
@@ -537,6 +560,7 @@ const commands = {
537560 SearchTypesCommand,
538561 SearchUserProfilesCommand,
539562 StartDataSourceRunCommand,
563+ StartMetadataGenerationRunCommand,
540564 TagResourceCommand,
541565 UntagResourceCommand,
542566 UpdateDataSourceCommand,
@@ -588,6 +612,23 @@ export interface DataZone {
588612 cb : ( err : any , data ?: AcceptSubscriptionRequestCommandOutput ) => void
589613 ) : void ;
590614
615+ /**
616+ * @see {@link CancelMetadataGenerationRunCommand }
617+ */
618+ cancelMetadataGenerationRun (
619+ args : CancelMetadataGenerationRunCommandInput ,
620+ options ?: __HttpHandlerOptions
621+ ) : Promise < CancelMetadataGenerationRunCommandOutput > ;
622+ cancelMetadataGenerationRun (
623+ args : CancelMetadataGenerationRunCommandInput ,
624+ cb : ( err : any , data ?: CancelMetadataGenerationRunCommandOutput ) => void
625+ ) : void ;
626+ cancelMetadataGenerationRun (
627+ args : CancelMetadataGenerationRunCommandInput ,
628+ options : __HttpHandlerOptions ,
629+ cb : ( err : any , data ?: CancelMetadataGenerationRunCommandOutput ) => void
630+ ) : void ;
631+
591632 /**
592633 * @see {@link CancelSubscriptionCommand }
593634 */
@@ -1327,6 +1368,23 @@ export interface DataZone {
13271368 cb : ( err : any , data ?: GetListingCommandOutput ) => void
13281369 ) : void ;
13291370
1371+ /**
1372+ * @see {@link GetMetadataGenerationRunCommand }
1373+ */
1374+ getMetadataGenerationRun (
1375+ args : GetMetadataGenerationRunCommandInput ,
1376+ options ?: __HttpHandlerOptions
1377+ ) : Promise < GetMetadataGenerationRunCommandOutput > ;
1378+ getMetadataGenerationRun (
1379+ args : GetMetadataGenerationRunCommandInput ,
1380+ cb : ( err : any , data ?: GetMetadataGenerationRunCommandOutput ) => void
1381+ ) : void ;
1382+ getMetadataGenerationRun (
1383+ args : GetMetadataGenerationRunCommandInput ,
1384+ options : __HttpHandlerOptions ,
1385+ cb : ( err : any , data ?: GetMetadataGenerationRunCommandOutput ) => void
1386+ ) : void ;
1387+
13301388 /**
13311389 * @see {@link GetProjectCommand }
13321390 */
@@ -1562,6 +1620,23 @@ export interface DataZone {
15621620 cb : ( err : any , data ?: ListEnvironmentsCommandOutput ) => void
15631621 ) : void ;
15641622
1623+ /**
1624+ * @see {@link ListMetadataGenerationRunsCommand }
1625+ */
1626+ listMetadataGenerationRuns (
1627+ args : ListMetadataGenerationRunsCommandInput ,
1628+ options ?: __HttpHandlerOptions
1629+ ) : Promise < ListMetadataGenerationRunsCommandOutput > ;
1630+ listMetadataGenerationRuns (
1631+ args : ListMetadataGenerationRunsCommandInput ,
1632+ cb : ( err : any , data ?: ListMetadataGenerationRunsCommandOutput ) => void
1633+ ) : void ;
1634+ listMetadataGenerationRuns (
1635+ args : ListMetadataGenerationRunsCommandInput ,
1636+ options : __HttpHandlerOptions ,
1637+ cb : ( err : any , data ?: ListMetadataGenerationRunsCommandOutput ) => void
1638+ ) : void ;
1639+
15651640 /**
15661641 * @see {@link ListNotificationsCommand }
15671642 */
@@ -1847,6 +1922,23 @@ export interface DataZone {
18471922 cb : ( err : any , data ?: StartDataSourceRunCommandOutput ) => void
18481923 ) : void ;
18491924
1925+ /**
1926+ * @see {@link StartMetadataGenerationRunCommand }
1927+ */
1928+ startMetadataGenerationRun (
1929+ args : StartMetadataGenerationRunCommandInput ,
1930+ options ?: __HttpHandlerOptions
1931+ ) : Promise < StartMetadataGenerationRunCommandOutput > ;
1932+ startMetadataGenerationRun (
1933+ args : StartMetadataGenerationRunCommandInput ,
1934+ cb : ( err : any , data ?: StartMetadataGenerationRunCommandOutput ) => void
1935+ ) : void ;
1936+ startMetadataGenerationRun (
1937+ args : StartMetadataGenerationRunCommandInput ,
1938+ options : __HttpHandlerOptions ,
1939+ cb : ( err : any , data ?: StartMetadataGenerationRunCommandOutput ) => void
1940+ ) : void ;
1941+
18501942 /**
18511943 * @see {@link TagResourceCommand }
18521944 */
0 commit comments