@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.
- package/README.md +32 -0
- package/dist-cjs/index.js +267 -10
- package/dist-es/DataZone.js +8 -0
- package/dist-es/commands/AcceptPredictionsCommand.js +2 -1
- package/dist-es/commands/CancelMetadataGenerationRunCommand.js +24 -0
- package/dist-es/commands/GetMetadataGenerationRunCommand.js +24 -0
- package/dist-es/commands/ListMetadataGenerationRunsCommand.js +24 -0
- package/dist-es/commands/StartMetadataGenerationRunCommand.js +24 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +14 -3
- package/dist-es/models/models_1.js +10 -0
- package/dist-es/pagination/ListMetadataGenerationRunsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +138 -0
- package/dist-types/DataZone.d.ts +28 -0
- package/dist-types/DataZoneClient.d.ts +6 -2
- package/dist-types/commands/AcceptPredictionsCommand.d.ts +2 -1
- package/dist-types/commands/CancelMetadataGenerationRunCommand.d.ts +79 -0
- package/dist-types/commands/CreateListingChangeSetCommand.d.ts +2 -1
- package/dist-types/commands/DeleteListingCommand.d.ts +1 -1
- package/dist-types/commands/GetListingCommand.d.ts +1 -1
- package/dist-types/commands/GetMetadataGenerationRunCommand.d.ts +90 -0
- package/dist-types/commands/ListMetadataGenerationRunsCommand.d.ts +97 -0
- package/dist-types/commands/RejectPredictionsCommand.d.ts +5 -3
- package/dist-types/commands/SearchListingsCommand.d.ts +1 -1
- package/dist-types/commands/StartMetadataGenerationRunCommand.d.ts +97 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +107 -118
- package/dist-types/models/models_1.d.ts +366 -11
- package/dist-types/pagination/ListMetadataGenerationRunsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/DataZone.d.ts +68 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CancelMetadataGenerationRunCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetMetadataGenerationRunCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListMetadataGenerationRunsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/RejectPredictionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/StartMetadataGenerationRunCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +21 -20
- package/dist-types/ts3.4/models/models_1.d.ts +85 -0
- package/dist-types/ts3.4/pagination/ListMetadataGenerationRunsPaginator.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 +48 -0
- package/package.json +1 -1
|
@@ -53,6 +53,10 @@ import {
|
|
|
53
53
|
AcceptSubscriptionRequestCommandInput,
|
|
54
54
|
AcceptSubscriptionRequestCommandOutput,
|
|
55
55
|
} from "./commands/AcceptSubscriptionRequestCommand";
|
|
56
|
+
import {
|
|
57
|
+
CancelMetadataGenerationRunCommandInput,
|
|
58
|
+
CancelMetadataGenerationRunCommandOutput,
|
|
59
|
+
} from "./commands/CancelMetadataGenerationRunCommand";
|
|
56
60
|
import {
|
|
57
61
|
CancelSubscriptionCommandInput,
|
|
58
62
|
CancelSubscriptionCommandOutput,
|
|
@@ -253,6 +257,10 @@ import {
|
|
|
253
257
|
GetListingCommandInput,
|
|
254
258
|
GetListingCommandOutput,
|
|
255
259
|
} from "./commands/GetListingCommand";
|
|
260
|
+
import {
|
|
261
|
+
GetMetadataGenerationRunCommandInput,
|
|
262
|
+
GetMetadataGenerationRunCommandOutput,
|
|
263
|
+
} from "./commands/GetMetadataGenerationRunCommand";
|
|
256
264
|
import {
|
|
257
265
|
GetProjectCommandInput,
|
|
258
266
|
GetProjectCommandOutput,
|
|
@@ -313,6 +321,10 @@ import {
|
|
|
313
321
|
ListEnvironmentsCommandInput,
|
|
314
322
|
ListEnvironmentsCommandOutput,
|
|
315
323
|
} from "./commands/ListEnvironmentsCommand";
|
|
324
|
+
import {
|
|
325
|
+
ListMetadataGenerationRunsCommandInput,
|
|
326
|
+
ListMetadataGenerationRunsCommandOutput,
|
|
327
|
+
} from "./commands/ListMetadataGenerationRunsCommand";
|
|
316
328
|
import {
|
|
317
329
|
ListNotificationsCommandInput,
|
|
318
330
|
ListNotificationsCommandOutput,
|
|
@@ -385,6 +397,10 @@ import {
|
|
|
385
397
|
StartDataSourceRunCommandInput,
|
|
386
398
|
StartDataSourceRunCommandOutput,
|
|
387
399
|
} from "./commands/StartDataSourceRunCommand";
|
|
400
|
+
import {
|
|
401
|
+
StartMetadataGenerationRunCommandInput,
|
|
402
|
+
StartMetadataGenerationRunCommandOutput,
|
|
403
|
+
} from "./commands/StartMetadataGenerationRunCommand";
|
|
388
404
|
import {
|
|
389
405
|
TagResourceCommandInput,
|
|
390
406
|
TagResourceCommandOutput,
|
|
@@ -451,6 +467,7 @@ export { __Client };
|
|
|
451
467
|
export type ServiceInputTypes =
|
|
452
468
|
| AcceptPredictionsCommandInput
|
|
453
469
|
| AcceptSubscriptionRequestCommandInput
|
|
470
|
+
| CancelMetadataGenerationRunCommandInput
|
|
454
471
|
| CancelSubscriptionCommandInput
|
|
455
472
|
| CreateAssetCommandInput
|
|
456
473
|
| CreateAssetRevisionCommandInput
|
|
@@ -501,6 +518,7 @@ export type ServiceInputTypes =
|
|
|
501
518
|
| GetGroupProfileCommandInput
|
|
502
519
|
| GetIamPortalLoginUrlCommandInput
|
|
503
520
|
| GetListingCommandInput
|
|
521
|
+
| GetMetadataGenerationRunCommandInput
|
|
504
522
|
| GetProjectCommandInput
|
|
505
523
|
| GetSubscriptionCommandInput
|
|
506
524
|
| GetSubscriptionGrantCommandInput
|
|
@@ -516,6 +534,7 @@ export type ServiceInputTypes =
|
|
|
516
534
|
| ListEnvironmentBlueprintsCommandInput
|
|
517
535
|
| ListEnvironmentProfilesCommandInput
|
|
518
536
|
| ListEnvironmentsCommandInput
|
|
537
|
+
| ListMetadataGenerationRunsCommandInput
|
|
519
538
|
| ListNotificationsCommandInput
|
|
520
539
|
| ListProjectMembershipsCommandInput
|
|
521
540
|
| ListProjectsCommandInput
|
|
@@ -534,6 +553,7 @@ export type ServiceInputTypes =
|
|
|
534
553
|
| SearchTypesCommandInput
|
|
535
554
|
| SearchUserProfilesCommandInput
|
|
536
555
|
| StartDataSourceRunCommandInput
|
|
556
|
+
| StartMetadataGenerationRunCommandInput
|
|
537
557
|
| TagResourceCommandInput
|
|
538
558
|
| UntagResourceCommandInput
|
|
539
559
|
| UpdateDataSourceCommandInput
|
|
@@ -551,6 +571,7 @@ export type ServiceInputTypes =
|
|
|
551
571
|
export type ServiceOutputTypes =
|
|
552
572
|
| AcceptPredictionsCommandOutput
|
|
553
573
|
| AcceptSubscriptionRequestCommandOutput
|
|
574
|
+
| CancelMetadataGenerationRunCommandOutput
|
|
554
575
|
| CancelSubscriptionCommandOutput
|
|
555
576
|
| CreateAssetCommandOutput
|
|
556
577
|
| CreateAssetRevisionCommandOutput
|
|
@@ -601,6 +622,7 @@ export type ServiceOutputTypes =
|
|
|
601
622
|
| GetGroupProfileCommandOutput
|
|
602
623
|
| GetIamPortalLoginUrlCommandOutput
|
|
603
624
|
| GetListingCommandOutput
|
|
625
|
+
| GetMetadataGenerationRunCommandOutput
|
|
604
626
|
| GetProjectCommandOutput
|
|
605
627
|
| GetSubscriptionCommandOutput
|
|
606
628
|
| GetSubscriptionGrantCommandOutput
|
|
@@ -616,6 +638,7 @@ export type ServiceOutputTypes =
|
|
|
616
638
|
| ListEnvironmentBlueprintsCommandOutput
|
|
617
639
|
| ListEnvironmentProfilesCommandOutput
|
|
618
640
|
| ListEnvironmentsCommandOutput
|
|
641
|
+
| ListMetadataGenerationRunsCommandOutput
|
|
619
642
|
| ListNotificationsCommandOutput
|
|
620
643
|
| ListProjectMembershipsCommandOutput
|
|
621
644
|
| ListProjectsCommandOutput
|
|
@@ -634,6 +657,7 @@ export type ServiceOutputTypes =
|
|
|
634
657
|
| SearchTypesCommandOutput
|
|
635
658
|
| SearchUserProfilesCommandOutput
|
|
636
659
|
| StartDataSourceRunCommandOutput
|
|
660
|
+
| StartMetadataGenerationRunCommandOutput
|
|
637
661
|
| TagResourceCommandOutput
|
|
638
662
|
| UntagResourceCommandOutput
|
|
639
663
|
| UpdateDataSourceCommandOutput
|
|
@@ -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
|
+
CancelMetadataGenerationRunInput,
|
|
10
|
+
CancelMetadataGenerationRunOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface CancelMetadataGenerationRunCommandInput
|
|
14
|
+
extends CancelMetadataGenerationRunInput {}
|
|
15
|
+
export interface CancelMetadataGenerationRunCommandOutput
|
|
16
|
+
extends CancelMetadataGenerationRunOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CancelMetadataGenerationRunCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CancelMetadataGenerationRunCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CancelMetadataGenerationRunCommandInput,
|
|
23
|
+
CancelMetadataGenerationRunCommandOutput,
|
|
24
|
+
DataZoneClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CancelMetadataGenerationRunCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CancelMetadataGenerationRunCommandInput,
|
|
32
|
+
CancelMetadataGenerationRunCommandOutput,
|
|
33
|
+
DataZoneClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CancelMetadataGenerationRunCommand extends CancelMetadataGenerationRunCommand_base {}
|
|
@@ -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 { GetMetadataGenerationRunInput } from "../models/models_0";
|
|
9
|
+
import { GetMetadataGenerationRunOutput } from "../models/models_1";
|
|
10
|
+
export { __MetadataBearer, $Command };
|
|
11
|
+
export interface GetMetadataGenerationRunCommandInput
|
|
12
|
+
extends GetMetadataGenerationRunInput {}
|
|
13
|
+
export interface GetMetadataGenerationRunCommandOutput
|
|
14
|
+
extends GetMetadataGenerationRunOutput,
|
|
15
|
+
__MetadataBearer {}
|
|
16
|
+
declare const GetMetadataGenerationRunCommand_base: {
|
|
17
|
+
new (
|
|
18
|
+
input: GetMetadataGenerationRunCommandInput
|
|
19
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
20
|
+
GetMetadataGenerationRunCommandInput,
|
|
21
|
+
GetMetadataGenerationRunCommandOutput,
|
|
22
|
+
DataZoneClientResolvedConfig,
|
|
23
|
+
ServiceInputTypes,
|
|
24
|
+
ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
new (
|
|
27
|
+
__0_0: GetMetadataGenerationRunCommandInput
|
|
28
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
29
|
+
GetMetadataGenerationRunCommandInput,
|
|
30
|
+
GetMetadataGenerationRunCommandOutput,
|
|
31
|
+
DataZoneClientResolvedConfig,
|
|
32
|
+
ServiceInputTypes,
|
|
33
|
+
ServiceOutputTypes
|
|
34
|
+
>;
|
|
35
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
36
|
+
};
|
|
37
|
+
export declare class GetMetadataGenerationRunCommand extends GetMetadataGenerationRunCommand_base {}
|
|
@@ -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
|
+
ListMetadataGenerationRunsInput,
|
|
10
|
+
ListMetadataGenerationRunsOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface ListMetadataGenerationRunsCommandInput
|
|
14
|
+
extends ListMetadataGenerationRunsInput {}
|
|
15
|
+
export interface ListMetadataGenerationRunsCommandOutput
|
|
16
|
+
extends ListMetadataGenerationRunsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListMetadataGenerationRunsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListMetadataGenerationRunsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListMetadataGenerationRunsCommandInput,
|
|
23
|
+
ListMetadataGenerationRunsCommandOutput,
|
|
24
|
+
DataZoneClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListMetadataGenerationRunsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListMetadataGenerationRunsCommandInput,
|
|
32
|
+
ListMetadataGenerationRunsCommandOutput,
|
|
33
|
+
DataZoneClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListMetadataGenerationRunsCommand extends ListMetadataGenerationRunsCommand_base {}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
RejectPredictionsInput,
|
|
10
|
+
RejectPredictionsOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
10
12
|
export { __MetadataBearer, $Command };
|
|
11
13
|
export interface RejectPredictionsCommandInput extends RejectPredictionsInput {}
|
|
12
14
|
export interface RejectPredictionsCommandOutput
|
|
@@ -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
|
+
StartMetadataGenerationRunInput,
|
|
10
|
+
StartMetadataGenerationRunOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface StartMetadataGenerationRunCommandInput
|
|
14
|
+
extends StartMetadataGenerationRunInput {}
|
|
15
|
+
export interface StartMetadataGenerationRunCommandOutput
|
|
16
|
+
extends StartMetadataGenerationRunOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const StartMetadataGenerationRunCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: StartMetadataGenerationRunCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
StartMetadataGenerationRunCommandInput,
|
|
23
|
+
StartMetadataGenerationRunCommandOutput,
|
|
24
|
+
DataZoneClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: StartMetadataGenerationRunCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
StartMetadataGenerationRunCommandInput,
|
|
32
|
+
StartMetadataGenerationRunCommandOutput,
|
|
33
|
+
DataZoneClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class StartMetadataGenerationRunCommand extends StartMetadataGenerationRunCommand_base {}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./AcceptPredictionsCommand";
|
|
2
2
|
export * from "./AcceptSubscriptionRequestCommand";
|
|
3
|
+
export * from "./CancelMetadataGenerationRunCommand";
|
|
3
4
|
export * from "./CancelSubscriptionCommand";
|
|
4
5
|
export * from "./CreateAssetCommand";
|
|
5
6
|
export * from "./CreateAssetRevisionCommand";
|
|
@@ -50,6 +51,7 @@ export * from "./GetGlossaryTermCommand";
|
|
|
50
51
|
export * from "./GetGroupProfileCommand";
|
|
51
52
|
export * from "./GetIamPortalLoginUrlCommand";
|
|
52
53
|
export * from "./GetListingCommand";
|
|
54
|
+
export * from "./GetMetadataGenerationRunCommand";
|
|
53
55
|
export * from "./GetProjectCommand";
|
|
54
56
|
export * from "./GetSubscriptionCommand";
|
|
55
57
|
export * from "./GetSubscriptionGrantCommand";
|
|
@@ -65,6 +67,7 @@ export * from "./ListEnvironmentBlueprintConfigurationsCommand";
|
|
|
65
67
|
export * from "./ListEnvironmentBlueprintsCommand";
|
|
66
68
|
export * from "./ListEnvironmentProfilesCommand";
|
|
67
69
|
export * from "./ListEnvironmentsCommand";
|
|
70
|
+
export * from "./ListMetadataGenerationRunsCommand";
|
|
68
71
|
export * from "./ListNotificationsCommand";
|
|
69
72
|
export * from "./ListProjectMembershipsCommand";
|
|
70
73
|
export * from "./ListProjectsCommand";
|
|
@@ -83,6 +86,7 @@ export * from "./SearchListingsCommand";
|
|
|
83
86
|
export * from "./SearchTypesCommand";
|
|
84
87
|
export * from "./SearchUserProfilesCommand";
|
|
85
88
|
export * from "./StartDataSourceRunCommand";
|
|
89
|
+
export * from "./StartMetadataGenerationRunCommand";
|
|
86
90
|
export * from "./TagResourceCommand";
|
|
87
91
|
export * from "./UntagResourceCommand";
|
|
88
92
|
export * from "./UpdateDataSourceCommand";
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { DataZoneServiceException as __BaseException } from "./DataZoneServiceException";
|
|
3
3
|
export interface AcceptChoice {
|
|
4
|
-
predictionTarget
|
|
4
|
+
predictionTarget: string | undefined;
|
|
5
5
|
predictionChoice?: number;
|
|
6
|
+
editedValue?: string;
|
|
6
7
|
}
|
|
7
8
|
export declare const AcceptRuleBehavior: {
|
|
8
9
|
readonly ALL: "ALL";
|
|
@@ -422,6 +423,11 @@ export declare const AuthType: {
|
|
|
422
423
|
readonly IAM_IDC: "IAM_IDC";
|
|
423
424
|
};
|
|
424
425
|
export type AuthType = (typeof AuthType)[keyof typeof AuthType];
|
|
426
|
+
export interface CancelMetadataGenerationRunInput {
|
|
427
|
+
domainIdentifier: string | undefined;
|
|
428
|
+
identifier: string | undefined;
|
|
429
|
+
}
|
|
430
|
+
export interface CancelMetadataGenerationRunOutput {}
|
|
425
431
|
export interface CancelSubscriptionInput {
|
|
426
432
|
domainIdentifier: string | undefined;
|
|
427
433
|
identifier: string | undefined;
|
|
@@ -2471,28 +2477,23 @@ export interface ListTagsForResourceRequest {
|
|
|
2471
2477
|
export interface ListTagsForResourceResponse {
|
|
2472
2478
|
tags?: Record<string, string>;
|
|
2473
2479
|
}
|
|
2474
|
-
export interface
|
|
2475
|
-
predictionTarget?: string;
|
|
2476
|
-
predictionChoices?: number[];
|
|
2477
|
-
}
|
|
2478
|
-
export declare const RejectRuleBehavior: {
|
|
2479
|
-
readonly ALL: "ALL";
|
|
2480
|
-
readonly NONE: "NONE";
|
|
2481
|
-
};
|
|
2482
|
-
export type RejectRuleBehavior =
|
|
2483
|
-
(typeof RejectRuleBehavior)[keyof typeof RejectRuleBehavior];
|
|
2484
|
-
export interface RejectRule {
|
|
2485
|
-
rule?: RejectRuleBehavior;
|
|
2486
|
-
threshold?: number;
|
|
2487
|
-
}
|
|
2488
|
-
export interface RejectPredictionsInput {
|
|
2480
|
+
export interface GetMetadataGenerationRunInput {
|
|
2489
2481
|
domainIdentifier: string | undefined;
|
|
2490
2482
|
identifier: string | undefined;
|
|
2491
|
-
revision?: string;
|
|
2492
|
-
rejectRule?: RejectRule;
|
|
2493
|
-
rejectChoices?: RejectChoice[];
|
|
2494
|
-
clientToken?: string;
|
|
2495
2483
|
}
|
|
2484
|
+
export declare const MetadataGenerationRunStatus: {
|
|
2485
|
+
readonly CANCELED: "CANCELED";
|
|
2486
|
+
readonly FAILED: "FAILED";
|
|
2487
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2488
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
2489
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
2490
|
+
};
|
|
2491
|
+
export type MetadataGenerationRunStatus =
|
|
2492
|
+
(typeof MetadataGenerationRunStatus)[keyof typeof MetadataGenerationRunStatus];
|
|
2493
|
+
export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
|
|
2494
|
+
export declare const AcceptPredictionsInputFilterSensitiveLog: (
|
|
2495
|
+
obj: AcceptPredictionsInput
|
|
2496
|
+
) => any;
|
|
2496
2497
|
export declare const AcceptSubscriptionRequestInputFilterSensitiveLog: (
|
|
2497
2498
|
obj: AcceptSubscriptionRequestInput
|
|
2498
2499
|
) => any;
|
|
@@ -16,6 +16,7 @@ import {
|
|
|
16
16
|
GrantedEntity,
|
|
17
17
|
GroupProfileStatus,
|
|
18
18
|
Import,
|
|
19
|
+
MetadataGenerationRunStatus,
|
|
19
20
|
Model,
|
|
20
21
|
ProjectDeletionError,
|
|
21
22
|
ProjectStatus,
|
|
@@ -35,6 +36,90 @@ import {
|
|
|
35
36
|
UserProfileStatus,
|
|
36
37
|
UserProfileType,
|
|
37
38
|
} from "./models_0";
|
|
39
|
+
export declare const MetadataGenerationTargetType: {
|
|
40
|
+
readonly ASSET: "ASSET";
|
|
41
|
+
};
|
|
42
|
+
export type MetadataGenerationTargetType =
|
|
43
|
+
(typeof MetadataGenerationTargetType)[keyof typeof MetadataGenerationTargetType];
|
|
44
|
+
export interface MetadataGenerationRunTarget {
|
|
45
|
+
type: MetadataGenerationTargetType | undefined;
|
|
46
|
+
identifier: string | undefined;
|
|
47
|
+
revision?: string;
|
|
48
|
+
}
|
|
49
|
+
export declare const MetadataGenerationRunType: {
|
|
50
|
+
readonly BUSINESS_DESCRIPTIONS: "BUSINESS_DESCRIPTIONS";
|
|
51
|
+
};
|
|
52
|
+
export type MetadataGenerationRunType =
|
|
53
|
+
(typeof MetadataGenerationRunType)[keyof typeof MetadataGenerationRunType];
|
|
54
|
+
export interface GetMetadataGenerationRunOutput {
|
|
55
|
+
domainId: string | undefined;
|
|
56
|
+
id: string | undefined;
|
|
57
|
+
target?: MetadataGenerationRunTarget;
|
|
58
|
+
status?: MetadataGenerationRunStatus;
|
|
59
|
+
type?: MetadataGenerationRunType;
|
|
60
|
+
createdAt?: Date;
|
|
61
|
+
createdBy?: string;
|
|
62
|
+
owningProjectId: string | undefined;
|
|
63
|
+
}
|
|
64
|
+
export interface ListMetadataGenerationRunsInput {
|
|
65
|
+
domainIdentifier: string | undefined;
|
|
66
|
+
status?: MetadataGenerationRunStatus;
|
|
67
|
+
type?: MetadataGenerationRunType;
|
|
68
|
+
nextToken?: string;
|
|
69
|
+
maxResults?: number;
|
|
70
|
+
}
|
|
71
|
+
export interface MetadataGenerationRunItem {
|
|
72
|
+
domainId: string | undefined;
|
|
73
|
+
id: string | undefined;
|
|
74
|
+
target?: MetadataGenerationRunTarget;
|
|
75
|
+
status?: MetadataGenerationRunStatus;
|
|
76
|
+
type?: MetadataGenerationRunType;
|
|
77
|
+
createdAt?: Date;
|
|
78
|
+
createdBy?: string;
|
|
79
|
+
owningProjectId: string | undefined;
|
|
80
|
+
}
|
|
81
|
+
export interface ListMetadataGenerationRunsOutput {
|
|
82
|
+
items?: MetadataGenerationRunItem[];
|
|
83
|
+
nextToken?: string;
|
|
84
|
+
}
|
|
85
|
+
export interface StartMetadataGenerationRunInput {
|
|
86
|
+
domainIdentifier: string | undefined;
|
|
87
|
+
type: MetadataGenerationRunType | undefined;
|
|
88
|
+
target: MetadataGenerationRunTarget | undefined;
|
|
89
|
+
clientToken?: string;
|
|
90
|
+
owningProjectIdentifier: string | undefined;
|
|
91
|
+
}
|
|
92
|
+
export interface StartMetadataGenerationRunOutput {
|
|
93
|
+
domainId: string | undefined;
|
|
94
|
+
id: string | undefined;
|
|
95
|
+
status?: MetadataGenerationRunStatus;
|
|
96
|
+
type?: MetadataGenerationRunType;
|
|
97
|
+
createdAt?: Date;
|
|
98
|
+
createdBy?: string;
|
|
99
|
+
owningProjectId?: string;
|
|
100
|
+
}
|
|
101
|
+
export interface RejectChoice {
|
|
102
|
+
predictionTarget: string | undefined;
|
|
103
|
+
predictionChoices?: number[];
|
|
104
|
+
}
|
|
105
|
+
export declare const RejectRuleBehavior: {
|
|
106
|
+
readonly ALL: "ALL";
|
|
107
|
+
readonly NONE: "NONE";
|
|
108
|
+
};
|
|
109
|
+
export type RejectRuleBehavior =
|
|
110
|
+
(typeof RejectRuleBehavior)[keyof typeof RejectRuleBehavior];
|
|
111
|
+
export interface RejectRule {
|
|
112
|
+
rule?: RejectRuleBehavior;
|
|
113
|
+
threshold?: number;
|
|
114
|
+
}
|
|
115
|
+
export interface RejectPredictionsInput {
|
|
116
|
+
domainIdentifier: string | undefined;
|
|
117
|
+
identifier: string | undefined;
|
|
118
|
+
revision?: string;
|
|
119
|
+
rejectRule?: RejectRule;
|
|
120
|
+
rejectChoices?: RejectChoice[];
|
|
121
|
+
clientToken?: string;
|
|
122
|
+
}
|
|
38
123
|
export interface RejectPredictionsOutput {
|
|
39
124
|
domainId: string | undefined;
|
|
40
125
|
assetId: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListMetadataGenerationRunsCommandInput,
|
|
4
|
+
ListMetadataGenerationRunsCommandOutput,
|
|
5
|
+
} from "../commands/ListMetadataGenerationRunsCommand";
|
|
6
|
+
import { DataZonePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListMetadataGenerationRuns: (
|
|
8
|
+
config: DataZonePaginationConfiguration,
|
|
9
|
+
input: ListMetadataGenerationRunsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => 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";
|
|
@@ -11,6 +11,10 @@ import {
|
|
|
11
11
|
AcceptSubscriptionRequestCommandInput,
|
|
12
12
|
AcceptSubscriptionRequestCommandOutput,
|
|
13
13
|
} from "../commands/AcceptSubscriptionRequestCommand";
|
|
14
|
+
import {
|
|
15
|
+
CancelMetadataGenerationRunCommandInput,
|
|
16
|
+
CancelMetadataGenerationRunCommandOutput,
|
|
17
|
+
} from "../commands/CancelMetadataGenerationRunCommand";
|
|
14
18
|
import {
|
|
15
19
|
CancelSubscriptionCommandInput,
|
|
16
20
|
CancelSubscriptionCommandOutput,
|
|
@@ -211,6 +215,10 @@ import {
|
|
|
211
215
|
GetListingCommandInput,
|
|
212
216
|
GetListingCommandOutput,
|
|
213
217
|
} from "../commands/GetListingCommand";
|
|
218
|
+
import {
|
|
219
|
+
GetMetadataGenerationRunCommandInput,
|
|
220
|
+
GetMetadataGenerationRunCommandOutput,
|
|
221
|
+
} from "../commands/GetMetadataGenerationRunCommand";
|
|
214
222
|
import {
|
|
215
223
|
GetProjectCommandInput,
|
|
216
224
|
GetProjectCommandOutput,
|
|
@@ -271,6 +279,10 @@ import {
|
|
|
271
279
|
ListEnvironmentsCommandInput,
|
|
272
280
|
ListEnvironmentsCommandOutput,
|
|
273
281
|
} from "../commands/ListEnvironmentsCommand";
|
|
282
|
+
import {
|
|
283
|
+
ListMetadataGenerationRunsCommandInput,
|
|
284
|
+
ListMetadataGenerationRunsCommandOutput,
|
|
285
|
+
} from "../commands/ListMetadataGenerationRunsCommand";
|
|
274
286
|
import {
|
|
275
287
|
ListNotificationsCommandInput,
|
|
276
288
|
ListNotificationsCommandOutput,
|
|
@@ -343,6 +355,10 @@ import {
|
|
|
343
355
|
StartDataSourceRunCommandInput,
|
|
344
356
|
StartDataSourceRunCommandOutput,
|
|
345
357
|
} from "../commands/StartDataSourceRunCommand";
|
|
358
|
+
import {
|
|
359
|
+
StartMetadataGenerationRunCommandInput,
|
|
360
|
+
StartMetadataGenerationRunCommandOutput,
|
|
361
|
+
} from "../commands/StartMetadataGenerationRunCommand";
|
|
346
362
|
import {
|
|
347
363
|
TagResourceCommandInput,
|
|
348
364
|
TagResourceCommandOutput,
|
|
@@ -407,6 +423,10 @@ export declare const se_AcceptSubscriptionRequestCommand: (
|
|
|
407
423
|
input: AcceptSubscriptionRequestCommandInput,
|
|
408
424
|
context: __SerdeContext
|
|
409
425
|
) => Promise<__HttpRequest>;
|
|
426
|
+
export declare const se_CancelMetadataGenerationRunCommand: (
|
|
427
|
+
input: CancelMetadataGenerationRunCommandInput,
|
|
428
|
+
context: __SerdeContext
|
|
429
|
+
) => Promise<__HttpRequest>;
|
|
410
430
|
export declare const se_CancelSubscriptionCommand: (
|
|
411
431
|
input: CancelSubscriptionCommandInput,
|
|
412
432
|
context: __SerdeContext
|
|
@@ -607,6 +627,10 @@ export declare const se_GetListingCommand: (
|
|
|
607
627
|
input: GetListingCommandInput,
|
|
608
628
|
context: __SerdeContext
|
|
609
629
|
) => Promise<__HttpRequest>;
|
|
630
|
+
export declare const se_GetMetadataGenerationRunCommand: (
|
|
631
|
+
input: GetMetadataGenerationRunCommandInput,
|
|
632
|
+
context: __SerdeContext
|
|
633
|
+
) => Promise<__HttpRequest>;
|
|
610
634
|
export declare const se_GetProjectCommand: (
|
|
611
635
|
input: GetProjectCommandInput,
|
|
612
636
|
context: __SerdeContext
|
|
@@ -667,6 +691,10 @@ export declare const se_ListEnvironmentsCommand: (
|
|
|
667
691
|
input: ListEnvironmentsCommandInput,
|
|
668
692
|
context: __SerdeContext
|
|
669
693
|
) => Promise<__HttpRequest>;
|
|
694
|
+
export declare const se_ListMetadataGenerationRunsCommand: (
|
|
695
|
+
input: ListMetadataGenerationRunsCommandInput,
|
|
696
|
+
context: __SerdeContext
|
|
697
|
+
) => Promise<__HttpRequest>;
|
|
670
698
|
export declare const se_ListNotificationsCommand: (
|
|
671
699
|
input: ListNotificationsCommandInput,
|
|
672
700
|
context: __SerdeContext
|
|
@@ -739,6 +767,10 @@ export declare const se_StartDataSourceRunCommand: (
|
|
|
739
767
|
input: StartDataSourceRunCommandInput,
|
|
740
768
|
context: __SerdeContext
|
|
741
769
|
) => Promise<__HttpRequest>;
|
|
770
|
+
export declare const se_StartMetadataGenerationRunCommand: (
|
|
771
|
+
input: StartMetadataGenerationRunCommandInput,
|
|
772
|
+
context: __SerdeContext
|
|
773
|
+
) => Promise<__HttpRequest>;
|
|
742
774
|
export declare const se_TagResourceCommand: (
|
|
743
775
|
input: TagResourceCommandInput,
|
|
744
776
|
context: __SerdeContext
|
|
@@ -803,6 +835,10 @@ export declare const de_AcceptSubscriptionRequestCommand: (
|
|
|
803
835
|
output: __HttpResponse,
|
|
804
836
|
context: __SerdeContext
|
|
805
837
|
) => Promise<AcceptSubscriptionRequestCommandOutput>;
|
|
838
|
+
export declare const de_CancelMetadataGenerationRunCommand: (
|
|
839
|
+
output: __HttpResponse,
|
|
840
|
+
context: __SerdeContext
|
|
841
|
+
) => Promise<CancelMetadataGenerationRunCommandOutput>;
|
|
806
842
|
export declare const de_CancelSubscriptionCommand: (
|
|
807
843
|
output: __HttpResponse,
|
|
808
844
|
context: __SerdeContext
|
|
@@ -1003,6 +1039,10 @@ export declare const de_GetListingCommand: (
|
|
|
1003
1039
|
output: __HttpResponse,
|
|
1004
1040
|
context: __SerdeContext
|
|
1005
1041
|
) => Promise<GetListingCommandOutput>;
|
|
1042
|
+
export declare const de_GetMetadataGenerationRunCommand: (
|
|
1043
|
+
output: __HttpResponse,
|
|
1044
|
+
context: __SerdeContext
|
|
1045
|
+
) => Promise<GetMetadataGenerationRunCommandOutput>;
|
|
1006
1046
|
export declare const de_GetProjectCommand: (
|
|
1007
1047
|
output: __HttpResponse,
|
|
1008
1048
|
context: __SerdeContext
|
|
@@ -1063,6 +1103,10 @@ export declare const de_ListEnvironmentsCommand: (
|
|
|
1063
1103
|
output: __HttpResponse,
|
|
1064
1104
|
context: __SerdeContext
|
|
1065
1105
|
) => Promise<ListEnvironmentsCommandOutput>;
|
|
1106
|
+
export declare const de_ListMetadataGenerationRunsCommand: (
|
|
1107
|
+
output: __HttpResponse,
|
|
1108
|
+
context: __SerdeContext
|
|
1109
|
+
) => Promise<ListMetadataGenerationRunsCommandOutput>;
|
|
1066
1110
|
export declare const de_ListNotificationsCommand: (
|
|
1067
1111
|
output: __HttpResponse,
|
|
1068
1112
|
context: __SerdeContext
|
|
@@ -1135,6 +1179,10 @@ export declare const de_StartDataSourceRunCommand: (
|
|
|
1135
1179
|
output: __HttpResponse,
|
|
1136
1180
|
context: __SerdeContext
|
|
1137
1181
|
) => Promise<StartDataSourceRunCommandOutput>;
|
|
1182
|
+
export declare const de_StartMetadataGenerationRunCommand: (
|
|
1183
|
+
output: __HttpResponse,
|
|
1184
|
+
context: __SerdeContext
|
|
1185
|
+
) => Promise<StartMetadataGenerationRunCommandOutput>;
|
|
1138
1186
|
export declare const de_TagResourceCommand: (
|
|
1139
1187
|
output: __HttpResponse,
|
|
1140
1188
|
context: __SerdeContext
|
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.
|
|
4
|
+
"version": "3.546.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",
|