@aws-sdk/client-datazone 3.535.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 (51) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/endpoint/endpointResolver.js +4 -2
  3. package/dist-cjs/index.js +267 -13
  4. package/dist-es/DataZone.js +8 -0
  5. package/dist-es/commands/AcceptPredictionsCommand.js +2 -1
  6. package/dist-es/commands/CancelMetadataGenerationRunCommand.js +24 -0
  7. package/dist-es/commands/GetMetadataGenerationRunCommand.js +24 -0
  8. package/dist-es/commands/ListMetadataGenerationRunsCommand.js +24 -0
  9. package/dist-es/commands/StartMetadataGenerationRunCommand.js +24 -0
  10. package/dist-es/commands/index.js +4 -0
  11. package/dist-es/endpoint/endpointResolver.js +3 -1
  12. package/dist-es/index.js +0 -1
  13. package/dist-es/models/models_0.js +14 -3
  14. package/dist-es/models/models_1.js +10 -0
  15. package/dist-es/pagination/ListMetadataGenerationRunsPaginator.js +4 -0
  16. package/dist-es/pagination/index.js +1 -0
  17. package/dist-es/protocols/Aws_restJson1.js +138 -0
  18. package/dist-types/DataZone.d.ts +28 -0
  19. package/dist-types/DataZoneClient.d.ts +6 -2
  20. package/dist-types/commands/AcceptPredictionsCommand.d.ts +2 -1
  21. package/dist-types/commands/CancelMetadataGenerationRunCommand.d.ts +79 -0
  22. package/dist-types/commands/CreateListingChangeSetCommand.d.ts +2 -1
  23. package/dist-types/commands/DeleteListingCommand.d.ts +1 -1
  24. package/dist-types/commands/GetListingCommand.d.ts +1 -1
  25. package/dist-types/commands/GetMetadataGenerationRunCommand.d.ts +90 -0
  26. package/dist-types/commands/ListMetadataGenerationRunsCommand.d.ts +97 -0
  27. package/dist-types/commands/RejectPredictionsCommand.d.ts +5 -3
  28. package/dist-types/commands/SearchListingsCommand.d.ts +1 -1
  29. package/dist-types/commands/StartMetadataGenerationRunCommand.d.ts +97 -0
  30. package/dist-types/commands/index.d.ts +4 -0
  31. package/dist-types/index.d.ts +0 -1
  32. package/dist-types/models/models_0.d.ts +107 -118
  33. package/dist-types/models/models_1.d.ts +366 -11
  34. package/dist-types/pagination/ListMetadataGenerationRunsPaginator.d.ts +7 -0
  35. package/dist-types/pagination/index.d.ts +1 -0
  36. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  37. package/dist-types/ts3.4/DataZone.d.ts +68 -0
  38. package/dist-types/ts3.4/DataZoneClient.d.ts +24 -0
  39. package/dist-types/ts3.4/commands/CancelMetadataGenerationRunCommand.d.ts +39 -0
  40. package/dist-types/ts3.4/commands/GetMetadataGenerationRunCommand.d.ts +37 -0
  41. package/dist-types/ts3.4/commands/ListMetadataGenerationRunsCommand.d.ts +39 -0
  42. package/dist-types/ts3.4/commands/RejectPredictionsCommand.d.ts +4 -2
  43. package/dist-types/ts3.4/commands/StartMetadataGenerationRunCommand.d.ts +39 -0
  44. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  45. package/dist-types/ts3.4/index.d.ts +0 -1
  46. package/dist-types/ts3.4/models/models_0.d.ts +21 -20
  47. package/dist-types/ts3.4/models/models_1.d.ts +85 -0
  48. package/dist-types/ts3.4/pagination/ListMetadataGenerationRunsPaginator.d.ts +11 -0
  49. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  50. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  51. package/package.json +5 -5
@@ -44,8 +44,9 @@ declare const AcceptPredictionsCommand_base: {
44
44
  * },
45
45
  * acceptChoices: [ // AcceptChoices
46
46
  * { // AcceptChoice
47
- * predictionTarget: "STRING_VALUE",
47
+ * predictionTarget: "STRING_VALUE", // required
48
48
  * predictionChoice: Number("int"),
49
+ * editedValue: "STRING_VALUE",
49
50
  * },
50
51
  * ],
