@aws-sdk/client-appflow 3.169.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 +8 -0
- package/dist-types/ts3.4/Appflow.d.ts +400 -115
- package/dist-types/ts3.4/AppflowClient.d.ts +261 -95
- package/dist-types/ts3.4/commands/CreateConnectorProfileCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateFlowCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteConnectorProfileCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteFlowCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeConnectorEntityCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeConnectorProfilesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeConnectorsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeFlowCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeFlowExecutionRecordsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListConnectorEntitiesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListFlowsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/RegisterConnectorCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StartFlowCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StopFlowCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UnregisterConnectorCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateConnectorProfileCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateFlowCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +22 -22
- 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/AppflowServiceException.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 +2745 -2551
- package/dist-types/ts3.4/pagination/DescribeConnectorProfilesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeConnectorsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeFlowExecutionRecordsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListFlowsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +269 -68
- 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,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
|
+
AppflowClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppflowClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeConnectorEntityRequest,
|
|
15
|
+
DescribeConnectorEntityResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeConnectorEntityCommandInput
|
|
18
|
+
extends DescribeConnectorEntityRequest {}
|
|
19
|
+
export interface DescribeConnectorEntityCommandOutput
|
|
20
|
+
extends DescribeConnectorEntityResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeConnectorEntityCommand extends $Command<
|
|
24
|
+
DescribeConnectorEntityCommandInput,
|
|
25
|
+
DescribeConnectorEntityCommandOutput,
|
|
26
|
+
AppflowClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeConnectorEntityCommandInput;
|
|
29
|
+
constructor(input: DescribeConnectorEntityCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppflowClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeConnectorEntityCommandInput,
|
|
37
|
+
DescribeConnectorEntityCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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
|
+
AppflowClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppflowClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeConnectorProfilesRequest,
|
|
15
|
+
DescribeConnectorProfilesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeConnectorProfilesCommandInput
|
|
18
|
+
extends DescribeConnectorProfilesRequest {}
|
|
19
|
+
export interface DescribeConnectorProfilesCommandOutput
|
|
20
|
+
extends DescribeConnectorProfilesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeConnectorProfilesCommand extends $Command<
|
|
24
|
+
DescribeConnectorProfilesCommandInput,
|
|
25
|
+
DescribeConnectorProfilesCommandOutput,
|
|
26
|
+
AppflowClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeConnectorProfilesCommandInput;
|
|
29
|
+
constructor(input: DescribeConnectorProfilesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppflowClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeConnectorProfilesCommandInput,
|
|
37
|
+
DescribeConnectorProfilesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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
|
+
AppflowClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppflowClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeConnectorsRequest,
|
|
15
|
+
DescribeConnectorsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeConnectorsCommandInput
|
|
18
|
+
extends DescribeConnectorsRequest {}
|
|
19
|
+
export interface DescribeConnectorsCommandOutput
|
|
20
|
+
extends DescribeConnectorsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeConnectorsCommand extends $Command<
|
|
24
|
+
DescribeConnectorsCommandInput,
|
|
25
|
+
DescribeConnectorsCommandOutput,
|
|
26
|
+
AppflowClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeConnectorsCommandInput;
|
|
29
|
+
constructor(input: DescribeConnectorsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppflowClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DescribeConnectorsCommandInput, DescribeConnectorsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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
|
+
AppflowClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppflowClient";
|
|
13
|
+
import { DescribeFlowRequest, DescribeFlowResponse } from "../models/models_0";
|
|
14
|
+
export interface DescribeFlowCommandInput extends DescribeFlowRequest {}
|
|
15
|
+
export interface DescribeFlowCommandOutput
|
|
16
|
+
extends DescribeFlowResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DescribeFlowCommand extends $Command<
|
|
20
|
+
DescribeFlowCommandInput,
|
|
21
|
+
DescribeFlowCommandOutput,
|
|
22
|
+
AppflowClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DescribeFlowCommandInput;
|
|
25
|
+
constructor(input: DescribeFlowCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AppflowClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DescribeFlowCommandInput, DescribeFlowCommandOutput>;
|
|
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
|
+
AppflowClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppflowClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeFlowExecutionRecordsRequest,
|
|
15
|
+
DescribeFlowExecutionRecordsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeFlowExecutionRecordsCommandInput
|
|
18
|
+
extends DescribeFlowExecutionRecordsRequest {}
|
|
19
|
+
export interface DescribeFlowExecutionRecordsCommandOutput
|
|
20
|
+
extends DescribeFlowExecutionRecordsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeFlowExecutionRecordsCommand extends $Command<
|
|
24
|
+
DescribeFlowExecutionRecordsCommandInput,
|
|
25
|
+
DescribeFlowExecutionRecordsCommandOutput,
|
|
26
|
+
AppflowClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeFlowExecutionRecordsCommandInput;
|
|
29
|
+
constructor(input: DescribeFlowExecutionRecordsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppflowClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeFlowExecutionRecordsCommandInput,
|
|
37
|
+
DescribeFlowExecutionRecordsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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
|
+
AppflowClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppflowClient";
|
|
13
|
+
import {
|
|
14
|
+
ListConnectorEntitiesRequest,
|
|
15
|
+
ListConnectorEntitiesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListConnectorEntitiesCommandInput
|
|
18
|
+
extends ListConnectorEntitiesRequest {}
|
|
19
|
+
export interface ListConnectorEntitiesCommandOutput
|
|
20
|
+
extends ListConnectorEntitiesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListConnectorEntitiesCommand extends $Command<
|
|
24
|
+
ListConnectorEntitiesCommandInput,
|
|
25
|
+
ListConnectorEntitiesCommandOutput,
|
|
26
|
+
AppflowClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListConnectorEntitiesCommandInput;
|
|
29
|
+
constructor(input: ListConnectorEntitiesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppflowClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListConnectorEntitiesCommandInput,
|
|
37
|
+
ListConnectorEntitiesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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
|
+
AppflowClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppflowClient";
|
|
13
|
+
import {
|
|
14
|
+
ListConnectorsRequest,
|
|
15
|
+
ListConnectorsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListConnectorsCommandInput extends ListConnectorsRequest {}
|
|
18
|
+
export interface ListConnectorsCommandOutput
|
|
19
|
+
extends ListConnectorsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ListConnectorsCommand extends $Command<
|
|
23
|
+
ListConnectorsCommandInput,
|
|
24
|
+
ListConnectorsCommandOutput,
|
|
25
|
+
AppflowClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListConnectorsCommandInput;
|
|
28
|
+
constructor(input: ListConnectorsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: AppflowClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListConnectorsCommandInput, ListConnectorsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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
|
+
AppflowClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppflowClient";
|
|
13
|
+
import { ListFlowsRequest, ListFlowsResponse } from "../models/models_0";
|
|
14
|
+
export interface ListFlowsCommandInput extends ListFlowsRequest {}
|
|
15
|
+
export interface ListFlowsCommandOutput
|
|
16
|
+
extends ListFlowsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListFlowsCommand extends $Command<
|
|
20
|
+
ListFlowsCommandInput,
|
|
21
|
+
ListFlowsCommandOutput,
|
|
22
|
+
AppflowClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListFlowsCommandInput;
|
|
25
|
+
constructor(input: ListFlowsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AppflowClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListFlowsCommandInput, ListFlowsCommandOutput>;
|
|
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
|
+
AppflowClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppflowClient";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
24
|
+
ListTagsForResourceCommandInput,
|
|
25
|
+
ListTagsForResourceCommandOutput,
|
|
26
|
+
AppflowClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppflowClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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
|
+
AppflowClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppflowClient";
|
|
13
|
+
import {
|
|
14
|
+
RegisterConnectorRequest,
|
|
15
|
+
RegisterConnectorResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface RegisterConnectorCommandInput
|
|
18
|
+
extends RegisterConnectorRequest {}
|
|
19
|
+
export interface RegisterConnectorCommandOutput
|
|
20
|
+
extends RegisterConnectorResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class RegisterConnectorCommand extends $Command<
|
|
24
|
+
RegisterConnectorCommandInput,
|
|
25
|
+
RegisterConnectorCommandOutput,
|
|
26
|
+
AppflowClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: RegisterConnectorCommandInput;
|
|
29
|
+
constructor(input: RegisterConnectorCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppflowClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<RegisterConnectorCommandInput, RegisterConnectorCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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
|
+
AppflowClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppflowClient";
|
|
13
|
+
import { StartFlowRequest, StartFlowResponse } from "../models/models_0";
|
|
14
|
+
export interface StartFlowCommandInput extends StartFlowRequest {}
|
|
15
|
+
export interface StartFlowCommandOutput
|
|
16
|
+
extends StartFlowResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class StartFlowCommand extends $Command<
|
|
20
|
+
StartFlowCommandInput,
|
|
21
|
+
StartFlowCommandOutput,
|
|
22
|
+
AppflowClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: StartFlowCommandInput;
|
|
25
|
+
constructor(input: StartFlowCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AppflowClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<StartFlowCommandInput, StartFlowCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|