@aws-sdk/client-databrew 3.928.0 → 3.930.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 (68) hide show
  1. package/dist-cjs/index.js +1886 -2016
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/DataBrewClient.js +2 -0
  4. package/dist-es/commands/BatchDeleteRecipeVersionCommand.js +3 -9
  5. package/dist-es/commands/CreateDatasetCommand.js +3 -9
  6. package/dist-es/commands/CreateProfileJobCommand.js +3 -9
  7. package/dist-es/commands/CreateProjectCommand.js +3 -9
  8. package/dist-es/commands/CreateRecipeCommand.js +3 -9
  9. package/dist-es/commands/CreateRecipeJobCommand.js +3 -9
  10. package/dist-es/commands/CreateRulesetCommand.js +3 -9
  11. package/dist-es/commands/CreateScheduleCommand.js +3 -9
  12. package/dist-es/commands/DeleteDatasetCommand.js +3 -9
  13. package/dist-es/commands/DeleteJobCommand.js +3 -9
  14. package/dist-es/commands/DeleteProjectCommand.js +3 -9
  15. package/dist-es/commands/DeleteRecipeVersionCommand.js +3 -9
  16. package/dist-es/commands/DeleteRulesetCommand.js +3 -9
  17. package/dist-es/commands/DeleteScheduleCommand.js +3 -9
  18. package/dist-es/commands/DescribeDatasetCommand.js +3 -9
  19. package/dist-es/commands/DescribeJobCommand.js +3 -9
  20. package/dist-es/commands/DescribeJobRunCommand.js +3 -9
  21. package/dist-es/commands/DescribeProjectCommand.js +3 -9
  22. package/dist-es/commands/DescribeRecipeCommand.js +3 -9
  23. package/dist-es/commands/DescribeRulesetCommand.js +3 -9
  24. package/dist-es/commands/DescribeScheduleCommand.js +3 -9
  25. package/dist-es/commands/ListDatasetsCommand.js +3 -9
  26. package/dist-es/commands/ListJobRunsCommand.js +3 -9
  27. package/dist-es/commands/ListJobsCommand.js +3 -9
  28. package/dist-es/commands/ListProjectsCommand.js +3 -9
  29. package/dist-es/commands/ListRecipeVersionsCommand.js +3 -9
  30. package/dist-es/commands/ListRecipesCommand.js +3 -9
  31. package/dist-es/commands/ListRulesetsCommand.js +3 -9
  32. package/dist-es/commands/ListSchedulesCommand.js +3 -9
  33. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  34. package/dist-es/commands/PublishRecipeCommand.js +3 -9
  35. package/dist-es/commands/SendProjectSessionActionCommand.js +3 -10
  36. package/dist-es/commands/StartJobRunCommand.js +3 -9
  37. package/dist-es/commands/StartProjectSessionCommand.js +3 -10
  38. package/dist-es/commands/StopJobRunCommand.js +3 -9
  39. package/dist-es/commands/TagResourceCommand.js +3 -9
  40. package/dist-es/commands/UntagResourceCommand.js +3 -9
  41. package/dist-es/commands/UpdateDatasetCommand.js +3 -9
  42. package/dist-es/commands/UpdateProfileJobCommand.js +3 -9
  43. package/dist-es/commands/UpdateProjectCommand.js +3 -9
  44. package/dist-es/commands/UpdateRecipeCommand.js +3 -9
  45. package/dist-es/commands/UpdateRecipeJobCommand.js +3 -9
  46. package/dist-es/commands/UpdateRulesetCommand.js +3 -9
  47. package/dist-es/commands/UpdateScheduleCommand.js +3 -9
  48. package/dist-es/models/models_0.js +0 -9
  49. package/dist-es/runtimeConfig.shared.js +2 -0
  50. package/dist-es/schemas/schemas_0.js +1806 -0
  51. package/dist-types/DataBrewClient.d.ts +10 -1
  52. package/dist-types/models/models_0.d.ts +0 -8
  53. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  54. package/dist-types/runtimeConfig.d.ts +1 -0
  55. package/dist-types/runtimeConfig.native.d.ts +1 -0
  56. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  57. package/dist-types/schemas/schemas_0.d.ts +220 -0
  58. package/dist-types/ts3.4/DataBrewClient.d.ts +4 -0
  59. package/dist-types/ts3.4/models/models_0.d.ts +0 -6
  60. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  61. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  62. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  63. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  64. package/dist-types/ts3.4/schemas/schemas_0.d.ts +227 -0
  65. package/package.json +33 -33
  66. package/dist-es/protocols/Aws_restJson1.js +0 -1696
  67. package/dist-types/protocols/Aws_restJson1.d.ts +0 -398
  68. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -533
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListJobRunsCommand, se_ListJobRunsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListJobRuns } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListJobRunsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "ListJobRuns", {})
17
13
  .n("DataBrewClient", "ListJobRunsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListJobRunsCommand)
20
- .de(de_ListJobRunsCommand)
14
+ .sc(ListJobRuns)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListJobsCommand, se_ListJobsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListJobs } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListJobsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "ListJobs", {})
17
13
  .n("DataBrewClient", "ListJobsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListJobsCommand)
20
- .de(de_ListJobsCommand)
14
+ .sc(ListJobs)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListProjectsCommand, se_ListProjectsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListProjects } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListProjectsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "ListProjects", {})
17
13
  .n("DataBrewClient", "ListProjectsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListProjectsCommand)
20
- .de(de_ListProjectsCommand)
14
+ .sc(ListProjects)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListRecipeVersionsCommand, se_ListRecipeVersionsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListRecipeVersions } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListRecipeVersionsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "ListRecipeVersions", {})
17
13
  .n("DataBrewClient", "ListRecipeVersionsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListRecipeVersionsCommand)
20
- .de(de_ListRecipeVersionsCommand)
14
+ .sc(ListRecipeVersions)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListRecipesCommand, se_ListRecipesCommand } from "../protocols/Aws_restJson1";
4
+ import { ListRecipes } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListRecipesCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "ListRecipes", {})
17
13
  .n("DataBrewClient", "ListRecipesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListRecipesCommand)
20
- .de(de_ListRecipesCommand)
14
+ .sc(ListRecipes)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListRulesetsCommand, se_ListRulesetsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListRulesets } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListRulesetsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "ListRulesets", {})
17
13
  .n("DataBrewClient", "ListRulesetsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListRulesetsCommand)
20
- .de(de_ListRulesetsCommand)
14
+ .sc(ListRulesets)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListSchedulesCommand, se_ListSchedulesCommand } from "../protocols/Aws_restJson1";
4
+ import { ListSchedules } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListSchedulesCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "ListSchedules", {})
17
13
  .n("DataBrewClient", "ListSchedulesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListSchedulesCommand)
20
- .de(de_ListSchedulesCommand)
14
+ .sc(ListSchedules)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { ListTagsForResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListTagsForResourceCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "ListTagsForResource", {})
17
13
  .n("DataBrewClient", "ListTagsForResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListTagsForResourceCommand)
20
- .de(de_ListTagsForResourceCommand)
14
+ .sc(ListTagsForResource)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_PublishRecipeCommand, se_PublishRecipeCommand } from "../protocols/Aws_restJson1";
4
+ import { PublishRecipe } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class PublishRecipeCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "PublishRecipe", {})
17
13
  .n("DataBrewClient", "PublishRecipeCommand")
