@aws-sdk/client-data-pipeline 3.489.0 → 3.495.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/dist-cjs/DataPipeline.js +1 -49
- package/dist-cjs/DataPipelineClient.js +1 -43
- package/dist-cjs/commands/ActivatePipelineCommand.js +1 -28
- package/dist-cjs/commands/AddTagsCommand.js +1 -28
- package/dist-cjs/commands/CreatePipelineCommand.js +1 -28
- package/dist-cjs/commands/DeactivatePipelineCommand.js +1 -28
- package/dist-cjs/commands/DeletePipelineCommand.js +1 -28
- package/dist-cjs/commands/DescribeObjectsCommand.js +1 -28
- package/dist-cjs/commands/DescribePipelinesCommand.js +1 -28
- package/dist-cjs/commands/EvaluateExpressionCommand.js +1 -28
- package/dist-cjs/commands/GetPipelineDefinitionCommand.js +1 -28
- package/dist-cjs/commands/ListPipelinesCommand.js +1 -28
- package/dist-cjs/commands/PollForTaskCommand.js +1 -28
- package/dist-cjs/commands/PutPipelineDefinitionCommand.js +1 -28
- package/dist-cjs/commands/QueryObjectsCommand.js +1 -28
- package/dist-cjs/commands/RemoveTagsCommand.js +1 -28
- package/dist-cjs/commands/ReportTaskProgressCommand.js +1 -28
- package/dist-cjs/commands/ReportTaskRunnerHeartbeatCommand.js +1 -28
- package/dist-cjs/commands/SetStatusCommand.js +1 -28
- package/dist-cjs/commands/SetTaskStatusCommand.js +1 -28
- package/dist-cjs/commands/ValidatePipelineDefinitionCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -22
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +1665 -11
- package/dist-cjs/models/DataPipelineServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -81
- package/dist-cjs/pagination/DescribeObjectsPaginator.js +1 -7
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListPipelinesPaginator.js +1 -7
- package/dist-cjs/pagination/QueryObjectsPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -7
- package/dist-cjs/protocols/Aws_json1_1.js +1 -1041
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DataPipelineServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class DataPipelineServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, DataPipelineServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.DataPipelineServiceException = DataPipelineServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED
|
@@ -1,81 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TaskStatus = exports.OperatorType = exports.TaskNotFoundException = exports.PipelineNotFoundException = exports.PipelineDeletedException = exports.InvalidRequestException = exports.InternalServiceError = void 0;
|
|
4
|
-
const DataPipelineServiceException_1 = require("./DataPipelineServiceException");
|
|
5
|
-
class InternalServiceError extends DataPipelineServiceException_1.DataPipelineServiceException {
|
|
6
|
-
constructor(opts) {
|
|
7
|
-
super({
|
|
8
|
-
name: "InternalServiceError",
|
|
9
|
-
$fault: "server",
|
|
10
|
-
...opts,
|
|
11
|
-
});
|
|
12
|
-
this.name = "InternalServiceError";
|
|
13
|
-
this.$fault = "server";
|
|
14
|
-
Object.setPrototypeOf(this, InternalServiceError.prototype);
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
exports.InternalServiceError = InternalServiceError;
|
|
18
|
-
class InvalidRequestException extends DataPipelineServiceException_1.DataPipelineServiceException {
|
|
19
|
-
constructor(opts) {
|
|
20
|
-
super({
|
|
21
|
-
name: "InvalidRequestException",
|
|
22
|
-
$fault: "client",
|
|
23
|
-
...opts,
|
|
24
|
-
});
|
|
25
|
-
this.name = "InvalidRequestException";
|
|
26
|
-
this.$fault = "client";
|
|
27
|
-
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
exports.InvalidRequestException = InvalidRequestException;
|
|
31
|
-
class PipelineDeletedException extends DataPipelineServiceException_1.DataPipelineServiceException {
|
|
32
|
-
constructor(opts) {
|
|
33
|
-
super({
|
|
34
|
-
name: "PipelineDeletedException",
|
|
35
|
-
$fault: "client",
|
|
36
|
-
...opts,
|
|
37
|
-
});
|
|
38
|
-
this.name = "PipelineDeletedException";
|
|
39
|
-
this.$fault = "client";
|
|
40
|
-
Object.setPrototypeOf(this, PipelineDeletedException.prototype);
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
exports.PipelineDeletedException = PipelineDeletedException;
|
|
44
|
-
class PipelineNotFoundException extends DataPipelineServiceException_1.DataPipelineServiceException {
|
|
45
|
-
constructor(opts) {
|
|
46
|
-
super({
|
|
47
|
-
name: "PipelineNotFoundException",
|
|
48
|
-
$fault: "client",
|
|
49
|
-
...opts,
|
|
50
|
-
});
|
|
51
|
-
this.name = "PipelineNotFoundException";
|
|
52
|
-
this.$fault = "client";
|
|
53
|
-
Object.setPrototypeOf(this, PipelineNotFoundException.prototype);
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
exports.PipelineNotFoundException = PipelineNotFoundException;
|
|
57
|
-
class TaskNotFoundException extends DataPipelineServiceException_1.DataPipelineServiceException {
|
|
58
|
-
constructor(opts) {
|
|
59
|
-
super({
|
|
60
|
-
name: "TaskNotFoundException",
|
|
61
|
-
$fault: "client",
|
|
62
|
-
...opts,
|
|
63
|
-
});
|
|
64
|
-
this.name = "TaskNotFoundException";
|
|
65
|
-
this.$fault = "client";
|
|
66
|
-
Object.setPrototypeOf(this, TaskNotFoundException.prototype);
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
exports.TaskNotFoundException = TaskNotFoundException;
|
|
70
|
-
exports.OperatorType = {
|
|
71
|
-
Between: "BETWEEN",
|
|
72
|
-
Equal: "EQ",
|
|
73
|
-
GreaterThanOrEqual: "GE",
|
|
74
|
-
LessThanOrEqual: "LE",
|
|
75
|
-
ReferenceEqual: "REF_EQ",
|
|
76
|
-
};
|
|
77
|
-
exports.TaskStatus = {
|
|
78
|
-
FAILED: "FAILED",
|
|
79
|
-
FALSE: "FALSE",
|
|
80
|
-
FINISHED: "FINISHED",
|
|
81
|
-
};
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateDescribeObjects = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const DescribeObjectsCommand_1 = require("../commands/DescribeObjectsCommand");
|
|
6
|
-
const DataPipelineClient_1 = require("../DataPipelineClient");
|
|
7
|
-
exports.paginateDescribeObjects = (0, core_1.createPaginator)(DataPipelineClient_1.DataPipelineClient, DescribeObjectsCommand_1.DescribeObjectsCommand, "marker", "marker", "");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListPipelines = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListPipelinesCommand_1 = require("../commands/ListPipelinesCommand");
|
|
6
|
-
const DataPipelineClient_1 = require("../DataPipelineClient");
|
|
7
|
-
exports.paginateListPipelines = (0, core_1.createPaginator)(DataPipelineClient_1.DataPipelineClient, ListPipelinesCommand_1.ListPipelinesCommand, "marker", "marker", "");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateQueryObjects = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const QueryObjectsCommand_1 = require("../commands/QueryObjectsCommand");
|
|
6
|
-
const DataPipelineClient_1 = require("../DataPipelineClient");
|
|
7
|
-
exports.paginateQueryObjects = (0, core_1.createPaginator)(DataPipelineClient_1.DataPipelineClient, QueryObjectsCommand_1.QueryObjectsCommand, "marker", "marker", "limit");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./DescribeObjectsPaginator"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./ListPipelinesPaginator"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./QueryObjectsPaginator"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|