@aws-sdk/client-data-pipeline 3.50.0 → 3.53.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 (50) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/DataPipelineServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +68 -2
  5. package/dist-cjs/protocols/Aws_json1_1.js +188 -653
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/DataPipelineServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +62 -1
  9. package/dist-es/protocols/Aws_json1_1.js +412 -720
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/DataPipelineServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +27 -26
  13. package/dist-types/ts3.4/DataPipeline.d.ts +100 -0
  14. package/dist-types/ts3.4/DataPipelineClient.d.ts +92 -0
  15. package/dist-types/ts3.4/commands/ActivatePipelineCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DeactivatePipelineCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DescribeObjectsCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DescribePipelinesCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/EvaluateExpressionCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/GetPipelineDefinitionCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/PollForTaskCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/PutPipelineDefinitionCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/QueryObjectsCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/ReportTaskProgressCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/ReportTaskRunnerHeartbeatCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/SetStatusCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/SetTaskStatusCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/ValidatePipelineDefinitionCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/index.d.ts +19 -0
  35. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  36. package/dist-types/ts3.4/index.d.ts +6 -0
  37. package/dist-types/ts3.4/models/DataPipelineServiceException.d.ts +6 -0
  38. package/dist-types/ts3.4/models/index.d.ts +1 -0
  39. package/dist-types/ts3.4/models/models_0.d.ts +636 -0
  40. package/dist-types/ts3.4/pagination/DescribeObjectsPaginator.d.ts +4 -0
  41. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  42. package/dist-types/ts3.4/pagination/ListPipelinesPaginator.d.ts +4 -0
  43. package/dist-types/ts3.4/pagination/QueryObjectsPaginator.d.ts +4 -0
  44. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  45. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +59 -0
  46. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  49. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  50. package/package.json +33 -33
package/dist-es/index.js CHANGED
@@ -3,3 +3,4 @@ export * from "./DataPipelineClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { DataPipelineServiceException } from "./models/DataPipelineServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var DataPipelineServiceException = (function (_super) {
4
+ __extends(DataPipelineServiceException, _super);
5
+ function DataPipelineServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, DataPipelineServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return DataPipelineServiceException;
11
+ }(__ServiceException));
12
+ export { DataPipelineServiceException };
@@ -1,4 +1,5 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
+ import { DataPipelineServiceException as __BaseException } from "./DataPipelineServiceException";
2
3
  export var ParameterValue;
3
4
  (function (ParameterValue) {
4
5
  ParameterValue.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -11,6 +12,54 @@ export var ActivatePipelineOutput;
11
12
  (function (ActivatePipelineOutput) {
12
13
  ActivatePipelineOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
13
14
  })(ActivatePipelineOutput || (ActivatePipelineOutput = {}));
15
+ var InternalServiceError = (function (_super) {
16
+ __extends(InternalServiceError, _super);
17
+ function InternalServiceError(opts) {
18
+ var _this = _super.call(this, __assign({ name: "InternalServiceError", $fault: "server" }, opts)) || this;
19
+ _this.name = "InternalServiceError";
20
+ _this.$fault = "server";
21
+ Object.setPrototypeOf(_this, InternalServiceError.prototype);
22
+ return _this;
23
+ }
24
+ return InternalServiceError;
25
+ }(__BaseException));
26
+ export { InternalServiceError };
27
+ var InvalidRequestException = (function (_super) {
28
+ __extends(InvalidRequestException, _super);
29
+ function InvalidRequestException(opts) {
30
+ var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
31
+ _this.name = "InvalidRequestException";
32
+ _this.$fault = "client";
33
+ Object.setPrototypeOf(_this, InvalidRequestException.prototype);
34
+ return _this;
35
+ }
36
+ return InvalidRequestException;
37
+ }(__BaseException));
38
+ export { InvalidRequestException };
39
+ var PipelineDeletedException = (function (_super) {
40
+ __extends(PipelineDeletedException, _super);
41
+ function PipelineDeletedException(opts) {
42
+ var _this = _super.call(this, __assign({ name: "PipelineDeletedException", $fault: "client" }, opts)) || this;
43
+ _this.name = "PipelineDeletedException";
44
+ _this.$fault = "client";
45
+ Object.setPrototypeOf(_this, PipelineDeletedException.prototype);
46
+ return _this;
47
+ }
48
+ return PipelineDeletedException;
49
+ }(__BaseException));
50
+ export { PipelineDeletedException };
51
+ var PipelineNotFoundException = (function (_super) {
52
+ __extends(PipelineNotFoundException, _super);
53
+ function PipelineNotFoundException(opts) {
54
+ var _this = _super.call(this, __assign({ name: "PipelineNotFoundException", $fault: "client" }, opts)) || this;
55
+ _this.name = "PipelineNotFoundException";
56
+ _this.$fault = "client";
57
+ Object.setPrototypeOf(_this, PipelineNotFoundException.prototype);
58
+ return _this;
59
+ }
60
+ return PipelineNotFoundException;
61
+ }(__BaseException));
62
+ export { PipelineNotFoundException };
14
63
  export var Tag;
15
64
  (function (Tag) {
16
65
  Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -79,6 +128,18 @@ export var EvaluateExpressionOutput;
79
128
  (function (EvaluateExpressionOutput) {
80
129
  EvaluateExpressionOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
81
130
  })(EvaluateExpressionOutput || (EvaluateExpressionOutput = {}));
131
+ var TaskNotFoundException = (function (_super) {
132
+ __extends(TaskNotFoundException, _super);
133
+ function TaskNotFoundException(opts) {
134
+ var _this = _super.call(this, __assign({ name: "TaskNotFoundException", $fault: "client" }, opts)) || this;
135
+ _this.name = "TaskNotFoundException";
136
+ _this.$fault = "client";
137
+ Object.setPrototypeOf(_this, TaskNotFoundException.prototype);
138
+ return _this;
139
+ }
140
+ return TaskNotFoundException;
141
+ }(__BaseException));
142
+ export { TaskNotFoundException };
82
143
  export var GetPipelineDefinitionInput;
83
144
  (function (GetPipelineDefinitionInput) {
84
145
  GetPipelineDefinitionInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };