@aws-sdk/client-data-pipeline 3.169.0 → 3.171.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/DataPipeline.d.ts +327 -100
- package/dist-types/ts3.4/DataPipelineClient.d.ts +219 -92
- package/dist-types/ts3.4/commands/ActivatePipelineCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeactivatePipelineCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DescribeObjectsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribePipelinesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/EvaluateExpressionCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetPipelineDefinitionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/PollForTaskCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/PutPipelineDefinitionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/QueryObjectsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ReportTaskProgressCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ReportTaskRunnerHeartbeatCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/SetStatusCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/SetTaskStatusCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ValidatePipelineDefinitionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/index.d.ts +19 -19
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/DataPipelineServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +399 -532
- package/dist-types/ts3.4/pagination/DescribeObjectsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListPipelinesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/QueryObjectsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +233 -59
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DataPipelineClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DataPipelineClient";
|
|
13
|
+
import {
|
|
14
|
+
ValidatePipelineDefinitionInput,
|
|
15
|
+
ValidatePipelineDefinitionOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ValidatePipelineDefinitionCommandInput
|
|
18
|
+
extends ValidatePipelineDefinitionInput {}
|
|
19
|
+
export interface ValidatePipelineDefinitionCommandOutput
|
|
20
|
+
extends ValidatePipelineDefinitionOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ValidatePipelineDefinitionCommand extends $Command<
|
|
23
|
+
ValidatePipelineDefinitionCommandInput,
|
|
24
|
+
ValidatePipelineDefinitionCommandOutput,
|
|
25
|
+
DataPipelineClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ValidatePipelineDefinitionCommandInput;
|
|
28
|
+
constructor(input: ValidatePipelineDefinitionCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: DataPipelineClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ValidatePipelineDefinitionCommandInput,
|
|
35
|
+
ValidatePipelineDefinitionCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export * from "./ActivatePipelineCommand";
|
|
2
|
-
export * from "./AddTagsCommand";
|
|
3
|
-
export * from "./CreatePipelineCommand";
|
|
4
|
-
export * from "./DeactivatePipelineCommand";
|
|
5
|
-
export * from "./DeletePipelineCommand";
|
|
6
|
-
export * from "./DescribeObjectsCommand";
|
|
7
|
-
export * from "./DescribePipelinesCommand";
|
|
8
|
-
export * from "./EvaluateExpressionCommand";
|
|
9
|
-
export * from "./GetPipelineDefinitionCommand";
|
|
10
|
-
export * from "./ListPipelinesCommand";
|
|
11
|
-
export * from "./PollForTaskCommand";
|
|
12
|
-
export * from "./PutPipelineDefinitionCommand";
|
|
13
|
-
export * from "./QueryObjectsCommand";
|
|
14
|
-
export * from "./RemoveTagsCommand";
|
|
15
|
-
export * from "./ReportTaskProgressCommand";
|
|
16
|
-
export * from "./ReportTaskRunnerHeartbeatCommand";
|
|
17
|
-
export * from "./SetStatusCommand";
|
|
18
|
-
export * from "./SetTaskStatusCommand";
|
|
19
|
-
export * from "./ValidatePipelineDefinitionCommand";
|
|
1
|
+
export * from "./ActivatePipelineCommand";
|
|
2
|
+
export * from "./AddTagsCommand";
|
|
3
|
+
export * from "./CreatePipelineCommand";
|
|
4
|
+
export * from "./DeactivatePipelineCommand";
|
|
5
|
+
export * from "./DeletePipelineCommand";
|
|
6
|
+
export * from "./DescribeObjectsCommand";
|
|
7
|
+
export * from "./DescribePipelinesCommand";
|
|
8
|
+
export * from "./EvaluateExpressionCommand";
|
|
9
|
+
export * from "./GetPipelineDefinitionCommand";
|
|
10
|
+
export * from "./ListPipelinesCommand";
|
|
11
|
+
export * from "./PollForTaskCommand";
|
|
12
|
+
export * from "./PutPipelineDefinitionCommand";
|
|
13
|
+
export * from "./QueryObjectsCommand";
|
|
14
|
+
export * from "./RemoveTagsCommand";
|
|
15
|
+
export * from "./ReportTaskProgressCommand";
|
|
16
|
+
export * from "./ReportTaskRunnerHeartbeatCommand";
|
|
17
|
+
export * from "./SetStatusCommand";
|
|
18
|
+
export * from "./SetTaskStatusCommand";
|
|
19
|
+
export * from "./ValidatePipelineDefinitionCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./DataPipeline";
|
|
2
|
-
export * from "./DataPipelineClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { DataPipelineServiceException } from "./models/DataPipelineServiceException";
|
|
1
|
+
export * from "./DataPipeline";
|
|
2
|
+
export * from "./DataPipelineClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { DataPipelineServiceException } from "./models/DataPipelineServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class DataPipelineServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|