18
- .f(void 0, void 0)
19
- .ser(se_PublishRecipeCommand)
20
- .de(de_PublishRecipeCommand)
14
+ .sc(PublishRecipe)
21
15
  .build() {
22
16
  }
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { SendProjectSessionActionRequestFilterSensitiveLog, } from "../models/models_0";
6
- import { de_SendProjectSessionActionCommand, se_SendProjectSessionActionCommand } from "../protocols/Aws_restJson1";
4
+ import { SendProjectSessionAction } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class SendProjectSessionActionCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("AWSGlueDataBrew", "SendProjectSessionAction", {})
18
13
  .n("DataBrewClient", "SendProjectSessionActionCommand")
19
- .f(SendProjectSessionActionRequestFilterSensitiveLog, void 0)
20
- .ser(se_SendProjectSessionActionCommand)
21
- .de(de_SendProjectSessionActionCommand)
14
+ .sc(SendProjectSessionAction)
22
15
  .build() {
23
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_StartJobRunCommand, se_StartJobRunCommand } from "../protocols/Aws_restJson1";
4
+ import { StartJobRun } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class StartJobRunCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "StartJobRun", {})
17
13
  .n("DataBrewClient", "StartJobRunCommand")
18
- .f(void 0, void 0)
19
- .ser(se_StartJobRunCommand)
20
- .de(de_StartJobRunCommand)
14
+ .sc(StartJobRun)
21
15
  .build() {
22
16
  }
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { StartProjectSessionResponseFilterSensitiveLog, } from "../models/models_0";
6
- import { de_StartProjectSessionCommand, se_StartProjectSessionCommand } from "../protocols/Aws_restJson1";
4
+ import { StartProjectSession } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class StartProjectSessionCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("AWSGlueDataBrew", "StartProjectSession", {})
18
13
  .n("DataBrewClient", "StartProjectSessionCommand")
19
- .f(void 0, StartProjectSessionResponseFilterSensitiveLog)
20
- .ser(se_StartProjectSessionCommand)
21
- .de(de_StartProjectSessionCommand)
14
+ .sc(StartProjectSession)
22
15
  .build() {
23
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_StopJobRunCommand, se_StopJobRunCommand } from "../protocols/Aws_restJson1";
4
+ import { StopJobRun } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class StopJobRunCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "StopJobRun", {})
17
13
  .n("DataBrewClient", "StopJobRunCommand")
