@aws-sdk/client-data-pipeline 3.300.0 → 3.303.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/models/models_0.js +12 -14
- package/dist-es/models/models_0.js +12 -14
- package/dist-types/commands/ActivatePipelineCommand.d.ts +3 -3
- package/dist-types/commands/AddTagsCommand.d.ts +3 -3
- package/dist-types/commands/CreatePipelineCommand.d.ts +3 -3
- package/dist-types/commands/DeactivatePipelineCommand.d.ts +1 -1
- package/dist-types/commands/DeletePipelineCommand.d.ts +1 -1
- package/dist-types/commands/DescribeObjectsCommand.d.ts +2 -2
- package/dist-types/commands/DescribePipelinesCommand.d.ts +2 -2
- package/dist-types/commands/EvaluateExpressionCommand.d.ts +1 -1
- package/dist-types/commands/GetPipelineDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/commands/PollForTaskCommand.d.ts +2 -2
- package/dist-types/commands/PutPipelineDefinitionCommand.d.ts +11 -11
- package/dist-types/commands/QueryObjectsCommand.d.ts +6 -6
- package/dist-types/commands/RemoveTagsCommand.d.ts +2 -2
- package/dist-types/commands/ReportTaskProgressCommand.d.ts +3 -3
- package/dist-types/commands/ReportTaskRunnerHeartbeatCommand.d.ts +1 -1
- package/dist-types/commands/SetStatusCommand.d.ts +2 -2
- package/dist-types/commands/SetTaskStatusCommand.d.ts +1 -1
- package/dist-types/commands/ValidatePipelineDefinitionCommand.d.ts +11 -11
- package/dist-types/models/models_0.d.ts +22 -12
- package/dist-types/ts3.4/models/models_0.d.ts +14 -12
- package/package.json +34 -34
|
@@ -67,17 +67,15 @@ class TaskNotFoundException extends DataPipelineServiceException_1.DataPipelineS
|
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
69
|
exports.TaskNotFoundException = TaskNotFoundException;
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
TaskStatus["FINISHED"] = "FINISHED";
|
|
83
|
-
})(TaskStatus = exports.TaskStatus || (exports.TaskStatus = {}));
|
|
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
|
+
};
|
|
@@ -59,17 +59,15 @@ export class TaskNotFoundException extends __BaseException {
|
|
|
59
59
|
Object.setPrototypeOf(this, TaskNotFoundException.prototype);
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
|
-
export
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
TaskStatus["FINISHED"] = "FINISHED";
|
|
75
|
-
})(TaskStatus || (TaskStatus = {}));
|
|
62
|
+
export const OperatorType = {
|
|
63
|
+
Between: "BETWEEN",
|
|
64
|
+
Equal: "EQ",
|
|
65
|
+
GreaterThanOrEqual: "GE",
|
|
66
|
+
LessThanOrEqual: "LE",
|
|
67
|
+
ReferenceEqual: "REF_EQ",
|
|
68
|
+
};
|
|
69
|
+
export const TaskStatus = {
|
|
70
|
+
FAILED: "FAILED",
|
|
71
|
+
FALSE: "FALSE",
|
|
72
|
+
FINISHED: "FINISHED",
|
|
73
|
+
};
|
|
@@ -56,10 +56,10 @@ export interface ActivatePipelineCommandOutput extends ActivatePipelineOutput, _
|
|
|
56
56
|
* import { DataPipelineClient, ActivatePipelineCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
57
57
|
* // const { DataPipelineClient, ActivatePipelineCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
58
58
|
* const client = new DataPipelineClient(config);
|
|
59
|
-
* const input = {
|
|
59
|
+
* const input = { // ActivatePipelineInput
|
|
60
60
|
* pipelineId: "STRING_VALUE", // required
|
|
61
|
-
* parameterValues: [
|
|
62
|
-
* {
|
|
61
|
+
* parameterValues: [ // ParameterValueList
|
|
62
|
+
* { // ParameterValue
|
|
63
63
|
* id: "STRING_VALUE", // required
|
|
64
64
|
* stringValue: "STRING_VALUE", // required
|
|
65
65
|
* },
|
|
@@ -26,10 +26,10 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
|
|
|
26
26
|
* import { DataPipelineClient, AddTagsCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
27
27
|
* // const { DataPipelineClient, AddTagsCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
28
28
|
* const client = new DataPipelineClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // AddTagsInput
|
|
30
30
|
* pipelineId: "STRING_VALUE", // required
|
|
31
|
-
* tags: [ // required
|
|
32
|
-
* {
|
|
31
|
+
* tags: [ // tagList // required
|
|
32
|
+
* { // Tag
|
|
33
33
|
* key: "STRING_VALUE", // required
|
|
34
34
|
* value: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
@@ -56,12 +56,12 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met
|
|
|
56
56
|
* import { DataPipelineClient, CreatePipelineCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
57
57
|
* // const { DataPipelineClient, CreatePipelineCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
58
58
|
* const client = new DataPipelineClient(config);
|
|
59
|
-
* const input = {
|
|
59
|
+
* const input = { // CreatePipelineInput
|
|
60
60
|
* name: "STRING_VALUE", // required
|
|
61
61
|
* uniqueId: "STRING_VALUE", // required
|
|
62
62
|
* description: "STRING_VALUE",
|
|
63
|
-
* tags: [
|
|
64
|
-
* {
|
|
63
|
+
* tags: [ // tagList
|
|
64
|
+
* { // Tag
|
|
65
65
|
* key: "STRING_VALUE", // required
|
|
66
66
|
* value: "STRING_VALUE", // required
|
|
67
67
|
* },
|
|
@@ -29,7 +29,7 @@ export interface DeactivatePipelineCommandOutput extends DeactivatePipelineOutpu
|
|
|
29
29
|
* import { DataPipelineClient, DeactivatePipelineCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
30
30
|
* // const { DataPipelineClient, DeactivatePipelineCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
31
31
|
* const client = new DataPipelineClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DeactivatePipelineInput
|
|
33
33
|
* pipelineId: "STRING_VALUE", // required
|
|
34
34
|
* cancelActive: true || false,
|
|
35
35
|
* };
|
|
@@ -57,7 +57,7 @@ export interface DeletePipelineCommandOutput extends __MetadataBearer {
|
|
|
57
57
|
* import { DataPipelineClient, DeletePipelineCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
58
58
|
* // const { DataPipelineClient, DeletePipelineCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
59
59
|
* const client = new DataPipelineClient(config);
|
|
60
|
-
* const input = {
|
|
60
|
+
* const input = { // DeletePipelineInput
|
|
61
61
|
* pipelineId: "STRING_VALUE", // required
|
|
62
62
|
* };
|
|
63
63
|
* const command = new DeletePipelineCommand(input);
|
|
@@ -84,9 +84,9 @@ export interface DescribeObjectsCommandOutput extends DescribeObjectsOutput, __M
|
|
|
84
84
|
* import { DataPipelineClient, DescribeObjectsCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
85
85
|
* // const { DataPipelineClient, DescribeObjectsCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
86
86
|
* const client = new DataPipelineClient(config);
|
|
87
|
-
* const input = {
|
|
87
|
+
* const input = { // DescribeObjectsInput
|
|
88
88
|
* pipelineId: "STRING_VALUE", // required
|
|
89
|
-
* objectIds: [ // required
|
|
89
|
+
* objectIds: [ // idList // required
|
|
90
90
|
* "STRING_VALUE",
|
|
91
91
|
* ],
|
|
92
92
|
* evaluateExpressions: true || false,
|
|
@@ -87,8 +87,8 @@ export interface DescribePipelinesCommandOutput extends DescribePipelinesOutput,
|
|
|
87
87
|
* import { DataPipelineClient, DescribePipelinesCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
88
88
|
* // const { DataPipelineClient, DescribePipelinesCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
89
89
|
* const client = new DataPipelineClient(config);
|
|
90
|
-
* const input = {
|
|
91
|
-
* pipelineIds: [ // required
|
|
90
|
+
* const input = { // DescribePipelinesInput
|
|
91
|
+
* pipelineIds: [ // idList // required
|
|
92
92
|
* "STRING_VALUE",
|
|
93
93
|
* ],
|
|
94
94
|
* };
|
|
@@ -56,7 +56,7 @@ export interface EvaluateExpressionCommandOutput extends EvaluateExpressionOutpu
|
|
|
56
56
|
* import { DataPipelineClient, EvaluateExpressionCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
57
57
|
* // const { DataPipelineClient, EvaluateExpressionCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
58
58
|
* const client = new DataPipelineClient(config);
|
|
59
|
-
* const input = {
|
|
59
|
+
* const input = { // EvaluateExpressionInput
|
|
60
60
|
* pipelineId: "STRING_VALUE", // required
|
|
61
61
|
* objectId: "STRING_VALUE", // required
|
|
62
62
|
* expression: "STRING_VALUE", // required
|
|
@@ -90,7 +90,7 @@ export interface GetPipelineDefinitionCommandOutput extends GetPipelineDefinitio
|
|
|
90
90
|
* import { DataPipelineClient, GetPipelineDefinitionCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
91
91
|
* // const { DataPipelineClient, GetPipelineDefinitionCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
92
92
|
* const client = new DataPipelineClient(config);
|
|
93
|
-
* const input = {
|
|
93
|
+
* const input = { // GetPipelineDefinitionInput
|
|
94
94
|
* pipelineId: "STRING_VALUE", // required
|
|
95
95
|
* version: "STRING_VALUE",
|
|
96
96
|
* };
|
|
@@ -57,7 +57,7 @@ export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __Metad
|
|
|
57
57
|
* import { DataPipelineClient, ListPipelinesCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
58
58
|
* // const { DataPipelineClient, ListPipelinesCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
59
59
|
* const client = new DataPipelineClient(config);
|
|
60
|
-
* const input = {
|
|
60
|
+
* const input = { // ListPipelinesInput
|
|
61
61
|
* marker: "STRING_VALUE",
|
|
62
62
|
* };
|
|
63
63
|
* const command = new ListPipelinesCommand(input);
|
|
@@ -104,10 +104,10 @@ export interface PollForTaskCommandOutput extends PollForTaskOutput, __MetadataB
|
|
|
104
104
|
* import { DataPipelineClient, PollForTaskCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
105
105
|
* // const { DataPipelineClient, PollForTaskCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
106
106
|
* const client = new DataPipelineClient(config);
|
|
107
|
-
* const input = {
|
|
107
|
+
* const input = { // PollForTaskInput
|
|
108
108
|
* workerGroup: "STRING_VALUE", // required
|
|
109
109
|
* hostname: "STRING_VALUE",
|
|
110
|
-
* instanceIdentity: {
|
|
110
|
+
* instanceIdentity: { // InstanceIdentity
|
|
111
111
|
* document: "STRING_VALUE",
|
|
112
112
|
* signature: "STRING_VALUE",
|
|
113
113
|
* },
|
|
@@ -185,14 +185,14 @@ export interface PutPipelineDefinitionCommandOutput extends PutPipelineDefinitio
|
|
|
185
185
|
* import { DataPipelineClient, PutPipelineDefinitionCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
186
186
|
* // const { DataPipelineClient, PutPipelineDefinitionCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
187
187
|
* const client = new DataPipelineClient(config);
|
|
188
|
-
* const input = {
|
|
188
|
+
* const input = { // PutPipelineDefinitionInput
|
|
189
189
|
* pipelineId: "STRING_VALUE", // required
|
|
190
|
-
* pipelineObjects: [ // required
|
|
191
|
-
* {
|
|
190
|
+
* pipelineObjects: [ // PipelineObjectList // required
|
|
191
|
+
* { // PipelineObject
|
|
192
192
|
* id: "STRING_VALUE", // required
|
|
193
193
|
* name: "STRING_VALUE", // required
|
|
194
|
-
* fields: [ // required
|
|
195
|
-
* {
|
|
194
|
+
* fields: [ // fieldList // required
|
|
195
|
+
* { // Field
|
|
196
196
|
* key: "STRING_VALUE", // required
|
|
197
197
|
* stringValue: "STRING_VALUE",
|
|
198
198
|
* refValue: "STRING_VALUE",
|
|
@@ -200,19 +200,19 @@ export interface PutPipelineDefinitionCommandOutput extends PutPipelineDefinitio
|
|
|
200
200
|
* ],
|
|
201
201
|
* },
|
|
202
202
|
* ],
|
|
203
|
-
* parameterObjects: [
|
|
204
|
-
* {
|
|
203
|
+
* parameterObjects: [ // ParameterObjectList
|
|
204
|
+
* { // ParameterObject
|
|
205
205
|
* id: "STRING_VALUE", // required
|
|
206
|
-
* attributes: [ // required
|
|
207
|
-
* {
|
|
206
|
+
* attributes: [ // ParameterAttributeList // required
|
|
207
|
+
* { // ParameterAttribute
|
|
208
208
|
* key: "STRING_VALUE", // required
|
|
209
209
|
* stringValue: "STRING_VALUE", // required
|
|
210
210
|
* },
|
|
211
211
|
* ],
|
|
212
212
|
* },
|
|
213
213
|
* ],
|
|
214
|
-
* parameterValues: [
|
|
215
|
-
* {
|
|
214
|
+
* parameterValues: [ // ParameterValueList
|
|
215
|
+
* { // ParameterValue
|
|
216
216
|
* id: "STRING_VALUE", // required
|
|
217
217
|
* stringValue: "STRING_VALUE", // required
|
|
218
218
|
* },
|
|
@@ -64,15 +64,15 @@ export interface QueryObjectsCommandOutput extends QueryObjectsOutput, __Metadat
|
|
|
64
64
|
* import { DataPipelineClient, QueryObjectsCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
65
65
|
* // const { DataPipelineClient, QueryObjectsCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
66
66
|
* const client = new DataPipelineClient(config);
|
|
67
|
-
* const input = {
|
|
67
|
+
* const input = { // QueryObjectsInput
|
|
68
68
|
* pipelineId: "STRING_VALUE", // required
|
|
69
|
-
* query: {
|
|
70
|
-
* selectors: [
|
|
71
|
-
* {
|
|
69
|
+
* query: { // Query
|
|
70
|
+
* selectors: [ // SelectorList
|
|
71
|
+
* { // Selector
|
|
72
72
|
* fieldName: "STRING_VALUE",
|
|
73
|
-
* operator: {
|
|
73
|
+
* operator: { // Operator
|
|
74
74
|
* type: "STRING_VALUE",
|
|
75
|
-
* values: [
|
|
75
|
+
* values: [ // stringList
|
|
76
76
|
* "STRING_VALUE",
|
|
77
77
|
* ],
|
|
78
78
|
* },
|
|
@@ -26,9 +26,9 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea
|
|
|
26
26
|
* import { DataPipelineClient, RemoveTagsCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
27
27
|
* // const { DataPipelineClient, RemoveTagsCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
28
28
|
* const client = new DataPipelineClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // RemoveTagsInput
|
|
30
30
|
* pipelineId: "STRING_VALUE", // required
|
|
31
|
-
* tagKeys: [ // required
|
|
31
|
+
* tagKeys: [ // stringList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -63,10 +63,10 @@ export interface ReportTaskProgressCommandOutput extends ReportTaskProgressOutpu
|
|
|
63
63
|
* import { DataPipelineClient, ReportTaskProgressCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
64
64
|
* // const { DataPipelineClient, ReportTaskProgressCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
65
65
|
* const client = new DataPipelineClient(config);
|
|
66
|
-
* const input = {
|
|
66
|
+
* const input = { // ReportTaskProgressInput
|
|
67
67
|
* taskId: "STRING_VALUE", // required
|
|
68
|
-
* fields: [
|
|
69
|
-
* {
|
|
68
|
+
* fields: [ // fieldList
|
|
69
|
+
* { // Field
|
|
70
70
|
* key: "STRING_VALUE", // required
|
|
71
71
|
* stringValue: "STRING_VALUE",
|
|
72
72
|
* refValue: "STRING_VALUE",
|
|
@@ -58,7 +58,7 @@ export interface ReportTaskRunnerHeartbeatCommandOutput extends ReportTaskRunner
|
|
|
58
58
|
* import { DataPipelineClient, ReportTaskRunnerHeartbeatCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
59
59
|
* // const { DataPipelineClient, ReportTaskRunnerHeartbeatCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
60
60
|
* const client = new DataPipelineClient(config);
|
|
61
|
-
* const input = {
|
|
61
|
+
* const input = { // ReportTaskRunnerHeartbeatInput
|
|
62
62
|
* taskrunnerId: "STRING_VALUE", // required
|
|
63
63
|
* workerGroup: "STRING_VALUE",
|
|
64
64
|
* hostname: "STRING_VALUE",
|
|
@@ -58,9 +58,9 @@ export interface SetStatusCommandOutput extends __MetadataBearer {
|
|
|
58
58
|
* import { DataPipelineClient, SetStatusCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
59
59
|
* // const { DataPipelineClient, SetStatusCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
60
60
|
* const client = new DataPipelineClient(config);
|
|
61
|
-
* const input = {
|
|
61
|
+
* const input = { // SetStatusInput
|
|
62
62
|
* pipelineId: "STRING_VALUE", // required
|
|
63
|
-
* objectIds: [ // required
|
|
63
|
+
* objectIds: [ // idList // required
|
|
64
64
|
* "STRING_VALUE",
|
|
65
65
|
* ],
|
|
66
66
|
* status: "STRING_VALUE", // required
|
|
@@ -56,7 +56,7 @@ export interface SetTaskStatusCommandOutput extends SetTaskStatusOutput, __Metad
|
|
|
56
56
|
* import { DataPipelineClient, SetTaskStatusCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
57
57
|
* // const { DataPipelineClient, SetTaskStatusCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
58
58
|
* const client = new DataPipelineClient(config);
|
|
59
|
-
* const input = {
|
|
59
|
+
* const input = { // SetTaskStatusInput
|
|
60
60
|
* taskId: "STRING_VALUE", // required
|
|
61
61
|
* taskStatus: "STRING_VALUE", // required
|
|
62
62
|
* errorId: "STRING_VALUE",
|
|
@@ -177,14 +177,14 @@ export interface ValidatePipelineDefinitionCommandOutput extends ValidatePipelin
|
|
|
177
177
|
* import { DataPipelineClient, ValidatePipelineDefinitionCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
178
178
|
* // const { DataPipelineClient, ValidatePipelineDefinitionCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
179
179
|
* const client = new DataPipelineClient(config);
|
|
180
|
-
* const input = {
|
|
180
|
+
* const input = { // ValidatePipelineDefinitionInput
|
|
181
181
|
* pipelineId: "STRING_VALUE", // required
|
|
182
|
-
* pipelineObjects: [ // required
|
|
183
|
-
* {
|
|
182
|
+
* pipelineObjects: [ // PipelineObjectList // required
|
|
183
|
+
* { // PipelineObject
|
|
184
184
|
* id: "STRING_VALUE", // required
|
|
185
185
|
* name: "STRING_VALUE", // required
|
|
186
|
-
* fields: [ // required
|
|
187
|
-
* {
|
|
186
|
+
* fields: [ // fieldList // required
|
|
187
|
+
* { // Field
|
|
188
188
|
* key: "STRING_VALUE", // required
|
|
189
189
|
* stringValue: "STRING_VALUE",
|
|
190
190
|
* refValue: "STRING_VALUE",
|
|
@@ -192,19 +192,19 @@ export interface ValidatePipelineDefinitionCommandOutput extends ValidatePipelin
|
|
|
192
192
|
* ],
|
|
193
193
|
* },
|
|
194
194
|
* ],
|
|
195
|
-
* parameterObjects: [
|
|
196
|
-
* {
|
|
195
|
+
* parameterObjects: [ // ParameterObjectList
|
|
196
|
+
* { // ParameterObject
|
|
197
197
|
* id: "STRING_VALUE", // required
|
|
198
|
-
* attributes: [ // required
|
|
199
|
-
* {
|
|
198
|
+
* attributes: [ // ParameterAttributeList // required
|
|
199
|
+
* { // ParameterAttribute
|
|
200
200
|
* key: "STRING_VALUE", // required
|
|
201
201
|
* stringValue: "STRING_VALUE", // required
|
|
202
202
|
* },
|
|
203
203
|
* ],
|
|
204
204
|
* },
|
|
205
205
|
* ],
|
|
206
|
-
* parameterValues: [
|
|
207
|
-
* {
|
|
206
|
+
* parameterValues: [ // ParameterValueList
|
|
207
|
+
* { // ParameterValue
|
|
208
208
|
* id: "STRING_VALUE", // required
|
|
209
209
|
* stringValue: "STRING_VALUE", // required
|
|
210
210
|
* },
|
|
@@ -614,14 +614,19 @@ export interface PutPipelineDefinitionOutput {
|
|
|
614
614
|
}
|
|
615
615
|
/**
|
|
616
616
|
* @public
|
|
617
|
+
* @enum
|
|
617
618
|
*/
|
|
618
|
-
export declare
|
|
619
|
-
Between
|
|
620
|
-
Equal
|
|
621
|
-
GreaterThanOrEqual
|
|
622
|
-
LessThanOrEqual
|
|
623
|
-
ReferenceEqual
|
|
624
|
-
}
|
|
619
|
+
export declare const OperatorType: {
|
|
620
|
+
readonly Between: "BETWEEN";
|
|
621
|
+
readonly Equal: "EQ";
|
|
622
|
+
readonly GreaterThanOrEqual: "GE";
|
|
623
|
+
readonly LessThanOrEqual: "LE";
|
|
624
|
+
readonly ReferenceEqual: "REF_EQ";
|
|
625
|
+
};
|
|
626
|
+
/**
|
|
627
|
+
* @public
|
|
628
|
+
*/
|
|
629
|
+
export type OperatorType = (typeof OperatorType)[keyof typeof OperatorType];
|
|
625
630
|
/**
|
|
626
631
|
* @public
|
|
627
632
|
* <p>Contains a logical operation for comparing the value of a field with a specified value.</p>
|
|
@@ -835,12 +840,17 @@ export interface SetStatusInput {
|
|
|
835
840
|
}
|
|
836
841
|
/**
|
|
837
842
|
* @public
|
|
843
|
+
* @enum
|
|
838
844
|
*/
|
|
839
|
-
export declare
|
|
840
|
-
FAILED
|
|
841
|
-
FALSE
|
|
842
|
-
FINISHED
|
|
843
|
-
}
|
|
845
|
+
export declare const TaskStatus: {
|
|
846
|
+
readonly FAILED: "FAILED";
|
|
847
|
+
readonly FALSE: "FALSE";
|
|
848
|
+
readonly FINISHED: "FINISHED";
|
|
849
|
+
};
|
|
850
|
+
/**
|
|
851
|
+
* @public
|
|
852
|
+
*/
|
|
853
|
+
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
844
854
|
/**
|
|
845
855
|
* @public
|
|
846
856
|
* <p>Contains the parameters for SetTaskStatus.</p>
|
|
@@ -179,13 +179,14 @@ export interface PutPipelineDefinitionOutput {
|
|
|
179
179
|
validationWarnings?: ValidationWarning[];
|
|
180
180
|
errored: boolean | undefined;
|
|
181
181
|
}
|
|
182
|
-
export declare
|
|
183
|
-
Between
|
|
184
|
-
Equal
|
|
185
|
-
GreaterThanOrEqual
|
|
186
|
-
LessThanOrEqual
|
|
187
|
-
ReferenceEqual
|
|
188
|
-
}
|
|
182
|
+
export declare const OperatorType: {
|
|
183
|
+
readonly Between: "BETWEEN";
|
|
184
|
+
readonly Equal: "EQ";
|
|
185
|
+
readonly GreaterThanOrEqual: "GE";
|
|
186
|
+
readonly LessThanOrEqual: "LE";
|
|
187
|
+
readonly ReferenceEqual: "REF_EQ";
|
|
188
|
+
};
|
|
189
|
+
export type OperatorType = (typeof OperatorType)[keyof typeof OperatorType];
|
|
189
190
|
export interface Operator {
|
|
190
191
|
type?: OperatorType | string;
|
|
191
192
|
values?: string[];
|
|
@@ -234,11 +235,12 @@ export interface SetStatusInput {
|
|
|
234
235
|
objectIds: string[] | undefined;
|
|
235
236
|
status: string | undefined;
|
|
236
237
|
}
|
|
237
|
-
export declare
|
|
238
|
-
FAILED
|
|
239
|
-
FALSE
|
|
240
|
-
FINISHED
|
|
241
|
-
}
|
|
238
|
+
export declare const TaskStatus: {
|
|
239
|
+
readonly FAILED: "FAILED";
|
|
240
|
+
readonly FALSE: "FALSE";
|
|
241
|
+
readonly FINISHED: "FINISHED";
|
|
242
|
+
};
|
|
243
|
+
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
242
244
|
export interface SetTaskStatusInput {
|
|
243
245
|
taskId: string | undefined;
|
|
244
246
|
taskStatus: TaskStatus | string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-data-pipeline",
|
|
3
3
|
"description": "AWS SDK for JavaScript Data Pipeline Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.303.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|