@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
|
@@ -26,7 +26,7 @@ declare const DeleteListingCommand_base: {
|
|
|
26
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
27
|
};
|
|
28
28
|
/**
|
|
29
|
-
* <p
|
|
29
|
+
* <p>Deletes a listing (a record of an asset at a given time).</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
32
|
* ```javascript
|
|
@@ -26,7 +26,7 @@ declare const GetListingCommand_base: {
|
|
|
26
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
27
|
};
|
|
28
28
|
/**
|
|
29
|
-
* <p
|
|
29
|
+
* <p>Gets a listing (a record of an asset at a given time).</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
32
|
* ```javascript
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
+
import { GetMetadataGenerationRunInput } from "../models/models_0";
|
|
5
|
+
import { GetMetadataGenerationRunOutput } from "../models/models_1";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetMetadataGenerationRunCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetMetadataGenerationRunCommandInput extends GetMetadataGenerationRunInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetMetadataGenerationRunCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetMetadataGenerationRunCommandOutput extends GetMetadataGenerationRunOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetMetadataGenerationRunCommand_base: {
|
|
25
|
+
new (input: GetMetadataGenerationRunCommandInput): import("@smithy/smithy-client").CommandImpl<GetMetadataGenerationRunCommandInput, GetMetadataGenerationRunCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: GetMetadataGenerationRunCommandInput): import("@smithy/smithy-client").CommandImpl<GetMetadataGenerationRunCommandInput, GetMetadataGenerationRunCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Gets a metadata generation run in Amazon DataZone.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { DataZoneClient, GetMetadataGenerationRunCommand } from "@aws-sdk/client-datazone"; // ES Modules import
|
|
35
|
+
* // const { DataZoneClient, GetMetadataGenerationRunCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
|
|
36
|
+
* const client = new DataZoneClient(config);
|
|
37
|
+
* const input = { // GetMetadataGenerationRunInput
|
|
38
|
+
* domainIdentifier: "STRING_VALUE", // required
|
|
39
|
+
* identifier: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new GetMetadataGenerationRunCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // GetMetadataGenerationRunOutput
|
|
44
|
+
* // domainId: "STRING_VALUE", // required
|
|
45
|
+
* // id: "STRING_VALUE", // required
|
|
46
|
+
* // target: { // MetadataGenerationRunTarget
|
|
47
|
+
* // type: "ASSET", // required
|
|
48
|
+
* // identifier: "STRING_VALUE", // required
|
|
49
|
+
* // revision: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // status: "SUBMITTED" || "IN_PROGRESS" || "CANCELED" || "SUCCEEDED" || "FAILED",
|
|
52
|
+
* // type: "BUSINESS_DESCRIPTIONS",
|
|
53
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
54
|
+
* // createdBy: "STRING_VALUE",
|
|
55
|
+
* // owningProjectId: "STRING_VALUE", // required
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
58
|
+
* ```
|
|
59
|
+
*
|
|
60
|
+
* @param GetMetadataGenerationRunCommandInput - {@link GetMetadataGenerationRunCommandInput}
|
|
61
|
+
* @returns {@link GetMetadataGenerationRunCommandOutput}
|
|
62
|
+
* @see {@link GetMetadataGenerationRunCommandInput} for command's `input` shape.
|
|
63
|
+
* @see {@link GetMetadataGenerationRunCommandOutput} for command's `response` shape.
|
|
64
|
+
* @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
67
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link InternalServerException} (server fault)
|
|
70
|
+
* <p>The request has failed because of an unknown error, exception or failure.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
73
|
+
* <p>The specified resource cannot be found.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
76
|
+
* <p>The request was denied due to request throttling.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ValidationException} (client fault)
|
|
79
|
+
* <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
82
|
+
* <p>You do not have permission to perform this action.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link DataZoneServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from DataZone service.</p>
|
|
86
|
+
*
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
export declare class GetMetadataGenerationRunCommand extends GetMetadataGenerationRunCommand_base {
|
|
90
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
+
import { ListMetadataGenerationRunsInput, ListMetadataGenerationRunsOutput } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link ListMetadataGenerationRunsCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface ListMetadataGenerationRunsCommandInput extends ListMetadataGenerationRunsInput {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link ListMetadataGenerationRunsCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface ListMetadataGenerationRunsCommandOutput extends ListMetadataGenerationRunsOutput, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const ListMetadataGenerationRunsCommand_base: {
|
|
24
|
+
new (input: ListMetadataGenerationRunsCommandInput): import("@smithy/smithy-client").CommandImpl<ListMetadataGenerationRunsCommandInput, ListMetadataGenerationRunsCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListMetadataGenerationRunsCommandInput): import("@smithy/smithy-client").CommandImpl<ListMetadataGenerationRunsCommandInput, ListMetadataGenerationRunsCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p>Lists all metadata generation runs.</p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { DataZoneClient, ListMetadataGenerationRunsCommand } from "@aws-sdk/client-datazone"; // ES Modules import
|
|
34
|
+
* // const { DataZoneClient, ListMetadataGenerationRunsCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
|
|
35
|
+
* const client = new DataZoneClient(config);
|
|
36
|
+
* const input = { // ListMetadataGenerationRunsInput
|
|
37
|
+
* domainIdentifier: "STRING_VALUE", // required
|
|
38
|
+
* status: "SUBMITTED" || "IN_PROGRESS" || "CANCELED" || "SUCCEEDED" || "FAILED",
|
|
39
|
+
* type: "BUSINESS_DESCRIPTIONS",
|
|
40
|
+
* nextToken: "STRING_VALUE",
|
|
41
|
+
* maxResults: Number("int"),
|
|
42
|
+
* };
|
|
43
|
+
* const command = new ListMetadataGenerationRunsCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // { // ListMetadataGenerationRunsOutput
|
|
46
|
+
* // items: [ // MetadataGenerationRuns
|
|
47
|
+
* // { // MetadataGenerationRunItem
|
|
48
|
+
* // domainId: "STRING_VALUE", // required
|
|
49
|
+
* // id: "STRING_VALUE", // required
|
|
50
|
+
* // target: { // MetadataGenerationRunTarget
|
|
51
|
+
* // type: "ASSET", // required
|
|
52
|
+
* // identifier: "STRING_VALUE", // required
|
|
53
|
+
* // revision: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // status: "SUBMITTED" || "IN_PROGRESS" || "CANCELED" || "SUCCEEDED" || "FAILED",
|
|
56
|
+
* // type: "BUSINESS_DESCRIPTIONS",
|
|
57
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
58
|
+
* // createdBy: "STRING_VALUE",
|
|
59
|
+
* // owningProjectId: "STRING_VALUE", // required
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // nextToken: "STRING_VALUE",
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
65
|
+
* ```
|
|
66
|
+
*
|
|
67
|
+
* @param ListMetadataGenerationRunsCommandInput - {@link ListMetadataGenerationRunsCommandInput}
|
|
68
|
+
* @returns {@link ListMetadataGenerationRunsCommandOutput}
|
|
69
|
+
* @see {@link ListMetadataGenerationRunsCommandInput} for command's `input` shape.
|
|
70
|
+
* @see {@link ListMetadataGenerationRunsCommandOutput} for command's `response` shape.
|
|
71
|
+
* @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
74
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link InternalServerException} (server fault)
|
|
77
|
+
* <p>The request has failed because of an unknown error, exception or failure.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
80
|
+
* <p>The specified resource cannot be found.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
83
|
+
* <p>The request was denied due to request throttling.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link ValidationException} (client fault)
|
|
86
|
+
* <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
89
|
+
* <p>You do not have permission to perform this action.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link DataZoneServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from DataZone service.</p>
|
|
93
|
+
*
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
export declare class ListMetadataGenerationRunsCommand extends ListMetadataGenerationRunsCommand_base {
|
|
97
|
+
}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import { RejectPredictionsInput } from "../models/
|
|
5
|
-
import { RejectPredictionsOutput } from "../models/models_1";
|
|
4
|
+
import { RejectPredictionsInput, RejectPredictionsOutput } from "../models/models_1";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -45,7 +44,7 @@ declare const RejectPredictionsCommand_base: {
|
|
|
45
44
|
* },
|
|
46
45
|
* rejectChoices: [ // RejectChoices
|
|
47
46
|
* { // RejectChoice
|
|
48
|
-
* predictionTarget: "STRING_VALUE",
|
|
47
|
+
* predictionTarget: "STRING_VALUE", // required
|
|
49
48
|
* predictionChoices: [ // PredictionChoices
|
|
50
49
|
* Number("int"),
|
|
51
50
|
* ],
|
|
@@ -72,6 +71,9 @@ declare const RejectPredictionsCommand_base: {
|
|
|
72
71
|
* @throws {@link AccessDeniedException} (client fault)
|
|
73
72
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
74
73
|
*
|
|
74
|
+
* @throws {@link ConflictException} (client fault)
|
|
75
|
+
* <p>There is a conflict while performing this action.</p>
|
|
76
|
+
*
|
|
75
77
|
* @throws {@link InternalServerException} (server fault)
|
|
76
78
|
* <p>The request has failed because of an unknown error, exception or failure.</p>
|
|
77
79
|
*
|
|
@@ -26,7 +26,7 @@ declare const SearchListingsCommand_base: {
|
|
|
26
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
27
|
};
|
|
28
28
|
/**
|
|
29
|
-
* <p>Searches listings in Amazon DataZone.</p>
|
|
29
|
+
* <p>Searches listings (records of an asset at a given time) in Amazon DataZone.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
32
|
* ```javascript
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
+
import { StartMetadataGenerationRunInput, StartMetadataGenerationRunOutput } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link StartMetadataGenerationRunCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface StartMetadataGenerationRunCommandInput extends StartMetadataGenerationRunInput {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link StartMetadataGenerationRunCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface StartMetadataGenerationRunCommandOutput extends StartMetadataGenerationRunOutput, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const StartMetadataGenerationRunCommand_base: {
|
|
24
|
+
new (input: StartMetadataGenerationRunCommandInput): import("@smithy/smithy-client").CommandImpl<StartMetadataGenerationRunCommandInput, StartMetadataGenerationRunCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartMetadataGenerationRunCommandInput): import("@smithy/smithy-client").CommandImpl<StartMetadataGenerationRunCommandInput, StartMetadataGenerationRunCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p>Starts the metadata generation run.</p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { DataZoneClient, StartMetadataGenerationRunCommand } from "@aws-sdk/client-datazone"; // ES Modules import
|
|
34
|
+
* // const { DataZoneClient, StartMetadataGenerationRunCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
|
|
35
|
+
* const client = new DataZoneClient(config);
|
|
36
|
+
* const input = { // StartMetadataGenerationRunInput
|
|
37
|
+
* domainIdentifier: "STRING_VALUE", // required
|
|
38
|
+
* type: "BUSINESS_DESCRIPTIONS", // required
|
|
39
|
+
* target: { // MetadataGenerationRunTarget
|
|
40
|
+
* type: "ASSET", // required
|
|
41
|
+
* identifier: "STRING_VALUE", // required
|
|
42
|
+
* revision: "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* clientToken: "STRING_VALUE",
|
|
45
|
+
* owningProjectIdentifier: "STRING_VALUE", // required
|
|
46
|
+
* };
|
|
47
|
+
* const command = new StartMetadataGenerationRunCommand(input);
|
|
48
|
+
* const response = await client.send(command);
|
|
49
|
+
* // { // StartMetadataGenerationRunOutput
|
|
50
|
+
* // domainId: "STRING_VALUE", // required
|
|
51
|
+
* // id: "STRING_VALUE", // required
|
|
52
|
+
* // status: "SUBMITTED" || "IN_PROGRESS" || "CANCELED" || "SUCCEEDED" || "FAILED",
|
|
53
|
+
* // type: "BUSINESS_DESCRIPTIONS",
|
|
54
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
55
|
+
* // createdBy: "STRING_VALUE",
|
|
56
|
+
* // owningProjectId: "STRING_VALUE",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* @param StartMetadataGenerationRunCommandInput - {@link StartMetadataGenerationRunCommandInput}
|
|
62
|
+
* @returns {@link StartMetadataGenerationRunCommandOutput}
|
|
63
|
+
* @see {@link StartMetadataGenerationRunCommandInput} for command's `input` shape.
|
|
64
|
+
* @see {@link StartMetadataGenerationRunCommandOutput} for command's `response` shape.
|
|
65
|
+
* @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
68
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ConflictException} (client fault)
|
|
71
|
+
* <p>There is a conflict while performing this action.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link InternalServerException} (server fault)
|
|
74
|
+
* <p>The request has failed because of an unknown error, exception or failure.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
77
|
+
* <p>The specified resource cannot be found.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
80
|
+
* <p>The request has exceeded the specified service quota.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
83
|
+
* <p>The request was denied due to request throttling.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link ValidationException} (client fault)
|
|
86
|
+
* <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
89
|
+
* <p>You do not have permission to perform this action.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link DataZoneServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from DataZone service.</p>
|
|
93
|
+
*
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
export declare class StartMetadataGenerationRunCommand extends StartMetadataGenerationRunCommand_base {
|
|
97
|
+
}
|
|
@@ -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";
|