@aws-sdk/client-kafkaconnect 3.296.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/KafkaConnect.d.ts +13 -0
- package/dist-types/KafkaConnectClient.d.ts +24 -4
- package/dist-types/commands/CreateConnectorCommand.d.ts +16 -0
- package/dist-types/commands/CreateCustomPluginCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkerConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConnectorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCustomPluginCommand.d.ts +16 -0
- package/dist-types/commands/DescribeConnectorCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCustomPluginCommand.d.ts +16 -0
- package/dist-types/commands/DescribeWorkerConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/ListConnectorsCommand.d.ts +16 -0
- package/dist-types/commands/ListCustomPluginsCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkerConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConnectorCommand.d.ts +16 -0
- package/dist-types/models/KafkaConnectServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +148 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListConnectorsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCustomPluginsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkerConfigurationsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
|
|
5
5
|
import { ListCustomPluginsRequest, ListCustomPluginsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListCustomPluginsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListCustomPluginsCommandInput extends ListCustomPluginsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListCustomPluginsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListCustomPluginsCommandOutput extends ListCustomPluginsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of all of the custom plugins in this account and Region.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListCustomPluginsCommandOutput extends ListCustomPluginsRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListCustomPluginsCommandInput - {@link ListCustomPluginsCommandInput}
|
|
34
|
+
* @returns {@link ListCustomPluginsCommandOutput}
|
|
28
35
|
* @see {@link ListCustomPluginsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListCustomPluginsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
|
|
@@ -61,11 +68,20 @@ export interface ListCustomPluginsCommandOutput extends ListCustomPluginsRespons
|
|
|
61
68
|
export declare class ListCustomPluginsCommand extends $Command<ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
62
69
|
readonly input: ListCustomPluginsCommandInput;
|
|
63
70
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
64
74
|
constructor(input: ListCustomPluginsCommandInput);
|
|
65
75
|
/**
|
|
66
76
|
* @internal
|
|
67
77
|
*/
|
|
68
78
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput>;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
69
82
|
private serialize;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
70
86
|
private deserialize;
|
|
71
87
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
|
|
5
5
|
import { ListWorkerConfigurationsRequest, ListWorkerConfigurationsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListWorkerConfigurationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListWorkerConfigurationsCommandInput extends ListWorkerConfigurationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListWorkerConfigurationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListWorkerConfigurationsCommandOutput extends ListWorkerConfigurationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of all of the worker configurations in this account and Region.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListWorkerConfigurationsCommandOutput extends ListWorkerConfigu
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListWorkerConfigurationsCommandInput - {@link ListWorkerConfigurationsCommandInput}
|
|
34
|
+
* @returns {@link ListWorkerConfigurationsCommandOutput}
|
|
28
35
|
* @see {@link ListWorkerConfigurationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListWorkerConfigurationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
|
|
@@ -61,11 +68,20 @@ export interface ListWorkerConfigurationsCommandOutput extends ListWorkerConfigu
|
|
|
61
68
|
export declare class ListWorkerConfigurationsCommand extends $Command<ListWorkerConfigurationsCommandInput, ListWorkerConfigurationsCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
62
69
|
readonly input: ListWorkerConfigurationsCommandInput;
|
|
63
70
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
64
74
|
constructor(input: ListWorkerConfigurationsCommandInput);
|
|
65
75
|
/**
|
|
66
76
|
* @internal
|
|
67
77
|
*/
|
|
68
78
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWorkerConfigurationsCommandInput, ListWorkerConfigurationsCommandOutput>;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
69
82
|
private serialize;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
70
86
|
private deserialize;
|
|
71
87
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
|
|
5
5
|
import { UpdateConnectorRequest, UpdateConnectorResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateConnectorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateConnectorCommandInput extends UpdateConnectorRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateConnectorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the specified connector.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateConnectorCommandInput - {@link UpdateConnectorCommandInput}
|
|
34
|
+
* @returns {@link UpdateConnectorCommandOutput}
|
|
28
35
|
* @see {@link UpdateConnectorCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateConnectorCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
|
|
@@ -61,11 +68,20 @@ export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, _
|
|
|
61
68
|
export declare class UpdateConnectorCommand extends $Command<UpdateConnectorCommandInput, UpdateConnectorCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
62
69
|
readonly input: UpdateConnectorCommandInput;
|
|
63
70
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
64
74
|
constructor(input: UpdateConnectorCommandInput);
|
|
65
75
|
/**
|
|
66
76
|
* @internal
|
|
67
77
|
*/
|
|
68
78
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateConnectorCommandInput, UpdateConnectorCommandOutput>;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
69
82
|
private serialize;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
70
86
|
private deserialize;
|
|
71
87
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from KafkaConnect service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class KafkaConnectServiceException extends __ServiceException {
|