@aws-sdk/client-appflow 3.47.2 → 3.51.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 (47) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/dist-cjs/Appflow.js +60 -0
  3. package/dist-cjs/commands/DescribeConnectorCommand.js +36 -0
  4. package/dist-cjs/commands/ListConnectorsCommand.js +36 -0
  5. package/dist-cjs/commands/RegisterConnectorCommand.js +36 -0
  6. package/dist-cjs/commands/UnregisterConnectorCommand.js +36 -0
  7. package/dist-cjs/commands/index.js +4 -0
  8. package/dist-cjs/models/models_0.js +226 -16
  9. package/dist-cjs/pagination/DescribeConnectorsPaginator.js +1 -0
  10. package/dist-cjs/pagination/ListConnectorsPaginator.js +35 -0
  11. package/dist-cjs/pagination/index.js +1 -0
  12. package/dist-cjs/protocols/Aws_restJson1.js +933 -1
  13. package/dist-es/Appflow.js +60 -0
  14. package/dist-es/commands/DescribeConnectorCommand.js +39 -0
  15. package/dist-es/commands/ListConnectorsCommand.js +39 -0
  16. package/dist-es/commands/RegisterConnectorCommand.js +39 -0
  17. package/dist-es/commands/UnregisterConnectorCommand.js +39 -0
  18. package/dist-es/commands/index.js +4 -0
  19. package/dist-es/models/models_0.js +159 -15
  20. package/dist-es/pagination/DescribeConnectorsPaginator.js +1 -0
  21. package/dist-es/pagination/ListConnectorsPaginator.js +74 -0
  22. package/dist-es/pagination/index.js +1 -0
  23. package/dist-es/protocols/Aws_restJson1.js +961 -17
  24. package/dist-types/Appflow.d.ts +38 -4
  25. package/dist-types/AppflowClient.d.ts +6 -2
  26. package/dist-types/commands/CreateConnectorProfileCommand.d.ts +4 -4
  27. package/dist-types/commands/DescribeConnectorCommand.d.ts +37 -0
  28. package/dist-types/commands/ListConnectorsCommand.d.ts +37 -0
  29. package/dist-types/commands/RegisterConnectorCommand.d.ts +36 -0
  30. package/dist-types/commands/UnregisterConnectorCommand.d.ts +36 -0
  31. package/dist-types/commands/index.d.ts +4 -0
  32. package/dist-types/models/models_0.d.ts +887 -42
  33. package/dist-types/pagination/ListConnectorsPaginator.d.ts +4 -0
  34. package/dist-types/pagination/index.d.ts +1 -0
  35. package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
  36. package/dist-types/ts3.4/Appflow.d.ts +20 -0
  37. package/dist-types/ts3.4/AppflowClient.d.ts +6 -2
  38. package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/RegisterConnectorCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/UnregisterConnectorCommand.d.ts +17 -0
  42. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  43. package/dist-types/ts3.4/models/models_0.d.ts +491 -16
  44. package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +4 -0
  45. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  47. package/package.json +39 -33
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "../commands/ListConnectorsCommand";
3
+ import { AppflowPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListConnectors(config: AppflowPaginationConfiguration, input: ListConnectorsCommandInput, ...additionalArguments: any): Paginator<ListConnectorsCommandOutput>;
@@ -2,4 +2,5 @@ export * from "./DescribeConnectorProfilesPaginator";
2
2
  export * from "./DescribeConnectorsPaginator";
3
3
  export * from "./DescribeFlowExecutionRecordsPaginator";
4
4
  export * from "./Interfaces";
5
+ export * from "./ListConnectorsPaginator";
5
6
  export * from "./ListFlowsPaginator";
@@ -4,17 +4,21 @@ import { CreateConnectorProfileCommandInput, CreateConnectorProfileCommandOutput
4
4
  import { CreateFlowCommandInput, CreateFlowCommandOutput } from "../commands/CreateFlowCommand";
5
5
  import { DeleteConnectorProfileCommandInput, DeleteConnectorProfileCommandOutput } from "../commands/DeleteConnectorProfileCommand";
6
6
  import { DeleteFlowCommandInput, DeleteFlowCommandOutput } from "../commands/DeleteFlowCommand";
7
+ import { DescribeConnectorCommandInput, DescribeConnectorCommandOutput } from "../commands/DescribeConnectorCommand";
7
8
  import { DescribeConnectorEntityCommandInput, DescribeConnectorEntityCommandOutput } from "../commands/DescribeConnectorEntityCommand";
8
9
  import { DescribeConnectorProfilesCommandInput, DescribeConnectorProfilesCommandOutput } from "../commands/DescribeConnectorProfilesCommand";
9
10
  import { DescribeConnectorsCommandInput, DescribeConnectorsCommandOutput } from "../commands/DescribeConnectorsCommand";
10
11
  import { DescribeFlowCommandInput, DescribeFlowCommandOutput } from "../commands/DescribeFlowCommand";
11
12
  import { DescribeFlowExecutionRecordsCommandInput, DescribeFlowExecutionRecordsCommandOutput } from "../commands/DescribeFlowExecutionRecordsCommand";
12
13
  import { ListConnectorEntitiesCommandInput, ListConnectorEntitiesCommandOutput } from "../commands/ListConnectorEntitiesCommand";
14
+ import { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "../commands/ListConnectorsCommand";
13
15
  import { ListFlowsCommandInput, ListFlowsCommandOutput } from "../commands/ListFlowsCommand";
14
16
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
17
+ import { RegisterConnectorCommandInput, RegisterConnectorCommandOutput } from "../commands/RegisterConnectorCommand";
15
18
  import { StartFlowCommandInput, StartFlowCommandOutput } from "../commands/StartFlowCommand";
16
19
  import { StopFlowCommandInput, StopFlowCommandOutput } from "../commands/StopFlowCommand";
17
20
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
21
+ import { UnregisterConnectorCommandInput, UnregisterConnectorCommandOutput } from "../commands/UnregisterConnectorCommand";
18
22
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
19
23
  import { UpdateConnectorProfileCommandInput, UpdateConnectorProfileCommandOutput } from "../commands/UpdateConnectorProfileCommand";
20
24
  import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "../commands/UpdateFlowCommand";
@@ -22,17 +26,21 @@ export declare const serializeAws_restJson1CreateConnectorProfileCommand: (input
22
26
  export declare const serializeAws_restJson1CreateFlowCommand: (input: CreateFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
27
  export declare const serializeAws_restJson1DeleteConnectorProfileCommand: (input: DeleteConnectorProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
28
  export declare const serializeAws_restJson1DeleteFlowCommand: (input: DeleteFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ export declare const serializeAws_restJson1DescribeConnectorCommand: (input: DescribeConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
30
  export declare const serializeAws_restJson1DescribeConnectorEntityCommand: (input: DescribeConnectorEntityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
31
  export declare const serializeAws_restJson1DescribeConnectorProfilesCommand: (input: DescribeConnectorProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
32
  export declare const serializeAws_restJson1DescribeConnectorsCommand: (input: DescribeConnectorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
33
  export declare const serializeAws_restJson1DescribeFlowCommand: (input: DescribeFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
34
  export declare const serializeAws_restJson1DescribeFlowExecutionRecordsCommand: (input: DescribeFlowExecutionRecordsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
35
  export declare const serializeAws_restJson1ListConnectorEntitiesCommand: (input: ListConnectorEntitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
+ export declare const serializeAws_restJson1ListConnectorsCommand: (input: ListConnectorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
37
  export declare const serializeAws_restJson1ListFlowsCommand: (input: ListFlowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
38
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
+ export declare const serializeAws_restJson1RegisterConnectorCommand: (input: RegisterConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
40
  export declare const serializeAws_restJson1StartFlowCommand: (input: StartFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
41
  export declare const serializeAws_restJson1StopFlowCommand: (input: StopFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
42
  export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
+ export declare const serializeAws_restJson1UnregisterConnectorCommand: (input: UnregisterConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
44
  export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
45
  export declare const serializeAws_restJson1UpdateConnectorProfileCommand: (input: UpdateConnectorProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
46
  export declare const serializeAws_restJson1UpdateFlowCommand: (input: UpdateFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -40,17 +48,21 @@ export declare const deserializeAws_restJson1CreateConnectorProfileCommand: (out
40
48
  export declare const deserializeAws_restJson1CreateFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFlowCommandOutput>;
41
49
  export declare const deserializeAws_restJson1DeleteConnectorProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConnectorProfileCommandOutput>;
42
50
  export declare const deserializeAws_restJson1DeleteFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFlowCommandOutput>;
51
+ export declare const deserializeAws_restJson1DescribeConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectorCommandOutput>;
43
52
  export declare const deserializeAws_restJson1DescribeConnectorEntityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectorEntityCommandOutput>;
44
53
  export declare const deserializeAws_restJson1DescribeConnectorProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectorProfilesCommandOutput>;
45
54
  export declare const deserializeAws_restJson1DescribeConnectorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectorsCommandOutput>;
46
55
  export declare const deserializeAws_restJson1DescribeFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFlowCommandOutput>;
47
56
  export declare const deserializeAws_restJson1DescribeFlowExecutionRecordsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFlowExecutionRecordsCommandOutput>;
48
57
  export declare const deserializeAws_restJson1ListConnectorEntitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConnectorEntitiesCommandOutput>;
58
+ export declare const deserializeAws_restJson1ListConnectorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConnectorsCommandOutput>;
49
59
  export declare const deserializeAws_restJson1ListFlowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFlowsCommandOutput>;
50
60
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
61
+ export declare const deserializeAws_restJson1RegisterConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RegisterConnectorCommandOutput>;
51
62
  export declare const deserializeAws_restJson1StartFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartFlowCommandOutput>;
52
63
  export declare const deserializeAws_restJson1StopFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopFlowCommandOutput>;
53
64
  export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
65
+ export declare const deserializeAws_restJson1UnregisterConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UnregisterConnectorCommandOutput>;
54
66
  export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
55
67
  export declare const deserializeAws_restJson1UpdateConnectorProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConnectorProfileCommandOutput>;
56
68
  export declare const deserializeAws_restJson1UpdateFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFlowCommandOutput>;
@@ -4,17 +4,21 @@ import { CreateConnectorProfileCommandInput, CreateConnectorProfileCommandOutput
4
4
  import { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
5
5
  import { DeleteConnectorProfileCommandInput, DeleteConnectorProfileCommandOutput } from "./commands/DeleteConnectorProfileCommand";
6
6
  import { DeleteFlowCommandInput, DeleteFlowCommandOutput } from "./commands/DeleteFlowCommand";
7
+ import { DescribeConnectorCommandInput, DescribeConnectorCommandOutput } from "./commands/DescribeConnectorCommand";
7
8
  import { DescribeConnectorEntityCommandInput, DescribeConnectorEntityCommandOutput } from "./commands/DescribeConnectorEntityCommand";
8
9
  import { DescribeConnectorProfilesCommandInput, DescribeConnectorProfilesCommandOutput } from "./commands/DescribeConnectorProfilesCommand";
9
10
  import { DescribeConnectorsCommandInput, DescribeConnectorsCommandOutput } from "./commands/DescribeConnectorsCommand";
10
11
  import { DescribeFlowCommandInput, DescribeFlowCommandOutput } from "./commands/DescribeFlowCommand";
11
12
  import { DescribeFlowExecutionRecordsCommandInput, DescribeFlowExecutionRecordsCommandOutput } from "./commands/DescribeFlowExecutionRecordsCommand";
12
13
  import { ListConnectorEntitiesCommandInput, ListConnectorEntitiesCommandOutput } from "./commands/ListConnectorEntitiesCommand";
14
+ import { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "./commands/ListConnectorsCommand";
13
15
  import { ListFlowsCommandInput, ListFlowsCommandOutput } from "./commands/ListFlowsCommand";
14
16
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
17
+ import { RegisterConnectorCommandInput, RegisterConnectorCommandOutput } from "./commands/RegisterConnectorCommand";
15
18
  import { StartFlowCommandInput, StartFlowCommandOutput } from "./commands/StartFlowCommand";
16
19
  import { StopFlowCommandInput, StopFlowCommandOutput } from "./commands/StopFlowCommand";
17
20
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
21
+ import { UnregisterConnectorCommandInput, UnregisterConnectorCommandOutput } from "./commands/UnregisterConnectorCommand";
18
22
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
19
23
  import { UpdateConnectorProfileCommandInput, UpdateConnectorProfileCommandOutput } from "./commands/UpdateConnectorProfileCommand";
20
24
  import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "./commands/UpdateFlowCommand";
@@ -37,6 +41,10 @@ export declare class Appflow extends AppflowClient {
37
41
  deleteFlow(args: DeleteFlowCommandInput, cb: (err: any, data?: DeleteFlowCommandOutput) => void): void;
38
42
  deleteFlow(args: DeleteFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFlowCommandOutput) => void): void;
39
43
 
44
+ describeConnector(args: DescribeConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectorCommandOutput>;
45
+ describeConnector(args: DescribeConnectorCommandInput, cb: (err: any, data?: DescribeConnectorCommandOutput) => void): void;
46
+ describeConnector(args: DescribeConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectorCommandOutput) => void): void;
47
+
40
48
  describeConnectorEntity(args: DescribeConnectorEntityCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectorEntityCommandOutput>;
41
49
  describeConnectorEntity(args: DescribeConnectorEntityCommandInput, cb: (err: any, data?: DescribeConnectorEntityCommandOutput) => void): void;
42
50
  describeConnectorEntity(args: DescribeConnectorEntityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectorEntityCommandOutput) => void): void;
@@ -61,6 +69,10 @@ export declare class Appflow extends AppflowClient {
61
69
  listConnectorEntities(args: ListConnectorEntitiesCommandInput, cb: (err: any, data?: ListConnectorEntitiesCommandOutput) => void): void;
62
70
  listConnectorEntities(args: ListConnectorEntitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectorEntitiesCommandOutput) => void): void;
63
71
 
72
+ listConnectors(args: ListConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectorsCommandOutput>;
73
+ listConnectors(args: ListConnectorsCommandInput, cb: (err: any, data?: ListConnectorsCommandOutput) => void): void;
74
+ listConnectors(args: ListConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectorsCommandOutput) => void): void;
75
+
64
76
  listFlows(args: ListFlowsCommandInput, options?: __HttpHandlerOptions): Promise<ListFlowsCommandOutput>;
65
77
  listFlows(args: ListFlowsCommandInput, cb: (err: any, data?: ListFlowsCommandOutput) => void): void;
66
78
  listFlows(args: ListFlowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFlowsCommandOutput) => void): void;
@@ -69,6 +81,10 @@ export declare class Appflow extends AppflowClient {
69
81
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
70
82
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
71
83
 
84
+ registerConnector(args: RegisterConnectorCommandInput, options?: __HttpHandlerOptions): Promise<RegisterConnectorCommandOutput>;
85
+ registerConnector(args: RegisterConnectorCommandInput, cb: (err: any, data?: RegisterConnectorCommandOutput) => void): void;
86
+ registerConnector(args: RegisterConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterConnectorCommandOutput) => void): void;
87
+
72
88
  startFlow(args: StartFlowCommandInput, options?: __HttpHandlerOptions): Promise<StartFlowCommandOutput>;
73
89
  startFlow(args: StartFlowCommandInput, cb: (err: any, data?: StartFlowCommandOutput) => void): void;
74
90
  startFlow(args: StartFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartFlowCommandOutput) => void): void;
@@ -81,6 +97,10 @@ export declare class Appflow extends AppflowClient {
81
97
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
82
98
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
83
99
 
100
+ unregisterConnector(args: UnregisterConnectorCommandInput, options?: __HttpHandlerOptions): Promise<UnregisterConnectorCommandOutput>;
101
+ unregisterConnector(args: UnregisterConnectorCommandInput, cb: (err: any, data?: UnregisterConnectorCommandOutput) => void): void;
102
+ unregisterConnector(args: UnregisterConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UnregisterConnectorCommandOutput) => void): void;
103
+
84
104
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
85
105
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
86
106
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
@@ -10,22 +10,26 @@ import { CreateConnectorProfileCommandInput, CreateConnectorProfileCommandOutput
10
10
  import { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
11
11
  import { DeleteConnectorProfileCommandInput, DeleteConnectorProfileCommandOutput } from "./commands/DeleteConnectorProfileCommand";
12
12
  import { DeleteFlowCommandInput, DeleteFlowCommandOutput } from "./commands/DeleteFlowCommand";
13
+ import { DescribeConnectorCommandInput, DescribeConnectorCommandOutput } from "./commands/DescribeConnectorCommand";
13
14
  import { DescribeConnectorEntityCommandInput, DescribeConnectorEntityCommandOutput } from "./commands/DescribeConnectorEntityCommand";
14
15
  import { DescribeConnectorProfilesCommandInput, DescribeConnectorProfilesCommandOutput } from "./commands/DescribeConnectorProfilesCommand";
15
16
  import { DescribeConnectorsCommandInput, DescribeConnectorsCommandOutput } from "./commands/DescribeConnectorsCommand";
16
17
  import { DescribeFlowCommandInput, DescribeFlowCommandOutput } from "./commands/DescribeFlowCommand";
17
18
  import { DescribeFlowExecutionRecordsCommandInput, DescribeFlowExecutionRecordsCommandOutput } from "./commands/DescribeFlowExecutionRecordsCommand";
18
19
  import { ListConnectorEntitiesCommandInput, ListConnectorEntitiesCommandOutput } from "./commands/ListConnectorEntitiesCommand";
20
+ import { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "./commands/ListConnectorsCommand";
19
21
  import { ListFlowsCommandInput, ListFlowsCommandOutput } from "./commands/ListFlowsCommand";
20
22
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
23
+ import { RegisterConnectorCommandInput, RegisterConnectorCommandOutput } from "./commands/RegisterConnectorCommand";
21
24
  import { StartFlowCommandInput, StartFlowCommandOutput } from "./commands/StartFlowCommand";
22
25
  import { StopFlowCommandInput, StopFlowCommandOutput } from "./commands/StopFlowCommand";
23
26
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
27
+ import { UnregisterConnectorCommandInput, UnregisterConnectorCommandOutput } from "./commands/UnregisterConnectorCommand";
24
28
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
25
29
  import { UpdateConnectorProfileCommandInput, UpdateConnectorProfileCommandOutput } from "./commands/UpdateConnectorProfileCommand";
26
30
  import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "./commands/UpdateFlowCommand";
27
- export declare type ServiceInputTypes = CreateConnectorProfileCommandInput | CreateFlowCommandInput | DeleteConnectorProfileCommandInput | DeleteFlowCommandInput | DescribeConnectorEntityCommandInput | DescribeConnectorProfilesCommandInput | DescribeConnectorsCommandInput | DescribeFlowCommandInput | DescribeFlowExecutionRecordsCommandInput | ListConnectorEntitiesCommandInput | ListFlowsCommandInput | ListTagsForResourceCommandInput | StartFlowCommandInput | StopFlowCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateConnectorProfileCommandInput | UpdateFlowCommandInput;
28
- export declare type ServiceOutputTypes = CreateConnectorProfileCommandOutput | CreateFlowCommandOutput | DeleteConnectorProfileCommandOutput | DeleteFlowCommandOutput | DescribeConnectorEntityCommandOutput | DescribeConnectorProfilesCommandOutput | DescribeConnectorsCommandOutput | DescribeFlowCommandOutput | DescribeFlowExecutionRecordsCommandOutput | ListConnectorEntitiesCommandOutput | ListFlowsCommandOutput | ListTagsForResourceCommandOutput | StartFlowCommandOutput | StopFlowCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateConnectorProfileCommandOutput | UpdateFlowCommandOutput;
31
+ export declare type ServiceInputTypes = CreateConnectorProfileCommandInput | CreateFlowCommandInput | DeleteConnectorProfileCommandInput | DeleteFlowCommandInput | DescribeConnectorCommandInput | DescribeConnectorEntityCommandInput | DescribeConnectorProfilesCommandInput | DescribeConnectorsCommandInput | DescribeFlowCommandInput | DescribeFlowExecutionRecordsCommandInput | ListConnectorEntitiesCommandInput | ListConnectorsCommandInput | ListFlowsCommandInput | ListTagsForResourceCommandInput | RegisterConnectorCommandInput | StartFlowCommandInput | StopFlowCommandInput | TagResourceCommandInput | UnregisterConnectorCommandInput | UntagResourceCommandInput | UpdateConnectorProfileCommandInput | UpdateFlowCommandInput;
32
+ export declare type ServiceOutputTypes = CreateConnectorProfileCommandOutput | CreateFlowCommandOutput | DeleteConnectorProfileCommandOutput | DeleteFlowCommandOutput | DescribeConnectorCommandOutput | DescribeConnectorEntityCommandOutput | DescribeConnectorProfilesCommandOutput | DescribeConnectorsCommandOutput | DescribeFlowCommandOutput | DescribeFlowExecutionRecordsCommandOutput | ListConnectorEntitiesCommandOutput | ListConnectorsCommandOutput | ListFlowsCommandOutput | ListTagsForResourceCommandOutput | RegisterConnectorCommandOutput | StartFlowCommandOutput | StopFlowCommandOutput | TagResourceCommandOutput | UnregisterConnectorCommandOutput | UntagResourceCommandOutput | UpdateConnectorProfileCommandOutput | UpdateFlowCommandOutput;
29
33
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
30
34
 
31
35
  requestHandler?: __HttpHandler;
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient";
4
+ import { DescribeConnectorRequest, DescribeConnectorResponse } from "../models/models_0";
5
+ export interface DescribeConnectorCommandInput extends DescribeConnectorRequest {
6
+ }
7
+ export interface DescribeConnectorCommandOutput extends DescribeConnectorResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeConnectorCommand extends $Command<DescribeConnectorCommandInput, DescribeConnectorCommandOutput, AppflowClientResolvedConfig> {
11
+ readonly input: DescribeConnectorCommandInput;
12
+ constructor(input: DescribeConnectorCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeConnectorCommandInput, DescribeConnectorCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { 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
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { 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
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient";
4
+ import { UnregisterConnectorRequest, UnregisterConnectorResponse } from "../models/models_0";
5
+ export interface UnregisterConnectorCommandInput extends UnregisterConnectorRequest {
6
+ }
7
+ export interface UnregisterConnectorCommandOutput extends UnregisterConnectorResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UnregisterConnectorCommand extends $Command<UnregisterConnectorCommandInput, UnregisterConnectorCommandOutput, AppflowClientResolvedConfig> {
11
+ readonly input: UnregisterConnectorCommandInput;
12
+ constructor(input: UnregisterConnectorCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UnregisterConnectorCommandInput, UnregisterConnectorCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -2,17 +2,21 @@ export * from "./CreateConnectorProfileCommand";
2
2
  export * from "./CreateFlowCommand";
3
3
  export * from "./DeleteConnectorProfileCommand";
4
4
  export * from "./DeleteFlowCommand";
5
+ export * from "./DescribeConnectorCommand";
5
6
  export * from "./DescribeConnectorEntityCommand";
6
7
  export * from "./DescribeConnectorProfilesCommand";
7
8
  export * from "./DescribeConnectorsCommand";
8
9
  export * from "./DescribeFlowCommand";
9
10
  export * from "./DescribeFlowExecutionRecordsCommand";
10
11
  export * from "./ListConnectorEntitiesCommand";
12
+ export * from "./ListConnectorsCommand";
11
13
  export * from "./ListFlowsCommand";
12
14
  export * from "./ListTagsForResourceCommand";
15
+ export * from "./RegisterConnectorCommand";
13
16
  export * from "./StartFlowCommand";
14
17
  export * from "./StopFlowCommand";
15
18
  export * from "./TagResourceCommand";
19
+ export * from "./UnregisterConnectorCommand";
16
20
  export * from "./UntagResourceCommand";
17
21
  export * from "./UpdateConnectorProfileCommand";
18
22
  export * from "./UpdateFlowCommand";