@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.
- package/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/DataPipelineServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +68 -2
- package/dist-cjs/protocols/Aws_json1_1.js +188 -653
- package/dist-es/index.js +1 -0
- package/dist-es/models/DataPipelineServiceException.js +12 -0
- package/dist-es/models/models_0.js +62 -1
- package/dist-es/protocols/Aws_json1_1.js +412 -720
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/DataPipelineServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +27 -26
- package/dist-types/ts3.4/DataPipeline.d.ts +100 -0
- package/dist-types/ts3.4/DataPipelineClient.d.ts +92 -0
- package/dist-types/ts3.4/commands/ActivatePipelineCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeactivatePipelineCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeObjectsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribePipelinesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/EvaluateExpressionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetPipelineDefinitionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PollForTaskCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutPipelineDefinitionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/QueryObjectsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ReportTaskProgressCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ReportTaskRunnerHeartbeatCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SetStatusCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SetTaskStatusCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ValidatePipelineDefinitionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +19 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/DataPipelineServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +636 -0
- package/dist-types/ts3.4/pagination/DescribeObjectsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListPipelinesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/QueryObjectsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +59 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from DataPipeline service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class DataPipelineServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { DataPipelineServiceException as __BaseException } from "./DataPipelineServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>A value or list of parameter values. </p>
|
|
4
5
|
*/
|
|
@@ -55,46 +56,46 @@ export declare namespace ActivatePipelineOutput {
|
|
|
55
56
|
/**
|
|
56
57
|
* <p>An internal service error occurred.</p>
|
|
57
58
|
*/
|
|
58
|
-
export
|
|
59
|
-
name: "InternalServiceError";
|
|
60
|
-
$fault: "server";
|
|
59
|
+
export declare class InternalServiceError extends __BaseException {
|
|
60
|
+
readonly name: "InternalServiceError";
|
|
61
|
+
readonly $fault: "server";
|
|
61
62
|
/**
|
|
62
|
-
*
|
|
63
|
+
* @internal
|
|
63
64
|
*/
|
|
64
|
-
|
|
65
|
+
constructor(opts: __ExceptionOptionType<InternalServiceError, __BaseException>);
|
|
65
66
|
}
|
|
66
67
|
/**
|
|
67
68
|
* <p>The request was not valid. Verify that your request was properly formatted, that the signature was generated with the correct credentials, and that you haven't exceeded any of the service limits for your account.</p>
|
|
68
69
|
*/
|
|
69
|
-
export
|
|
70
|
-
name: "InvalidRequestException";
|
|
71
|
-
$fault: "client";
|
|
70
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
71
|
+
readonly name: "InvalidRequestException";
|
|
72
|
+
readonly $fault: "client";
|
|
72
73
|
/**
|
|
73
|
-
*
|
|
74
|
+
* @internal
|
|
74
75
|
*/
|
|
75
|
-
|
|
76
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
76
77
|
}
|
|
77
78
|
/**
|
|
78
79
|
* <p>The specified pipeline has been deleted.</p>
|
|
79
80
|
*/
|
|
80
|
-
export
|
|
81
|
-
name: "PipelineDeletedException";
|
|
82
|
-
$fault: "client";
|
|
81
|
+
export declare class PipelineDeletedException extends __BaseException {
|
|
82
|
+
readonly name: "PipelineDeletedException";
|
|
83
|
+
readonly $fault: "client";
|
|
83
84
|
/**
|
|
84
|
-
*
|
|
85
|
+
* @internal
|
|
85
86
|
*/
|
|
86
|
-
|
|
87
|
+
constructor(opts: __ExceptionOptionType<PipelineDeletedException, __BaseException>);
|
|
87
88
|
}
|
|
88
89
|
/**
|
|
89
90
|
* <p>The specified pipeline was not found. Verify that you used the correct user and account identifiers.</p>
|
|
90
91
|
*/
|
|
91
|
-
export
|
|
92
|
-
name: "PipelineNotFoundException";
|
|
93
|
-
$fault: "client";
|
|
92
|
+
export declare class PipelineNotFoundException extends __BaseException {
|
|
93
|
+
readonly name: "PipelineNotFoundException";
|
|
94
|
+
readonly $fault: "client";
|
|
94
95
|
/**
|
|
95
|
-
*
|
|
96
|
+
* @internal
|
|
96
97
|
*/
|
|
97
|
-
|
|
98
|
+
constructor(opts: __ExceptionOptionType<PipelineNotFoundException, __BaseException>);
|
|
98
99
|
}
|
|
99
100
|
/**
|
|
100
101
|
* <p>Tags are key/value pairs defined by a user and associated with a pipeline to control access. AWS Data Pipeline allows you to associate ten tags per pipeline.
|
|
@@ -451,13 +452,13 @@ export declare namespace EvaluateExpressionOutput {
|
|
|
451
452
|
/**
|
|
452
453
|
* <p>The specified task was not found. </p>
|
|
453
454
|
*/
|
|
454
|
-
export
|
|
455
|
-
name: "TaskNotFoundException";
|
|
456
|
-
$fault: "client";
|
|
455
|
+
export declare class TaskNotFoundException extends __BaseException {
|
|
456
|
+
readonly name: "TaskNotFoundException";
|
|
457
|
+
readonly $fault: "client";
|
|
457
458
|
/**
|
|
458
|
-
*
|
|
459
|
+
* @internal
|
|
459
460
|
*/
|
|
460
|
-
|
|
461
|
+
constructor(opts: __ExceptionOptionType<TaskNotFoundException, __BaseException>);
|
|
461
462
|
}
|
|
462
463
|
/**
|
|
463
464
|
* <p>Contains the parameters for GetPipelineDefinition.</p>
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { ActivatePipelineCommandInput, ActivatePipelineCommandOutput } from "./commands/ActivatePipelineCommand";
|
|
3
|
+
import { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand";
|
|
4
|
+
import { CreatePipelineCommandInput, CreatePipelineCommandOutput } from "./commands/CreatePipelineCommand";
|
|
5
|
+
import { DeactivatePipelineCommandInput, DeactivatePipelineCommandOutput } from "./commands/DeactivatePipelineCommand";
|
|
6
|
+
import { DeletePipelineCommandInput, DeletePipelineCommandOutput } from "./commands/DeletePipelineCommand";
|
|
7
|
+
import { DescribeObjectsCommandInput, DescribeObjectsCommandOutput } from "./commands/DescribeObjectsCommand";
|
|
8
|
+
import { DescribePipelinesCommandInput, DescribePipelinesCommandOutput } from "./commands/DescribePipelinesCommand";
|
|
9
|
+
import { EvaluateExpressionCommandInput, EvaluateExpressionCommandOutput } from "./commands/EvaluateExpressionCommand";
|
|
10
|
+
import { GetPipelineDefinitionCommandInput, GetPipelineDefinitionCommandOutput } from "./commands/GetPipelineDefinitionCommand";
|
|
11
|
+
import { ListPipelinesCommandInput, ListPipelinesCommandOutput } from "./commands/ListPipelinesCommand";
|
|
12
|
+
import { PollForTaskCommandInput, PollForTaskCommandOutput } from "./commands/PollForTaskCommand";
|
|
13
|
+
import { PutPipelineDefinitionCommandInput, PutPipelineDefinitionCommandOutput } from "./commands/PutPipelineDefinitionCommand";
|
|
14
|
+
import { QueryObjectsCommandInput, QueryObjectsCommandOutput } from "./commands/QueryObjectsCommand";
|
|
15
|
+
import { RemoveTagsCommandInput, RemoveTagsCommandOutput } from "./commands/RemoveTagsCommand";
|
|
16
|
+
import { ReportTaskProgressCommandInput, ReportTaskProgressCommandOutput } from "./commands/ReportTaskProgressCommand";
|
|
17
|
+
import { ReportTaskRunnerHeartbeatCommandInput, ReportTaskRunnerHeartbeatCommandOutput } from "./commands/ReportTaskRunnerHeartbeatCommand";
|
|
18
|
+
import { SetStatusCommandInput, SetStatusCommandOutput } from "./commands/SetStatusCommand";
|
|
19
|
+
import { SetTaskStatusCommandInput, SetTaskStatusCommandOutput } from "./commands/SetTaskStatusCommand";
|
|
20
|
+
import { ValidatePipelineDefinitionCommandInput, ValidatePipelineDefinitionCommandOutput } from "./commands/ValidatePipelineDefinitionCommand";
|
|
21
|
+
import { DataPipelineClient } from "./DataPipelineClient";
|
|
22
|
+
|
|
23
|
+
export declare class DataPipeline extends DataPipelineClient {
|
|
24
|
+
|
|
25
|
+
activatePipeline(args: ActivatePipelineCommandInput, options?: __HttpHandlerOptions): Promise<ActivatePipelineCommandOutput>;
|
|
26
|
+
activatePipeline(args: ActivatePipelineCommandInput, cb: (err: any, data?: ActivatePipelineCommandOutput) => void): void;
|
|
27
|
+
activatePipeline(args: ActivatePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ActivatePipelineCommandOutput) => void): void;
|
|
28
|
+
|
|
29
|
+
addTags(args: AddTagsCommandInput, options?: __HttpHandlerOptions): Promise<AddTagsCommandOutput>;
|
|
30
|
+
addTags(args: AddTagsCommandInput, cb: (err: any, data?: AddTagsCommandOutput) => void): void;
|
|
31
|
+
addTags(args: AddTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsCommandOutput) => void): void;
|
|
32
|
+
|
|
33
|
+
createPipeline(args: CreatePipelineCommandInput, options?: __HttpHandlerOptions): Promise<CreatePipelineCommandOutput>;
|
|
34
|
+
createPipeline(args: CreatePipelineCommandInput, cb: (err: any, data?: CreatePipelineCommandOutput) => void): void;
|
|
35
|
+
createPipeline(args: CreatePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePipelineCommandOutput) => void): void;
|
|
36
|
+
|
|
37
|
+
deactivatePipeline(args: DeactivatePipelineCommandInput, options?: __HttpHandlerOptions): Promise<DeactivatePipelineCommandOutput>;
|
|
38
|
+
deactivatePipeline(args: DeactivatePipelineCommandInput, cb: (err: any, data?: DeactivatePipelineCommandOutput) => void): void;
|
|
39
|
+
deactivatePipeline(args: DeactivatePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeactivatePipelineCommandOutput) => void): void;
|
|
40
|
+
|
|
41
|
+
deletePipeline(args: DeletePipelineCommandInput, options?: __HttpHandlerOptions): Promise<DeletePipelineCommandOutput>;
|
|
42
|
+
deletePipeline(args: DeletePipelineCommandInput, cb: (err: any, data?: DeletePipelineCommandOutput) => void): void;
|
|
43
|
+
deletePipeline(args: DeletePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePipelineCommandOutput) => void): void;
|
|
44
|
+
|
|
45
|
+
describeObjects(args: DescribeObjectsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeObjectsCommandOutput>;
|
|
46
|
+
describeObjects(args: DescribeObjectsCommandInput, cb: (err: any, data?: DescribeObjectsCommandOutput) => void): void;
|
|
47
|
+
describeObjects(args: DescribeObjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeObjectsCommandOutput) => void): void;
|
|
48
|
+
|
|
49
|
+
describePipelines(args: DescribePipelinesCommandInput, options?: __HttpHandlerOptions): Promise<DescribePipelinesCommandOutput>;
|
|
50
|
+
describePipelines(args: DescribePipelinesCommandInput, cb: (err: any, data?: DescribePipelinesCommandOutput) => void): void;
|
|
51
|
+
describePipelines(args: DescribePipelinesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePipelinesCommandOutput) => void): void;
|
|
52
|
+
|
|
53
|
+
evaluateExpression(args: EvaluateExpressionCommandInput, options?: __HttpHandlerOptions): Promise<EvaluateExpressionCommandOutput>;
|
|
54
|
+
evaluateExpression(args: EvaluateExpressionCommandInput, cb: (err: any, data?: EvaluateExpressionCommandOutput) => void): void;
|
|
55
|
+
evaluateExpression(args: EvaluateExpressionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EvaluateExpressionCommandOutput) => void): void;
|
|
56
|
+
|
|
57
|
+
getPipelineDefinition(args: GetPipelineDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<GetPipelineDefinitionCommandOutput>;
|
|
58
|
+
getPipelineDefinition(args: GetPipelineDefinitionCommandInput, cb: (err: any, data?: GetPipelineDefinitionCommandOutput) => void): void;
|
|
59
|
+
getPipelineDefinition(args: GetPipelineDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPipelineDefinitionCommandOutput) => void): void;
|
|
60
|
+
|
|
61
|
+
listPipelines(args: ListPipelinesCommandInput, options?: __HttpHandlerOptions): Promise<ListPipelinesCommandOutput>;
|
|
62
|
+
listPipelines(args: ListPipelinesCommandInput, cb: (err: any, data?: ListPipelinesCommandOutput) => void): void;
|
|
63
|
+
listPipelines(args: ListPipelinesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPipelinesCommandOutput) => void): void;
|
|
64
|
+
|
|
65
|
+
pollForTask(args: PollForTaskCommandInput, options?: __HttpHandlerOptions): Promise<PollForTaskCommandOutput>;
|
|
66
|
+
pollForTask(args: PollForTaskCommandInput, cb: (err: any, data?: PollForTaskCommandOutput) => void): void;
|
|
67
|
+
pollForTask(args: PollForTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PollForTaskCommandOutput) => void): void;
|
|
68
|
+
|
|
69
|
+
putPipelineDefinition(args: PutPipelineDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<PutPipelineDefinitionCommandOutput>;
|
|
70
|
+
putPipelineDefinition(args: PutPipelineDefinitionCommandInput, cb: (err: any, data?: PutPipelineDefinitionCommandOutput) => void): void;
|
|
71
|
+
putPipelineDefinition(args: PutPipelineDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutPipelineDefinitionCommandOutput) => void): void;
|
|
72
|
+
|
|
73
|
+
queryObjects(args: QueryObjectsCommandInput, options?: __HttpHandlerOptions): Promise<QueryObjectsCommandOutput>;
|
|
74
|
+
queryObjects(args: QueryObjectsCommandInput, cb: (err: any, data?: QueryObjectsCommandOutput) => void): void;
|
|
75
|
+
queryObjects(args: QueryObjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: QueryObjectsCommandOutput) => void): void;
|
|
76
|
+
|
|
77
|
+
removeTags(args: RemoveTagsCommandInput, options?: __HttpHandlerOptions): Promise<RemoveTagsCommandOutput>;
|
|
78
|
+
removeTags(args: RemoveTagsCommandInput, cb: (err: any, data?: RemoveTagsCommandOutput) => void): void;
|
|
79
|
+
removeTags(args: RemoveTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveTagsCommandOutput) => void): void;
|
|
80
|
+
|
|
81
|
+
reportTaskProgress(args: ReportTaskProgressCommandInput, options?: __HttpHandlerOptions): Promise<ReportTaskProgressCommandOutput>;
|
|
82
|
+
reportTaskProgress(args: ReportTaskProgressCommandInput, cb: (err: any, data?: ReportTaskProgressCommandOutput) => void): void;
|
|
83
|
+
reportTaskProgress(args: ReportTaskProgressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReportTaskProgressCommandOutput) => void): void;
|
|
84
|
+
|
|
85
|
+
reportTaskRunnerHeartbeat(args: ReportTaskRunnerHeartbeatCommandInput, options?: __HttpHandlerOptions): Promise<ReportTaskRunnerHeartbeatCommandOutput>;
|
|
86
|
+
reportTaskRunnerHeartbeat(args: ReportTaskRunnerHeartbeatCommandInput, cb: (err: any, data?: ReportTaskRunnerHeartbeatCommandOutput) => void): void;
|
|
87
|
+
reportTaskRunnerHeartbeat(args: ReportTaskRunnerHeartbeatCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReportTaskRunnerHeartbeatCommandOutput) => void): void;
|
|
88
|
+
|
|
89
|
+
setStatus(args: SetStatusCommandInput, options?: __HttpHandlerOptions): Promise<SetStatusCommandOutput>;
|
|
90
|
+
setStatus(args: SetStatusCommandInput, cb: (err: any, data?: SetStatusCommandOutput) => void): void;
|
|
91
|
+
setStatus(args: SetStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetStatusCommandOutput) => void): void;
|
|
92
|
+
|
|
93
|
+
setTaskStatus(args: SetTaskStatusCommandInput, options?: __HttpHandlerOptions): Promise<SetTaskStatusCommandOutput>;
|
|
94
|
+
setTaskStatus(args: SetTaskStatusCommandInput, cb: (err: any, data?: SetTaskStatusCommandOutput) => void): void;
|
|
95
|
+
setTaskStatus(args: SetTaskStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetTaskStatusCommandOutput) => void): void;
|
|
96
|
+
|
|
97
|
+
validatePipelineDefinition(args: ValidatePipelineDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<ValidatePipelineDefinitionCommandOutput>;
|
|
98
|
+
validatePipelineDefinition(args: ValidatePipelineDefinitionCommandInput, cb: (err: any, data?: ValidatePipelineDefinitionCommandOutput) => void): void;
|
|
99
|
+
validatePipelineDefinition(args: ValidatePipelineDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ValidatePipelineDefinitionCommandOutput) => void): void;
|
|
100
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { ActivatePipelineCommandInput, ActivatePipelineCommandOutput } from "./commands/ActivatePipelineCommand";
|
|
10
|
+
import { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand";
|
|
11
|
+
import { CreatePipelineCommandInput, CreatePipelineCommandOutput } from "./commands/CreatePipelineCommand";
|
|
12
|
+
import { DeactivatePipelineCommandInput, DeactivatePipelineCommandOutput } from "./commands/DeactivatePipelineCommand";
|
|
13
|
+
import { DeletePipelineCommandInput, DeletePipelineCommandOutput } from "./commands/DeletePipelineCommand";
|
|
14
|
+
import { DescribeObjectsCommandInput, DescribeObjectsCommandOutput } from "./commands/DescribeObjectsCommand";
|
|
15
|
+
import { DescribePipelinesCommandInput, DescribePipelinesCommandOutput } from "./commands/DescribePipelinesCommand";
|
|
16
|
+
import { EvaluateExpressionCommandInput, EvaluateExpressionCommandOutput } from "./commands/EvaluateExpressionCommand";
|
|
17
|
+
import { GetPipelineDefinitionCommandInput, GetPipelineDefinitionCommandOutput } from "./commands/GetPipelineDefinitionCommand";
|
|
18
|
+
import { ListPipelinesCommandInput, ListPipelinesCommandOutput } from "./commands/ListPipelinesCommand";
|
|
19
|
+
import { PollForTaskCommandInput, PollForTaskCommandOutput } from "./commands/PollForTaskCommand";
|
|
20
|
+
import { PutPipelineDefinitionCommandInput, PutPipelineDefinitionCommandOutput } from "./commands/PutPipelineDefinitionCommand";
|
|
21
|
+
import { QueryObjectsCommandInput, QueryObjectsCommandOutput } from "./commands/QueryObjectsCommand";
|
|
22
|
+
import { RemoveTagsCommandInput, RemoveTagsCommandOutput } from "./commands/RemoveTagsCommand";
|
|
23
|
+
import { ReportTaskProgressCommandInput, ReportTaskProgressCommandOutput } from "./commands/ReportTaskProgressCommand";
|
|
24
|
+
import { ReportTaskRunnerHeartbeatCommandInput, ReportTaskRunnerHeartbeatCommandOutput } from "./commands/ReportTaskRunnerHeartbeatCommand";
|
|
25
|
+
import { SetStatusCommandInput, SetStatusCommandOutput } from "./commands/SetStatusCommand";
|
|
26
|
+
import { SetTaskStatusCommandInput, SetTaskStatusCommandOutput } from "./commands/SetTaskStatusCommand";
|
|
27
|
+
import { ValidatePipelineDefinitionCommandInput, ValidatePipelineDefinitionCommandOutput } from "./commands/ValidatePipelineDefinitionCommand";
|
|
28
|
+
export declare type ServiceInputTypes = ActivatePipelineCommandInput | AddTagsCommandInput | CreatePipelineCommandInput | DeactivatePipelineCommandInput | DeletePipelineCommandInput | DescribeObjectsCommandInput | DescribePipelinesCommandInput | EvaluateExpressionCommandInput | GetPipelineDefinitionCommandInput | ListPipelinesCommandInput | PollForTaskCommandInput | PutPipelineDefinitionCommandInput | QueryObjectsCommandInput | RemoveTagsCommandInput | ReportTaskProgressCommandInput | ReportTaskRunnerHeartbeatCommandInput | SetStatusCommandInput | SetTaskStatusCommandInput | ValidatePipelineDefinitionCommandInput;
|
|
29
|
+
export declare type ServiceOutputTypes = ActivatePipelineCommandOutput | AddTagsCommandOutput | CreatePipelineCommandOutput | DeactivatePipelineCommandOutput | DeletePipelineCommandOutput | DescribeObjectsCommandOutput | DescribePipelinesCommandOutput | EvaluateExpressionCommandOutput | GetPipelineDefinitionCommandOutput | ListPipelinesCommandOutput | PollForTaskCommandOutput | PutPipelineDefinitionCommandOutput | QueryObjectsCommandOutput | RemoveTagsCommandOutput | ReportTaskProgressCommandOutput | ReportTaskRunnerHeartbeatCommandOutput | SetStatusCommandOutput | SetTaskStatusCommandOutput | ValidatePipelineDefinitionCommandOutput;
|
|
30
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
31
|
+
|
|
32
|
+
requestHandler?: __HttpHandler;
|
|
33
|
+
|
|
34
|
+
sha256?: __HashConstructor;
|
|
35
|
+
|
|
36
|
+
urlParser?: __UrlParser;
|
|
37
|
+
|
|
38
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
39
|
+
|
|
40
|
+
streamCollector?: __StreamCollector;
|
|
41
|
+
|
|
42
|
+
base64Decoder?: __Decoder;
|
|
43
|
+
|
|
44
|
+
base64Encoder?: __Encoder;
|
|
45
|
+
|
|
46
|
+
utf8Decoder?: __Decoder;
|
|
47
|
+
|
|
48
|
+
utf8Encoder?: __Encoder;
|
|
49
|
+
|
|
50
|
+
runtime?: string;
|
|
51
|
+
|
|
52
|
+
disableHostPrefix?: boolean;
|
|
53
|
+
|
|
54
|
+
maxAttempts?: number | __Provider<number>;
|
|
55
|
+
|
|
56
|
+
retryMode?: string | __Provider<string>;
|
|
57
|
+
|
|
58
|
+
logger?: __Logger;
|
|
59
|
+
|
|
60
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
61
|
+
|
|
62
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
63
|
+
|
|
64
|
+
serviceId?: string;
|
|
65
|
+
|
|
66
|
+
region?: string | __Provider<string>;
|
|
67
|
+
|
|
68
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
69
|
+
|
|
70
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
71
|
+
|
|
72
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
73
|
+
|
|
74
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
75
|
+
}
|
|
76
|
+
declare type DataPipelineClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
77
|
+
|
|
78
|
+
export interface DataPipelineClientConfig extends DataPipelineClientConfigType {
|
|
79
|
+
}
|
|
80
|
+
declare type DataPipelineClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
81
|
+
|
|
82
|
+
export interface DataPipelineClientResolvedConfig extends DataPipelineClientResolvedConfigType {
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export declare class DataPipelineClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, DataPipelineClientResolvedConfig> {
|
|
86
|
+
|
|
87
|
+
readonly config: DataPipelineClientResolvedConfig;
|
|
88
|
+
constructor(configuration: DataPipelineClientConfig);
|
|
89
|
+
|
|
90
|
+
destroy(): void;
|
|
91
|
+
}
|
|
92
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
4
|
+
import { ActivatePipelineInput, ActivatePipelineOutput } from "../models/models_0";
|
|
5
|
+
export interface ActivatePipelineCommandInput extends ActivatePipelineInput {
|
|
6
|
+
}
|
|
7
|
+
export interface ActivatePipelineCommandOutput extends ActivatePipelineOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ActivatePipelineCommand extends $Command<ActivatePipelineCommandInput, ActivatePipelineCommandOutput, DataPipelineClientResolvedConfig> {
|
|
11
|
+
readonly input: ActivatePipelineCommandInput;
|
|
12
|
+
constructor(input: ActivatePipelineCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ActivatePipelineCommandInput, ActivatePipelineCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
4
|
+
import { AddTagsInput, AddTagsOutput } from "../models/models_0";
|
|
5
|
+
export interface AddTagsCommandInput extends AddTagsInput {
|
|
6
|
+
}
|
|
7
|
+
export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class AddTagsCommand extends $Command<AddTagsCommandInput, AddTagsCommandOutput, DataPipelineClientResolvedConfig> {
|
|
11
|
+
readonly input: AddTagsCommandInput;
|
|
12
|
+
constructor(input: AddTagsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddTagsCommandInput, AddTagsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
4
|
+
import { CreatePipelineInput, CreatePipelineOutput } from "../models/models_0";
|
|
5
|
+
export interface CreatePipelineCommandInput extends CreatePipelineInput {
|
|
6
|
+
}
|
|
7
|
+
export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreatePipelineCommand extends $Command<CreatePipelineCommandInput, CreatePipelineCommandOutput, DataPipelineClientResolvedConfig> {
|
|
11
|
+
readonly input: CreatePipelineCommandInput;
|
|
12
|
+
constructor(input: CreatePipelineCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreatePipelineCommandInput, CreatePipelineCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
4
|
+
import { DeactivatePipelineInput, DeactivatePipelineOutput } from "../models/models_0";
|
|
5
|
+
export interface DeactivatePipelineCommandInput extends DeactivatePipelineInput {
|
|
6
|
+
}
|
|
7
|
+
export interface DeactivatePipelineCommandOutput extends DeactivatePipelineOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeactivatePipelineCommand extends $Command<DeactivatePipelineCommandInput, DeactivatePipelineCommandOutput, DataPipelineClientResolvedConfig> {
|
|
11
|
+
readonly input: DeactivatePipelineCommandInput;
|
|
12
|
+
constructor(input: DeactivatePipelineCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeactivatePipelineCommandInput, DeactivatePipelineCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
4
|
+
import { DeletePipelineInput } from "../models/models_0";
|
|
5
|
+
export interface DeletePipelineCommandInput extends DeletePipelineInput {
|
|
6
|
+
}
|
|
7
|
+
export interface DeletePipelineCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeletePipelineCommand extends $Command<DeletePipelineCommandInput, DeletePipelineCommandOutput, DataPipelineClientResolvedConfig> {
|
|
11
|
+
readonly input: DeletePipelineCommandInput;
|
|
12
|
+
constructor(input: DeletePipelineCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePipelineCommandInput, DeletePipelineCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
4
|
+
import { DescribeObjectsInput, DescribeObjectsOutput } from "../models/models_0";
|
|
5
|
+
export interface DescribeObjectsCommandInput extends DescribeObjectsInput {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeObjectsCommandOutput extends DescribeObjectsOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeObjectsCommand extends $Command<DescribeObjectsCommandInput, DescribeObjectsCommandOutput, DataPipelineClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeObjectsCommandInput;
|
|
12
|
+
constructor(input: DescribeObjectsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeObjectsCommandInput, DescribeObjectsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
4
|
+
import { DescribePipelinesInput, DescribePipelinesOutput } from "../models/models_0";
|
|
5
|
+
export interface DescribePipelinesCommandInput extends DescribePipelinesInput {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribePipelinesCommandOutput extends DescribePipelinesOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribePipelinesCommand extends $Command<DescribePipelinesCommandInput, DescribePipelinesCommandOutput, DataPipelineClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribePipelinesCommandInput;
|
|
12
|
+
constructor(input: DescribePipelinesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribePipelinesCommandInput, DescribePipelinesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
4
|
+
import { EvaluateExpressionInput, EvaluateExpressionOutput } from "../models/models_0";
|
|
5
|
+
export interface EvaluateExpressionCommandInput extends EvaluateExpressionInput {
|
|
6
|
+
}
|
|
7
|
+
export interface EvaluateExpressionCommandOutput extends EvaluateExpressionOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class EvaluateExpressionCommand extends $Command<EvaluateExpressionCommandInput, EvaluateExpressionCommandOutput, DataPipelineClientResolvedConfig> {
|
|
11
|
+
readonly input: EvaluateExpressionCommandInput;
|
|
12
|
+
constructor(input: EvaluateExpressionCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EvaluateExpressionCommandInput, EvaluateExpressionCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
4
|
+
import { GetPipelineDefinitionInput, GetPipelineDefinitionOutput } from "../models/models_0";
|
|
5
|
+
export interface GetPipelineDefinitionCommandInput extends GetPipelineDefinitionInput {
|
|
6
|
+
}
|
|
7
|
+
export interface GetPipelineDefinitionCommandOutput extends GetPipelineDefinitionOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetPipelineDefinitionCommand extends $Command<GetPipelineDefinitionCommandInput, GetPipelineDefinitionCommandOutput, DataPipelineClientResolvedConfig> {
|
|
11
|
+
readonly input: GetPipelineDefinitionCommandInput;
|
|
12
|
+
constructor(input: GetPipelineDefinitionCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPipelineDefinitionCommandInput, GetPipelineDefinitionCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
4
|
+
import { ListPipelinesInput, ListPipelinesOutput } from "../models/models_0";
|
|
5
|
+
export interface ListPipelinesCommandInput extends ListPipelinesInput {
|
|
6
|
+
}
|
|
7
|
+
export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListPipelinesCommand extends $Command<ListPipelinesCommandInput, ListPipelinesCommandOutput, DataPipelineClientResolvedConfig> {
|
|
11
|
+
readonly input: ListPipelinesCommandInput;
|
|
12
|
+
constructor(input: ListPipelinesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPipelinesCommandInput, ListPipelinesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
4
|
+
import { PollForTaskInput, PollForTaskOutput } from "../models/models_0";
|
|
5
|
+
export interface PollForTaskCommandInput extends PollForTaskInput {
|
|
6
|
+
}
|
|
7
|
+
export interface PollForTaskCommandOutput extends PollForTaskOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class PollForTaskCommand extends $Command<PollForTaskCommandInput, PollForTaskCommandOutput, DataPipelineClientResolvedConfig> {
|
|
11
|
+
readonly input: PollForTaskCommandInput;
|
|
12
|
+
constructor(input: PollForTaskCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PollForTaskCommandInput, PollForTaskCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
4
|
+
import { PutPipelineDefinitionInput, PutPipelineDefinitionOutput } from "../models/models_0";
|
|
5
|
+
export interface PutPipelineDefinitionCommandInput extends PutPipelineDefinitionInput {
|
|
6
|
+
}
|
|
7
|
+
export interface PutPipelineDefinitionCommandOutput extends PutPipelineDefinitionOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class PutPipelineDefinitionCommand extends $Command<PutPipelineDefinitionCommandInput, PutPipelineDefinitionCommandOutput, DataPipelineClientResolvedConfig> {
|
|
11
|
+
readonly input: PutPipelineDefinitionCommandInput;
|
|
12
|
+
constructor(input: PutPipelineDefinitionCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutPipelineDefinitionCommandInput, PutPipelineDefinitionCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
4
|
+
import { QueryObjectsInput, QueryObjectsOutput } from "../models/models_0";
|
|
5
|
+
export interface QueryObjectsCommandInput extends QueryObjectsInput {
|
|
6
|
+
}
|
|
7
|
+
export interface QueryObjectsCommandOutput extends QueryObjectsOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class QueryObjectsCommand extends $Command<QueryObjectsCommandInput, QueryObjectsCommandOutput, DataPipelineClientResolvedConfig> {
|
|
11
|
+
readonly input: QueryObjectsCommandInput;
|
|
12
|
+
constructor(input: QueryObjectsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<QueryObjectsCommandInput, QueryObjectsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
4
|
+
import { RemoveTagsInput, RemoveTagsOutput } from "../models/models_0";
|
|
5
|
+
export interface RemoveTagsCommandInput extends RemoveTagsInput {
|
|
6
|
+
}
|
|
7
|
+
export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class RemoveTagsCommand extends $Command<RemoveTagsCommandInput, RemoveTagsCommandOutput, DataPipelineClientResolvedConfig> {
|
|
11
|
+
readonly input: RemoveTagsCommandInput;
|
|
12
|
+
constructor(input: RemoveTagsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveTagsCommandInput, RemoveTagsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
4
|
+
import { ReportTaskProgressInput, ReportTaskProgressOutput } from "../models/models_0";
|
|
5
|
+
export interface ReportTaskProgressCommandInput extends ReportTaskProgressInput {
|
|
6
|
+
}
|
|
7
|
+
export interface ReportTaskProgressCommandOutput extends ReportTaskProgressOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ReportTaskProgressCommand extends $Command<ReportTaskProgressCommandInput, ReportTaskProgressCommandOutput, DataPipelineClientResolvedConfig> {
|
|
11
|
+
readonly input: ReportTaskProgressCommandInput;
|
|
12
|
+
constructor(input: ReportTaskProgressCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ReportTaskProgressCommandInput, ReportTaskProgressCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
4
|
+
import { ReportTaskRunnerHeartbeatInput, ReportTaskRunnerHeartbeatOutput } from "../models/models_0";
|
|
5
|
+
export interface ReportTaskRunnerHeartbeatCommandInput extends ReportTaskRunnerHeartbeatInput {
|
|
6
|
+
}
|
|
7
|
+
export interface ReportTaskRunnerHeartbeatCommandOutput extends ReportTaskRunnerHeartbeatOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ReportTaskRunnerHeartbeatCommand extends $Command<ReportTaskRunnerHeartbeatCommandInput, ReportTaskRunnerHeartbeatCommandOutput, DataPipelineClientResolvedConfig> {
|
|
11
|
+
readonly input: ReportTaskRunnerHeartbeatCommandInput;
|
|
12
|
+
constructor(input: ReportTaskRunnerHeartbeatCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ReportTaskRunnerHeartbeatCommandInput, ReportTaskRunnerHeartbeatCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|