@aws-sdk/client-appflow 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.
Files changed (44) hide show
  1. package/CHANGELOG.md +16 -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
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-appflow
9
+
10
+
11
+
12
+
13
+
14
+ # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-appflow
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-appflow
@@ -1,115 +1,400 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { AppflowClient } from "./AppflowClient";
3
- import { CreateConnectorProfileCommandInput, CreateConnectorProfileCommandOutput } from "./commands/CreateConnectorProfileCommand";
4
- import { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
5
- import { DeleteConnectorProfileCommandInput, DeleteConnectorProfileCommandOutput } from "./commands/DeleteConnectorProfileCommand";
6
- import { DeleteFlowCommandInput, DeleteFlowCommandOutput } from "./commands/DeleteFlowCommand";
7
- import { DescribeConnectorCommandInput, DescribeConnectorCommandOutput } from "./commands/DescribeConnectorCommand";
8
- import { DescribeConnectorEntityCommandInput, DescribeConnectorEntityCommandOutput } from "./commands/DescribeConnectorEntityCommand";
9
- import { DescribeConnectorProfilesCommandInput, DescribeConnectorProfilesCommandOutput } from "./commands/DescribeConnectorProfilesCommand";
10
- import { DescribeConnectorsCommandInput, DescribeConnectorsCommandOutput } from "./commands/DescribeConnectorsCommand";
11
- import { DescribeFlowCommandInput, DescribeFlowCommandOutput } from "./commands/DescribeFlowCommand";
12
- import { DescribeFlowExecutionRecordsCommandInput, DescribeFlowExecutionRecordsCommandOutput } from "./commands/DescribeFlowExecutionRecordsCommand";
13
- import { ListConnectorEntitiesCommandInput, ListConnectorEntitiesCommandOutput } from "./commands/ListConnectorEntitiesCommand";
14
- import { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "./commands/ListConnectorsCommand";
15
- import { ListFlowsCommandInput, ListFlowsCommandOutput } from "./commands/ListFlowsCommand";
16
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
17
- import { RegisterConnectorCommandInput, RegisterConnectorCommandOutput } from "./commands/RegisterConnectorCommand";
18
- import { StartFlowCommandInput, StartFlowCommandOutput } from "./commands/StartFlowCommand";
19
- import { StopFlowCommandInput, StopFlowCommandOutput } from "./commands/StopFlowCommand";
20
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
21
- import { UnregisterConnectorCommandInput, UnregisterConnectorCommandOutput } from "./commands/UnregisterConnectorCommand";
22
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
23
- import { UpdateConnectorProfileCommandInput, UpdateConnectorProfileCommandOutput } from "./commands/UpdateConnectorProfileCommand";
24
- import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "./commands/UpdateFlowCommand";
25
-
26
- export declare class Appflow extends AppflowClient {
27
-
28
- createConnectorProfile(args: CreateConnectorProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateConnectorProfileCommandOutput>;
29
- createConnectorProfile(args: CreateConnectorProfileCommandInput, cb: (err: any, data?: CreateConnectorProfileCommandOutput) => void): void;
30
- createConnectorProfile(args: CreateConnectorProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConnectorProfileCommandOutput) => void): void;
31
-
32
- createFlow(args: CreateFlowCommandInput, options?: __HttpHandlerOptions): Promise<CreateFlowCommandOutput>;
33
- createFlow(args: CreateFlowCommandInput, cb: (err: any, data?: CreateFlowCommandOutput) => void): void;
34
- createFlow(args: CreateFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFlowCommandOutput) => void): void;
35
-
36
- deleteConnectorProfile(args: DeleteConnectorProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConnectorProfileCommandOutput>;
37
- deleteConnectorProfile(args: DeleteConnectorProfileCommandInput, cb: (err: any, data?: DeleteConnectorProfileCommandOutput) => void): void;
38
- deleteConnectorProfile(args: DeleteConnectorProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectorProfileCommandOutput) => void): void;
39
-
40
- deleteFlow(args: DeleteFlowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFlowCommandOutput>;
41
- deleteFlow(args: DeleteFlowCommandInput, cb: (err: any, data?: DeleteFlowCommandOutput) => void): void;
42
- deleteFlow(args: DeleteFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFlowCommandOutput) => void): void;
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
-
48
- describeConnectorEntity(args: DescribeConnectorEntityCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectorEntityCommandOutput>;
49
- describeConnectorEntity(args: DescribeConnectorEntityCommandInput, cb: (err: any, data?: DescribeConnectorEntityCommandOutput) => void): void;
50
- describeConnectorEntity(args: DescribeConnectorEntityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectorEntityCommandOutput) => void): void;
51
-
52
- describeConnectorProfiles(args: DescribeConnectorProfilesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectorProfilesCommandOutput>;
53
- describeConnectorProfiles(args: DescribeConnectorProfilesCommandInput, cb: (err: any, data?: DescribeConnectorProfilesCommandOutput) => void): void;
54
- describeConnectorProfiles(args: DescribeConnectorProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectorProfilesCommandOutput) => void): void;
55
-
56
- describeConnectors(args: DescribeConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectorsCommandOutput>;
57
- describeConnectors(args: DescribeConnectorsCommandInput, cb: (err: any, data?: DescribeConnectorsCommandOutput) => void): void;
58
- describeConnectors(args: DescribeConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectorsCommandOutput) => void): void;
59
-
60
- describeFlow(args: DescribeFlowCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFlowCommandOutput>;
61
- describeFlow(args: DescribeFlowCommandInput, cb: (err: any, data?: DescribeFlowCommandOutput) => void): void;
62
- describeFlow(args: DescribeFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFlowCommandOutput) => void): void;
63
-
64
- describeFlowExecutionRecords(args: DescribeFlowExecutionRecordsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFlowExecutionRecordsCommandOutput>;
65
- describeFlowExecutionRecords(args: DescribeFlowExecutionRecordsCommandInput, cb: (err: any, data?: DescribeFlowExecutionRecordsCommandOutput) => void): void;
66
- describeFlowExecutionRecords(args: DescribeFlowExecutionRecordsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFlowExecutionRecordsCommandOutput) => void): void;
67
-
68
- listConnectorEntities(args: ListConnectorEntitiesCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectorEntitiesCommandOutput>;
69
- listConnectorEntities(args: ListConnectorEntitiesCommandInput, cb: (err: any, data?: ListConnectorEntitiesCommandOutput) => void): void;
70
- listConnectorEntities(args: ListConnectorEntitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectorEntitiesCommandOutput) => void): void;
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
-
76
- listFlows(args: ListFlowsCommandInput, options?: __HttpHandlerOptions): Promise<ListFlowsCommandOutput>;
77
- listFlows(args: ListFlowsCommandInput, cb: (err: any, data?: ListFlowsCommandOutput) => void): void;
78
- listFlows(args: ListFlowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFlowsCommandOutput) => void): void;
79
-
80
- listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
81
- listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
82
- listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
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
-
88
- startFlow(args: StartFlowCommandInput, options?: __HttpHandlerOptions): Promise<StartFlowCommandOutput>;
89
- startFlow(args: StartFlowCommandInput, cb: (err: any, data?: StartFlowCommandOutput) => void): void;
90
- startFlow(args: StartFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartFlowCommandOutput) => void): void;
91
-
92
- stopFlow(args: StopFlowCommandInput, options?: __HttpHandlerOptions): Promise<StopFlowCommandOutput>;
93
- stopFlow(args: StopFlowCommandInput, cb: (err: any, data?: StopFlowCommandOutput) => void): void;
94
- stopFlow(args: StopFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopFlowCommandOutput) => void): void;
95
-
96
- tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
97
- tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
98
- tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
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
-
104
- untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
105
- untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
106
- untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
107
-
108
- updateConnectorProfile(args: UpdateConnectorProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConnectorProfileCommandOutput>;
109
- updateConnectorProfile(args: UpdateConnectorProfileCommandInput, cb: (err: any, data?: UpdateConnectorProfileCommandOutput) => void): void;
110
- updateConnectorProfile(args: UpdateConnectorProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConnectorProfileCommandOutput) => void): void;
111
-
112
- updateFlow(args: UpdateFlowCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowCommandOutput>;
113
- updateFlow(args: UpdateFlowCommandInput, cb: (err: any, data?: UpdateFlowCommandOutput) => void): void;
114
- updateFlow(args: UpdateFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowCommandOutput) => void): void;
115
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { AppflowClient } from "./AppflowClient";
3
+ import {
4
+ CreateConnectorProfileCommandInput,
5
+ CreateConnectorProfileCommandOutput,
6
+ } from "./commands/CreateConnectorProfileCommand";
7
+ import {
8
+ CreateFlowCommandInput,
9
+ CreateFlowCommandOutput,
10
+ } from "./commands/CreateFlowCommand";
11
+ import {
12
+ DeleteConnectorProfileCommandInput,
13
+ DeleteConnectorProfileCommandOutput,
14
+ } from "./commands/DeleteConnectorProfileCommand";
15
+ import {
16
+ DeleteFlowCommandInput,
17
+ DeleteFlowCommandOutput,
18
+ } from "./commands/DeleteFlowCommand";
19
+ import {
20
+ DescribeConnectorCommandInput,
21
+ DescribeConnectorCommandOutput,
22
+ } from "./commands/DescribeConnectorCommand";
23
+ import {
24
+ DescribeConnectorEntityCommandInput,
25
+ DescribeConnectorEntityCommandOutput,
26
+ } from "./commands/DescribeConnectorEntityCommand";
27
+ import {
28
+ DescribeConnectorProfilesCommandInput,
29
+ DescribeConnectorProfilesCommandOutput,
30
+ } from "./commands/DescribeConnectorProfilesCommand";
31
+ import {
32
+ DescribeConnectorsCommandInput,
33
+ DescribeConnectorsCommandOutput,
34
+ } from "./commands/DescribeConnectorsCommand";
35
+ import {
36
+ DescribeFlowCommandInput,
37
+ DescribeFlowCommandOutput,
38
+ } from "./commands/DescribeFlowCommand";
39
+ import {
40
+ DescribeFlowExecutionRecordsCommandInput,
41
+ DescribeFlowExecutionRecordsCommandOutput,
42
+ } from "./commands/DescribeFlowExecutionRecordsCommand";
43
+ import {
44
+ ListConnectorEntitiesCommandInput,
45
+ ListConnectorEntitiesCommandOutput,
46
+ } from "./commands/ListConnectorEntitiesCommand";
47
+ import {
48
+ ListConnectorsCommandInput,
49
+ ListConnectorsCommandOutput,
50
+ } from "./commands/ListConnectorsCommand";
51
+ import {
52
+ ListFlowsCommandInput,
53
+ ListFlowsCommandOutput,
54
+ } from "./commands/ListFlowsCommand";
55
+ import {
56
+ ListTagsForResourceCommandInput,
57
+ ListTagsForResourceCommandOutput,
58
+ } from "./commands/ListTagsForResourceCommand";
59
+ import {
60
+ RegisterConnectorCommandInput,
61
+ RegisterConnectorCommandOutput,
62
+ } from "./commands/RegisterConnectorCommand";
63
+ import {
64
+ StartFlowCommandInput,
65
+ StartFlowCommandOutput,
66
+ } from "./commands/StartFlowCommand";
67
+ import {
68
+ StopFlowCommandInput,
69
+ StopFlowCommandOutput,
70
+ } from "./commands/StopFlowCommand";
71
+ import {
72
+ TagResourceCommandInput,
73
+ TagResourceCommandOutput,
74
+ } from "./commands/TagResourceCommand";
75
+ import {
76
+ UnregisterConnectorCommandInput,
77
+ UnregisterConnectorCommandOutput,
78
+ } from "./commands/UnregisterConnectorCommand";
79
+ import {
80
+ UntagResourceCommandInput,
81
+ UntagResourceCommandOutput,
82
+ } from "./commands/UntagResourceCommand";
83
+ import {
84
+ UpdateConnectorProfileCommandInput,
85
+ UpdateConnectorProfileCommandOutput,
86
+ } from "./commands/UpdateConnectorProfileCommand";
87
+ import {
88
+ UpdateFlowCommandInput,
89
+ UpdateFlowCommandOutput,
90
+ } from "./commands/UpdateFlowCommand";
91
+
92
+ export declare class Appflow extends AppflowClient {
93
+ createConnectorProfile(
94
+ args: CreateConnectorProfileCommandInput,
95
+ options?: __HttpHandlerOptions
96
+ ): Promise<CreateConnectorProfileCommandOutput>;
97
+ createConnectorProfile(
98
+ args: CreateConnectorProfileCommandInput,
99
+ cb: (err: any, data?: CreateConnectorProfileCommandOutput) => void
100
+ ): void;
101
+ createConnectorProfile(
102
+ args: CreateConnectorProfileCommandInput,
103
+ options: __HttpHandlerOptions,
104
+ cb: (err: any, data?: CreateConnectorProfileCommandOutput) => void
105
+ ): void;
106
+
107
+ createFlow(
108
+ args: CreateFlowCommandInput,
109
+ options?: __HttpHandlerOptions
110
+ ): Promise<CreateFlowCommandOutput>;
111
+ createFlow(
112
+ args: CreateFlowCommandInput,
113
+ cb: (err: any, data?: CreateFlowCommandOutput) => void
114
+ ): void;
115
+ createFlow(
116
+ args: CreateFlowCommandInput,
117
+ options: __HttpHandlerOptions,
118
+ cb: (err: any, data?: CreateFlowCommandOutput) => void
119
+ ): void;
120
+
121
+ deleteConnectorProfile(
122
+ args: DeleteConnectorProfileCommandInput,
123
+ options?: __HttpHandlerOptions
124
+ ): Promise<DeleteConnectorProfileCommandOutput>;
125
+ deleteConnectorProfile(
126
+ args: DeleteConnectorProfileCommandInput,
127
+ cb: (err: any, data?: DeleteConnectorProfileCommandOutput) => void
128
+ ): void;
129
+ deleteConnectorProfile(
130
+ args: DeleteConnectorProfileCommandInput,
131
+ options: __HttpHandlerOptions,
132
+ cb: (err: any, data?: DeleteConnectorProfileCommandOutput) => void
133
+ ): void;
134
+
135
+ deleteFlow(
136
+ args: DeleteFlowCommandInput,
137
+ options?: __HttpHandlerOptions
138
+ ): Promise<DeleteFlowCommandOutput>;
139
+ deleteFlow(
140
+ args: DeleteFlowCommandInput,
141
+ cb: (err: any, data?: DeleteFlowCommandOutput) => void
142
+ ): void;
143
+ deleteFlow(
144
+ args: DeleteFlowCommandInput,
145
+ options: __HttpHandlerOptions,
146
+ cb: (err: any, data?: DeleteFlowCommandOutput) => void
147
+ ): void;
148
+
149
+ describeConnector(
150
+ args: DescribeConnectorCommandInput,
151
+ options?: __HttpHandlerOptions
152
+ ): Promise<DescribeConnectorCommandOutput>;
153
+ describeConnector(
154
+ args: DescribeConnectorCommandInput,
155
+ cb: (err: any, data?: DescribeConnectorCommandOutput) => void
156
+ ): void;
157
+ describeConnector(
158
+ args: DescribeConnectorCommandInput,
159
+ options: __HttpHandlerOptions,
160
+ cb: (err: any, data?: DescribeConnectorCommandOutput) => void
161
+ ): void;
162
+
163
+ describeConnectorEntity(
164
+ args: DescribeConnectorEntityCommandInput,
165
+ options?: __HttpHandlerOptions
166
+ ): Promise<DescribeConnectorEntityCommandOutput>;
167
+ describeConnectorEntity(
168
+ args: DescribeConnectorEntityCommandInput,
169
+ cb: (err: any, data?: DescribeConnectorEntityCommandOutput) => void
170
+ ): void;
171
+ describeConnectorEntity(
172
+ args: DescribeConnectorEntityCommandInput,
173
+ options: __HttpHandlerOptions,
174
+ cb: (err: any, data?: DescribeConnectorEntityCommandOutput) => void
175
+ ): void;
176
+
177
+ describeConnectorProfiles(
178
+ args: DescribeConnectorProfilesCommandInput,
179
+ options?: __HttpHandlerOptions
180
+ ): Promise<DescribeConnectorProfilesCommandOutput>;
181
+ describeConnectorProfiles(
182
+ args: DescribeConnectorProfilesCommandInput,
183
+ cb: (err: any, data?: DescribeConnectorProfilesCommandOutput) => void
184
+ ): void;
185
+ describeConnectorProfiles(
186
+ args: DescribeConnectorProfilesCommandInput,
187
+ options: __HttpHandlerOptions,
188
+ cb: (err: any, data?: DescribeConnectorProfilesCommandOutput) => void
189
+ ): void;
190
+
191
+ describeConnectors(
192
+ args: DescribeConnectorsCommandInput,
193
+ options?: __HttpHandlerOptions
194
+ ): Promise<DescribeConnectorsCommandOutput>;
195
+ describeConnectors(
196
+ args: DescribeConnectorsCommandInput,
197
+ cb: (err: any, data?: DescribeConnectorsCommandOutput) => void
198
+ ): void;
199
+ describeConnectors(
200
+ args: DescribeConnectorsCommandInput,
201
+ options: __HttpHandlerOptions,
202
+ cb: (err: any, data?: DescribeConnectorsCommandOutput) => void
203
+ ): void;
204
+
205
+ describeFlow(
206
+ args: DescribeFlowCommandInput,
207
+ options?: __HttpHandlerOptions
208
+ ): Promise<DescribeFlowCommandOutput>;
209
+ describeFlow(
210
+ args: DescribeFlowCommandInput,
211
+ cb: (err: any, data?: DescribeFlowCommandOutput) => void
212
+ ): void;
213
+ describeFlow(
214
+ args: DescribeFlowCommandInput,
215
+ options: __HttpHandlerOptions,
216
+ cb: (err: any, data?: DescribeFlowCommandOutput) => void
217
+ ): void;
218
+
219
+ describeFlowExecutionRecords(
220
+ args: DescribeFlowExecutionRecordsCommandInput,
221
+ options?: __HttpHandlerOptions
222
+ ): Promise<DescribeFlowExecutionRecordsCommandOutput>;
223
+ describeFlowExecutionRecords(
224
+ args: DescribeFlowExecutionRecordsCommandInput,
225
+ cb: (err: any, data?: DescribeFlowExecutionRecordsCommandOutput) => void
226
+ ): void;
227
+ describeFlowExecutionRecords(
228
+ args: DescribeFlowExecutionRecordsCommandInput,
229
+ options: __HttpHandlerOptions,
230
+ cb: (err: any, data?: DescribeFlowExecutionRecordsCommandOutput) => void
231
+ ): void;
232
+
233
+ listConnectorEntities(
234
+ args: ListConnectorEntitiesCommandInput,
235
+ options?: __HttpHandlerOptions
236
+ ): Promise<ListConnectorEntitiesCommandOutput>;
237
+ listConnectorEntities(
238
+ args: ListConnectorEntitiesCommandInput,
239
+ cb: (err: any, data?: ListConnectorEntitiesCommandOutput) => void
240
+ ): void;
241
+ listConnectorEntities(
242
+ args: ListConnectorEntitiesCommandInput,
243
+ options: __HttpHandlerOptions,
244
+ cb: (err: any, data?: ListConnectorEntitiesCommandOutput) => void
245
+ ): void;
246
+
247
+ listConnectors(
248
+ args: ListConnectorsCommandInput,
249
+ options?: __HttpHandlerOptions
250
+ ): Promise<ListConnectorsCommandOutput>;
251
+ listConnectors(
252
+ args: ListConnectorsCommandInput,
253
+ cb: (err: any, data?: ListConnectorsCommandOutput) => void
254
+ ): void;
255
+ listConnectors(
256
+ args: ListConnectorsCommandInput,
257
+ options: __HttpHandlerOptions,
258
+ cb: (err: any, data?: ListConnectorsCommandOutput) => void
259
+ ): void;
260
+
261
+ listFlows(
262
+ args: ListFlowsCommandInput,
263
+ options?: __HttpHandlerOptions
264
+ ): Promise<ListFlowsCommandOutput>;
265
+ listFlows(
266
+ args: ListFlowsCommandInput,
267
+ cb: (err: any, data?: ListFlowsCommandOutput) => void
268
+ ): void;
269
+ listFlows(
270
+ args: ListFlowsCommandInput,
271
+ options: __HttpHandlerOptions,
272
+ cb: (err: any, data?: ListFlowsCommandOutput) => void
273
+ ): void;
274
+
275
+ listTagsForResource(
276
+ args: ListTagsForResourceCommandInput,
277
+ options?: __HttpHandlerOptions
278
+ ): Promise<ListTagsForResourceCommandOutput>;
279
+ listTagsForResource(
280
+ args: ListTagsForResourceCommandInput,
281
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
282
+ ): void;
283
+ listTagsForResource(
284
+ args: ListTagsForResourceCommandInput,
285
+ options: __HttpHandlerOptions,
286
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
287
+ ): void;
288
+
289
+ registerConnector(
290
+ args: RegisterConnectorCommandInput,
291
+ options?: __HttpHandlerOptions
292
+ ): Promise<RegisterConnectorCommandOutput>;
293
+ registerConnector(
294
+ args: RegisterConnectorCommandInput,
295
+ cb: (err: any, data?: RegisterConnectorCommandOutput) => void
296
+ ): void;
297
+ registerConnector(
298
+ args: RegisterConnectorCommandInput,
299
+ options: __HttpHandlerOptions,
300
+ cb: (err: any, data?: RegisterConnectorCommandOutput) => void
301
+ ): void;
302
+
303
+ startFlow(
304
+ args: StartFlowCommandInput,
305
+ options?: __HttpHandlerOptions
306
+ ): Promise<StartFlowCommandOutput>;
307
+ startFlow(
308
+ args: StartFlowCommandInput,
309
+ cb: (err: any, data?: StartFlowCommandOutput) => void
310
+ ): void;
311
+ startFlow(
312
+ args: StartFlowCommandInput,
313
+ options: __HttpHandlerOptions,
314
+ cb: (err: any, data?: StartFlowCommandOutput) => void
315
+ ): void;
316
+
317
+ stopFlow(
318
+ args: StopFlowCommandInput,
319
+ options?: __HttpHandlerOptions
320
+ ): Promise<StopFlowCommandOutput>;
321
+ stopFlow(
322
+ args: StopFlowCommandInput,
323
+ cb: (err: any, data?: StopFlowCommandOutput) => void
324
+ ): void;
325
+ stopFlow(
326
+ args: StopFlowCommandInput,
327
+ options: __HttpHandlerOptions,
328
+ cb: (err: any, data?: StopFlowCommandOutput) => void
329
+ ): void;
330
+
331
+ tagResource(
332
+ args: TagResourceCommandInput,
333
+ options?: __HttpHandlerOptions
334
+ ): Promise<TagResourceCommandOutput>;
335
+ tagResource(
336
+ args: TagResourceCommandInput,
337
+ cb: (err: any, data?: TagResourceCommandOutput) => void
338
+ ): void;
339
+ tagResource(
340
+ args: TagResourceCommandInput,
341
+ options: __HttpHandlerOptions,
342
+ cb: (err: any, data?: TagResourceCommandOutput) => void
343
+ ): void;
344
+
345
+ unregisterConnector(
346
+ args: UnregisterConnectorCommandInput,
347
+ options?: __HttpHandlerOptions
348
+ ): Promise<UnregisterConnectorCommandOutput>;
349
+ unregisterConnector(
350
+ args: UnregisterConnectorCommandInput,
351
+ cb: (err: any, data?: UnregisterConnectorCommandOutput) => void
352
+ ): void;
353
+ unregisterConnector(
354
+ args: UnregisterConnectorCommandInput,
355
+ options: __HttpHandlerOptions,
356
+ cb: (err: any, data?: UnregisterConnectorCommandOutput) => void
357
+ ): void;
358
+
359
+ untagResource(
360
+ args: UntagResourceCommandInput,
361
+ options?: __HttpHandlerOptions
362
+ ): Promise<UntagResourceCommandOutput>;
363
+ untagResource(
364
+ args: UntagResourceCommandInput,
365
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
366
+ ): void;
367
+ untagResource(
368
+ args: UntagResourceCommandInput,
369
+ options: __HttpHandlerOptions,
370
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
371
+ ): void;
372
+
373
+ updateConnectorProfile(
374
+ args: UpdateConnectorProfileCommandInput,
375
+ options?: __HttpHandlerOptions
376
+ ): Promise<UpdateConnectorProfileCommandOutput>;
377
+ updateConnectorProfile(
378
+ args: UpdateConnectorProfileCommandInput,
379
+ cb: (err: any, data?: UpdateConnectorProfileCommandOutput) => void
380
+ ): void;
381
+ updateConnectorProfile(
382
+ args: UpdateConnectorProfileCommandInput,
383
+ options: __HttpHandlerOptions,
384
+ cb: (err: any, data?: UpdateConnectorProfileCommandOutput) => void
385
+ ): void;
386
+
387
+ updateFlow(
388
+ args: UpdateFlowCommandInput,
389
+ options?: __HttpHandlerOptions
390
+ ): Promise<UpdateFlowCommandOutput>;
391
+ updateFlow(
392
+ args: UpdateFlowCommandInput,
393
+ cb: (err: any, data?: UpdateFlowCommandOutput) => void
394
+ ): void;
395
+ updateFlow(
396
+ args: UpdateFlowCommandInput,
397
+ options: __HttpHandlerOptions,
398
+ cb: (err: any, data?: UpdateFlowCommandOutput) => void
399
+ ): void;
400
+ }