18
- .f(void 0, void 0)
19
- .ser(se_StopJobRunCommand)
20
- .de(de_StopJobRunCommand)
14
+ .sc(StopJobRun)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { TagResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class TagResourceCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "TagResource", {})
17
13
  .n("DataBrewClient", "TagResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_TagResourceCommand)
20
- .de(de_TagResourceCommand)
14
+ .sc(TagResource)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { UntagResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UntagResourceCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "UntagResource", {})
17
13
  .n("DataBrewClient", "UntagResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UntagResourceCommand)
20
- .de(de_UntagResourceCommand)
14
+ .sc(UntagResource)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_UpdateDatasetCommand, se_UpdateDatasetCommand } from "../protocols/Aws_restJson1";
4
+ import { UpdateDataset } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UpdateDatasetCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "UpdateDataset", {})
17
13
  .n("DataBrewClient", "UpdateDatasetCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UpdateDatasetCommand)
20
- .de(de_UpdateDatasetCommand)
14
+ .sc(UpdateDataset)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_UpdateProfileJobCommand, se_UpdateProfileJobCommand } from "../protocols/Aws_restJson1";
4
+ import { UpdateProfileJob } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UpdateProfileJobCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "UpdateProfileJob", {})
17
13
  .n("DataBrewClient", "UpdateProfileJobCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UpdateProfileJobCommand)
20
- .de(de_UpdateProfileJobCommand)
14
+ .sc(UpdateProfileJob)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_UpdateProjectCommand, se_UpdateProjectCommand } from "../protocols/Aws_restJson1";
4
+ import { UpdateProject } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UpdateProjectCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "UpdateProject", {})
17
13
  .n("DataBrewClient", "UpdateProjectCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UpdateProjectCommand)
20
- .de(de_UpdateProjectCommand)
14
+ .sc(UpdateProject)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_UpdateRecipeCommand, se_UpdateRecipeCommand } from "../protocols/Aws_restJson1";
4
+ import { UpdateRecipe } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UpdateRecipeCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "UpdateRecipe", {})
17
13
  .n("DataBrewClient", "UpdateRecipeCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UpdateRecipeCommand)
20
- .de(de_UpdateRecipeCommand)
14
+ .sc(UpdateRecipe)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_UpdateRecipeJobCommand, se_UpdateRecipeJobCommand } from "../protocols/Aws_restJson1";
4
+ import { UpdateRecipeJob } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UpdateRecipeJobCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "UpdateRecipeJob", {})
17
13
  .n("DataBrewClient", "UpdateRecipeJobCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UpdateRecipeJobCommand)
20
- .de(de_UpdateRecipeJobCommand)
14
+ .sc(UpdateRecipeJob)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_UpdateRulesetCommand, se_UpdateRulesetCommand } from "../protocols/Aws_restJson1";
4
+ import { UpdateRuleset } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UpdateRulesetCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "UpdateRuleset", {})
17
13
  .n("DataBrewClient", "UpdateRulesetCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UpdateRulesetCommand)
20
- .de(de_UpdateRulesetCommand)
14
+ .sc(UpdateRuleset)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_UpdateScheduleCommand, se_UpdateScheduleCommand } from "../protocols/Aws_restJson1";
4
+ import { UpdateSchedule } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UpdateScheduleCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AWSGlueDataBrew", "UpdateSchedule", {})
17
13
  .n("DataBrewClient", "UpdateScheduleCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UpdateScheduleCommand)
20
- .de(de_UpdateScheduleCommand)
14
+ .sc(UpdateSchedule)
21
15
  .build() {
22
16
  }
@@ -1,4 +1,3 @@
1
- import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
1
  import { DataBrewServiceException as __BaseException } from "./DataBrewServiceException";
3
2
  export class AccessDeniedException extends __BaseException {
4
3
  name = "AccessDeniedException";
@@ -191,11 +190,3 @@ export const SessionStatus = {
191
190
  TERMINATING: "TERMINATING",
192
191
  UPDATING: "UPDATING",
193
192
  };
194
- export const SendProjectSessionActionRequestFilterSensitiveLog = (obj) => ({
195
- ...obj,
196
- ...(obj.ClientSessionId && { ClientSessionId: SENSITIVE_STRING }),
197
- });
198
- export const StartProjectSessionResponseFilterSensitiveLog = (obj) => ({
199
- ...obj,
200
- ...(obj.ClientSessionId && { ClientSessionId: SENSITIVE_STRING }),
201
- });
@@ -1,4 +1,5 @@
1
1
  import { AwsSdkSigV4Signer } from "@aws-sdk/core";
2
+ import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
2
3
  import { NoOpLogger } from "@smithy/smithy-client";
3
4
  import { parseUrl } from "@smithy/url-parser";
4
5
  import { fromBase64, toBase64 } from "@smithy/util-base64";
@@ -22,6 +23,7 @@ export const getRuntimeConfig = (config) => {
22
23
  },
23
24
  ],
24
25
  logger: config?.logger ?? new NoOpLogger(),
26
+ protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.databrew" }),
25
27
  serviceId: config?.serviceId ?? "DataBrew",
26
28
  urlParser: config?.urlParser ?? parseUrl,
27
29
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,