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