@aws-sdk/client-data-pipeline 3.952.0 → 3.953.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/index.js +251 -154
- package/dist-cjs/runtimeConfig.shared.js +7 -6
- package/dist-es/commands/ActivatePipelineCommand.js +2 -2
- package/dist-es/commands/AddTagsCommand.js +2 -2
- package/dist-es/commands/CreatePipelineCommand.js +2 -2
- package/dist-es/commands/DeactivatePipelineCommand.js +2 -2
- package/dist-es/commands/DeletePipelineCommand.js +2 -2
- package/dist-es/commands/DescribeObjectsCommand.js +2 -2
- package/dist-es/commands/DescribePipelinesCommand.js +2 -2
- package/dist-es/commands/EvaluateExpressionCommand.js +2 -2
- package/dist-es/commands/GetPipelineDefinitionCommand.js +2 -2
- package/dist-es/commands/ListPipelinesCommand.js +2 -2
- package/dist-es/commands/PollForTaskCommand.js +2 -2
- package/dist-es/commands/PutPipelineDefinitionCommand.js +2 -2
- package/dist-es/commands/QueryObjectsCommand.js +2 -2
- package/dist-es/commands/RemoveTagsCommand.js +2 -2
- package/dist-es/commands/ReportTaskProgressCommand.js +2 -2
- package/dist-es/commands/ReportTaskRunnerHeartbeatCommand.js +2 -2
- package/dist-es/commands/SetStatusCommand.js +2 -2
- package/dist-es/commands/SetTaskStatusCommand.js +2 -2
- package/dist-es/commands/ValidatePipelineDefinitionCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -6
- package/dist-es/schemas/schemas_0.js +144 -123
- package/dist-types/DataPipelineClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +77 -93
- package/dist-types/ts3.4/DataPipelineClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +76 -94
- package/package.json +34 -34
|
@@ -26,12 +26,13 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.datapipeline",
|
|
32
|
+
xmlNamespace: "http://datapipeline.amazonaws.com/doc/2012-10-29/",
|
|
33
|
+
version: "2012-10-29",
|
|
34
|
+
serviceTarget: "DataPipeline",
|
|
35
|
+
},
|
|
35
36
|
serviceId: config?.serviceId ?? "Data Pipeline",
|
|
36
37
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
38
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ActivatePipeline } from "../schemas/schemas_0";
|
|
4
|
+
import { ActivatePipeline$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ActivatePipelineCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ActivatePipelineCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "ActivatePipeline", {})
|
|
13
13
|
.n("DataPipelineClient", "ActivatePipelineCommand")
|
|
14
|
-
.sc(ActivatePipeline)
|
|
14
|
+
.sc(ActivatePipeline$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AddTags } from "../schemas/schemas_0";
|
|
4
|
+
import { AddTags$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AddTagsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AddTagsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "AddTags", {})
|
|
13
13
|
.n("DataPipelineClient", "AddTagsCommand")
|
|
14
|
-
.sc(AddTags)
|
|
14
|
+
.sc(AddTags$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreatePipeline } from "../schemas/schemas_0";
|
|
4
|
+
import { CreatePipeline$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreatePipelineCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreatePipelineCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "CreatePipeline", {})
|
|
13
13
|
.n("DataPipelineClient", "CreatePipelineCommand")
|
|
14
|
-
.sc(CreatePipeline)
|
|
14
|
+
.sc(CreatePipeline$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeactivatePipeline } from "../schemas/schemas_0";
|
|
4
|
+
import { DeactivatePipeline$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeactivatePipelineCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeactivatePipelineCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "DeactivatePipeline", {})
|
|
13
13
|
.n("DataPipelineClient", "DeactivatePipelineCommand")
|
|
14
|
-
.sc(DeactivatePipeline)
|
|
14
|
+
.sc(DeactivatePipeline$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeletePipeline } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePipeline$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePipelineCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePipelineCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "DeletePipeline", {})
|
|
13
13
|
.n("DataPipelineClient", "DeletePipelineCommand")
|
|
14
|
-
.sc(DeletePipeline)
|
|
14
|
+
.sc(DeletePipeline$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeObjects } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeObjects$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeObjectsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeObjectsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "DescribeObjects", {})
|
|
13
13
|
.n("DataPipelineClient", "DescribeObjectsCommand")
|
|
14
|
-
.sc(DescribeObjects)
|
|
14
|
+
.sc(DescribeObjects$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribePipelines } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribePipelines$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribePipelinesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribePipelinesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "DescribePipelines", {})
|
|
13
13
|
.n("DataPipelineClient", "DescribePipelinesCommand")
|
|
14
|
-
.sc(DescribePipelines)
|
|
14
|
+
.sc(DescribePipelines$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { EvaluateExpression } from "../schemas/schemas_0";
|
|
4
|
+
import { EvaluateExpression$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class EvaluateExpressionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class EvaluateExpressionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "EvaluateExpression", {})
|
|
13
13
|
.n("DataPipelineClient", "EvaluateExpressionCommand")
|
|
14
|
-
.sc(EvaluateExpression)
|
|
14
|
+
.sc(EvaluateExpression$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetPipelineDefinition } from "../schemas/schemas_0";
|
|
4
|
+
import { GetPipelineDefinition$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetPipelineDefinitionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetPipelineDefinitionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "GetPipelineDefinition", {})
|
|
13
13
|
.n("DataPipelineClient", "GetPipelineDefinitionCommand")
|
|
14
|
-
.sc(GetPipelineDefinition)
|
|
14
|
+
.sc(GetPipelineDefinition$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPipelines } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPipelines$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPipelinesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPipelinesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "ListPipelines", {})
|
|
13
13
|
.n("DataPipelineClient", "ListPipelinesCommand")
|
|
14
|
-
.sc(ListPipelines)
|
|
14
|
+
.sc(ListPipelines$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PollForTask } from "../schemas/schemas_0";
|
|
4
|
+
import { PollForTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PollForTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PollForTaskCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "PollForTask", {})
|
|
13
13
|
.n("DataPipelineClient", "PollForTaskCommand")
|
|
14
|
-
.sc(PollForTask)
|
|
14
|
+
.sc(PollForTask$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutPipelineDefinition } from "../schemas/schemas_0";
|
|
4
|
+
import { PutPipelineDefinition$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutPipelineDefinitionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutPipelineDefinitionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "PutPipelineDefinition", {})
|
|
13
13
|
.n("DataPipelineClient", "PutPipelineDefinitionCommand")
|
|
14
|
-
.sc(PutPipelineDefinition)
|
|
14
|
+
.sc(PutPipelineDefinition$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { QueryObjects } from "../schemas/schemas_0";
|
|
4
|
+
import { QueryObjects$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class QueryObjectsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class QueryObjectsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "QueryObjects", {})
|
|
13
13
|
.n("DataPipelineClient", "QueryObjectsCommand")
|
|
14
|
-
.sc(QueryObjects)
|
|
14
|
+
.sc(QueryObjects$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RemoveTags } from "../schemas/schemas_0";
|
|
4
|
+
import { RemoveTags$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RemoveTagsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RemoveTagsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "RemoveTags", {})
|
|
13
13
|
.n("DataPipelineClient", "RemoveTagsCommand")
|
|
14
|
-
.sc(RemoveTags)
|
|
14
|
+
.sc(RemoveTags$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ReportTaskProgress } from "../schemas/schemas_0";
|
|
4
|
+
import { ReportTaskProgress$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ReportTaskProgressCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ReportTaskProgressCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "ReportTaskProgress", {})
|
|
13
13
|
.n("DataPipelineClient", "ReportTaskProgressCommand")
|
|
14
|
-
.sc(ReportTaskProgress)
|
|
14
|
+
.sc(ReportTaskProgress$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ReportTaskRunnerHeartbeat } from "../schemas/schemas_0";
|
|
4
|
+
import { ReportTaskRunnerHeartbeat$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ReportTaskRunnerHeartbeatCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ReportTaskRunnerHeartbeatCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "ReportTaskRunnerHeartbeat", {})
|
|
13
13
|
.n("DataPipelineClient", "ReportTaskRunnerHeartbeatCommand")
|
|
14
|
-
.sc(ReportTaskRunnerHeartbeat)
|
|
14
|
+
.sc(ReportTaskRunnerHeartbeat$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SetStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { SetStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SetStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SetStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "SetStatus", {})
|
|
13
13
|
.n("DataPipelineClient", "SetStatusCommand")
|
|
14
|
-
.sc(SetStatus)
|
|
14
|
+
.sc(SetStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SetTaskStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { SetTaskStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SetTaskStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SetTaskStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "SetTaskStatus", {})
|
|
13
13
|
.n("DataPipelineClient", "SetTaskStatusCommand")
|
|
14
|
-
.sc(SetTaskStatus)
|
|
14
|
+
.sc(SetTaskStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ValidatePipelineDefinition } from "../schemas/schemas_0";
|
|
4
|
+
import { ValidatePipelineDefinition$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ValidatePipelineDefinitionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ValidatePipelineDefinitionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataPipeline", "ValidatePipelineDefinition", {})
|
|
13
13
|
.n("DataPipelineClient", "ValidatePipelineDefinitionCommand")
|
|
14
|
-
.sc(ValidatePipelineDefinition)
|
|
14
|
+
.sc(ValidatePipelineDefinition$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,13 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.datapipeline",
|
|
29
|
+
xmlNamespace: "http://datapipeline.amazonaws.com/doc/2012-10-29/",
|
|
30
|
+
version: "2012-10-29",
|
|
31
|
+
serviceTarget: "DataPipeline",
|
|
32
|
+
},
|
|
32
33
|
serviceId: config?.serviceId ?? "Data Pipeline",
|
|
33
34
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
35
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|