@aws-sdk/client-appflow 3.50.0 → 3.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/AppflowServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +149 -5
- package/dist-cjs/protocols/Aws_restJson1.js +346 -829
- package/dist-es/index.js +1 -0
- package/dist-es/models/AppflowServiceException.js +12 -0
- package/dist-es/models/models_0.js +131 -1
- package/dist-es/protocols/Aws_restJson1.js +580 -930
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/AppflowServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +140 -41
- package/dist-types/ts3.4/Appflow.d.ts +115 -0
- package/dist-types/ts3.4/AppflowClient.d.ts +95 -0
- package/dist-types/ts3.4/commands/CreateConnectorProfileCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateFlowCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteConnectorProfileCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteFlowCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeConnectorEntityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeConnectorProfilesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeConnectorsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeFlowCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeFlowExecutionRecordsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListConnectorEntitiesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListFlowsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RegisterConnectorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartFlowCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StopFlowCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UnregisterConnectorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateConnectorProfileCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateFlowCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +22 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/AppflowServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +2897 -0
- package/dist-types/ts3.4/pagination/DescribeConnectorProfilesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeConnectorsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeFlowExecutionRecordsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListFlowsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +68 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from Appflow service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class AppflowServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,11 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { AppflowServiceException as __BaseException } from "./AppflowServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>AppFlow/Requester has invalid or missing permissions.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "AccessDeniedException";
|
|
7
|
-
$fault: "client";
|
|
8
|
-
|
|
6
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
7
|
+
readonly name: "AccessDeniedException";
|
|
8
|
+
readonly $fault: "client";
|
|
9
|
+
/**
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
13
|
}
|
|
10
14
|
export declare enum AggregationType {
|
|
11
15
|
NONE = "None",
|
|
@@ -257,10 +261,13 @@ export declare namespace BasicAuthCredentials {
|
|
|
257
261
|
* <p> There was a conflict when processing the request (for example, a flow with the given name
|
|
258
262
|
* already exists within the account. Check for conflicting resource names and try again. </p>
|
|
259
263
|
*/
|
|
260
|
-
export
|
|
261
|
-
name: "ConflictException";
|
|
262
|
-
$fault: "client";
|
|
263
|
-
|
|
264
|
+
export declare class ConflictException extends __BaseException {
|
|
265
|
+
readonly name: "ConflictException";
|
|
266
|
+
readonly $fault: "client";
|
|
267
|
+
/**
|
|
268
|
+
* @internal
|
|
269
|
+
*/
|
|
270
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
264
271
|
}
|
|
265
272
|
export declare enum ConnectionMode {
|
|
266
273
|
PRIVATE = "Private",
|
|
@@ -269,10 +276,13 @@ export declare enum ConnectionMode {
|
|
|
269
276
|
/**
|
|
270
277
|
* <p> An error occurred when authenticating with the connector endpoint. </p>
|
|
271
278
|
*/
|
|
272
|
-
export
|
|
273
|
-
name: "ConnectorAuthenticationException";
|
|
274
|
-
$fault: "client";
|
|
275
|
-
|
|
279
|
+
export declare class ConnectorAuthenticationException extends __BaseException {
|
|
280
|
+
readonly name: "ConnectorAuthenticationException";
|
|
281
|
+
readonly $fault: "client";
|
|
282
|
+
/**
|
|
283
|
+
* @internal
|
|
284
|
+
*/
|
|
285
|
+
constructor(opts: __ExceptionOptionType<ConnectorAuthenticationException, __BaseException>);
|
|
276
286
|
}
|
|
277
287
|
/**
|
|
278
288
|
* <p> The connector metadata specific to Amazon Connect Customer Profiles. </p>
|
|
@@ -2659,10 +2669,13 @@ export declare namespace ConnectorProfileConfig {
|
|
|
2659
2669
|
/**
|
|
2660
2670
|
* <p> An error occurred when retrieving data from the connector endpoint. </p>
|
|
2661
2671
|
*/
|
|
2662
|
-
export
|
|
2663
|
-
name: "ConnectorServerException";
|
|
2664
|
-
$fault: "client";
|
|
2665
|
-
|
|
2672
|
+
export declare class ConnectorServerException extends __BaseException {
|
|
2673
|
+
readonly name: "ConnectorServerException";
|
|
2674
|
+
readonly $fault: "client";
|
|
2675
|
+
/**
|
|
2676
|
+
* @internal
|
|
2677
|
+
*/
|
|
2678
|
+
constructor(opts: __ExceptionOptionType<ConnectorServerException, __BaseException>);
|
|
2666
2679
|
}
|
|
2667
2680
|
export interface CreateConnectorProfileRequest {
|
|
2668
2681
|
/**
|
|
@@ -2720,27 +2733,36 @@ export declare namespace CreateConnectorProfileResponse {
|
|
|
2720
2733
|
* <p> An internal service error occurred during the processing of your request. Try again
|
|
2721
2734
|
* later. </p>
|
|
2722
2735
|
*/
|
|
2723
|
-
export
|
|
2724
|
-
name: "InternalServerException";
|
|
2725
|
-
$fault: "server";
|
|
2726
|
-
|
|
2736
|
+
export declare class InternalServerException extends __BaseException {
|
|
2737
|
+
readonly name: "InternalServerException";
|
|
2738
|
+
readonly $fault: "server";
|
|
2739
|
+
/**
|
|
2740
|
+
* @internal
|
|
2741
|
+
*/
|
|
2742
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
2727
2743
|
}
|
|
2728
2744
|
/**
|
|
2729
2745
|
* <p> The request would cause a service quota (such as the number of flows) to be exceeded.
|
|
2730
2746
|
* </p>
|
|
2731
2747
|
*/
|
|
2732
|
-
export
|
|
2733
|
-
name: "ServiceQuotaExceededException";
|
|
2734
|
-
$fault: "client";
|
|
2735
|
-
|
|
2748
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
2749
|
+
readonly name: "ServiceQuotaExceededException";
|
|
2750
|
+
readonly $fault: "client";
|
|
2751
|
+
/**
|
|
2752
|
+
* @internal
|
|
2753
|
+
*/
|
|
2754
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
2736
2755
|
}
|
|
2737
2756
|
/**
|
|
2738
2757
|
* <p> The request has invalid or missing parameters. </p>
|
|
2739
2758
|
*/
|
|
2740
|
-
export
|
|
2741
|
-
name: "ValidationException";
|
|
2742
|
-
$fault: "client";
|
|
2743
|
-
|
|
2759
|
+
export declare class ValidationException extends __BaseException {
|
|
2760
|
+
readonly name: "ValidationException";
|
|
2761
|
+
readonly $fault: "client";
|
|
2762
|
+
/**
|
|
2763
|
+
* @internal
|
|
2764
|
+
*/
|
|
2765
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
2744
2766
|
}
|
|
2745
2767
|
/**
|
|
2746
2768
|
* <p> The settings that determine how Amazon AppFlow handles an error when placing data in the
|
|
@@ -3043,6 +3065,69 @@ export declare namespace SalesforceDestinationProperties {
|
|
|
3043
3065
|
*/
|
|
3044
3066
|
const filterSensitiveLog: (obj: SalesforceDestinationProperties) => any;
|
|
3045
3067
|
}
|
|
3068
|
+
/**
|
|
3069
|
+
* <p>Determines how Amazon AppFlow handles the success response that it gets
|
|
3070
|
+
* from the connector after placing data.</p>
|
|
3071
|
+
* <p>For example, this setting would determine
|
|
3072
|
+
* where to write the response from the destination connector upon a successful insert
|
|
3073
|
+
* operation.</p>
|
|
3074
|
+
*/
|
|
3075
|
+
export interface SuccessResponseHandlingConfig {
|
|
3076
|
+
/**
|
|
3077
|
+
* <p>The Amazon S3 bucket prefix.</p>
|
|
3078
|
+
*/
|
|
3079
|
+
bucketPrefix?: string;
|
|
3080
|
+
/**
|
|
3081
|
+
* <p>The name of the Amazon S3 bucket.</p>
|
|
3082
|
+
*/
|
|
3083
|
+
bucketName?: string;
|
|
3084
|
+
}
|
|
3085
|
+
export declare namespace SuccessResponseHandlingConfig {
|
|
3086
|
+
/**
|
|
3087
|
+
* @internal
|
|
3088
|
+
*/
|
|
3089
|
+
const filterSensitiveLog: (obj: SuccessResponseHandlingConfig) => any;
|
|
3090
|
+
}
|
|
3091
|
+
/**
|
|
3092
|
+
* <p>The properties that are applied when using SAPOData as a flow destination</p>
|
|
3093
|
+
*/
|
|
3094
|
+
export interface SAPODataDestinationProperties {
|
|
3095
|
+
/**
|
|
3096
|
+
* <p>The object path specified in the SAPOData flow destination.</p>
|
|
3097
|
+
*/
|
|
3098
|
+
objectPath: string | undefined;
|
|
3099
|
+
/**
|
|
3100
|
+
* <p>Determines how Amazon AppFlow handles the success response that it gets
|
|
3101
|
+
* from the connector after placing data.</p>
|
|
3102
|
+
* <p>For example, this setting would determine where to write the response from a destination
|
|
3103
|
+
* connector upon a successful insert operation.</p>
|
|
3104
|
+
*/
|
|
3105
|
+
successResponseHandlingConfig?: SuccessResponseHandlingConfig;
|
|
3106
|
+
/**
|
|
3107
|
+
* <p> A list of field names that can be used as an ID field when performing a write operation.
|
|
3108
|
+
* </p>
|
|
3109
|
+
*/
|
|
3110
|
+
idFieldNames?: string[];
|
|
3111
|
+
/**
|
|
3112
|
+
* <p> The settings that determine how Amazon AppFlow handles an error when placing data in the
|
|
3113
|
+
* destination. For example, this setting would determine if the flow should fail after one
|
|
3114
|
+
* insertion error, or continue and attempt to insert every record regardless of the initial
|
|
3115
|
+
* failure. <code>ErrorHandlingConfig</code> is a part of the destination connector details.
|
|
3116
|
+
* </p>
|
|
3117
|
+
*/
|
|
3118
|
+
errorHandlingConfig?: ErrorHandlingConfig;
|
|
3119
|
+
/**
|
|
3120
|
+
* <p> The possible write operations in the destination connector. When this value is not
|
|
3121
|
+
* provided, this defaults to the <code>INSERT</code> operation. </p>
|
|
3122
|
+
*/
|
|
3123
|
+
writeOperationType?: WriteOperationType | string;
|
|
3124
|
+
}
|
|
3125
|
+
export declare namespace SAPODataDestinationProperties {
|
|
3126
|
+
/**
|
|
3127
|
+
* @internal
|
|
3128
|
+
*/
|
|
3129
|
+
const filterSensitiveLog: (obj: SAPODataDestinationProperties) => any;
|
|
3130
|
+
}
|
|
3046
3131
|
/**
|
|
3047
3132
|
* <p> The properties that are applied when Snowflake is being used as a destination. </p>
|
|
3048
3133
|
*/
|
|
@@ -3209,6 +3294,10 @@ export interface DestinationConnectorProperties {
|
|
|
3209
3294
|
* <p>The properties that are required to query the custom Connector.</p>
|
|
3210
3295
|
*/
|
|
3211
3296
|
CustomConnector?: CustomConnectorDestinationProperties;
|
|
3297
|
+
/**
|
|
3298
|
+
* <p>The properties required to query SAPOData.</p>
|
|
3299
|
+
*/
|
|
3300
|
+
SAPOData?: SAPODataDestinationProperties;
|
|
3212
3301
|
}
|
|
3213
3302
|
export declare namespace DestinationConnectorProperties {
|
|
3214
3303
|
/**
|
|
@@ -3682,6 +3771,7 @@ export declare enum TaskType {
|
|
|
3682
3771
|
MAP_ALL = "Map_all",
|
|
3683
3772
|
MASK = "Mask",
|
|
3684
3773
|
MERGE = "Merge",
|
|
3774
|
+
PASSTHROUGH = "Passthrough",
|
|
3685
3775
|
TRUNCATE = "Truncate",
|
|
3686
3776
|
VALIDATE = "Validate"
|
|
3687
3777
|
}
|
|
@@ -3886,10 +3976,13 @@ export declare namespace CreateFlowResponse {
|
|
|
3886
3976
|
* <p> The resource specified in the request (such as the source or destination connector
|
|
3887
3977
|
* profile) is not found. </p>
|
|
3888
3978
|
*/
|
|
3889
|
-
export
|
|
3890
|
-
name: "ResourceNotFoundException";
|
|
3891
|
-
$fault: "client";
|
|
3892
|
-
|
|
3979
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
3980
|
+
readonly name: "ResourceNotFoundException";
|
|
3981
|
+
readonly $fault: "client";
|
|
3982
|
+
/**
|
|
3983
|
+
* @internal
|
|
3984
|
+
*/
|
|
3985
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
3893
3986
|
}
|
|
3894
3987
|
export interface DeleteConnectorProfileRequest {
|
|
3895
3988
|
/**
|
|
@@ -4615,10 +4708,13 @@ export declare namespace RegisterConnectorResponse {
|
|
|
4615
4708
|
* <p>API calls have exceeded the maximum allowed API request rate per account and per Region.
|
|
4616
4709
|
* </p>
|
|
4617
4710
|
*/
|
|
4618
|
-
export
|
|
4619
|
-
name: "ThrottlingException";
|
|
4620
|
-
$fault: "client";
|
|
4621
|
-
|
|
4711
|
+
export declare class ThrottlingException extends __BaseException {
|
|
4712
|
+
readonly name: "ThrottlingException";
|
|
4713
|
+
readonly $fault: "client";
|
|
4714
|
+
/**
|
|
4715
|
+
* @internal
|
|
4716
|
+
*/
|
|
4717
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
4622
4718
|
}
|
|
4623
4719
|
export interface StartFlowRequest {
|
|
4624
4720
|
/**
|
|
@@ -4686,10 +4782,13 @@ export declare namespace StopFlowResponse {
|
|
|
4686
4782
|
/**
|
|
4687
4783
|
* <p> The requested operation is not supported for the current flow. </p>
|
|
4688
4784
|
*/
|
|
4689
|
-
export
|
|
4690
|
-
name: "UnsupportedOperationException";
|
|
4691
|
-
$fault: "client";
|
|
4692
|
-
|
|
4785
|
+
export declare class UnsupportedOperationException extends __BaseException {
|
|
4786
|
+
readonly name: "UnsupportedOperationException";
|
|
4787
|
+
readonly $fault: "client";
|
|
4788
|
+
/**
|
|
4789
|
+
* @internal
|
|
4790
|
+
*/
|
|
4791
|
+
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
4693
4792
|
}
|
|
4694
4793
|
export interface TagResourceRequest {
|
|
4695
4794
|
/**
|
|
@@ -0,0 +1,115 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,95 @@
|
|
|
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 { 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?: (body: any) => number | undefined;
|
|
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 {};
|
|
@@ -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 { 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
|
+
}
|
|
@@ -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 { 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
|
+
}
|
|
@@ -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 { 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
|
+
}
|
|
@@ -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 { 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
|
+
}
|
|
@@ -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 { DescribeConnectorEntityRequest, DescribeConnectorEntityResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeConnectorEntityCommandInput extends DescribeConnectorEntityRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeConnectorEntityCommandOutput extends DescribeConnectorEntityResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeConnectorEntityCommand extends $Command<DescribeConnectorEntityCommandInput, DescribeConnectorEntityCommandOutput, AppflowClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeConnectorEntityCommandInput;
|
|
12
|
+
constructor(input: DescribeConnectorEntityCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeConnectorEntityCommandInput, DescribeConnectorEntityCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -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 { DescribeConnectorProfilesRequest, DescribeConnectorProfilesResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeConnectorProfilesCommandInput extends DescribeConnectorProfilesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeConnectorProfilesCommandOutput extends DescribeConnectorProfilesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeConnectorProfilesCommand extends $Command<DescribeConnectorProfilesCommandInput, DescribeConnectorProfilesCommandOutput, AppflowClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeConnectorProfilesCommandInput;
|
|
12
|
+
constructor(input: DescribeConnectorProfilesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeConnectorProfilesCommandInput, DescribeConnectorProfilesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|