@aws-sdk/client-data-pipeline 3.168.0 → 3.170.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 +346 -100
- package/dist-types/ts3.4/DataPipelineClient.d.ts +244 -92
- package/dist-types/ts3.4/commands/ActivatePipelineCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeactivatePipelineCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeObjectsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribePipelinesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/EvaluateExpressionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetPipelineDefinitionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PollForTaskCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PutPipelineDefinitionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/QueryObjectsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ReportTaskProgressCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ReportTaskRunnerHeartbeatCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/SetStatusCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/SetTaskStatusCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ValidatePipelineDefinitionCommand.d.ts +41 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +579 -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 +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
DescribeObjectsInput,
|
|
15
|
+
DescribeObjectsOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeObjectsCommandInput extends DescribeObjectsInput {}
|
|
18
|
+
export interface DescribeObjectsCommandOutput
|
|
19
|
+
extends DescribeObjectsOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeObjectsCommand extends $Command<
|
|
23
|
+
DescribeObjectsCommandInput,
|
|
24
|
+
DescribeObjectsCommandOutput,
|
|
25
|
+
DataPipelineClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeObjectsCommandInput;
|
|
28
|
+
constructor(input: DescribeObjectsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: DataPipelineClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeObjectsCommandInput, DescribeObjectsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
DescribePipelinesInput,
|
|
15
|
+
DescribePipelinesOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribePipelinesCommandInput extends DescribePipelinesInput {}
|
|
18
|
+
export interface DescribePipelinesCommandOutput
|
|
19
|
+
extends DescribePipelinesOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribePipelinesCommand extends $Command<
|
|
23
|
+
DescribePipelinesCommandInput,
|
|
24
|
+
DescribePipelinesCommandOutput,
|
|
25
|
+
DataPipelineClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribePipelinesCommandInput;
|
|
28
|
+
constructor(input: DescribePipelinesCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: DataPipelineClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribePipelinesCommandInput, DescribePipelinesCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
EvaluateExpressionInput,
|
|
15
|
+
EvaluateExpressionOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface EvaluateExpressionCommandInput
|
|
18
|
+
extends EvaluateExpressionInput {}
|
|
19
|
+
export interface EvaluateExpressionCommandOutput
|
|
20
|
+
extends EvaluateExpressionOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class EvaluateExpressionCommand extends $Command<
|
|
24
|
+
EvaluateExpressionCommandInput,
|
|
25
|
+
EvaluateExpressionCommandOutput,
|
|
26
|
+
DataPipelineClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: EvaluateExpressionCommandInput;
|
|
29
|
+
constructor(input: EvaluateExpressionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataPipelineClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<EvaluateExpressionCommandInput, EvaluateExpressionCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
GetPipelineDefinitionInput,
|
|
15
|
+
GetPipelineDefinitionOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetPipelineDefinitionCommandInput
|
|
18
|
+
extends GetPipelineDefinitionInput {}
|
|
19
|
+
export interface GetPipelineDefinitionCommandOutput
|
|
20
|
+
extends GetPipelineDefinitionOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetPipelineDefinitionCommand extends $Command<
|
|
24
|
+
GetPipelineDefinitionCommandInput,
|
|
25
|
+
GetPipelineDefinitionCommandOutput,
|
|
26
|
+
DataPipelineClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetPipelineDefinitionCommandInput;
|
|
29
|
+
constructor(input: GetPipelineDefinitionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataPipelineClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetPipelineDefinitionCommandInput,
|
|
37
|
+
GetPipelineDefinitionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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 { ListPipelinesInput, ListPipelinesOutput } from "../models/models_0";
|
|
14
|
+
export interface ListPipelinesCommandInput extends ListPipelinesInput {}
|
|
15
|
+
export interface ListPipelinesCommandOutput
|
|
16
|
+
extends ListPipelinesOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListPipelinesCommand extends $Command<
|
|
20
|
+
ListPipelinesCommandInput,
|
|
21
|
+
ListPipelinesCommandOutput,
|
|
22
|
+
DataPipelineClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListPipelinesCommandInput;
|
|
25
|
+
constructor(input: ListPipelinesCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DataPipelineClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListPipelinesCommandInput, ListPipelinesCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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 { PollForTaskInput, PollForTaskOutput } from "../models/models_0";
|
|
14
|
+
export interface PollForTaskCommandInput extends PollForTaskInput {}
|
|
15
|
+
export interface PollForTaskCommandOutput
|
|
16
|
+
extends PollForTaskOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class PollForTaskCommand extends $Command<
|
|
20
|
+
PollForTaskCommandInput,
|
|
21
|
+
PollForTaskCommandOutput,
|
|
22
|
+
DataPipelineClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: PollForTaskCommandInput;
|
|
25
|
+
constructor(input: PollForTaskCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DataPipelineClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<PollForTaskCommandInput, PollForTaskCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
PutPipelineDefinitionInput,
|
|
15
|
+
PutPipelineDefinitionOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface PutPipelineDefinitionCommandInput
|
|
18
|
+
extends PutPipelineDefinitionInput {}
|
|
19
|
+
export interface PutPipelineDefinitionCommandOutput
|
|
20
|
+
extends PutPipelineDefinitionOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class PutPipelineDefinitionCommand extends $Command<
|
|
24
|
+
PutPipelineDefinitionCommandInput,
|
|
25
|
+
PutPipelineDefinitionCommandOutput,
|
|
26
|
+
DataPipelineClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: PutPipelineDefinitionCommandInput;
|
|
29
|
+
constructor(input: PutPipelineDefinitionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataPipelineClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
PutPipelineDefinitionCommandInput,
|
|
37
|
+
PutPipelineDefinitionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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 { QueryObjectsInput, QueryObjectsOutput } from "../models/models_0";
|
|
14
|
+
export interface QueryObjectsCommandInput extends QueryObjectsInput {}
|
|
15
|
+
export interface QueryObjectsCommandOutput
|
|
16
|
+
extends QueryObjectsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class QueryObjectsCommand extends $Command<
|
|
20
|
+
QueryObjectsCommandInput,
|
|
21
|
+
QueryObjectsCommandOutput,
|
|
22
|
+
DataPipelineClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: QueryObjectsCommandInput;
|
|
25
|
+
constructor(input: QueryObjectsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DataPipelineClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<QueryObjectsCommandInput, QueryObjectsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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 { RemoveTagsInput, RemoveTagsOutput } from "../models/models_0";
|
|
14
|
+
export interface RemoveTagsCommandInput extends RemoveTagsInput {}
|
|
15
|
+
export interface RemoveTagsCommandOutput
|
|
16
|
+
extends RemoveTagsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class RemoveTagsCommand extends $Command<
|
|
20
|
+
RemoveTagsCommandInput,
|
|
21
|
+
RemoveTagsCommandOutput,
|
|
22
|
+
DataPipelineClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: RemoveTagsCommandInput;
|
|
25
|
+
constructor(input: RemoveTagsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DataPipelineClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<RemoveTagsCommandInput, RemoveTagsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
ReportTaskProgressInput,
|
|
15
|
+
ReportTaskProgressOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ReportTaskProgressCommandInput
|
|
18
|
+
extends ReportTaskProgressInput {}
|
|
19
|
+
export interface ReportTaskProgressCommandOutput
|
|
20
|
+
extends ReportTaskProgressOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ReportTaskProgressCommand extends $Command<
|
|
24
|
+
ReportTaskProgressCommandInput,
|
|
25
|
+
ReportTaskProgressCommandOutput,
|
|
26
|
+
DataPipelineClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ReportTaskProgressCommandInput;
|
|
29
|
+
constructor(input: ReportTaskProgressCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataPipelineClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ReportTaskProgressCommandInput, ReportTaskProgressCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
ReportTaskRunnerHeartbeatInput,
|
|
15
|
+
ReportTaskRunnerHeartbeatOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ReportTaskRunnerHeartbeatCommandInput
|
|
18
|
+
extends ReportTaskRunnerHeartbeatInput {}
|
|
19
|
+
export interface ReportTaskRunnerHeartbeatCommandOutput
|
|
20
|
+
extends ReportTaskRunnerHeartbeatOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ReportTaskRunnerHeartbeatCommand extends $Command<
|
|
24
|
+
ReportTaskRunnerHeartbeatCommandInput,
|
|
25
|
+
ReportTaskRunnerHeartbeatCommandOutput,
|
|
26
|
+
DataPipelineClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ReportTaskRunnerHeartbeatCommandInput;
|
|
29
|
+
constructor(input: ReportTaskRunnerHeartbeatCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataPipelineClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ReportTaskRunnerHeartbeatCommandInput,
|
|
37
|
+
ReportTaskRunnerHeartbeatCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|