@aws-sdk/client-databrew 3.40.0 → 3.44.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 (91) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/dist-cjs/DataBrew.js +75 -0
  3. package/dist-cjs/DataBrewClient.js +1 -0
  4. package/dist-cjs/commands/CreateRulesetCommand.js +36 -0
  5. package/dist-cjs/commands/DeleteRulesetCommand.js +36 -0
  6. package/dist-cjs/commands/DescribeRulesetCommand.js +36 -0
  7. package/dist-cjs/commands/ListRulesetsCommand.js +36 -0
  8. package/dist-cjs/commands/UpdateRulesetCommand.js +36 -0
  9. package/dist-cjs/commands/index.js +5 -0
  10. package/dist-cjs/endpoints.js +8 -0
  11. package/dist-cjs/models/models_0.js +130 -3
  12. package/dist-cjs/pagination/ListRulesetsPaginator.js +35 -0
  13. package/dist-cjs/pagination/index.js +1 -0
  14. package/dist-cjs/protocols/Aws_restJson1.js +727 -4
  15. package/dist-es/DataBrew.js +75 -0
  16. package/dist-es/DataBrewClient.js +2 -1
  17. package/dist-es/commands/CreateRulesetCommand.js +39 -0
  18. package/dist-es/commands/DeleteRulesetCommand.js +39 -0
  19. package/dist-es/commands/DescribeRulesetCommand.js +39 -0
  20. package/dist-es/commands/ListRulesetsCommand.js +39 -0
  21. package/dist-es/commands/UpdateRulesetCommand.js +39 -0
  22. package/dist-es/commands/index.js +5 -0
  23. package/dist-es/endpoints.js +8 -0
  24. package/dist-es/models/models_0.js +92 -2
  25. package/dist-es/pagination/ListRulesetsPaginator.js +74 -0
  26. package/dist-es/pagination/index.js +1 -0
  27. package/dist-es/protocols/Aws_restJson1.js +818 -42
  28. package/dist-types/DataBrew.d.ts +37 -0
  29. package/dist-types/DataBrewClient.d.ts +7 -2
  30. package/dist-types/commands/BatchDeleteRecipeVersionCommand.d.ts +1 -1
  31. package/dist-types/commands/CreateDatasetCommand.d.ts +1 -1
  32. package/dist-types/commands/CreateProfileJobCommand.d.ts +1 -1
  33. package/dist-types/commands/CreateProjectCommand.d.ts +1 -1
  34. package/dist-types/commands/CreateRecipeCommand.d.ts +1 -1
  35. package/dist-types/commands/CreateRecipeJobCommand.d.ts +1 -1
  36. package/dist-types/commands/CreateRulesetCommand.d.ts +36 -0
  37. package/dist-types/commands/CreateScheduleCommand.d.ts +1 -1
  38. package/dist-types/commands/DeleteDatasetCommand.d.ts +1 -1
  39. package/dist-types/commands/DeleteJobCommand.d.ts +1 -1
  40. package/dist-types/commands/DeleteProjectCommand.d.ts +1 -1
  41. package/dist-types/commands/DeleteRecipeVersionCommand.d.ts +1 -1
  42. package/dist-types/commands/DeleteRulesetCommand.d.ts +35 -0
  43. package/dist-types/commands/DeleteScheduleCommand.d.ts +1 -1
  44. package/dist-types/commands/DescribeDatasetCommand.d.ts +1 -1
  45. package/dist-types/commands/DescribeJobCommand.d.ts +1 -1
  46. package/dist-types/commands/DescribeJobRunCommand.d.ts +1 -1
  47. package/dist-types/commands/DescribeProjectCommand.d.ts +1 -1
  48. package/dist-types/commands/DescribeRecipeCommand.d.ts +1 -1
  49. package/dist-types/commands/DescribeRulesetCommand.d.ts +35 -0
  50. package/dist-types/commands/DescribeScheduleCommand.d.ts +1 -1
  51. package/dist-types/commands/ListDatasetsCommand.d.ts +1 -1
  52. package/dist-types/commands/ListJobRunsCommand.d.ts +1 -1
  53. package/dist-types/commands/ListJobsCommand.d.ts +1 -1
  54. package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
  55. package/dist-types/commands/ListRecipeVersionsCommand.d.ts +1 -1
  56. package/dist-types/commands/ListRecipesCommand.d.ts +1 -1
  57. package/dist-types/commands/ListRulesetsCommand.d.ts +36 -0
  58. package/dist-types/commands/ListSchedulesCommand.d.ts +1 -1
  59. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  60. package/dist-types/commands/PublishRecipeCommand.d.ts +1 -1
  61. package/dist-types/commands/SendProjectSessionActionCommand.d.ts +1 -1
  62. package/dist-types/commands/StartJobRunCommand.d.ts +1 -1
  63. package/dist-types/commands/StartProjectSessionCommand.d.ts +1 -1
  64. package/dist-types/commands/StopJobRunCommand.d.ts +1 -1
  65. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  66. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  67. package/dist-types/commands/UpdateDatasetCommand.d.ts +1 -1
  68. package/dist-types/commands/UpdateProfileJobCommand.d.ts +1 -1
  69. package/dist-types/commands/UpdateProjectCommand.d.ts +1 -1
  70. package/dist-types/commands/UpdateRecipeCommand.d.ts +1 -1
  71. package/dist-types/commands/UpdateRecipeJobCommand.d.ts +1 -1
  72. package/dist-types/commands/UpdateRulesetCommand.d.ts +35 -0
  73. package/dist-types/commands/UpdateScheduleCommand.d.ts +1 -1
  74. package/dist-types/commands/index.d.ts +5 -0
  75. package/dist-types/models/models_0.d.ts +577 -17
  76. package/dist-types/pagination/ListRulesetsPaginator.d.ts +4 -0
  77. package/dist-types/pagination/index.d.ts +1 -0
  78. package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
  79. package/dist-types/ts3.4/DataBrew.d.ts +25 -0
  80. package/dist-types/ts3.4/DataBrewClient.d.ts +7 -2
  81. package/dist-types/ts3.4/commands/CreateRulesetCommand.d.ts +17 -0
  82. package/dist-types/ts3.4/commands/DeleteRulesetCommand.d.ts +17 -0
  83. package/dist-types/ts3.4/commands/DescribeRulesetCommand.d.ts +17 -0
  84. package/dist-types/ts3.4/commands/ListRulesetsCommand.d.ts +17 -0
  85. package/dist-types/ts3.4/commands/UpdateRulesetCommand.d.ts +17 -0
  86. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  87. package/dist-types/ts3.4/models/models_0.d.ts +267 -1
  88. package/dist-types/ts3.4/pagination/ListRulesetsPaginator.d.ts +4 -0
  89. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  90. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +15 -0
  91. package/package.json +4 -4
