@aws-sdk/client-appflow 3.296.0 → 3.297.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/dist-types/Appflow.d.ts +24 -0
- package/dist-types/AppflowClient.d.ts +24 -4
- package/dist-types/commands/CreateConnectorProfileCommand.d.ts +16 -0
- package/dist-types/commands/CreateFlowCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConnectorProfileCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFlowCommand.d.ts +16 -0
- package/dist-types/commands/DescribeConnectorCommand.d.ts +16 -0
- package/dist-types/commands/DescribeConnectorEntityCommand.d.ts +16 -0
- package/dist-types/commands/DescribeConnectorProfilesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeConnectorsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeFlowCommand.d.ts +16 -0
- package/dist-types/commands/DescribeFlowExecutionRecordsCommand.d.ts +16 -0
- package/dist-types/commands/ListConnectorEntitiesCommand.d.ts +16 -0
- package/dist-types/commands/ListConnectorsCommand.d.ts +16 -0
- package/dist-types/commands/ListFlowsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/RegisterConnectorCommand.d.ts +16 -0
- package/dist-types/commands/StartFlowCommand.d.ts +16 -0
- package/dist-types/commands/StopFlowCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UnregisterConnectorCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConnectorProfileCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConnectorRegistrationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFlowCommand.d.ts +16 -0
- package/dist-types/models/AppflowServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +421 -0
- package/dist-types/pagination/DescribeConnectorProfilesPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeConnectorsPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeFlowExecutionRecordsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListConnectorsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListFlowsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { DescribeConnectorProfilesCommandInput, DescribeConnectorProfilesCommandOutput } from "../commands/DescribeConnectorProfilesCommand";
|
|
3
3
|
import { AppflowPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateDescribeConnectorProfiles(config: AppflowPaginationConfiguration, input: DescribeConnectorProfilesCommandInput, ...additionalArguments: any): Paginator<DescribeConnectorProfilesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { DescribeConnectorsCommandInput, DescribeConnectorsCommandOutput } from "../commands/DescribeConnectorsCommand";
|
|
3
3
|
import { AppflowPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateDescribeConnectors(config: AppflowPaginationConfiguration, input: DescribeConnectorsCommandInput, ...additionalArguments: any): Paginator<DescribeConnectorsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { DescribeFlowExecutionRecordsCommandInput, DescribeFlowExecutionRecordsCommandOutput } from "../commands/DescribeFlowExecutionRecordsCommand";
|
|
3
3
|
import { AppflowPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateDescribeFlowExecutionRecords(config: AppflowPaginationConfiguration, input: DescribeFlowExecutionRecordsCommandInput, ...additionalArguments: any): Paginator<DescribeFlowExecutionRecordsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "../commands/ListConnectorsCommand";
|
|
3
3
|
import { AppflowPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListConnectors(config: AppflowPaginationConfiguration, input: ListConnectorsCommandInput, ...additionalArguments: any): Paginator<ListConnectorsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListFlowsCommandInput, ListFlowsCommandOutput } from "../commands/ListFlowsCommand";
|
|
3
3
|
import { AppflowPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListFlows(config: AppflowPaginationConfiguration, input: ListFlowsCommandInput, ...additionalArguments: any): Paginator<ListFlowsCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appflow",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appflow Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.297.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.296.0",
|