@aws-sdk/client-appflow 3.50.0 → 3.51.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- 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 +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +2855 -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 +8 -8
|
@@ -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 { UpdateConnectorProfileRequest, UpdateConnectorProfileResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateConnectorProfileCommandInput extends UpdateConnectorProfileRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateConnectorProfileCommandOutput extends UpdateConnectorProfileResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateConnectorProfileCommand extends $Command<UpdateConnectorProfileCommandInput, UpdateConnectorProfileCommandOutput, AppflowClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateConnectorProfileCommandInput;
|
|
12
|
+
constructor(input: UpdateConnectorProfileCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateConnectorProfileCommandInput, UpdateConnectorProfileCommandOutput>;
|
|
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 { UpdateFlowRequest, UpdateFlowResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateFlowCommandInput extends UpdateFlowRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateFlowCommand extends $Command<UpdateFlowCommandInput, UpdateFlowCommandOutput, AppflowClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateFlowCommandInput;
|
|
12
|
+
constructor(input: UpdateFlowCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateFlowCommandInput, UpdateFlowCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export * from "./CreateConnectorProfileCommand";
|
|
2
|
+
export * from "./CreateFlowCommand";
|
|
3
|
+
export * from "./DeleteConnectorProfileCommand";
|
|
4
|
+
export * from "./DeleteFlowCommand";
|
|
5
|
+
export * from "./DescribeConnectorCommand";
|
|
6
|
+
export * from "./DescribeConnectorEntityCommand";
|
|
7
|
+
export * from "./DescribeConnectorProfilesCommand";
|
|
8
|
+
export * from "./DescribeConnectorsCommand";
|
|
9
|
+
export * from "./DescribeFlowCommand";
|
|
10
|
+
export * from "./DescribeFlowExecutionRecordsCommand";
|
|
11
|
+
export * from "./ListConnectorEntitiesCommand";
|
|
12
|
+
export * from "./ListConnectorsCommand";
|
|
13
|
+
export * from "./ListFlowsCommand";
|
|
14
|
+
export * from "./ListTagsForResourceCommand";
|
|
15
|
+
export * from "./RegisterConnectorCommand";
|
|
16
|
+
export * from "./StartFlowCommand";
|
|
17
|
+
export * from "./StopFlowCommand";
|
|
18
|
+
export * from "./TagResourceCommand";
|
|
19
|
+
export * from "./UnregisterConnectorCommand";
|
|
20
|
+
export * from "./UntagResourceCommand";
|
|
21
|
+
export * from "./UpdateConnectorProfileCommand";
|
|
22
|
+
export * from "./UpdateFlowCommand";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|