@@ -21,7 +21,7 @@ export interface StartProjectSessionCommandOutput extends StartProjectSessionRes
21
21
  *
22
22
  * @see {@link StartProjectSessionCommandInput} for command's `input` shape.
23
23
  * @see {@link StartProjectSessionCommandOutput} for command's `response` shape.
24
- * @see {@link DataBrewClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class StartProjectSessionCommand extends $Command<StartProjectSessionCommandInput, StartProjectSessionCommandOutput, DataBrewClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface StopJobRunCommandOutput extends StopJobRunResponse, __MetadataB
20
20
  *
21
21
  * @see {@link StopJobRunCommandInput} for command's `input` shape.
22
22
  * @see {@link StopJobRunCommandOutput} for command's `response` shape.
23
- * @see {@link DataBrewClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class StopJobRunCommand extends $Command<StopJobRunCommandInput, StopJobRunCommandOutput, DataBrewClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
21
21
  *
22
22
  * @see {@link TagResourceCommandInput} for command's `input` shape.
23
23
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
24
- * @see {@link DataBrewClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, DataBrewClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
20
20
  *
21
21
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
22
22
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
23
- * @see {@link DataBrewClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, DataBrewClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met
20
20
  *
21
21
  * @see {@link UpdateDatasetCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdateDatasetCommandOutput} for command's `response` shape.
23
- * @see {@link DataBrewClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UpdateDatasetCommand extends $Command<UpdateDatasetCommandInput, UpdateDatasetCommandOutput, DataBrewClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UpdateProfileJobCommandOutput extends UpdateProfileJobResponse,
20
20
  *
21
21
  * @see {@link UpdateProfileJobCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdateProfileJobCommandOutput} for command's `response` shape.
23
- * @see {@link DataBrewClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UpdateProfileJobCommand extends $Command<UpdateProfileJobCommandInput, UpdateProfileJobCommandOutput, DataBrewClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UpdateProjectCommandOutput extends UpdateProjectResponse, __Met
20
20
  *
21
21
  * @see {@link UpdateProjectCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdateProjectCommandOutput} for command's `response` shape.
23
- * @see {@link DataBrewClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UpdateProjectCommand extends $Command<UpdateProjectCommandInput, UpdateProjectCommandOutput, DataBrewClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface UpdateRecipeCommandOutput extends UpdateRecipeResponse, __Metad
21
21
  *
22
22
  * @see {@link UpdateRecipeCommandInput} for command's `input` shape.
23
23
  * @see {@link UpdateRecipeCommandOutput} for command's `response` shape.
24
- * @see {@link DataBrewClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class UpdateRecipeCommand extends $Command<UpdateRecipeCommandInput, UpdateRecipeCommandOutput, DataBrewClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UpdateRecipeJobCommandOutput extends UpdateRecipeJobResponse, _
20
20
  *
21
21
  * @see {@link UpdateRecipeJobCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdateRecipeJobCommandOutput} for command's `response` shape.
23
- * @see {@link DataBrewClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UpdateRecipeJobCommand extends $Command<UpdateRecipeJobCommandInput, UpdateRecipeJobCommandOutput, DataBrewClientResolvedConfig> {
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
4
+ import { UpdateRulesetRequest, UpdateRulesetResponse } from "../models/models_0";
5
+ export interface UpdateRulesetCommandInput extends UpdateRulesetRequest {
6
+ }
7
+ export interface UpdateRulesetCommandOutput extends UpdateRulesetResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Updates specified ruleset.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { DataBrewClient, UpdateRulesetCommand } from "@aws-sdk/client-databrew"; // ES Modules import
15
+ * // const { DataBrewClient, UpdateRulesetCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
16
+ * const client = new DataBrewClient(config);
17
+ * const command = new UpdateRulesetCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link UpdateRulesetCommandInput} for command's `input` shape.
22
+ * @see {@link UpdateRulesetCommandOutput} for command's `response` shape.
23
+ * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class UpdateRulesetCommand extends $Command<UpdateRulesetCommandInput, UpdateRulesetCommandOutput, DataBrewClientResolvedConfig> {
27
+ readonly input: UpdateRulesetCommandInput;
28
+ constructor(input: UpdateRulesetCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataBrewClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRulesetCommandInput, UpdateRulesetCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -20,7 +20,7 @@ export interface UpdateScheduleCommandOutput extends UpdateScheduleResponse, __M
20
20
  *
21
21
  * @see {@link UpdateScheduleCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdateScheduleCommandOutput} for command's `response` shape.
23
- * @see {@link DataBrewClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UpdateScheduleCommand extends $Command<UpdateScheduleCommandInput, UpdateScheduleCommandOutput, DataBrewClientResolvedConfig> {
@@ -4,17 +4,20 @@ export * from "./CreateProfileJobCommand";
4
4
  export * from "./CreateProjectCommand";
5
5
  export * from "./CreateRecipeCommand";
6
6
  export * from "./CreateRecipeJobCommand";
7
+ export * from "./CreateRulesetCommand";
7
8
  export * from "./CreateScheduleCommand";
8
9
  export * from "./DeleteDatasetCommand";
9
10
  export * from "./DeleteJobCommand";
10
11
  export * from "./DeleteProjectCommand";
11
12
  export * from "./DeleteRecipeVersionCommand";
13
+ export * from "./DeleteRulesetCommand";
12
14
  export * from "./DeleteScheduleCommand";
13
15
  export * from "./DescribeDatasetCommand";
14
16
  export * from "./DescribeJobCommand";
15
17
  export * from "./DescribeJobRunCommand";
16
18
  export * from "./DescribeProjectCommand";
17
19
  export * from "./DescribeRecipeCommand";
20
+ export * from "./DescribeRulesetCommand";
18
21
  export * from "./DescribeScheduleCommand";
19
22
  export * from "./ListDatasetsCommand";
20
23
  export * from "./ListJobRunsCommand";
@@ -22,6 +25,7 @@ export * from "./ListJobsCommand";
22
25
  export * from "./ListProjectsCommand";
23
26
  export * from "./ListRecipeVersionsCommand";
24
27
  export * from "./ListRecipesCommand";
28
+ export * from "./ListRulesetsCommand";
25
29
  export * from "./ListSchedulesCommand";
26
30
  export * from "./ListTagsForResourceCommand";
27
31
  export * from "./PublishRecipeCommand";
@@ -36,4 +40,5 @@ export * from "./UpdateProfileJobCommand";
36
40
  export * from "./UpdateProjectCommand";
37
41
  export * from "./UpdateRecipeCommand";
38
42
  export * from "./UpdateRecipeJobCommand";
43
+ export * from "./UpdateRulesetCommand";
39
44
  export * from "./UpdateScheduleCommand";