@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,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeConnectorProfilesCommandInput, DescribeConnectorProfilesCommandOutput } from "../commands/DescribeConnectorProfilesCommand";
3
- import { AppflowPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeConnectorProfiles(config: AppflowPaginationConfiguration, input: DescribeConnectorProfilesCommandInput, ...additionalArguments: any): Paginator<DescribeConnectorProfilesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ DescribeConnectorProfilesCommandInput,
4
+ DescribeConnectorProfilesCommandOutput,
5
+ } from "../commands/DescribeConnectorProfilesCommand";
6
+ import { AppflowPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateDescribeConnectorProfiles(
8
+ config: AppflowPaginationConfiguration,
9
+ input: DescribeConnectorProfilesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<DescribeConnectorProfilesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeConnectorsCommandInput, DescribeConnectorsCommandOutput } from "../commands/DescribeConnectorsCommand";
3
- import { AppflowPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeConnectors(config: AppflowPaginationConfiguration, input: DescribeConnectorsCommandInput, ...additionalArguments: any): Paginator<DescribeConnectorsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ DescribeConnectorsCommandInput,
4
+ DescribeConnectorsCommandOutput,
5
+ } from "../commands/DescribeConnectorsCommand";
6
+ import { AppflowPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateDescribeConnectors(
8
+ config: AppflowPaginationConfiguration,
9
+ input: DescribeConnectorsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<DescribeConnectorsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeFlowExecutionRecordsCommandInput, DescribeFlowExecutionRecordsCommandOutput } from "../commands/DescribeFlowExecutionRecordsCommand";
3
- import { AppflowPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeFlowExecutionRecords(config: AppflowPaginationConfiguration, input: DescribeFlowExecutionRecordsCommandInput, ...additionalArguments: any): Paginator<DescribeFlowExecutionRecordsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ DescribeFlowExecutionRecordsCommandInput,
4
+ DescribeFlowExecutionRecordsCommandOutput,
5
+ } from "../commands/DescribeFlowExecutionRecordsCommand";
6
+ import { AppflowPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateDescribeFlowExecutionRecords(
8
+ config: AppflowPaginationConfiguration,
9
+ input: DescribeFlowExecutionRecordsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<DescribeFlowExecutionRecordsCommandOutput>;
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { Appflow } from "../Appflow";
3
- import { AppflowClient } from "../AppflowClient";
4
- export interface AppflowPaginationConfiguration extends PaginationConfiguration {
5
- client: Appflow | AppflowClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { Appflow } from "../Appflow";
3
+ import { AppflowClient } from "../AppflowClient";
4
+ export interface AppflowPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: Appflow | AppflowClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "../commands/ListConnectorsCommand";
3
- import { AppflowPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListConnectors(config: AppflowPaginationConfiguration, input: ListConnectorsCommandInput, ...additionalArguments: any): Paginator<ListConnectorsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListConnectorsCommandInput,
4
+ ListConnectorsCommandOutput,
5
+ } from "../commands/ListConnectorsCommand";
6
+ import { AppflowPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListConnectors(
8
+ config: AppflowPaginationConfiguration,
9
+ input: ListConnectorsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListConnectorsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListFlowsCommandInput, ListFlowsCommandOutput } from "../commands/ListFlowsCommand";
3
- import { AppflowPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListFlows(config: AppflowPaginationConfiguration, input: ListFlowsCommandInput, ...additionalArguments: any): Paginator<ListFlowsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListFlowsCommandInput,
4
+ ListFlowsCommandOutput,
5
+ } from "../commands/ListFlowsCommand";
6
+ import { AppflowPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListFlows(
8
+ config: AppflowPaginationConfiguration,
9
+ input: ListFlowsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListFlowsCommandOutput>;
@@ -1,6 +1,6 @@
1
- export * from "./DescribeConnectorProfilesPaginator";
2
- export * from "./DescribeConnectorsPaginator";
3
- export * from "./DescribeFlowExecutionRecordsPaginator";
4
- export * from "./Interfaces";
5
- export * from "./ListConnectorsPaginator";
6
- export * from "./ListFlowsPaginator";
1
+ export * from "./DescribeConnectorProfilesPaginator";
2
+ export * from "./DescribeConnectorsPaginator";
3
+ export * from "./DescribeFlowExecutionRecordsPaginator";
4
+ export * from "./Interfaces";
5
+ export * from "./ListConnectorsPaginator";
6
+ export * from "./ListFlowsPaginator";
@@ -1,68 +1,269 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
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
- export declare const serializeAws_restJson1CreateConnectorProfileCommand: (input: CreateConnectorProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- export declare const serializeAws_restJson1CreateFlowCommand: (input: CreateFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_restJson1DeleteConnectorProfileCommand: (input: DeleteConnectorProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_restJson1DeleteFlowCommand: (input: DeleteFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const serializeAws_restJson1DescribeConnectorCommand: (input: DescribeConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_restJson1DescribeConnectorEntityCommand: (input: DescribeConnectorEntityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_restJson1DescribeConnectorProfilesCommand: (input: DescribeConnectorProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_restJson1DescribeConnectorsCommand: (input: DescribeConnectorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1DescribeFlowCommand: (input: DescribeFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1DescribeFlowExecutionRecordsCommand: (input: DescribeFlowExecutionRecordsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1ListConnectorEntitiesCommand: (input: ListConnectorEntitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1ListConnectorsCommand: (input: ListConnectorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1ListFlowsCommand: (input: ListFlowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1RegisterConnectorCommand: (input: RegisterConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1StartFlowCommand: (input: StartFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1StopFlowCommand: (input: StopFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1UnregisterConnectorCommand: (input: UnregisterConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_restJson1UpdateConnectorProfileCommand: (input: UpdateConnectorProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_restJson1UpdateFlowCommand: (input: UpdateFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const deserializeAws_restJson1CreateConnectorProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConnectorProfileCommandOutput>;
48
- export declare const deserializeAws_restJson1CreateFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFlowCommandOutput>;
49
- export declare const deserializeAws_restJson1DeleteConnectorProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConnectorProfileCommandOutput>;
50
- export declare const deserializeAws_restJson1DeleteFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFlowCommandOutput>;
51
- export declare const deserializeAws_restJson1DescribeConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectorCommandOutput>;
52
- export declare const deserializeAws_restJson1DescribeConnectorEntityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectorEntityCommandOutput>;
53
- export declare const deserializeAws_restJson1DescribeConnectorProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectorProfilesCommandOutput>;
54
- export declare const deserializeAws_restJson1DescribeConnectorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectorsCommandOutput>;
55
- export declare const deserializeAws_restJson1DescribeFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFlowCommandOutput>;
56
- export declare const deserializeAws_restJson1DescribeFlowExecutionRecordsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFlowExecutionRecordsCommandOutput>;
57
- export declare const deserializeAws_restJson1ListConnectorEntitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConnectorEntitiesCommandOutput>;
58
- export declare const deserializeAws_restJson1ListConnectorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConnectorsCommandOutput>;
59
- export declare const deserializeAws_restJson1ListFlowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFlowsCommandOutput>;
60
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
61
- export declare const deserializeAws_restJson1RegisterConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RegisterConnectorCommandOutput>;
62
- export declare const deserializeAws_restJson1StartFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartFlowCommandOutput>;
63
- export declare const deserializeAws_restJson1StopFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopFlowCommandOutput>;
64
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
65
- export declare const deserializeAws_restJson1UnregisterConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UnregisterConnectorCommandOutput>;
66
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
67
- export declare const deserializeAws_restJson1UpdateConnectorProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConnectorProfileCommandOutput>;
68
- export declare const deserializeAws_restJson1UpdateFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFlowCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ CreateConnectorProfileCommandInput,
8
+ CreateConnectorProfileCommandOutput,
9
+ } from "../commands/CreateConnectorProfileCommand";
10
+ import {
11
+ CreateFlowCommandInput,
12
+ CreateFlowCommandOutput,
13
+ } from "../commands/CreateFlowCommand";
14
+ import {
15
+ DeleteConnectorProfileCommandInput,
16
+ DeleteConnectorProfileCommandOutput,
17
+ } from "../commands/DeleteConnectorProfileCommand";
18
+ import {
19
+ DeleteFlowCommandInput,
20
+ DeleteFlowCommandOutput,
21
+ } from "../commands/DeleteFlowCommand";
22
+ import {
23
+ DescribeConnectorCommandInput,
24
+ DescribeConnectorCommandOutput,
25
+ } from "../commands/DescribeConnectorCommand";
26
+ import {
27
+ DescribeConnectorEntityCommandInput,
28
+ DescribeConnectorEntityCommandOutput,
29
+ } from "../commands/DescribeConnectorEntityCommand";
30
+ import {
31
+ DescribeConnectorProfilesCommandInput,
32
+ DescribeConnectorProfilesCommandOutput,
33
+ } from "../commands/DescribeConnectorProfilesCommand";
34
+ import {
35
+ DescribeConnectorsCommandInput,
36
+ DescribeConnectorsCommandOutput,
37
+ } from "../commands/DescribeConnectorsCommand";
38
+ import {
39
+ DescribeFlowCommandInput,
40
+ DescribeFlowCommandOutput,
41
+ } from "../commands/DescribeFlowCommand";
42
+ import {
43
+ DescribeFlowExecutionRecordsCommandInput,
44
+ DescribeFlowExecutionRecordsCommandOutput,
45
+ } from "../commands/DescribeFlowExecutionRecordsCommand";
46
+ import {
47
+ ListConnectorEntitiesCommandInput,
48
+ ListConnectorEntitiesCommandOutput,
49
+ } from "../commands/ListConnectorEntitiesCommand";
50
+ import {
51
+ ListConnectorsCommandInput,
52
+ ListConnectorsCommandOutput,
53
+ } from "../commands/ListConnectorsCommand";
54
+ import {
55
+ ListFlowsCommandInput,
56
+ ListFlowsCommandOutput,
57
+ } from "../commands/ListFlowsCommand";
58
+ import {
59
+ ListTagsForResourceCommandInput,
60
+ ListTagsForResourceCommandOutput,
61
+ } from "../commands/ListTagsForResourceCommand";
62
+ import {
63
+ RegisterConnectorCommandInput,
64
+ RegisterConnectorCommandOutput,
65
+ } from "../commands/RegisterConnectorCommand";
66
+ import {
67
+ StartFlowCommandInput,
68
+ StartFlowCommandOutput,
69
+ } from "../commands/StartFlowCommand";
70
+ import {
71
+ StopFlowCommandInput,
72
+ StopFlowCommandOutput,
73
+ } from "../commands/StopFlowCommand";
74
+ import {
75
+ TagResourceCommandInput,
76
+ TagResourceCommandOutput,
77
+ } from "../commands/TagResourceCommand";
78
+ import {
79
+ UnregisterConnectorCommandInput,
80
+ UnregisterConnectorCommandOutput,
81
+ } from "../commands/UnregisterConnectorCommand";
82
+ import {
83
+ UntagResourceCommandInput,
84
+ UntagResourceCommandOutput,
85
+ } from "../commands/UntagResourceCommand";
86
+ import {
87
+ UpdateConnectorProfileCommandInput,
88
+ UpdateConnectorProfileCommandOutput,
89
+ } from "../commands/UpdateConnectorProfileCommand";
90
+ import {
91
+ UpdateFlowCommandInput,
92
+ UpdateFlowCommandOutput,
93
+ } from "../commands/UpdateFlowCommand";
94
+ export declare const serializeAws_restJson1CreateConnectorProfileCommand: (
95
+ input: CreateConnectorProfileCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_restJson1CreateFlowCommand: (
99
+ input: CreateFlowCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_restJson1DeleteConnectorProfileCommand: (
103
+ input: DeleteConnectorProfileCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_restJson1DeleteFlowCommand: (
107
+ input: DeleteFlowCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const serializeAws_restJson1DescribeConnectorCommand: (
111
+ input: DescribeConnectorCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const serializeAws_restJson1DescribeConnectorEntityCommand: (
115
+ input: DescribeConnectorEntityCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const serializeAws_restJson1DescribeConnectorProfilesCommand: (
119
+ input: DescribeConnectorProfilesCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_restJson1DescribeConnectorsCommand: (
123
+ input: DescribeConnectorsCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1DescribeFlowCommand: (
127
+ input: DescribeFlowCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1DescribeFlowExecutionRecordsCommand: (
131
+ input: DescribeFlowExecutionRecordsCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1ListConnectorEntitiesCommand: (
135
+ input: ListConnectorEntitiesCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1ListConnectorsCommand: (
139
+ input: ListConnectorsCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_restJson1ListFlowsCommand: (
143
+ input: ListFlowsCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
147
+ input: ListTagsForResourceCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1RegisterConnectorCommand: (
151
+ input: RegisterConnectorCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1StartFlowCommand: (
155
+ input: StartFlowCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_restJson1StopFlowCommand: (
159
+ input: StopFlowCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_restJson1TagResourceCommand: (
163
+ input: TagResourceCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_restJson1UnregisterConnectorCommand: (
167
+ input: UnregisterConnectorCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_restJson1UntagResourceCommand: (
171
+ input: UntagResourceCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const serializeAws_restJson1UpdateConnectorProfileCommand: (
175
+ input: UpdateConnectorProfileCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const serializeAws_restJson1UpdateFlowCommand: (
179
+ input: UpdateFlowCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const deserializeAws_restJson1CreateConnectorProfileCommand: (
183
+ output: __HttpResponse,
184
+ context: __SerdeContext
185
+ ) => Promise<CreateConnectorProfileCommandOutput>;
186
+ export declare const deserializeAws_restJson1CreateFlowCommand: (
187
+ output: __HttpResponse,
188
+ context: __SerdeContext
189
+ ) => Promise<CreateFlowCommandOutput>;
190
+ export declare const deserializeAws_restJson1DeleteConnectorProfileCommand: (
191
+ output: __HttpResponse,
192
+ context: __SerdeContext
193
+ ) => Promise<DeleteConnectorProfileCommandOutput>;
194
+ export declare const deserializeAws_restJson1DeleteFlowCommand: (
195
+ output: __HttpResponse,
196
+ context: __SerdeContext
197
+ ) => Promise<DeleteFlowCommandOutput>;
198
+ export declare const deserializeAws_restJson1DescribeConnectorCommand: (
199
+ output: __HttpResponse,
200
+ context: __SerdeContext
201
+ ) => Promise<DescribeConnectorCommandOutput>;
202
+ export declare const deserializeAws_restJson1DescribeConnectorEntityCommand: (
203
+ output: __HttpResponse,
204
+ context: __SerdeContext
205
+ ) => Promise<DescribeConnectorEntityCommandOutput>;
206
+ export declare const deserializeAws_restJson1DescribeConnectorProfilesCommand: (
207
+ output: __HttpResponse,
208
+ context: __SerdeContext
209
+ ) => Promise<DescribeConnectorProfilesCommandOutput>;
210
+ export declare const deserializeAws_restJson1DescribeConnectorsCommand: (
211
+ output: __HttpResponse,
212
+ context: __SerdeContext
213
+ ) => Promise<DescribeConnectorsCommandOutput>;
214
+ export declare const deserializeAws_restJson1DescribeFlowCommand: (
215
+ output: __HttpResponse,
216
+ context: __SerdeContext
217
+ ) => Promise<DescribeFlowCommandOutput>;
218
+ export declare const deserializeAws_restJson1DescribeFlowExecutionRecordsCommand: (
219
+ output: __HttpResponse,
220
+ context: __SerdeContext
221
+ ) => Promise<DescribeFlowExecutionRecordsCommandOutput>;
222
+ export declare const deserializeAws_restJson1ListConnectorEntitiesCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<ListConnectorEntitiesCommandOutput>;
226
+ export declare const deserializeAws_restJson1ListConnectorsCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<ListConnectorsCommandOutput>;
230
+ export declare const deserializeAws_restJson1ListFlowsCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<ListFlowsCommandOutput>;
234
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<ListTagsForResourceCommandOutput>;
238
+ export declare const deserializeAws_restJson1RegisterConnectorCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<RegisterConnectorCommandOutput>;
242
+ export declare const deserializeAws_restJson1StartFlowCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<StartFlowCommandOutput>;
246
+ export declare const deserializeAws_restJson1StopFlowCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<StopFlowCommandOutput>;
250
+ export declare const deserializeAws_restJson1TagResourceCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<TagResourceCommandOutput>;
254
+ export declare const deserializeAws_restJson1UnregisterConnectorCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<UnregisterConnectorCommandOutput>;
258
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<UntagResourceCommandOutput>;
262
+ export declare const deserializeAws_restJson1UpdateConnectorProfileCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<UpdateConnectorProfileCommandOutput>;
266
+ export declare const deserializeAws_restJson1UpdateFlowCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<UpdateFlowCommandOutput>;
@@ -1,38 +1,66 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { AppflowClientConfig } from "./AppflowClient";
3
-
4
- export declare const getRuntimeConfig: (config: AppflowClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { AppflowClientConfig } from "./AppflowClient";
3
+
4
+ export declare const getRuntimeConfig: (config: AppflowClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<
7
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
8
+ >;
9
+ base64Decoder: import("@aws-sdk/types").Decoder;
10
+ base64Encoder: import("@aws-sdk/types").Encoder;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ credentialDefaultProvider: (
13
+ input: any
14
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
15
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
16
+ import("@aws-sdk/types").UserAgent
17
+ >;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ region: string | import("@aws-sdk/types").Provider<any>;
20
+ requestHandler:
21
+ | (import("@aws-sdk/types").RequestHandler<
22
+ any,
23
+ any,
24
+ import("@aws-sdk/types").HttpHandlerOptions
25
+ > &
26
+ import("@aws-sdk/protocol-http").HttpHandler)
27
+ | RequestHandler;
28
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
29
+ sha256: import("@aws-sdk/types").HashConstructor;
30
+ streamCollector: import("@aws-sdk/types").StreamCollector;
31
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ utf8Decoder: import("@aws-sdk/types").Decoder;
34
+ utf8Encoder: import("@aws-sdk/types").Encoder;
35
+ apiVersion: string;
36
+ urlParser: import("@aws-sdk/types").UrlParser;
37
+ disableHostPrefix: boolean;
38
+ logger: import("@aws-sdk/types").Logger;
39
+ serviceId: string;
40
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
41
+ endpoint?:
42
+ | string
43
+ | import("@aws-sdk/types").Endpoint
44
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
45
+ | undefined;
46
+ tls?: boolean | undefined;
47
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
48
+ credentials?:
49
+ | import("@aws-sdk/types").Credentials
50
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
51
+ | undefined;
52
+ signer?:
53
+ | import("@aws-sdk/types").RequestSigner
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | undefined;
56
+ signingEscapePath?: boolean | undefined;
57
+ systemClockOffset?: number | undefined;
58
+ signingRegion?: string | undefined;
59
+ signerConstructor?:
60
+ | (new (
61
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
62
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
63
+ ) => import("@aws-sdk/types").RequestSigner)
64
+ | undefined;
65
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
66
+ };