@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,95 +1,261 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { CreateConnectorProfileCommandInput, CreateConnectorProfileCommandOutput } from "./commands/CreateConnectorProfileCommand";
10
- import { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
11
- import { DeleteConnectorProfileCommandInput, DeleteConnectorProfileCommandOutput } from "./commands/DeleteConnectorProfileCommand";
12
- import { DeleteFlowCommandInput, DeleteFlowCommandOutput } from "./commands/DeleteFlowCommand";
13
- import { DescribeConnectorCommandInput, DescribeConnectorCommandOutput } from "./commands/DescribeConnectorCommand";
14
- import { DescribeConnectorEntityCommandInput, DescribeConnectorEntityCommandOutput } from "./commands/DescribeConnectorEntityCommand";
15
- import { DescribeConnectorProfilesCommandInput, DescribeConnectorProfilesCommandOutput } from "./commands/DescribeConnectorProfilesCommand";
16
- import { DescribeConnectorsCommandInput, DescribeConnectorsCommandOutput } from "./commands/DescribeConnectorsCommand";
17
- import { DescribeFlowCommandInput, DescribeFlowCommandOutput } from "./commands/DescribeFlowCommand";
18
- import { DescribeFlowExecutionRecordsCommandInput, DescribeFlowExecutionRecordsCommandOutput } from "./commands/DescribeFlowExecutionRecordsCommand";
19
- import { ListConnectorEntitiesCommandInput, ListConnectorEntitiesCommandOutput } from "./commands/ListConnectorEntitiesCommand";
20
- import { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "./commands/ListConnectorsCommand";
21
- import { ListFlowsCommandInput, ListFlowsCommandOutput } from "./commands/ListFlowsCommand";
22
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
23
- import { RegisterConnectorCommandInput, RegisterConnectorCommandOutput } from "./commands/RegisterConnectorCommand";
24
- import { StartFlowCommandInput, StartFlowCommandOutput } from "./commands/StartFlowCommand";
25
- import { StopFlowCommandInput, StopFlowCommandOutput } from "./commands/StopFlowCommand";
26
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
27
- import { UnregisterConnectorCommandInput, UnregisterConnectorCommandOutput } from "./commands/UnregisterConnectorCommand";
28
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
29
- import { UpdateConnectorProfileCommandInput, UpdateConnectorProfileCommandOutput } from "./commands/UpdateConnectorProfileCommand";
30
- import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "./commands/UpdateFlowCommand";
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;
33
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
34
-
35
- requestHandler?: __HttpHandler;
36
-
37
- sha256?: __HashConstructor;
38
-
39
- urlParser?: __UrlParser;
40
-
41
- bodyLengthChecker?: __BodyLengthCalculator;
42
-
43
- streamCollector?: __StreamCollector;
44
-
45
- base64Decoder?: __Decoder;
46
-
47
- base64Encoder?: __Encoder;
48
-
49
- utf8Decoder?: __Decoder;
50
-
51
- utf8Encoder?: __Encoder;
52
-
53
- runtime?: string;
54
-
55
- disableHostPrefix?: boolean;
56
-
57
- maxAttempts?: number | __Provider<number>;
58
-
59
- retryMode?: string | __Provider<string>;
60
-
61
- logger?: __Logger;
62
-
63
- useDualstackEndpoint?: boolean | __Provider<boolean>;
64
-
65
- useFipsEndpoint?: boolean | __Provider<boolean>;
66
-
67
- serviceId?: string;
68
-
69
- region?: string | __Provider<string>;
70
-
71
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
72
-
73
- regionInfoProvider?: RegionInfoProvider;
74
-
75
- defaultUserAgentProvider?: Provider<__UserAgent>;
76
-
77
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
78
- }
79
- declare type AppflowClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
80
-
81
- export interface AppflowClientConfig extends AppflowClientConfigType {
82
- }
83
- declare type AppflowClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
84
-
85
- export interface AppflowClientResolvedConfig extends AppflowClientResolvedConfigType {
86
- }
87
-
88
- export declare class AppflowClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, AppflowClientResolvedConfig> {
89
-
90
- readonly config: AppflowClientResolvedConfig;
91
- constructor(configuration: AppflowClientConfig);
92
-
93
- destroy(): void;
94
- }
95
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ CreateConnectorProfileCommandInput,
47
+ CreateConnectorProfileCommandOutput,
48
+ } from "./commands/CreateConnectorProfileCommand";
49
+ import {
50
+ CreateFlowCommandInput,
51
+ CreateFlowCommandOutput,
52
+ } from "./commands/CreateFlowCommand";
53
+ import {
54
+ DeleteConnectorProfileCommandInput,
55
+ DeleteConnectorProfileCommandOutput,
56
+ } from "./commands/DeleteConnectorProfileCommand";
57
+ import {
58
+ DeleteFlowCommandInput,
59
+ DeleteFlowCommandOutput,
60
+ } from "./commands/DeleteFlowCommand";
61
+ import {
62
+ DescribeConnectorCommandInput,
63
+ DescribeConnectorCommandOutput,
64
+ } from "./commands/DescribeConnectorCommand";
65
+ import {
66
+ DescribeConnectorEntityCommandInput,
67
+ DescribeConnectorEntityCommandOutput,
68
+ } from "./commands/DescribeConnectorEntityCommand";
69
+ import {
70
+ DescribeConnectorProfilesCommandInput,
71
+ DescribeConnectorProfilesCommandOutput,
72
+ } from "./commands/DescribeConnectorProfilesCommand";
73
+ import {
74
+ DescribeConnectorsCommandInput,
75
+ DescribeConnectorsCommandOutput,
76
+ } from "./commands/DescribeConnectorsCommand";
77
+ import {
78
+ DescribeFlowCommandInput,
79
+ DescribeFlowCommandOutput,
80
+ } from "./commands/DescribeFlowCommand";
81
+ import {
82
+ DescribeFlowExecutionRecordsCommandInput,
83
+ DescribeFlowExecutionRecordsCommandOutput,
84
+ } from "./commands/DescribeFlowExecutionRecordsCommand";
85
+ import {
86
+ ListConnectorEntitiesCommandInput,
87
+ ListConnectorEntitiesCommandOutput,
88
+ } from "./commands/ListConnectorEntitiesCommand";
89
+ import {
90
+ ListConnectorsCommandInput,
91
+ ListConnectorsCommandOutput,
92
+ } from "./commands/ListConnectorsCommand";
93
+ import {
94
+ ListFlowsCommandInput,
95
+ ListFlowsCommandOutput,
96
+ } from "./commands/ListFlowsCommand";
97
+ import {
98
+ ListTagsForResourceCommandInput,
99
+ ListTagsForResourceCommandOutput,
100
+ } from "./commands/ListTagsForResourceCommand";
101
+ import {
102
+ RegisterConnectorCommandInput,
103
+ RegisterConnectorCommandOutput,
104
+ } from "./commands/RegisterConnectorCommand";
105
+ import {
106
+ StartFlowCommandInput,
107
+ StartFlowCommandOutput,
108
+ } from "./commands/StartFlowCommand";
109
+ import {
110
+ StopFlowCommandInput,
111
+ StopFlowCommandOutput,
112
+ } from "./commands/StopFlowCommand";
113
+ import {
114
+ TagResourceCommandInput,
115
+ TagResourceCommandOutput,
116
+ } from "./commands/TagResourceCommand";
117
+ import {
118
+ UnregisterConnectorCommandInput,
119
+ UnregisterConnectorCommandOutput,
120
+ } from "./commands/UnregisterConnectorCommand";
121
+ import {
122
+ UntagResourceCommandInput,
123
+ UntagResourceCommandOutput,
124
+ } from "./commands/UntagResourceCommand";
125
+ import {
126
+ UpdateConnectorProfileCommandInput,
127
+ UpdateConnectorProfileCommandOutput,
128
+ } from "./commands/UpdateConnectorProfileCommand";
129
+ import {
130
+ UpdateFlowCommandInput,
131
+ UpdateFlowCommandOutput,
132
+ } from "./commands/UpdateFlowCommand";
133
+ export declare type ServiceInputTypes =
134
+ | CreateConnectorProfileCommandInput
135
+ | CreateFlowCommandInput
136
+ | DeleteConnectorProfileCommandInput
137
+ | DeleteFlowCommandInput
138
+ | DescribeConnectorCommandInput
139
+ | DescribeConnectorEntityCommandInput
140
+ | DescribeConnectorProfilesCommandInput
141
+ | DescribeConnectorsCommandInput
142
+ | DescribeFlowCommandInput
143
+ | DescribeFlowExecutionRecordsCommandInput
144
+ | ListConnectorEntitiesCommandInput
145
+ | ListConnectorsCommandInput
146
+ | ListFlowsCommandInput
147
+ | ListTagsForResourceCommandInput
148
+ | RegisterConnectorCommandInput
149
+ | StartFlowCommandInput
150
+ | StopFlowCommandInput
151
+ | TagResourceCommandInput
152
+ | UnregisterConnectorCommandInput
153
+ | UntagResourceCommandInput
154
+ | UpdateConnectorProfileCommandInput
155
+ | UpdateFlowCommandInput;
156
+ export declare type ServiceOutputTypes =
157
+ | CreateConnectorProfileCommandOutput
158
+ | CreateFlowCommandOutput
159
+ | DeleteConnectorProfileCommandOutput
160
+ | DeleteFlowCommandOutput
161
+ | DescribeConnectorCommandOutput
162
+ | DescribeConnectorEntityCommandOutput
163
+ | DescribeConnectorProfilesCommandOutput
164
+ | DescribeConnectorsCommandOutput
165
+ | DescribeFlowCommandOutput
166
+ | DescribeFlowExecutionRecordsCommandOutput
167
+ | ListConnectorEntitiesCommandOutput
168
+ | ListConnectorsCommandOutput
169
+ | ListFlowsCommandOutput
170
+ | ListTagsForResourceCommandOutput
171
+ | RegisterConnectorCommandOutput
172
+ | StartFlowCommandOutput
173
+ | StopFlowCommandOutput
174
+ | TagResourceCommandOutput
175
+ | UnregisterConnectorCommandOutput
176
+ | UntagResourceCommandOutput
177
+ | UpdateConnectorProfileCommandOutput
178
+ | UpdateFlowCommandOutput;
179
+ export interface ClientDefaults
180
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
181
+ requestHandler?: __HttpHandler;
182
+
183
+ sha256?: __HashConstructor;
184
+
185
+ urlParser?: __UrlParser;
186
+
187
+ bodyLengthChecker?: __BodyLengthCalculator;
188
+
189
+ streamCollector?: __StreamCollector;
190
+
191
+ base64Decoder?: __Decoder;
192
+
193
+ base64Encoder?: __Encoder;
194
+
195
+ utf8Decoder?: __Decoder;
196
+
197
+ utf8Encoder?: __Encoder;
198
+
199
+ runtime?: string;
200
+
201
+ disableHostPrefix?: boolean;
202
+
203
+ maxAttempts?: number | __Provider<number>;
204
+
205
+ retryMode?: string | __Provider<string>;
206
+
207
+ logger?: __Logger;
208
+
209
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
210
+
211
+ useFipsEndpoint?: boolean | __Provider<boolean>;
212
+
213
+ serviceId?: string;
214
+
215
+ region?: string | __Provider<string>;
216
+
217
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
218
+
219
+ regionInfoProvider?: RegionInfoProvider;
220
+
221
+ defaultUserAgentProvider?: Provider<__UserAgent>;
222
+
223
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
224
+ }
225
+ declare type AppflowClientConfigType = Partial<
226
+ __SmithyConfiguration<__HttpHandlerOptions>
227
+ > &
228
+ ClientDefaults &
229
+ RegionInputConfig &
230
+ EndpointsInputConfig &
231
+ RetryInputConfig &
232
+ HostHeaderInputConfig &
233
+ AwsAuthInputConfig &
234
+ UserAgentInputConfig;
235
+
236
+ export interface AppflowClientConfig extends AppflowClientConfigType {}
237
+ declare type AppflowClientResolvedConfigType =
238
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
239
+ Required<ClientDefaults> &
240
+ RegionResolvedConfig &
241
+ EndpointsResolvedConfig &
242
+ RetryResolvedConfig &
243
+ HostHeaderResolvedConfig &
244
+ AwsAuthResolvedConfig &
245
+ UserAgentResolvedConfig;
246
+
247
+ export interface AppflowClientResolvedConfig
248
+ extends AppflowClientResolvedConfigType {}
249
+
250
+ export declare class AppflowClient extends __Client<
251
+ __HttpHandlerOptions,
252
+ ServiceInputTypes,
253
+ ServiceOutputTypes,
254
+ AppflowClientResolvedConfig
255
+ > {
256
+ readonly config: AppflowClientResolvedConfig;
257
+ constructor(configuration: AppflowClientConfig);
258
+
259
+ destroy(): void;
260
+ }
261
+ export {};
@@ -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 { CreateConnectorProfileRequest, CreateConnectorProfileResponse } from "../models/models_0";
5
- export interface CreateConnectorProfileCommandInput extends CreateConnectorProfileRequest {
6
- }
7
- export interface CreateConnectorProfileCommandOutput extends CreateConnectorProfileResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateConnectorProfileCommand extends $Command<CreateConnectorProfileCommandInput, CreateConnectorProfileCommandOutput, AppflowClientResolvedConfig> {
11
- readonly input: CreateConnectorProfileCommandInput;
12
- constructor(input: CreateConnectorProfileCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateConnectorProfileCommandInput, CreateConnectorProfileCommandOutput>;
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
+ CreateConnectorProfileRequest,
15
+ CreateConnectorProfileResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateConnectorProfileCommandInput
18
+ extends CreateConnectorProfileRequest {}
19
+ export interface CreateConnectorProfileCommandOutput
20
+ extends CreateConnectorProfileResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class CreateConnectorProfileCommand extends $Command<
24
+ CreateConnectorProfileCommandInput,
25
+ CreateConnectorProfileCommandOutput,
26
+ AppflowClientResolvedConfig
27
+ > {
28
+ readonly input: CreateConnectorProfileCommandInput;
29
+ constructor(input: CreateConnectorProfileCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AppflowClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ CreateConnectorProfileCommandInput,
37
+ CreateConnectorProfileCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { CreateFlowRequest, CreateFlowResponse } from "../models/models_0";
5
- export interface CreateFlowCommandInput extends CreateFlowRequest {
6
- }
7
- export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateFlowCommand extends $Command<CreateFlowCommandInput, CreateFlowCommandOutput, AppflowClientResolvedConfig> {
11
- readonly input: CreateFlowCommandInput;
12
- constructor(input: CreateFlowCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFlowCommandInput, CreateFlowCommandOutput>;
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 { CreateFlowRequest, CreateFlowResponse } from "../models/models_0";
14
+ export interface CreateFlowCommandInput extends CreateFlowRequest {}
15
+ export interface CreateFlowCommandOutput
16
+ extends CreateFlowResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class CreateFlowCommand extends $Command<
20
+ CreateFlowCommandInput,
21
+ CreateFlowCommandOutput,
22
+ AppflowClientResolvedConfig
23
+ > {
24
+ readonly input: CreateFlowCommandInput;
25
+ constructor(input: CreateFlowCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: AppflowClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreateFlowCommandInput, CreateFlowCommandOutput>;
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 { DeleteConnectorProfileRequest, DeleteConnectorProfileResponse } from "../models/models_0";
5
- export interface DeleteConnectorProfileCommandInput extends DeleteConnectorProfileRequest {
6
- }
7
- export interface DeleteConnectorProfileCommandOutput extends DeleteConnectorProfileResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteConnectorProfileCommand extends $Command<DeleteConnectorProfileCommandInput, DeleteConnectorProfileCommandOutput, AppflowClientResolvedConfig> {
11
- readonly input: DeleteConnectorProfileCommandInput;
12
- constructor(input: DeleteConnectorProfileCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteConnectorProfileCommandInput, DeleteConnectorProfileCommandOutput>;
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
+ DeleteConnectorProfileRequest,
15
+ DeleteConnectorProfileResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteConnectorProfileCommandInput
18
+ extends DeleteConnectorProfileRequest {}
19
+ export interface DeleteConnectorProfileCommandOutput
20
+ extends DeleteConnectorProfileResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteConnectorProfileCommand extends $Command<
24
+ DeleteConnectorProfileCommandInput,
25
+ DeleteConnectorProfileCommandOutput,
26
+ AppflowClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteConnectorProfileCommandInput;
29
+ constructor(input: DeleteConnectorProfileCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AppflowClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteConnectorProfileCommandInput,
37
+ DeleteConnectorProfileCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { DeleteFlowRequest, DeleteFlowResponse } from "../models/models_0";
5
- export interface DeleteFlowCommandInput extends DeleteFlowRequest {
6
- }
7
- export interface DeleteFlowCommandOutput extends DeleteFlowResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteFlowCommand extends $Command<DeleteFlowCommandInput, DeleteFlowCommandOutput, AppflowClientResolvedConfig> {
11
- readonly input: DeleteFlowCommandInput;
12
- constructor(input: DeleteFlowCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFlowCommandInput, DeleteFlowCommandOutput>;
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 { DeleteFlowRequest, DeleteFlowResponse } from "../models/models_0";
14
+ export interface DeleteFlowCommandInput extends DeleteFlowRequest {}
15
+ export interface DeleteFlowCommandOutput
16
+ extends DeleteFlowResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class DeleteFlowCommand extends $Command<
20
+ DeleteFlowCommandInput,
21
+ DeleteFlowCommandOutput,
22
+ AppflowClientResolvedConfig
23
+ > {
24
+ readonly input: DeleteFlowCommandInput;
25
+ constructor(input: DeleteFlowCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: AppflowClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DeleteFlowCommandInput, DeleteFlowCommandOutput>;
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 { 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
- }
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
+ DescribeConnectorRequest,
15
+ DescribeConnectorResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeConnectorCommandInput
18
+ extends DescribeConnectorRequest {}
19
+ export interface DescribeConnectorCommandOutput
20
+ extends DescribeConnectorResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeConnectorCommand extends $Command<
24
+ DescribeConnectorCommandInput,
25
+ DescribeConnectorCommandOutput,
26
+ AppflowClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeConnectorCommandInput;
29
+ constructor(input: DescribeConnectorCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AppflowClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DescribeConnectorCommandInput, DescribeConnectorCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }