@aws-sdk/client-appflow 3.529.1 → 3.535.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 +8 -1
- package/dist-types/AppflowClient.d.ts +1 -1
- package/dist-types/commands/CancelFlowExecutionsCommand.d.ts +2 -1
- package/dist-types/commands/CreateConnectorProfileCommand.d.ts +2 -1
- package/dist-types/commands/CreateFlowCommand.d.ts +2 -1
- package/dist-types/commands/DeleteConnectorProfileCommand.d.ts +2 -1
- package/dist-types/commands/DeleteFlowCommand.d.ts +2 -1
- package/dist-types/commands/DescribeConnectorCommand.d.ts +2 -1
- package/dist-types/commands/DescribeConnectorEntityCommand.d.ts +2 -1
- package/dist-types/commands/DescribeConnectorProfilesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeConnectorsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeFlowCommand.d.ts +2 -1
- package/dist-types/commands/DescribeFlowExecutionRecordsCommand.d.ts +2 -1
- package/dist-types/commands/ListConnectorEntitiesCommand.d.ts +2 -1
- package/dist-types/commands/ListConnectorsCommand.d.ts +2 -1
- package/dist-types/commands/ListFlowsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/RegisterConnectorCommand.d.ts +2 -1
- package/dist-types/commands/ResetConnectorMetadataCacheCommand.d.ts +2 -1
- package/dist-types/commands/StartFlowCommand.d.ts +2 -1
- package/dist-types/commands/StopFlowCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UnregisterConnectorCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateConnectorProfileCommand.d.ts +2 -1
- package/dist-types/commands/UpdateConnectorRegistrationCommand.d.ts +2 -1
- package/dist-types/commands/UpdateFlowCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +818 -818
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/Appflow.d.ts +7 -0
- package/dist-types/ts3.4/commands/CancelFlowExecutionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateConnectorProfileCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateFlowCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteConnectorProfileCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteFlowCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeConnectorEntityCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeConnectorProfilesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeConnectorsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeFlowCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeFlowExecutionRecordsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListConnectorEntitiesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListFlowsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/RegisterConnectorCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ResetConnectorMetadataCacheCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartFlowCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StopFlowCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UnregisterConnectorCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateConnectorProfileCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateConnectorRegistrationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateFlowCommand.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
- package/package.json +40 -40
package/dist-types/Appflow.d.ts
CHANGED
|
@@ -71,12 +71,14 @@ export interface Appflow {
|
|
|
71
71
|
/**
|
|
72
72
|
* @see {@link DescribeConnectorProfilesCommand}
|
|
73
73
|
*/
|
|
74
|
+
describeConnectorProfiles(): Promise<DescribeConnectorProfilesCommandOutput>;
|
|
74
75
|
describeConnectorProfiles(args: DescribeConnectorProfilesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectorProfilesCommandOutput>;
|
|
75
76
|
describeConnectorProfiles(args: DescribeConnectorProfilesCommandInput, cb: (err: any, data?: DescribeConnectorProfilesCommandOutput) => void): void;
|
|
76
77
|
describeConnectorProfiles(args: DescribeConnectorProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectorProfilesCommandOutput) => void): void;
|
|
77
78
|
/**
|
|
78
79
|
* @see {@link DescribeConnectorsCommand}
|
|
79
80
|
*/
|
|
81
|
+
describeConnectors(): Promise<DescribeConnectorsCommandOutput>;
|
|
80
82
|
describeConnectors(args: DescribeConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectorsCommandOutput>;
|
|
81
83
|
describeConnectors(args: DescribeConnectorsCommandInput, cb: (err: any, data?: DescribeConnectorsCommandOutput) => void): void;
|
|
82
84
|
describeConnectors(args: DescribeConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectorsCommandOutput) => void): void;
|
|
@@ -95,18 +97,21 @@ export interface Appflow {
|
|
|
95
97
|
/**
|
|
96
98
|
* @see {@link ListConnectorEntitiesCommand}
|
|
97
99
|
*/
|
|
100
|
+
listConnectorEntities(): Promise<ListConnectorEntitiesCommandOutput>;
|
|
98
101
|
listConnectorEntities(args: ListConnectorEntitiesCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectorEntitiesCommandOutput>;
|
|
99
102
|
listConnectorEntities(args: ListConnectorEntitiesCommandInput, cb: (err: any, data?: ListConnectorEntitiesCommandOutput) => void): void;
|
|
100
103
|
listConnectorEntities(args: ListConnectorEntitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectorEntitiesCommandOutput) => void): void;
|
|
101
104
|
/**
|
|
102
105
|
* @see {@link ListConnectorsCommand}
|
|
103
106
|
*/
|
|
107
|
+
listConnectors(): Promise<ListConnectorsCommandOutput>;
|
|
104
108
|
listConnectors(args: ListConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectorsCommandOutput>;
|
|
105
109
|
listConnectors(args: ListConnectorsCommandInput, cb: (err: any, data?: ListConnectorsCommandOutput) => void): void;
|
|
106
110
|
listConnectors(args: ListConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectorsCommandOutput) => void): void;
|
|
107
111
|
/**
|
|
108
112
|
* @see {@link ListFlowsCommand}
|
|
109
113
|
*/
|
|
114
|
+
listFlows(): Promise<ListFlowsCommandOutput>;
|
|
110
115
|
listFlows(args: ListFlowsCommandInput, options?: __HttpHandlerOptions): Promise<ListFlowsCommandOutput>;
|
|
111
116
|
listFlows(args: ListFlowsCommandInput, cb: (err: any, data?: ListFlowsCommandOutput) => void): void;
|
|
112
117
|
listFlows(args: ListFlowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFlowsCommandOutput) => void): void;
|
|
@@ -119,12 +124,14 @@ export interface Appflow {
|
|
|
119
124
|
/**
|
|
120
125
|
* @see {@link RegisterConnectorCommand}
|
|
121
126
|
*/
|
|
127
|
+
registerConnector(): Promise<RegisterConnectorCommandOutput>;
|
|
122
128
|
registerConnector(args: RegisterConnectorCommandInput, options?: __HttpHandlerOptions): Promise<RegisterConnectorCommandOutput>;
|
|
123
129
|
registerConnector(args: RegisterConnectorCommandInput, cb: (err: any, data?: RegisterConnectorCommandOutput) => void): void;
|
|
124
130
|
registerConnector(args: RegisterConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterConnectorCommandOutput) => void): void;
|
|
125
131
|
/**
|
|
126
132
|
* @see {@link ResetConnectorMetadataCacheCommand}
|
|
127
133
|
*/
|
|
134
|
+
resetConnectorMetadataCache(): Promise<ResetConnectorMetadataCacheCommandOutput>;
|
|
128
135
|
resetConnectorMetadataCache(args: ResetConnectorMetadataCacheCommandInput, options?: __HttpHandlerOptions): Promise<ResetConnectorMetadataCacheCommandOutput>;
|
|
129
136
|
resetConnectorMetadataCache(args: ResetConnectorMetadataCacheCommandInput, cb: (err: any, data?: ResetConnectorMetadataCacheCommandOutput) => void): void;
|
|
130
137
|
resetConnectorMetadataCache(args: ResetConnectorMetadataCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResetConnectorMetadataCacheCommandOutput) => void): void;
|
|
@@ -178,7 +185,6 @@ export interface Appflow {
|
|
|
178
185
|
updateFlow(args: UpdateFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowCommandOutput) => void): void;
|
|
179
186
|
}
|
|
180
187
|
/**
|
|
181
|
-
* @public
|
|
182
188
|
* <p>Welcome to the Amazon AppFlow API reference. This guide is for developers who need
|
|
183
189
|
* detailed information about the Amazon AppFlow API operations, data types, and errors. </p>
|
|
184
190
|
* <p>Amazon AppFlow is a fully managed integration service that enables you to securely
|
|
@@ -214,6 +220,7 @@ export interface Appflow {
|
|
|
214
220
|
* the <a href="https://help.salesforce.com/articleView?id=remoteaccess_authenticate.htm">
|
|
215
221
|
* <i>Authorize Apps with OAuth</i>
|
|
216
222
|
* </a> documentation.</p>
|
|
223
|
+
* @public
|
|
217
224
|
*/
|
|
218
225
|
export declare class Appflow extends AppflowClient implements Appflow {
|
|
219
226
|
}
|
|
@@ -176,7 +176,6 @@ export type AppflowClientResolvedConfigType = __SmithyResolvedConfiguration<__Ht
|
|
|
176
176
|
export interface AppflowClientResolvedConfig extends AppflowClientResolvedConfigType {
|
|
177
177
|
}
|
|
178
178
|
/**
|
|
179
|
-
* @public
|
|
180
179
|
* <p>Welcome to the Amazon AppFlow API reference. This guide is for developers who need
|
|
181
180
|
* detailed information about the Amazon AppFlow API operations, data types, and errors. </p>
|
|
182
181
|
* <p>Amazon AppFlow is a fully managed integration service that enables you to securely
|
|
@@ -212,6 +211,7 @@ export interface AppflowClientResolvedConfig extends AppflowClientResolvedConfig
|
|
|
212
211
|
* the <a href="https://help.salesforce.com/articleView?id=remoteaccess_authenticate.htm">
|
|
213
212
|
* <i>Authorize Apps with OAuth</i>
|
|
214
213
|
* </a> documentation.</p>
|
|
214
|
+
* @public
|
|
215
215
|
*/
|
|
216
216
|
export declare class AppflowClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, AppflowClientResolvedConfig> {
|
|
217
217
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CancelFlowExecutionsCommandOutput extends CancelFlowExecutionsR
|
|
|
22
22
|
}
|
|
23
23
|
declare const CancelFlowExecutionsCommand_base: {
|
|
24
24
|
new (input: CancelFlowExecutionsCommandInput): import("@smithy/smithy-client").CommandImpl<CancelFlowExecutionsCommandInput, CancelFlowExecutionsCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CancelFlowExecutionsCommandInput): import("@smithy/smithy-client").CommandImpl<CancelFlowExecutionsCommandInput, CancelFlowExecutionsCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Cancels active runs for a flow.</p>
|
|
30
30
|
* <p>You can cancel all of the active runs for a flow, or you can cancel specific runs by
|
|
31
31
|
* providing their IDs.</p>
|
|
@@ -93,6 +93,7 @@ declare const CancelFlowExecutionsCommand_base: {
|
|
|
93
93
|
* @throws {@link AppflowServiceException}
|
|
94
94
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
95
95
|
*
|
|
96
|
+
* @public
|
|
96
97
|
*/
|
|
97
98
|
export declare class CancelFlowExecutionsCommand extends CancelFlowExecutionsCommand_base {
|
|
98
99
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateConnectorProfileCommandOutput extends CreateConnectorProf
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateConnectorProfileCommand_base: {
|
|
24
24
|
new (input: CreateConnectorProfileCommandInput): import("@smithy/smithy-client").CommandImpl<CreateConnectorProfileCommandInput, CreateConnectorProfileCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateConnectorProfileCommandInput): import("@smithy/smithy-client").CommandImpl<CreateConnectorProfileCommandInput, CreateConnectorProfileCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Creates a new connector profile associated with your Amazon Web Services account. There is
|
|
30
30
|
* a soft quota of 100 connector profiles per Amazon Web Services account. If you need more
|
|
31
31
|
* connector profiles than this quota allows, you can submit a request to the Amazon AppFlow
|
|
@@ -315,6 +315,7 @@ declare const CreateConnectorProfileCommand_base: {
|
|
|
315
315
|
* @throws {@link AppflowServiceException}
|
|
316
316
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
317
317
|
*
|
|
318
|
+
* @public
|
|
318
319
|
*/
|
|
319
320
|
export declare class CreateConnectorProfileCommand extends CreateConnectorProfileCommand_base {
|
|
320
321
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateFlowCommand_base: {
|
|
24
24
|
new (input: CreateFlowCommandInput): import("@smithy/smithy-client").CommandImpl<CreateFlowCommandInput, CreateFlowCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateFlowCommandInput): import("@smithy/smithy-client").CommandImpl<CreateFlowCommandInput, CreateFlowCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Enables your application to create a new flow using Amazon AppFlow. You must create
|
|
30
30
|
* a connector profile before calling this API. Please note that the Request Syntax below shows
|
|
31
31
|
* syntax for multiple destinations, however, you can only transfer data to one item in this list
|
|
@@ -365,6 +365,7 @@ declare const CreateFlowCommand_base: {
|
|
|
365
365
|
* @throws {@link AppflowServiceException}
|
|
366
366
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
367
367
|
*
|
|
368
|
+
* @public
|
|
368
369
|
*/
|
|
369
370
|
export declare class CreateFlowCommand extends CreateFlowCommand_base {
|
|
370
371
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteConnectorProfileCommandOutput extends DeleteConnectorProf
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteConnectorProfileCommand_base: {
|
|
24
24
|
new (input: DeleteConnectorProfileCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteConnectorProfileCommandInput, DeleteConnectorProfileCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteConnectorProfileCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteConnectorProfileCommandInput, DeleteConnectorProfileCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Enables you to delete an existing connector profile. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -64,6 +64,7 @@ declare const DeleteConnectorProfileCommand_base: {
|
|
|
64
64
|
* @throws {@link AppflowServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class DeleteConnectorProfileCommand extends DeleteConnectorProfileCommand_base {
|
|
69
70
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteFlowCommandOutput extends DeleteFlowResponse, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteFlowCommand_base: {
|
|
24
24
|
new (input: DeleteFlowCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteFlowCommandInput, DeleteFlowCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteFlowCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteFlowCommandInput, DeleteFlowCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Enables your application to delete an existing flow. Before deleting the flow, Amazon AppFlow validates the request by checking the flow configuration and status. You can
|
|
30
30
|
* delete flows one at a time. </p>
|
|
31
31
|
* @example
|
|
@@ -65,6 +65,7 @@ declare const DeleteFlowCommand_base: {
|
|
|
65
65
|
* @throws {@link AppflowServiceException}
|
|
66
66
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
67
67
|
*
|
|
68
|
+
* @public
|
|
68
69
|
*/
|
|
69
70
|
export declare class DeleteFlowCommand extends DeleteFlowCommand_base {
|
|
70
71
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeConnectorCommandOutput extends DescribeConnectorRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeConnectorCommand_base: {
|
|
24
24
|
new (input: DescribeConnectorCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeConnectorCommandInput, DescribeConnectorCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeConnectorCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeConnectorCommandInput, DescribeConnectorCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Describes the given custom connector registered in your Amazon Web Services account. This
|
|
30
30
|
* API can be used for custom connectors that are registered in your account and also for Amazon
|
|
31
31
|
* authored connectors.</p>
|
|
@@ -233,6 +233,7 @@ declare const DescribeConnectorCommand_base: {
|
|
|
233
233
|
* @throws {@link AppflowServiceException}
|
|
234
234
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
235
235
|
*
|
|
236
|
+
* @public
|
|
236
237
|
*/
|
|
237
238
|
export declare class DescribeConnectorCommand extends DescribeConnectorCommand_base {
|
|
238
239
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeConnectorEntityCommandOutput extends DescribeConnectorE
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeConnectorEntityCommand_base: {
|
|
24
24
|
new (input: DescribeConnectorEntityCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeConnectorEntityCommandInput, DescribeConnectorEntityCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeConnectorEntityCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeConnectorEntityCommandInput, DescribeConnectorEntityCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Provides details regarding the entity used with the connector, with a description of the
|
|
30
30
|
* data model for each field in that entity. </p>
|
|
31
31
|
* @example
|
|
@@ -123,6 +123,7 @@ declare const DescribeConnectorEntityCommand_base: {
|
|
|
123
123
|
* @throws {@link AppflowServiceException}
|
|
124
124
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
125
125
|
*
|
|
126
|
+
* @public
|
|
126
127
|
*/
|
|
127
128
|
export declare class DescribeConnectorEntityCommand extends DescribeConnectorEntityCommand_base {
|
|
128
129
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeConnectorProfilesCommandOutput extends DescribeConnecto
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeConnectorProfilesCommand_base: {
|
|
24
24
|
new (input: DescribeConnectorProfilesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeConnectorProfilesCommandInput, DescribeConnectorProfilesCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeConnectorProfilesCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeConnectorProfilesCommandInput, DescribeConnectorProfilesCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Returns a list of <code>connector-profile</code> details matching the provided
|
|
30
30
|
* <code>connector-profile</code> names and <code>connector-types</code>. Both input lists are
|
|
31
31
|
* optional, and you can use them to filter the result. </p>
|
|
@@ -176,6 +176,7 @@ declare const DescribeConnectorProfilesCommand_base: {
|
|
|
176
176
|
* @throws {@link AppflowServiceException}
|
|
177
177
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
178
178
|
*
|
|
179
|
+
* @public
|
|
179
180
|
*/
|
|
180
181
|
export declare class DescribeConnectorProfilesCommand extends DescribeConnectorProfilesCommand_base {
|
|
181
182
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeConnectorsCommandOutput extends DescribeConnectorsRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeConnectorsCommand_base: {
|
|
24
24
|
new (input: DescribeConnectorsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeConnectorsCommandInput, DescribeConnectorsCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeConnectorsCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeConnectorsCommandInput, DescribeConnectorsCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Describes the connectors vended by Amazon AppFlow for specified connector types. If
|
|
30
30
|
* you don't specify a connector type, this operation describes all connectors vended by Amazon AppFlow. If there are more connectors than can be returned in one page, the response
|
|
31
31
|
* contains a <code>nextToken</code> object, which can be be passed in to the next call to the
|
|
@@ -256,6 +256,7 @@ declare const DescribeConnectorsCommand_base: {
|
|
|
256
256
|
* @throws {@link AppflowServiceException}
|
|
257
257
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
258
258
|
*
|
|
259
|
+
* @public
|
|
259
260
|
*/
|
|
260
261
|
export declare class DescribeConnectorsCommand extends DescribeConnectorsCommand_base {
|
|
261
262
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeFlowCommandOutput extends DescribeFlowResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeFlowCommand_base: {
|
|
24
24
|
new (input: DescribeFlowCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeFlowCommandInput, DescribeFlowCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeFlowCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeFlowCommandInput, DescribeFlowCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Provides a description of the specified flow. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -368,6 +368,7 @@ declare const DescribeFlowCommand_base: {
|
|
|
368
368
|
* @throws {@link AppflowServiceException}
|
|
369
369
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
370
370
|
*
|
|
371
|
+
* @public
|
|
371
372
|
*/
|
|
372
373
|
export declare class DescribeFlowCommand extends DescribeFlowCommand_base {
|
|
373
374
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeFlowExecutionRecordsCommandOutput extends DescribeFlowE
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeFlowExecutionRecordsCommand_base: {
|
|
24
24
|
new (input: DescribeFlowExecutionRecordsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeFlowExecutionRecordsCommandInput, DescribeFlowExecutionRecordsCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeFlowExecutionRecordsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeFlowExecutionRecordsCommandInput, DescribeFlowExecutionRecordsCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Fetches the execution history of the flow. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -103,6 +103,7 @@ declare const DescribeFlowExecutionRecordsCommand_base: {
|
|
|
103
103
|
* @throws {@link AppflowServiceException}
|
|
104
104
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
105
105
|
*
|
|
106
|
+
* @public
|
|
106
107
|
*/
|
|
107
108
|
export declare class DescribeFlowExecutionRecordsCommand extends DescribeFlowExecutionRecordsCommand_base {
|
|
108
109
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListConnectorEntitiesCommandOutput extends ListConnectorEntitie
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListConnectorEntitiesCommand_base: {
|
|
24
24
|
new (input: ListConnectorEntitiesCommandInput): import("@smithy/smithy-client").CommandImpl<ListConnectorEntitiesCommandInput, ListConnectorEntitiesCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListConnectorEntitiesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListConnectorEntitiesCommandInput, ListConnectorEntitiesCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Returns the list of available connector entities supported by Amazon AppFlow. For
|
|
30
30
|
* example, you can query Salesforce for <i>Account</i> and
|
|
31
31
|
* <i>Opportunity</i> entities, or query ServiceNow for the
|
|
@@ -87,6 +87,7 @@ declare const ListConnectorEntitiesCommand_base: {
|
|
|
87
87
|
* @throws {@link AppflowServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
89
89
|
*
|
|
90
|
+
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class ListConnectorEntitiesCommand extends ListConnectorEntitiesCommand_base {
|
|
92
93
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListConnectorsCommand_base: {
|
|
24
24
|
new (input: ListConnectorsCommandInput): import("@smithy/smithy-client").CommandImpl<ListConnectorsCommandInput, ListConnectorsCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListConnectorsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListConnectorsCommandInput, ListConnectorsCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the list of all registered custom connectors in your Amazon Web Services account.
|
|
30
30
|
* This API lists only custom connectors registered in this account, not the Amazon Web Services
|
|
31
31
|
* authored connectors. </p>
|
|
@@ -83,6 +83,7 @@ declare const ListConnectorsCommand_base: {
|
|
|
83
83
|
* @throws {@link AppflowServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
85
85
|
*
|
|
86
|
+
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class ListConnectorsCommand extends ListConnectorsCommand_base {
|
|
88
89
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListFlowsCommandOutput extends ListFlowsResponse, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListFlowsCommand_base: {
|
|
24
24
|
new (input: ListFlowsCommandInput): import("@smithy/smithy-client").CommandImpl<ListFlowsCommandInput, ListFlowsCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListFlowsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListFlowsCommandInput, ListFlowsCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Lists all of the flows associated with your account. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -86,6 +86,7 @@ declare const ListFlowsCommand_base: {
|
|
|
86
86
|
* @throws {@link AppflowServiceException}
|
|
87
87
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
88
88
|
*
|
|
89
|
+
* @public
|
|
89
90
|
*/
|
|
90
91
|
export declare class ListFlowsCommand extends ListFlowsCommand_base {
|
|
91
92
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Retrieves the tags that are associated with a specified flow. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -66,6 +66,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
66
66
|
* @throws {@link AppflowServiceException}
|
|
67
67
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
68
68
|
*
|
|
69
|
+
* @public
|
|
69
70
|
*/
|
|
70
71
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
71
72
|
}
|
|
@@ -22,10 +22,10 @@ export interface RegisterConnectorCommandOutput extends RegisterConnectorRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const RegisterConnectorCommand_base: {
|
|
24
24
|
new (input: RegisterConnectorCommandInput): import("@smithy/smithy-client").CommandImpl<RegisterConnectorCommandInput, RegisterConnectorCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [RegisterConnectorCommandInput]): import("@smithy/smithy-client").CommandImpl<RegisterConnectorCommandInput, RegisterConnectorCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Registers a new custom connector with your Amazon Web Services account. Before you can
|
|
30
30
|
* register the connector, you must deploy the associated AWS lambda function in your
|
|
31
31
|
* account.</p>
|
|
@@ -95,6 +95,7 @@ declare const RegisterConnectorCommand_base: {
|
|
|
95
95
|
* @throws {@link AppflowServiceException}
|
|
96
96
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
97
97
|
*
|
|
98
|
+
* @public
|
|
98
99
|
*/
|
|
99
100
|
export declare class RegisterConnectorCommand extends RegisterConnectorCommand_base {
|
|
100
101
|
}
|
|
@@ -22,10 +22,10 @@ export interface ResetConnectorMetadataCacheCommandOutput extends ResetConnector
|
|
|
22
22
|
}
|
|
23
23
|
declare const ResetConnectorMetadataCacheCommand_base: {
|
|
24
24
|
new (input: ResetConnectorMetadataCacheCommandInput): import("@smithy/smithy-client").CommandImpl<ResetConnectorMetadataCacheCommandInput, ResetConnectorMetadataCacheCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ResetConnectorMetadataCacheCommandInput]): import("@smithy/smithy-client").CommandImpl<ResetConnectorMetadataCacheCommandInput, ResetConnectorMetadataCacheCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Resets metadata about your connector entities that Amazon AppFlow stored in its
|
|
30
30
|
* cache. Use this action when you want Amazon AppFlow to return the latest information
|
|
31
31
|
* about the data that you have in a source application.</p>
|
|
@@ -76,6 +76,7 @@ declare const ResetConnectorMetadataCacheCommand_base: {
|
|
|
76
76
|
* @throws {@link AppflowServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
78
78
|
*
|
|
79
|
+
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class ResetConnectorMetadataCacheCommand extends ResetConnectorMetadataCacheCommand_base {
|
|
81
82
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartFlowCommandOutput extends StartFlowResponse, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartFlowCommand_base: {
|
|
24
24
|
new (input: StartFlowCommandInput): import("@smithy/smithy-client").CommandImpl<StartFlowCommandInput, StartFlowCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartFlowCommandInput): import("@smithy/smithy-client").CommandImpl<StartFlowCommandInput, StartFlowCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Activates an existing flow. For on-demand flows, this operation runs the flow
|
|
30
30
|
* immediately. For schedule and event-triggered flows, this operation activates the flow. </p>
|
|
31
31
|
* @example
|
|
@@ -73,6 +73,7 @@ declare const StartFlowCommand_base: {
|
|
|
73
73
|
* @throws {@link AppflowServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class StartFlowCommand extends StartFlowCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface StopFlowCommandOutput extends StopFlowResponse, __MetadataBeare
|
|
|
22
22
|
}
|
|
23
23
|
declare const StopFlowCommand_base: {
|
|
24
24
|
new (input: StopFlowCommandInput): import("@smithy/smithy-client").CommandImpl<StopFlowCommandInput, StopFlowCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StopFlowCommandInput): import("@smithy/smithy-client").CommandImpl<StopFlowCommandInput, StopFlowCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Deactivates the existing flow. For on-demand flows, this operation returns an
|
|
30
30
|
* <code>unsupportedOperationException</code> error message. For schedule and event-triggered
|
|
31
31
|
* flows, this operation deactivates the flow. </p>
|
|
@@ -71,6 +71,7 @@ declare const StopFlowCommand_base: {
|
|
|
71
71
|
* @throws {@link AppflowServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
73
73
|
*
|
|
74
|
+
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class StopFlowCommand extends StopFlowCommand_base {
|
|
76
77
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Applies a tag to the specified flow. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -65,6 +65,7 @@ declare const TagResourceCommand_base: {
|
|
|
65
65
|
* @throws {@link AppflowServiceException}
|
|
66
66
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
67
67
|
*
|
|
68
|
+
* @public
|
|
68
69
|
*/
|
|
69
70
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
70
71
|
}
|
|
@@ -22,10 +22,10 @@ export interface UnregisterConnectorCommandOutput extends UnregisterConnectorRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const UnregisterConnectorCommand_base: {
|
|
24
24
|
new (input: UnregisterConnectorCommandInput): import("@smithy/smithy-client").CommandImpl<UnregisterConnectorCommandInput, UnregisterConnectorCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UnregisterConnectorCommandInput): import("@smithy/smithy-client").CommandImpl<UnregisterConnectorCommandInput, UnregisterConnectorCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Unregisters the custom connector registered in your account that matches the connector
|
|
30
30
|
* label provided in the request.</p>
|
|
31
31
|
* @example
|
|
@@ -65,6 +65,7 @@ declare const UnregisterConnectorCommand_base: {
|
|
|
65
65
|
* @throws {@link AppflowServiceException}
|
|
66
66
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
67
67
|
*
|
|
68
|
+
* @public
|
|
68
69
|
*/
|
|
69
70
|
export declare class UnregisterConnectorCommand extends UnregisterConnectorCommand_base {
|
|
70
71
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Removes a tag from the specified flow. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -65,6 +65,7 @@ declare const UntagResourceCommand_base: {
|
|
|
65
65
|
* @throws {@link AppflowServiceException}
|
|
66
66
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
67
67
|
*
|
|
68
|
+
* @public
|
|
68
69
|
*/
|
|
69
70
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
70
71
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateConnectorProfileCommandOutput extends UpdateConnectorProf
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateConnectorProfileCommand_base: {
|
|
24
24
|
new (input: UpdateConnectorProfileCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateConnectorProfileCommandInput, UpdateConnectorProfileCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateConnectorProfileCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateConnectorProfileCommandInput, UpdateConnectorProfileCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Updates a given connector profile associated with your account. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -308,6 +308,7 @@ declare const UpdateConnectorProfileCommand_base: {
|
|
|
308
308
|
* @throws {@link AppflowServiceException}
|
|
309
309
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
310
310
|
*
|
|
311
|
+
* @public
|
|
311
312
|
*/
|
|
312
313
|
export declare class UpdateConnectorProfileCommand extends UpdateConnectorProfileCommand_base {
|
|
313
314
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateConnectorRegistrationCommandOutput extends UpdateConnecto
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateConnectorRegistrationCommand_base: {
|
|
24
24
|
new (input: UpdateConnectorRegistrationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateConnectorRegistrationCommandInput, UpdateConnectorRegistrationCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateConnectorRegistrationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateConnectorRegistrationCommandInput, UpdateConnectorRegistrationCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates a custom connector that you've previously registered. This operation updates the
|
|
30
30
|
* connector with one of the following:</p>
|
|
31
31
|
* <ul>
|
|
@@ -101,6 +101,7 @@ declare const UpdateConnectorRegistrationCommand_base: {
|
|
|
101
101
|
* @throws {@link AppflowServiceException}
|
|
102
102
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
103
103
|
*
|
|
104
|
+
* @public
|
|
104
105
|
*/
|
|
105
106
|
export declare class UpdateConnectorRegistrationCommand extends UpdateConnectorRegistrationCommand_base {
|
|
106
107
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateFlowCommand_base: {
|
|
24
24
|
new (input: UpdateFlowCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateFlowCommandInput, UpdateFlowCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateFlowCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateFlowCommandInput, UpdateFlowCommandOutput, AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Updates an existing flow. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -356,6 +356,7 @@ declare const UpdateFlowCommand_base: {
|
|
|
356
356
|
* @throws {@link AppflowServiceException}
|
|
357
357
|
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
358
358
|
*
|
|
359
|
+
* @public
|
|
359
360
|
*/
|
|
360
361
|
export declare class UpdateFlowCommand extends UpdateFlowCommand_base {
|
|
361
362
|
}
|