@aws-sdk/client-appflow 3.289.0 → 3.292.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/commands/CreateConnectorProfileCommand.d.ts +19 -0
- package/dist-types/commands/CreateFlowCommand.d.ts +26 -0
- package/dist-types/commands/DeleteConnectorProfileCommand.d.ts +13 -0
- package/dist-types/commands/DeleteFlowCommand.d.ts +13 -0
- package/dist-types/commands/DescribeConnectorCommand.d.ts +12 -0
- package/dist-types/commands/DescribeConnectorEntityCommand.d.ts +18 -0
- package/dist-types/commands/DescribeConnectorProfilesCommand.d.ts +8 -0
- package/dist-types/commands/DescribeConnectorsCommand.d.ts +8 -0
- package/dist-types/commands/DescribeFlowCommand.d.ts +9 -0
- package/dist-types/commands/DescribeFlowExecutionRecordsCommand.d.ts +12 -0
- package/dist-types/commands/ListConnectorEntitiesCommand.d.ts +18 -0
- package/dist-types/commands/ListConnectorsCommand.d.ts +8 -0
- package/dist-types/commands/ListFlowsCommand.d.ts +8 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
- package/dist-types/commands/RegisterConnectorCommand.d.ts +33 -0
- package/dist-types/commands/StartFlowCommand.d.ts +17 -0
- package/dist-types/commands/StopFlowCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +12 -0
- package/dist-types/commands/UnregisterConnectorCommand.d.ts +13 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +12 -0
- package/dist-types/commands/UpdateConnectorProfileCommand.d.ts +19 -0
- package/dist-types/commands/UpdateConnectorRegistrationCommand.d.ts +33 -0
- package/dist-types/commands/UpdateFlowCommand.d.ts +26 -0
- package/package.json +35 -40
|
@@ -33,6 +33,25 @@ export interface CreateConnectorProfileCommandOutput extends CreateConnectorProf
|
|
|
33
33
|
* @see {@link CreateConnectorProfileCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link ConflictException} (client fault)
|
|
37
|
+
* <p> There was a conflict when processing the request (for example, a flow with the given name
|
|
38
|
+
* already exists within the account. Check for conflicting resource names and try again. </p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ConnectorAuthenticationException} (client fault)
|
|
41
|
+
* <p> An error occurred when authenticating with the connector endpoint. </p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalServerException} (server fault)
|
|
44
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
45
|
+
* later. </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
48
|
+
* <p> The request would cause a service quota (such as the number of flows) to be exceeded.
|
|
49
|
+
* </p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ValidationException} (client fault)
|
|
52
|
+
* <p> The request has invalid or missing parameters. </p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
36
55
|
*/
|
|
37
56
|
export declare class CreateConnectorProfileCommand extends $Command<CreateConnectorProfileCommandInput, CreateConnectorProfileCommandOutput, AppflowClientResolvedConfig> {
|
|
38
57
|
readonly input: CreateConnectorProfileCommandInput;
|
|
@@ -33,6 +33,32 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
33
33
|
* @see {@link CreateFlowCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link ConflictException} (client fault)
|
|
37
|
+
* <p> There was a conflict when processing the request (for example, a flow with the given name
|
|
38
|
+
* already exists within the account. Check for conflicting resource names and try again. </p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ConnectorAuthenticationException} (client fault)
|
|
41
|
+
* <p> An error occurred when authenticating with the connector endpoint. </p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ConnectorServerException} (client fault)
|
|
44
|
+
* <p> An error occurred when retrieving data from the connector endpoint. </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InternalServerException} (server fault)
|
|
47
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
48
|
+
* later. </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
52
|
+
* profile) is not found. </p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
55
|
+
* <p> The request would cause a service quota (such as the number of flows) to be exceeded.
|
|
56
|
+
* </p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ValidationException} (client fault)
|
|
59
|
+
* <p> The request has invalid or missing parameters. </p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
36
62
|
*/
|
|
37
63
|
export declare class CreateFlowCommand extends $Command<CreateFlowCommandInput, CreateFlowCommandOutput, AppflowClientResolvedConfig> {
|
|
38
64
|
readonly input: CreateFlowCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface DeleteConnectorProfileCommandOutput extends DeleteConnectorProf
|
|
|
29
29
|
* @see {@link DeleteConnectorProfileCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConflictException} (client fault)
|
|
33
|
+
* <p> There was a conflict when processing the request (for example, a flow with the given name
|
|
34
|
+
* already exists within the account. Check for conflicting resource names and try again. </p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
38
|
+
* later. </p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
42
|
+
* profile) is not found. </p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class DeleteConnectorProfileCommand extends $Command<DeleteConnectorProfileCommandInput, DeleteConnectorProfileCommandOutput, AppflowClientResolvedConfig> {
|
|
34
47
|
readonly input: DeleteConnectorProfileCommandInput;
|
|
@@ -30,6 +30,19 @@ export interface DeleteFlowCommandOutput extends DeleteFlowResponse, __MetadataB
|
|
|
30
30
|
* @see {@link DeleteFlowCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ConflictException} (client fault)
|
|
34
|
+
* <p> There was a conflict when processing the request (for example, a flow with the given name
|
|
35
|
+
* already exists within the account. Check for conflicting resource names and try again. </p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
39
|
+
* later. </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
43
|
+
* profile) is not found. </p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
33
46
|
*/
|
|
34
47
|
export declare class DeleteFlowCommand extends $Command<DeleteFlowCommandInput, DeleteFlowCommandOutput, AppflowClientResolvedConfig> {
|
|
35
48
|
readonly input: DeleteFlowCommandInput;
|
|
@@ -31,6 +31,18 @@ export interface DescribeConnectorCommandOutput extends DescribeConnectorRespons
|
|
|
31
31
|
* @see {@link DescribeConnectorCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalServerException} (server fault)
|
|
35
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
36
|
+
* later. </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
40
|
+
* profile) is not found. </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ValidationException} (client fault)
|
|
43
|
+
* <p> The request has invalid or missing parameters. </p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
34
46
|
*/
|
|
35
47
|
export declare class DescribeConnectorCommand extends $Command<DescribeConnectorCommandInput, DescribeConnectorCommandOutput, AppflowClientResolvedConfig> {
|
|
36
48
|
readonly input: DescribeConnectorCommandInput;
|
|
@@ -30,6 +30,24 @@ export interface DescribeConnectorEntityCommandOutput extends DescribeConnectorE
|
|
|
30
30
|
* @see {@link DescribeConnectorEntityCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ConnectorAuthenticationException} (client fault)
|
|
34
|
+
* <p> An error occurred when authenticating with the connector endpoint. </p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConnectorServerException} (client fault)
|
|
37
|
+
* <p> An error occurred when retrieving data from the connector endpoint. </p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
41
|
+
* later. </p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
44
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
45
|
+
* profile) is not found. </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p> The request has invalid or missing parameters. </p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
33
51
|
*/
|
|
34
52
|
export declare class DescribeConnectorEntityCommand extends $Command<DescribeConnectorEntityCommandInput, DescribeConnectorEntityCommandOutput, AppflowClientResolvedConfig> {
|
|
35
53
|
readonly input: DescribeConnectorEntityCommandInput;
|
|
@@ -33,6 +33,14 @@ export interface DescribeConnectorProfilesCommandOutput extends DescribeConnecto
|
|
|
33
33
|
* @see {@link DescribeConnectorProfilesCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
38
|
+
* later. </p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ValidationException} (client fault)
|
|
41
|
+
* <p> The request has invalid or missing parameters. </p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
36
44
|
*/
|
|
37
45
|
export declare class DescribeConnectorProfilesCommand extends $Command<DescribeConnectorProfilesCommandInput, DescribeConnectorProfilesCommandOutput, AppflowClientResolvedConfig> {
|
|
38
46
|
readonly input: DescribeConnectorProfilesCommandInput;
|
|
@@ -32,6 +32,14 @@ export interface DescribeConnectorsCommandOutput extends DescribeConnectorsRespo
|
|
|
32
32
|
* @see {@link DescribeConnectorsCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
37
|
+
* later. </p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ValidationException} (client fault)
|
|
40
|
+
* <p> The request has invalid or missing parameters. </p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
35
43
|
*/
|
|
36
44
|
export declare class DescribeConnectorsCommand extends $Command<DescribeConnectorsCommandInput, DescribeConnectorsCommandOutput, AppflowClientResolvedConfig> {
|
|
37
45
|
readonly input: DescribeConnectorsCommandInput;
|
|
@@ -29,6 +29,15 @@ export interface DescribeFlowCommandOutput extends DescribeFlowResponse, __Metad
|
|
|
29
29
|
* @see {@link DescribeFlowCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
34
|
+
* later. </p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
37
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
38
|
+
* profile) is not found. </p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
32
41
|
*/
|
|
33
42
|
export declare class DescribeFlowCommand extends $Command<DescribeFlowCommandInput, DescribeFlowCommandOutput, AppflowClientResolvedConfig> {
|
|
34
43
|
readonly input: DescribeFlowCommandInput;
|
|
@@ -29,6 +29,18 @@ export interface DescribeFlowExecutionRecordsCommandOutput extends DescribeFlowE
|
|
|
29
29
|
* @see {@link DescribeFlowExecutionRecordsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
34
|
+
* later. </p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
37
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
38
|
+
* profile) is not found. </p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ValidationException} (client fault)
|
|
41
|
+
* <p> The request has invalid or missing parameters. </p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
32
44
|
*/
|
|
33
45
|
export declare class DescribeFlowExecutionRecordsCommand extends $Command<DescribeFlowExecutionRecordsCommandInput, DescribeFlowExecutionRecordsCommandOutput, AppflowClientResolvedConfig> {
|
|
34
46
|
readonly input: DescribeFlowExecutionRecordsCommandInput;
|
|
@@ -32,6 +32,24 @@ export interface ListConnectorEntitiesCommandOutput extends ListConnectorEntitie
|
|
|
32
32
|
* @see {@link ListConnectorEntitiesCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link ConnectorAuthenticationException} (client fault)
|
|
36
|
+
* <p> An error occurred when authenticating with the connector endpoint. </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ConnectorServerException} (client fault)
|
|
39
|
+
* <p> An error occurred when retrieving data from the connector endpoint. </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerException} (server fault)
|
|
42
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
43
|
+
* later. </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
47
|
+
* profile) is not found. </p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ValidationException} (client fault)
|
|
50
|
+
* <p> The request has invalid or missing parameters. </p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
35
53
|
*/
|
|
36
54
|
export declare class ListConnectorEntitiesCommand extends $Command<ListConnectorEntitiesCommandInput, ListConnectorEntitiesCommandOutput, AppflowClientResolvedConfig> {
|
|
37
55
|
readonly input: ListConnectorEntitiesCommandInput;
|
|
@@ -31,6 +31,14 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M
|
|
|
31
31
|
* @see {@link ListConnectorsCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalServerException} (server fault)
|
|
35
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
36
|
+
* later. </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ValidationException} (client fault)
|
|
39
|
+
* <p> The request has invalid or missing parameters. </p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
34
42
|
*/
|
|
35
43
|
export declare class ListConnectorsCommand extends $Command<ListConnectorsCommandInput, ListConnectorsCommandOutput, AppflowClientResolvedConfig> {
|
|
36
44
|
readonly input: ListConnectorsCommandInput;
|
|
@@ -29,6 +29,14 @@ export interface ListFlowsCommandOutput extends ListFlowsResponse, __MetadataBea
|
|
|
29
29
|
* @see {@link ListFlowsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
34
|
+
* later. </p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ValidationException} (client fault)
|
|
37
|
+
* <p> The request has invalid or missing parameters. </p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
32
40
|
*/
|
|
33
41
|
export declare class ListFlowsCommand extends $Command<ListFlowsCommandInput, ListFlowsCommandOutput, AppflowClientResolvedConfig> {
|
|
34
42
|
readonly input: ListFlowsCommandInput;
|
|
@@ -29,6 +29,18 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
29
29
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
34
|
+
* later. </p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
37
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
38
|
+
* profile) is not found. </p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ValidationException} (client fault)
|
|
41
|
+
* <p> The request has invalid or missing parameters. </p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
32
44
|
*/
|
|
33
45
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppflowClientResolvedConfig> {
|
|
34
46
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -31,6 +31,39 @@ export interface RegisterConnectorCommandOutput extends RegisterConnectorRespons
|
|
|
31
31
|
* @see {@link RegisterConnectorCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>AppFlow/Requester has invalid or missing permissions.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ConflictException} (client fault)
|
|
38
|
+
* <p> There was a conflict when processing the request (for example, a flow with the given name
|
|
39
|
+
* already exists within the account. Check for conflicting resource names and try again. </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ConnectorAuthenticationException} (client fault)
|
|
42
|
+
* <p> An error occurred when authenticating with the connector endpoint. </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ConnectorServerException} (client fault)
|
|
45
|
+
* <p> An error occurred when retrieving data from the connector endpoint. </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InternalServerException} (server fault)
|
|
48
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
49
|
+
* later. </p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
52
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
53
|
+
* profile) is not found. </p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
56
|
+
* <p> The request would cause a service quota (such as the number of flows) to be exceeded.
|
|
57
|
+
* </p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
60
|
+
* <p>API calls have exceeded the maximum allowed API request rate per account and per Region.
|
|
61
|
+
* </p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ValidationException} (client fault)
|
|
64
|
+
* <p> The request has invalid or missing parameters. </p>
|
|
65
|
+
*
|
|
66
|
+
*
|
|
34
67
|
*/
|
|
35
68
|
export declare class RegisterConnectorCommand extends $Command<RegisterConnectorCommandInput, RegisterConnectorCommandOutput, AppflowClientResolvedConfig> {
|
|
36
69
|
readonly input: RegisterConnectorCommandInput;
|
|
@@ -30,6 +30,23 @@ export interface StartFlowCommandOutput extends StartFlowResponse, __MetadataBea
|
|
|
30
30
|
* @see {@link StartFlowCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ConflictException} (client fault)
|
|
34
|
+
* <p> There was a conflict when processing the request (for example, a flow with the given name
|
|
35
|
+
* already exists within the account. Check for conflicting resource names and try again. </p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
39
|
+
* later. </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
43
|
+
* profile) is not found. </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
46
|
+
* <p> The request would cause a service quota (such as the number of flows) to be exceeded.
|
|
47
|
+
* </p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
33
50
|
*/
|
|
34
51
|
export declare class StartFlowCommand extends $Command<StartFlowCommandInput, StartFlowCommandOutput, AppflowClientResolvedConfig> {
|
|
35
52
|
readonly input: StartFlowCommandInput;
|
|
@@ -31,6 +31,22 @@ export interface StopFlowCommandOutput extends StopFlowResponse, __MetadataBeare
|
|
|
31
31
|
* @see {@link StopFlowCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link ConflictException} (client fault)
|
|
35
|
+
* <p> There was a conflict when processing the request (for example, a flow with the given name
|
|
36
|
+
* already exists within the account. Check for conflicting resource names and try again. </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
40
|
+
* later. </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
44
|
+
* profile) is not found. </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link UnsupportedOperationException} (client fault)
|
|
47
|
+
* <p> The requested operation is not supported for the current flow. </p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
34
50
|
*/
|
|
35
51
|
export declare class StopFlowCommand extends $Command<StopFlowCommandInput, StopFlowCommandOutput, AppflowClientResolvedConfig> {
|
|
36
52
|
readonly input: StopFlowCommandInput;
|
|
@@ -29,6 +29,18 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
29
29
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
34
|
+
* later. </p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
37
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
38
|
+
* profile) is not found. </p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ValidationException} (client fault)
|
|
41
|
+
* <p> The request has invalid or missing parameters. </p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
32
44
|
*/
|
|
33
45
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, AppflowClientResolvedConfig> {
|
|
34
46
|
readonly input: TagResourceCommandInput;
|
|
@@ -30,6 +30,19 @@ export interface UnregisterConnectorCommandOutput extends UnregisterConnectorRes
|
|
|
30
30
|
* @see {@link UnregisterConnectorCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ConflictException} (client fault)
|
|
34
|
+
* <p> There was a conflict when processing the request (for example, a flow with the given name
|
|
35
|
+
* already exists within the account. Check for conflicting resource names and try again. </p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
39
|
+
* later. </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
43
|
+
* profile) is not found. </p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
33
46
|
*/
|
|
34
47
|
export declare class UnregisterConnectorCommand extends $Command<UnregisterConnectorCommandInput, UnregisterConnectorCommandOutput, AppflowClientResolvedConfig> {
|
|
35
48
|
readonly input: UnregisterConnectorCommandInput;
|
|
@@ -29,6 +29,18 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
29
29
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
34
|
+
* later. </p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
37
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
38
|
+
* profile) is not found. </p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ValidationException} (client fault)
|
|
41
|
+
* <p> The request has invalid or missing parameters. </p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
32
44
|
*/
|
|
33
45
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AppflowClientResolvedConfig> {
|
|
34
46
|
readonly input: UntagResourceCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface UpdateConnectorProfileCommandOutput extends UpdateConnectorProf
|
|
|
29
29
|
* @see {@link UpdateConnectorProfileCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConflictException} (client fault)
|
|
33
|
+
* <p> There was a conflict when processing the request (for example, a flow with the given name
|
|
34
|
+
* already exists within the account. Check for conflicting resource names and try again. </p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConnectorAuthenticationException} (client fault)
|
|
37
|
+
* <p> An error occurred when authenticating with the connector endpoint. </p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
41
|
+
* later. </p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
44
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
45
|
+
* profile) is not found. </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p> The request has invalid or missing parameters. </p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class UpdateConnectorProfileCommand extends $Command<UpdateConnectorProfileCommandInput, UpdateConnectorProfileCommandOutput, AppflowClientResolvedConfig> {
|
|
34
53
|
readonly input: UpdateConnectorProfileCommandInput;
|
|
@@ -38,6 +38,39 @@ export interface UpdateConnectorRegistrationCommandOutput extends UpdateConnecto
|
|
|
38
38
|
* @see {@link UpdateConnectorRegistrationCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
42
|
+
* <p>AppFlow/Requester has invalid or missing permissions.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ConflictException} (client fault)
|
|
45
|
+
* <p> There was a conflict when processing the request (for example, a flow with the given name
|
|
46
|
+
* already exists within the account. Check for conflicting resource names and try again. </p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ConnectorAuthenticationException} (client fault)
|
|
49
|
+
* <p> An error occurred when authenticating with the connector endpoint. </p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ConnectorServerException} (client fault)
|
|
52
|
+
* <p> An error occurred when retrieving data from the connector endpoint. </p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link InternalServerException} (server fault)
|
|
55
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
56
|
+
* later. </p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
59
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
60
|
+
* profile) is not found. </p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
63
|
+
* <p> The request would cause a service quota (such as the number of flows) to be exceeded.
|
|
64
|
+
* </p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
67
|
+
* <p>API calls have exceeded the maximum allowed API request rate per account and per Region.
|
|
68
|
+
* </p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ValidationException} (client fault)
|
|
71
|
+
* <p> The request has invalid or missing parameters. </p>
|
|
72
|
+
*
|
|
73
|
+
*
|
|
41
74
|
*/
|
|
42
75
|
export declare class UpdateConnectorRegistrationCommand extends $Command<UpdateConnectorRegistrationCommandInput, UpdateConnectorRegistrationCommandOutput, AppflowClientResolvedConfig> {
|
|
43
76
|
readonly input: UpdateConnectorRegistrationCommandInput;
|
|
@@ -29,6 +29,32 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
|
|
|
29
29
|
* @see {@link UpdateFlowCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConflictException} (client fault)
|
|
33
|
+
* <p> There was a conflict when processing the request (for example, a flow with the given name
|
|
34
|
+
* already exists within the account. Check for conflicting resource names and try again. </p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConnectorAuthenticationException} (client fault)
|
|
37
|
+
* <p> An error occurred when authenticating with the connector endpoint. </p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ConnectorServerException} (client fault)
|
|
40
|
+
* <p> An error occurred when retrieving data from the connector endpoint. </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerException} (server fault)
|
|
43
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
44
|
+
* later. </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
47
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
48
|
+
* profile) is not found. </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
51
|
+
* <p> The request would cause a service quota (such as the number of flows) to be exceeded.
|
|
52
|
+
* </p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ValidationException} (client fault)
|
|
55
|
+
* <p> The request has invalid or missing parameters. </p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
32
58
|
*/
|
|
33
59
|
export declare class UpdateFlowCommand extends $Command<UpdateFlowCommandInput, UpdateFlowCommandOutput, AppflowClientResolvedConfig> {
|
|
34
60
|
readonly input: UpdateFlowCommandInput;
|
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.292.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,55 +20,50 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
45
|
-
"@aws-sdk/util-base64": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
-
"@aws-sdk/util-utf8": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.292.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.292.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.292.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.292.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.292.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.292.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.292.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.292.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.292.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.292.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.292.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.292.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.292.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.292.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.292.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.292.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.292.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.292.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.292.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.292.0",
|
|
43
|
+
"@aws-sdk/types": "3.292.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.292.0",
|
|
45
|
+
"@aws-sdk/util-base64": "3.292.0",
|
|
46
|
+
"@aws-sdk/util-body-length-browser": "3.292.0",
|
|
47
|
+
"@aws-sdk/util-body-length-node": "3.292.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.292.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.292.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.292.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.292.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.292.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.292.0",
|
|
54
|
+
"@aws-sdk/util-utf8": "3.292.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
58
|
+
"@aws-sdk/service-client-documentation-generator": "3.292.0",
|
|
59
59
|
"@tsconfig/node14": "1.0.3",
|
|
60
60
|
"@types/node": "^14.14.31",
|
|
61
61
|
"concurrently": "7.0.0",
|
|
62
62
|
"downlevel-dts": "0.10.1",
|
|
63
63
|
"rimraf": "3.0.2",
|
|
64
|
-
"typedoc": "0.
|
|
64
|
+
"typedoc": "0.23.23",
|
|
65
65
|
"typescript": "~4.6.2"
|
|
66
66
|
},
|
|
67
|
-
"overrides": {
|
|
68
|
-
"typedoc": {
|
|
69
|
-
"typescript": "~4.6.2"
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
67
|
"engines": {
|
|
73
68
|
"node": ">=14.0.0"
|
|
74
69
|
},
|