51
52
  * clientToken: "STRING_VALUE",
@@ -0,0 +1,79 @@
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 { CancelMetadataGenerationRunInput, CancelMetadataGenerationRunOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link CancelMetadataGenerationRunCommand}.
13
+ */
14
+ export interface CancelMetadataGenerationRunCommandInput extends CancelMetadataGenerationRunInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link CancelMetadataGenerationRunCommand}.
20
+ */
21
+ export interface CancelMetadataGenerationRunCommandOutput extends CancelMetadataGenerationRunOutput, __MetadataBearer {
22
+ }
23
+ declare const CancelMetadataGenerationRunCommand_base: {
24
+ new (input: CancelMetadataGenerationRunCommandInput): import("@smithy/smithy-client").CommandImpl<CancelMetadataGenerationRunCommandInput, CancelMetadataGenerationRunCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CancelMetadataGenerationRunCommandInput): import("@smithy/smithy-client").CommandImpl<CancelMetadataGenerationRunCommandInput, CancelMetadataGenerationRunCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>Cancels 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, CancelMetadataGenerationRunCommand } from "@aws-sdk/client-datazone"; // ES Modules import
34
+ * // const { DataZoneClient, CancelMetadataGenerationRunCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
35
+ * const client = new DataZoneClient(config);
36
+ * const input = { // CancelMetadataGenerationRunInput
37
+ * domainIdentifier: "STRING_VALUE", // required
38
+ * identifier: "STRING_VALUE", // required
39
+ * };
40
+ * const command = new CancelMetadataGenerationRunCommand(input);
41
+ * const response = await client.send(command);
42
+ * // {};
43
+ *
44
+ * ```
45
+ *
46
+ * @param CancelMetadataGenerationRunCommandInput - {@link CancelMetadataGenerationRunCommandInput}
47
+ * @returns {@link CancelMetadataGenerationRunCommandOutput}
48
+ * @see {@link CancelMetadataGenerationRunCommandInput} for command's `input` shape.
49
+ * @see {@link CancelMetadataGenerationRunCommandOutput} for command's `response` shape.
50
+ * @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
51
+ *
52
+ * @throws {@link AccessDeniedException} (client fault)
53
+ * <p>You do not have sufficient access to perform this action.</p>
54
+ *
55
+ * @throws {@link ConflictException} (client fault)
56
+ * <p>There is a conflict while performing this action.</p>
57
+ *
58
+ * @throws {@link InternalServerException} (server fault)
59
+ * <p>The request has failed because of an unknown error, exception or failure.</p>
60
+ *
61
+ * @throws {@link ResourceNotFoundException} (client fault)
62
+ * <p>The specified resource cannot be found.</p>
63
+ *
64
+ * @throws {@link ThrottlingException} (client fault)
65
+ * <p>The request was denied due to request throttling.</p>
66
+ *
67
+ * @throws {@link ValidationException} (client fault)
68
+ * <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
69
+ *
70
+ * @throws {@link UnauthorizedException} (client fault)
71
+ * <p>You do not have permission to perform this action.</p>
72
+ *
73
+ * @throws {@link DataZoneServiceException}
74
+ * <p>Base exception class for all service exceptions from DataZone service.</p>
75
+ *
76
+ * @public
77
+ */
78
+ export declare class CancelMetadataGenerationRunCommand extends CancelMetadataGenerationRunCommand_base {
79
+ }
@@ -26,7 +26,8 @@ declare const CreateListingChangeSetCommand_base: {
26
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
27
  };
28
28
  /**
29
- * <p/>
29
+ * <p>Publishes a listing (a record of an asset at a given time) or removes a listing from the
30
+ * catalog. </p>
30
31
  * @example
31
32
  * Use a bare-bones client and the command you need to make an API call.
32
33
  * ```javascript
@@ -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/models_0";
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";
@@ -15,5 +15,4 @@ export { DataZoneExtensionConfiguration } from "./extensionConfiguration";
15
15
  export * from "./commands";
16
16
  export * from "./pagination";
17
17
  export * from "./models";
18
- import "@aws-sdk/util-endpoints";
19
18
  export { DataZoneServiceException } from "./models/DataZoneServiceException";