@aws-sdk/client-data-pipeline 3.533.0 → 3.540.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/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-types/DataPipeline.d.ts +2 -1
- package/dist-types/DataPipelineClient.d.ts +1 -1
- package/dist-types/commands/ActivatePipelineCommand.d.ts +2 -1
- package/dist-types/commands/AddTagsCommand.d.ts +2 -1
- package/dist-types/commands/CreatePipelineCommand.d.ts +2 -1
- package/dist-types/commands/DeactivatePipelineCommand.d.ts +2 -1
- package/dist-types/commands/DeletePipelineCommand.d.ts +2 -1
- package/dist-types/commands/DescribeObjectsCommand.d.ts +2 -1
- package/dist-types/commands/DescribePipelinesCommand.d.ts +2 -1
- package/dist-types/commands/EvaluateExpressionCommand.d.ts +2 -1
- package/dist-types/commands/GetPipelineDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/ListPipelinesCommand.d.ts +2 -1
- package/dist-types/commands/PollForTaskCommand.d.ts +2 -1
- package/dist-types/commands/PutPipelineDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/QueryObjectsCommand.d.ts +2 -1
- package/dist-types/commands/RemoveTagsCommand.d.ts +2 -1
- package/dist-types/commands/ReportTaskProgressCommand.d.ts +2 -1
- package/dist-types/commands/ReportTaskRunnerHeartbeatCommand.d.ts +2 -1
- package/dist-types/commands/SetStatusCommand.d.ts +2 -1
- package/dist-types/commands/SetTaskStatusCommand.d.ts +2 -1
- package/dist-types/commands/ValidatePipelineDefinitionCommand.d.ts +2 -1
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +170 -170
- package/dist-types/ts3.4/DataPipeline.d.ts +1 -0
- package/dist-types/ts3.4/commands/ActivatePipelineCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +7 -0
- package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeactivatePipelineCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeObjectsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribePipelinesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/EvaluateExpressionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetPipelineDefinitionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PollForTaskCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutPipelineDefinitionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/QueryObjectsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ReportTaskProgressCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ReportTaskRunnerHeartbeatCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SetStatusCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SetTaskStatusCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ValidatePipelineDefinitionCommand.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +40 -40
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.defaultEndpointResolver = void 0;
|
|
4
|
-
const util_endpoints_1 = require("@
|
|
4
|
+
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
|
+
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
5
6
|
const ruleset_1 = require("./ruleset");
|
|
6
7
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
7
|
-
return (0,
|
|
8
|
+
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
8
9
|
endpointParams: endpointParams,
|
|
9
10
|
logger: context.logger,
|
|
10
11
|
});
|
|
11
12
|
};
|
|
12
13
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
|
+
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -1157,9 +1157,6 @@ var paginateListPipelines = (0, import_core.createPaginator)(DataPipelineClient,
|
|
|
1157
1157
|
// src/pagination/QueryObjectsPaginator.ts
|
|
1158
1158
|
|
|
1159
1159
|
var paginateQueryObjects = (0, import_core.createPaginator)(DataPipelineClient, QueryObjectsCommand, "marker", "marker", "limit");
|
|
1160
|
-
|
|
1161
|
-
// src/index.ts
|
|
1162
|
-
var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
1163
1160
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1164
1161
|
|
|
1165
1162
|
0 && (module.exports = {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
3
|
import { ruleSet } from "./ruleset";
|
|
3
4
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
4
5
|
return resolveEndpoint(ruleSet, {
|
|
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
|
6
7
|
logger: context.logger,
|
|
7
8
|
});
|
|
8
9
|
};
|
|
10
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
package/dist-es/index.js
CHANGED
|
@@ -77,6 +77,7 @@ export interface DataPipeline {
|
|
|
77
77
|
/**
|
|
78
78
|
* @see {@link ListPipelinesCommand}
|
|
79
79
|
*/
|
|
80
|
+
listPipelines(): Promise<ListPipelinesCommandOutput>;
|
|
80
81
|
listPipelines(args: ListPipelinesCommandInput, options?: __HttpHandlerOptions): Promise<ListPipelinesCommandOutput>;
|
|
81
82
|
listPipelines(args: ListPipelinesCommandInput, cb: (err: any, data?: ListPipelinesCommandOutput) => void): void;
|
|
82
83
|
listPipelines(args: ListPipelinesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPipelinesCommandOutput) => void): void;
|
|
@@ -136,7 +137,6 @@ export interface DataPipeline {
|
|
|
136
137
|
validatePipelineDefinition(args: ValidatePipelineDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ValidatePipelineDefinitionCommandOutput) => void): void;
|
|
137
138
|
}
|
|
138
139
|
/**
|
|
139
|
-
* @public
|
|
140
140
|
* <p>AWS Data Pipeline configures and manages a data-driven workflow called a pipeline. AWS Data Pipeline
|
|
141
141
|
* handles the details of scheduling and ensuring that data dependencies are met so that your application
|
|
142
142
|
* can focus on processing the data.</p>
|
|
@@ -154,6 +154,7 @@ export interface DataPipeline {
|
|
|
154
154
|
* the data from one format to another, is contained within the task runner. The task runner performs
|
|
155
155
|
* the task assigned to it by the web service, reporting progress to the web service as it does so.
|
|
156
156
|
* When the task is done, the task runner reports the final success or failure of the task to the web service.</p>
|
|
157
|
+
* @public
|
|
157
158
|
*/
|
|
158
159
|
export declare class DataPipeline extends DataPipelineClient implements DataPipeline {
|
|
159
160
|
}
|
|
@@ -170,7 +170,6 @@ export type DataPipelineClientResolvedConfigType = __SmithyResolvedConfiguration
|
|
|
170
170
|
export interface DataPipelineClientResolvedConfig extends DataPipelineClientResolvedConfigType {
|
|
171
171
|
}
|
|
172
172
|
/**
|
|
173
|
-
* @public
|
|
174
173
|
* <p>AWS Data Pipeline configures and manages a data-driven workflow called a pipeline. AWS Data Pipeline
|
|
175
174
|
* handles the details of scheduling and ensuring that data dependencies are met so that your application
|
|
176
175
|
* can focus on processing the data.</p>
|
|
@@ -188,6 +187,7 @@ export interface DataPipelineClientResolvedConfig extends DataPipelineClientReso
|
|
|
188
187
|
* the data from one format to another, is contained within the task runner. The task runner performs
|
|
189
188
|
* the task assigned to it by the web service, reporting progress to the web service as it does so.
|
|
190
189
|
* When the task is done, the task runner reports the final success or failure of the task to the web service.</p>
|
|
190
|
+
* @public
|
|
191
191
|
*/
|
|
192
192
|
export declare class DataPipelineClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, DataPipelineClientResolvedConfig> {
|
|
193
193
|
/**
|
|
@@ -22,10 +22,10 @@ export interface ActivatePipelineCommandOutput extends ActivatePipelineOutput, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const ActivatePipelineCommand_base: {
|
|
24
24
|
new (input: ActivatePipelineCommandInput): import("@smithy/smithy-client").CommandImpl<ActivatePipelineCommandInput, ActivatePipelineCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ActivatePipelineCommandInput): import("@smithy/smithy-client").CommandImpl<ActivatePipelineCommandInput, ActivatePipelineCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Validates the specified pipeline and starts processing pipeline tasks. If the pipeline does not pass validation,
|
|
30
30
|
* activation fails.</p>
|
|
31
31
|
* <p>If you need to pause the pipeline to investigate an issue with a component, such as a data source or script,
|
|
@@ -100,6 +100,7 @@ declare const ActivatePipelineCommand_base: {
|
|
|
100
100
|
* @throws {@link DataPipelineServiceException}
|
|
101
101
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
102
102
|
*
|
|
103
|
+
* @public
|
|
103
104
|
*/
|
|
104
105
|
export declare class ActivatePipelineCommand extends ActivatePipelineCommand_base {
|
|
105
106
|
}
|
|
@@ -22,10 +22,10 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const AddTagsCommand_base: {
|
|
24
24
|
new (input: AddTagsCommandInput): import("@smithy/smithy-client").CommandImpl<AddTagsCommandInput, AddTagsCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: AddTagsCommandInput): import("@smithy/smithy-client").CommandImpl<AddTagsCommandInput, AddTagsCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds or modifies tags for the specified pipeline.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -69,6 +69,7 @@ declare const AddTagsCommand_base: {
|
|
|
69
69
|
* @throws {@link DataPipelineServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class AddTagsCommand extends AddTagsCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreatePipelineCommand_base: {
|
|
24
24
|
new (input: CreatePipelineCommandInput): import("@smithy/smithy-client").CommandImpl<CreatePipelineCommandInput, CreatePipelineCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreatePipelineCommandInput): import("@smithy/smithy-client").CommandImpl<CreatePipelineCommandInput, CreatePipelineCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a new, empty pipeline. Use <a>PutPipelineDefinition</a> to populate the pipeline.</p>
|
|
30
30
|
*
|
|
31
31
|
* <examples>
|
|
@@ -97,6 +97,7 @@ declare const CreatePipelineCommand_base: {
|
|
|
97
97
|
* @throws {@link DataPipelineServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
99
99
|
*
|
|
100
|
+
* @public
|
|
100
101
|
*/
|
|
101
102
|
export declare class CreatePipelineCommand extends CreatePipelineCommand_base {
|
|
102
103
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeactivatePipelineCommandOutput extends DeactivatePipelineOutpu
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeactivatePipelineCommand_base: {
|
|
24
24
|
new (input: DeactivatePipelineCommandInput): import("@smithy/smithy-client").CommandImpl<DeactivatePipelineCommandInput, DeactivatePipelineCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeactivatePipelineCommandInput): import("@smithy/smithy-client").CommandImpl<DeactivatePipelineCommandInput, DeactivatePipelineCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deactivates the specified running pipeline. The pipeline is set to the <code>DEACTIVATING</code>
|
|
30
30
|
* state until the deactivation process completes.</p>
|
|
31
31
|
* <p>To resume a deactivated pipeline, use <a>ActivatePipeline</a>. By default, the pipeline resumes from the last completed execution.
|
|
@@ -67,6 +67,7 @@ declare const DeactivatePipelineCommand_base: {
|
|
|
67
67
|
* @throws {@link DataPipelineServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
69
69
|
*
|
|
70
|
+
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class DeactivatePipelineCommand extends DeactivatePipelineCommand_base {
|
|
72
73
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeletePipelineCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeletePipelineCommand_base: {
|
|
24
24
|
new (input: DeletePipelineCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePipelineCommandInput, DeletePipelineCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeletePipelineCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePipelineCommandInput, DeletePipelineCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a pipeline, its pipeline definition, and its run history.
|
|
30
30
|
* AWS Data Pipeline attempts to cancel instances associated with the pipeline that are currently being processed by task runners.</p>
|
|
31
31
|
* <p>Deleting a pipeline cannot be undone. You cannot query or restore a deleted pipeline.
|
|
@@ -91,6 +91,7 @@ declare const DeletePipelineCommand_base: {
|
|
|
91
91
|
* @throws {@link DataPipelineServiceException}
|
|
92
92
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
93
93
|
*
|
|
94
|
+
* @public
|
|
94
95
|
*/
|
|
95
96
|
export declare class DeletePipelineCommand extends DeletePipelineCommand_base {
|
|
96
97
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeObjectsCommandOutput extends DescribeObjectsOutput, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeObjectsCommand_base: {
|
|
24
24
|
new (input: DescribeObjectsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeObjectsCommandInput, DescribeObjectsCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeObjectsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeObjectsCommandInput, DescribeObjectsCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets the object definitions for a set of objects associated with the pipeline. Object definitions are composed of
|
|
30
30
|
* a set of fields that define the properties of the object.</p>
|
|
31
31
|
*
|
|
@@ -142,6 +142,7 @@ declare const DescribeObjectsCommand_base: {
|
|
|
142
142
|
* @throws {@link DataPipelineServiceException}
|
|
143
143
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
144
144
|
*
|
|
145
|
+
* @public
|
|
145
146
|
*/
|
|
146
147
|
export declare class DescribeObjectsCommand extends DescribeObjectsCommand_base {
|
|
147
148
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribePipelinesCommandOutput extends DescribePipelinesOutput,
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribePipelinesCommand_base: {
|
|
24
24
|
new (input: DescribePipelinesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribePipelinesCommandInput, DescribePipelinesCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribePipelinesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribePipelinesCommandInput, DescribePipelinesCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieves metadata about one or more pipelines. The information retrieved includes the name of the pipeline, the pipeline identifier,
|
|
30
30
|
* its current state, and the user account that owns the pipeline. Using account credentials, you can retrieve metadata about pipelines
|
|
31
31
|
* that you or your IAM users have created. If you are using an IAM user account, you can retrieve metadata about only those pipelines
|
|
@@ -147,6 +147,7 @@ declare const DescribePipelinesCommand_base: {
|
|
|
147
147
|
* @throws {@link DataPipelineServiceException}
|
|
148
148
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
149
149
|
*
|
|
150
|
+
* @public
|
|
150
151
|
*/
|
|
151
152
|
export declare class DescribePipelinesCommand extends DescribePipelinesCommand_base {
|
|
152
153
|
}
|
|
@@ -22,10 +22,10 @@ export interface EvaluateExpressionCommandOutput extends EvaluateExpressionOutpu
|
|
|
22
22
|
}
|
|
23
23
|
declare const EvaluateExpressionCommand_base: {
|
|
24
24
|
new (input: EvaluateExpressionCommandInput): import("@smithy/smithy-client").CommandImpl<EvaluateExpressionCommandInput, EvaluateExpressionCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: EvaluateExpressionCommandInput): import("@smithy/smithy-client").CommandImpl<EvaluateExpressionCommandInput, EvaluateExpressionCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Task runners call <code>EvaluateExpression</code> to evaluate a string in the context of the specified object.
|
|
30
30
|
* For example, a task runner can evaluate SQL queries stored in Amazon S3.</p>
|
|
31
31
|
*
|
|
@@ -100,6 +100,7 @@ declare const EvaluateExpressionCommand_base: {
|
|
|
100
100
|
* @throws {@link DataPipelineServiceException}
|
|
101
101
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
102
102
|
*
|
|
103
|
+
* @public
|
|
103
104
|
*/
|
|
104
105
|
export declare class EvaluateExpressionCommand extends EvaluateExpressionCommand_base {
|
|
105
106
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetPipelineDefinitionCommandOutput extends GetPipelineDefinitio
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetPipelineDefinitionCommand_base: {
|
|
24
24
|
new (input: GetPipelineDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<GetPipelineDefinitionCommandInput, GetPipelineDefinitionCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetPipelineDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<GetPipelineDefinitionCommandInput, GetPipelineDefinitionCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets the definition of the specified pipeline. You can call <code>GetPipelineDefinition</code> to retrieve
|
|
30
30
|
* the pipeline definition that you provided using <a>PutPipelineDefinition</a>.</p>
|
|
31
31
|
*
|
|
@@ -159,6 +159,7 @@ declare const GetPipelineDefinitionCommand_base: {
|
|
|
159
159
|
* @throws {@link DataPipelineServiceException}
|
|
160
160
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
161
161
|
*
|
|
162
|
+
* @public
|
|
162
163
|
*/
|
|
163
164
|
export declare class GetPipelineDefinitionCommand extends GetPipelineDefinitionCommand_base {
|
|
164
165
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListPipelinesCommand_base: {
|
|
24
24
|
new (input: ListPipelinesCommandInput): import("@smithy/smithy-client").CommandImpl<ListPipelinesCommandInput, ListPipelinesCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListPipelinesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListPipelinesCommandInput, ListPipelinesCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the pipeline identifiers for all active pipelines that you have permission to access.</p>
|
|
30
30
|
*
|
|
31
31
|
* <examples>
|
|
@@ -97,6 +97,7 @@ declare const ListPipelinesCommand_base: {
|
|
|
97
97
|
* @throws {@link DataPipelineServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
99
99
|
*
|
|
100
|
+
* @public
|
|
100
101
|
*/
|
|
101
102
|
export declare class ListPipelinesCommand extends ListPipelinesCommand_base {
|
|
102
103
|
}
|
|
@@ -22,10 +22,10 @@ export interface PollForTaskCommandOutput extends PollForTaskOutput, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const PollForTaskCommand_base: {
|
|
24
24
|
new (input: PollForTaskCommandInput): import("@smithy/smithy-client").CommandImpl<PollForTaskCommandInput, PollForTaskCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: PollForTaskCommandInput): import("@smithy/smithy-client").CommandImpl<PollForTaskCommandInput, PollForTaskCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Task runners call <code>PollForTask</code> to receive a task to perform from AWS Data Pipeline. The task runner specifies which tasks it can perform
|
|
30
30
|
* by setting a value for the <code>workerGroup</code> parameter. The task returned can come from any of the pipelines that
|
|
31
31
|
* match the <code>workerGroup</code> value passed in by the task runner and that was launched using the IAM user credentials
|
|
@@ -162,6 +162,7 @@ declare const PollForTaskCommand_base: {
|
|
|
162
162
|
* @throws {@link DataPipelineServiceException}
|
|
163
163
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
164
164
|
*
|
|
165
|
+
* @public
|
|
165
166
|
*/
|
|
166
167
|
export declare class PollForTaskCommand extends PollForTaskCommand_base {
|
|
167
168
|
}
|
|
@@ -22,10 +22,10 @@ export interface PutPipelineDefinitionCommandOutput extends PutPipelineDefinitio
|
|
|
22
22
|
}
|
|
23
23
|
declare const PutPipelineDefinitionCommand_base: {
|
|
24
24
|
new (input: PutPipelineDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<PutPipelineDefinitionCommandInput, PutPipelineDefinitionCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: PutPipelineDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<PutPipelineDefinitionCommandInput, PutPipelineDefinitionCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds tasks, schedules, and preconditions to the specified pipeline. You can use <code>PutPipelineDefinition</code> to populate a new pipeline.</p>
|
|
30
30
|
* <p>
|
|
31
31
|
* <code>PutPipelineDefinition</code> also validates the configuration as it adds it to the pipeline. Changes to the pipeline are saved unless one
|
|
@@ -270,6 +270,7 @@ declare const PutPipelineDefinitionCommand_base: {
|
|
|
270
270
|
* @throws {@link DataPipelineServiceException}
|
|
271
271
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
272
272
|
*
|
|
273
|
+
* @public
|
|
273
274
|
*/
|
|
274
275
|
export declare class PutPipelineDefinitionCommand extends PutPipelineDefinitionCommand_base {
|
|
275
276
|
}
|
|
@@ -22,10 +22,10 @@ export interface QueryObjectsCommandOutput extends QueryObjectsOutput, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const QueryObjectsCommand_base: {
|
|
24
24
|
new (input: QueryObjectsCommandInput): import("@smithy/smithy-client").CommandImpl<QueryObjectsCommandInput, QueryObjectsCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: QueryObjectsCommandInput): import("@smithy/smithy-client").CommandImpl<QueryObjectsCommandInput, QueryObjectsCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Queries the specified pipeline for the names of objects that match the specified set of conditions.</p>
|
|
30
30
|
*
|
|
31
31
|
* <examples>
|
|
@@ -123,6 +123,7 @@ declare const QueryObjectsCommand_base: {
|
|
|
123
123
|
* @throws {@link DataPipelineServiceException}
|
|
124
124
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
125
125
|
*
|
|
126
|
+
* @public
|
|
126
127
|
*/
|
|
127
128
|
export declare class QueryObjectsCommand extends QueryObjectsCommand_base {
|
|
128
129
|
}
|
|
@@ -22,10 +22,10 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const RemoveTagsCommand_base: {
|
|
24
24
|
new (input: RemoveTagsCommandInput): import("@smithy/smithy-client").CommandImpl<RemoveTagsCommandInput, RemoveTagsCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: RemoveTagsCommandInput): import("@smithy/smithy-client").CommandImpl<RemoveTagsCommandInput, RemoveTagsCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes existing tags from the specified pipeline.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -66,6 +66,7 @@ declare const RemoveTagsCommand_base: {
|
|
|
66
66
|
* @throws {@link DataPipelineServiceException}
|
|
67
67
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
68
68
|
*
|
|
69
|
+
* @public
|
|
69
70
|
*/
|
|
70
71
|
export declare class RemoveTagsCommand extends RemoveTagsCommand_base {
|
|
71
72
|
}
|
|
@@ -22,10 +22,10 @@ export interface ReportTaskProgressCommandOutput extends ReportTaskProgressOutpu
|
|
|
22
22
|
}
|
|
23
23
|
declare const ReportTaskProgressCommand_base: {
|
|
24
24
|
new (input: ReportTaskProgressCommandInput): import("@smithy/smithy-client").CommandImpl<ReportTaskProgressCommandInput, ReportTaskProgressCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ReportTaskProgressCommandInput): import("@smithy/smithy-client").CommandImpl<ReportTaskProgressCommandInput, ReportTaskProgressCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Task runners call <code>ReportTaskProgress</code> when assigned a task to acknowledge that it has the task. If the web service does not
|
|
30
30
|
* receive this acknowledgement within 2 minutes, it assigns the task in a subsequent <a>PollForTask</a> call. After this initial acknowledgement,
|
|
31
31
|
* the task runner only needs to report progress every 15 minutes to maintain its ownership of the task. You can change this reporting time
|
|
@@ -112,6 +112,7 @@ declare const ReportTaskProgressCommand_base: {
|
|
|
112
112
|
* @throws {@link DataPipelineServiceException}
|
|
113
113
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
114
114
|
*
|
|
115
|
+
* @public
|
|
115
116
|
*/
|
|
116
117
|
export declare class ReportTaskProgressCommand extends ReportTaskProgressCommand_base {
|
|
117
118
|
}
|
|
@@ -22,10 +22,10 @@ export interface ReportTaskRunnerHeartbeatCommandOutput extends ReportTaskRunner
|
|
|
22
22
|
}
|
|
23
23
|
declare const ReportTaskRunnerHeartbeatCommand_base: {
|
|
24
24
|
new (input: ReportTaskRunnerHeartbeatCommandInput): import("@smithy/smithy-client").CommandImpl<ReportTaskRunnerHeartbeatCommandInput, ReportTaskRunnerHeartbeatCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ReportTaskRunnerHeartbeatCommandInput): import("@smithy/smithy-client").CommandImpl<ReportTaskRunnerHeartbeatCommandInput, ReportTaskRunnerHeartbeatCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Task runners call <code>ReportTaskRunnerHeartbeat</code> every 15 minutes to indicate that they are operational.
|
|
30
30
|
* If the AWS Data Pipeline Task Runner is launched on a resource managed by AWS Data Pipeline, the web service can use
|
|
31
31
|
* this call to detect when the task runner application has failed and restart a new instance.</p>
|
|
@@ -93,6 +93,7 @@ declare const ReportTaskRunnerHeartbeatCommand_base: {
|
|
|
93
93
|
* @throws {@link DataPipelineServiceException}
|
|
94
94
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
95
95
|
*
|
|
96
|
+
* @public
|
|
96
97
|
*/
|
|
97
98
|
export declare class ReportTaskRunnerHeartbeatCommand extends ReportTaskRunnerHeartbeatCommand_base {
|
|
98
99
|
}
|
|
@@ -22,10 +22,10 @@ export interface SetStatusCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const SetStatusCommand_base: {
|
|
24
24
|
new (input: SetStatusCommandInput): import("@smithy/smithy-client").CommandImpl<SetStatusCommandInput, SetStatusCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: SetStatusCommandInput): import("@smithy/smithy-client").CommandImpl<SetStatusCommandInput, SetStatusCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Requests that the status of the specified physical or logical pipeline objects be updated in the specified pipeline.
|
|
30
30
|
* This update might not occur immediately, but is eventually consistent. The status that can be set depends on the type of object (for example, DataNode or Activity).
|
|
31
31
|
* You cannot perform this operation on <code>FINISHED</code> pipelines and attempting to do so returns <code>InvalidRequestException</code>.</p>
|
|
@@ -99,6 +99,7 @@ declare const SetStatusCommand_base: {
|
|
|
99
99
|
* @throws {@link DataPipelineServiceException}
|
|
100
100
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
101
101
|
*
|
|
102
|
+
* @public
|
|
102
103
|
*/
|
|
103
104
|
export declare class SetStatusCommand extends SetStatusCommand_base {
|
|
104
105
|
}
|
|
@@ -22,10 +22,10 @@ export interface SetTaskStatusCommandOutput extends SetTaskStatusOutput, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const SetTaskStatusCommand_base: {
|
|
24
24
|
new (input: SetTaskStatusCommandInput): import("@smithy/smithy-client").CommandImpl<SetTaskStatusCommandInput, SetTaskStatusCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: SetTaskStatusCommandInput): import("@smithy/smithy-client").CommandImpl<SetTaskStatusCommandInput, SetTaskStatusCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Task runners call <code>SetTaskStatus</code> to notify AWS Data Pipeline that a task is completed and provide information about the final status.
|
|
30
30
|
* A task runner makes this call regardless of whether the task was sucessful. A task runner does not need to call <code>SetTaskStatus</code> for
|
|
31
31
|
* tasks that are canceled by the web service during a call to <a>ReportTaskProgress</a>.</p>
|
|
@@ -100,6 +100,7 @@ declare const SetTaskStatusCommand_base: {
|
|
|
100
100
|
* @throws {@link DataPipelineServiceException}
|
|
101
101
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
102
102
|
*
|
|
103
|
+
* @public
|
|
103
104
|
*/
|
|
104
105
|
export declare class SetTaskStatusCommand extends SetTaskStatusCommand_base {
|
|
105
106
|
}
|
|
@@ -22,10 +22,10 @@ export interface ValidatePipelineDefinitionCommandOutput extends ValidatePipelin
|
|
|
22
22
|
}
|
|
23
23
|
declare const ValidatePipelineDefinitionCommand_base: {
|
|
24
24
|
new (input: ValidatePipelineDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<ValidatePipelineDefinitionCommandInput, ValidatePipelineDefinitionCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ValidatePipelineDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<ValidatePipelineDefinitionCommandInput, ValidatePipelineDefinitionCommandOutput, DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Validates the specified pipeline definition to ensure that it is well formed and can be run without error.</p>
|
|
30
30
|
*
|
|
31
31
|
* <examples>
|
|
@@ -262,6 +262,7 @@ declare const ValidatePipelineDefinitionCommand_base: {
|
|
|
262
262
|
* @throws {@link DataPipelineServiceException}
|
|
263
263
|
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
264
264
|
*
|
|
265
|
+
* @public
|
|
265
266
|
*/
|
|
266
267
|
export declare class ValidatePipelineDefinitionCommand extends ValidatePipelineDefinitionCommand_base {
|
|
267
268
|
}
|
package/dist-types/index.d.ts
CHANGED
|
@@ -27,5 +27,4 @@ export { DataPipelineExtensionConfiguration } from "./extensionConfiguration";
|
|
|
27
27
|
export * from "./commands";
|
|
28
28
|
export * from "./pagination";
|
|
29
29
|
export * from "./models";
|
|
30
|
-
import "@aws-sdk/util-endpoints";
|
|
31
30
|
export { DataPipelineServiceException } from "./models/DataPipelineServiceException";
|