@aws-sdk/client-kafkaconnect 3.533.0 → 3.540.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-cjs/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-types/KafkaConnect.d.ts +4 -1
- package/dist-types/KafkaConnectClient.d.ts +1 -1
- package/dist-types/commands/CreateConnectorCommand.d.ts +2 -1
- package/dist-types/commands/CreateCustomPluginCommand.d.ts +2 -1
- package/dist-types/commands/CreateWorkerConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteConnectorCommand.d.ts +2 -1
- package/dist-types/commands/DeleteCustomPluginCommand.d.ts +2 -1
- package/dist-types/commands/DeleteWorkerConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/DescribeConnectorCommand.d.ts +2 -1
- package/dist-types/commands/DescribeCustomPluginCommand.d.ts +2 -1
- package/dist-types/commands/DescribeWorkerConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/ListConnectorsCommand.d.ts +2 -1
- package/dist-types/commands/ListCustomPluginsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/ListWorkerConfigurationsCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateConnectorCommand.d.ts +2 -1
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +295 -295
- package/dist-types/ts3.4/KafkaConnect.d.ts +3 -0
- package/dist-types/ts3.4/commands/CreateConnectorCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateCustomPluginCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateWorkerConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteConnectorCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteCustomPluginCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteWorkerConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeCustomPluginCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeWorkerConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListCustomPluginsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListWorkerConfigurationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateConnectorCommand.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +40 -40
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.defaultEndpointResolver = void 0;
|
|
4
|
-
const util_endpoints_1 = require("@
|
|
4
|
+
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
|
+
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
5
6
|
const ruleset_1 = require("./ruleset");
|
|
6
7
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
7
|
-
return (0,
|
|
8
|
+
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
8
9
|
endpointParams: endpointParams,
|
|
9
10
|
logger: context.logger,
|
|
10
11
|
});
|
|
11
12
|
};
|
|
12
13
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
|
+
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -1452,9 +1452,6 @@ var paginateListCustomPlugins = (0, import_core.createPaginator)(KafkaConnectCli
|
|
|
1452
1452
|
// src/pagination/ListWorkerConfigurationsPaginator.ts
|
|
1453
1453
|
|
|
1454
1454
|
var paginateListWorkerConfigurations = (0, import_core.createPaginator)(KafkaConnectClient, ListWorkerConfigurationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1455
|
-
|
|
1456
|
-
// src/index.ts
|
|
1457
|
-
var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
1458
1455
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1459
1456
|
|
|
1460
1457
|
0 && (module.exports = {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
3
|
import { ruleSet } from "./ruleset";
|
|
3
4
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
4
5
|
return resolveEndpoint(ruleSet, {
|
|
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
|
6
7
|
logger: context.logger,
|
|
7
8
|
});
|
|
8
9
|
};
|
|
10
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
package/dist-es/index.js
CHANGED
|
@@ -74,12 +74,14 @@ export interface KafkaConnect {
|
|
|
74
74
|
/**
|
|
75
75
|
* @see {@link ListConnectorsCommand}
|
|
76
76
|
*/
|
|
77
|
+
listConnectors(): Promise<ListConnectorsCommandOutput>;
|
|
77
78
|
listConnectors(args: ListConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectorsCommandOutput>;
|
|
78
79
|
listConnectors(args: ListConnectorsCommandInput, cb: (err: any, data?: ListConnectorsCommandOutput) => void): void;
|
|
79
80
|
listConnectors(args: ListConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectorsCommandOutput) => void): void;
|
|
80
81
|
/**
|
|
81
82
|
* @see {@link ListCustomPluginsCommand}
|
|
82
83
|
*/
|
|
84
|
+
listCustomPlugins(): Promise<ListCustomPluginsCommandOutput>;
|
|
83
85
|
listCustomPlugins(args: ListCustomPluginsCommandInput, options?: __HttpHandlerOptions): Promise<ListCustomPluginsCommandOutput>;
|
|
84
86
|
listCustomPlugins(args: ListCustomPluginsCommandInput, cb: (err: any, data?: ListCustomPluginsCommandOutput) => void): void;
|
|
85
87
|
listCustomPlugins(args: ListCustomPluginsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCustomPluginsCommandOutput) => void): void;
|
|
@@ -92,6 +94,7 @@ export interface KafkaConnect {
|
|
|
92
94
|
/**
|
|
93
95
|
* @see {@link ListWorkerConfigurationsCommand}
|
|
94
96
|
*/
|
|
97
|
+
listWorkerConfigurations(): Promise<ListWorkerConfigurationsCommandOutput>;
|
|
95
98
|
listWorkerConfigurations(args: ListWorkerConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkerConfigurationsCommandOutput>;
|
|
96
99
|
listWorkerConfigurations(args: ListWorkerConfigurationsCommandInput, cb: (err: any, data?: ListWorkerConfigurationsCommandOutput) => void): void;
|
|
97
100
|
listWorkerConfigurations(args: ListWorkerConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkerConfigurationsCommandOutput) => void): void;
|
|
@@ -115,8 +118,8 @@ export interface KafkaConnect {
|
|
|
115
118
|
updateConnector(args: UpdateConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConnectorCommandOutput) => void): void;
|
|
116
119
|
}
|
|
117
120
|
/**
|
|
118
|
-
* @public
|
|
119
121
|
* <p/>
|
|
122
|
+
* @public
|
|
120
123
|
*/
|
|
121
124
|
export declare class KafkaConnect extends KafkaConnectClient implements KafkaConnect {
|
|
122
125
|
}
|
|
@@ -167,8 +167,8 @@ export type KafkaConnectClientResolvedConfigType = __SmithyResolvedConfiguration
|
|
|
167
167
|
export interface KafkaConnectClientResolvedConfig extends KafkaConnectClientResolvedConfigType {
|
|
168
168
|
}
|
|
169
169
|
/**
|
|
170
|
-
* @public
|
|
171
170
|
* <p/>
|
|
171
|
+
* @public
|
|
172
172
|
*/
|
|
173
173
|
export declare class KafkaConnectClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, KafkaConnectClientResolvedConfig> {
|
|
174
174
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateConnectorCommand_base: {
|
|
24
24
|
new (input: CreateConnectorCommandInput): import("@smithy/smithy-client").CommandImpl<CreateConnectorCommandInput, CreateConnectorCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateConnectorCommandInput): import("@smithy/smithy-client").CommandImpl<CreateConnectorCommandInput, CreateConnectorCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a connector using the specified properties. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -160,6 +160,7 @@ declare const CreateConnectorCommand_base: {
|
|
|
160
160
|
* @throws {@link KafkaConnectServiceException}
|
|
161
161
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
162
162
|
*
|
|
163
|
+
* @public
|
|
163
164
|
*/
|
|
164
165
|
export declare class CreateConnectorCommand extends CreateConnectorCommand_base {
|
|
165
166
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateCustomPluginCommandOutput extends CreateCustomPluginRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateCustomPluginCommand_base: {
|
|
24
24
|
new (input: CreateCustomPluginCommandInput): import("@smithy/smithy-client").CommandImpl<CreateCustomPluginCommandInput, CreateCustomPluginCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateCustomPluginCommandInput): import("@smithy/smithy-client").CommandImpl<CreateCustomPluginCommandInput, CreateCustomPluginCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a custom plugin using the specified properties.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -99,6 +99,7 @@ declare const CreateCustomPluginCommand_base: {
|
|
|
99
99
|
* @throws {@link KafkaConnectServiceException}
|
|
100
100
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
101
101
|
*
|
|
102
|
+
* @public
|
|
102
103
|
*/
|
|
103
104
|
export declare class CreateCustomPluginCommand extends CreateCustomPluginCommand_base {
|
|
104
105
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateWorkerConfigurationCommandOutput extends CreateWorkerConf
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateWorkerConfigurationCommand_base: {
|
|
24
24
|
new (input: CreateWorkerConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateWorkerConfigurationCommandInput, CreateWorkerConfigurationCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateWorkerConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateWorkerConfigurationCommandInput, CreateWorkerConfigurationCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a worker configuration using the specified properties.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -97,6 +97,7 @@ declare const CreateWorkerConfigurationCommand_base: {
|
|
|
97
97
|
* @throws {@link KafkaConnectServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
99
99
|
*
|
|
100
|
+
* @public
|
|
100
101
|
*/
|
|
101
102
|
export declare class CreateWorkerConfigurationCommand extends CreateWorkerConfigurationCommand_base {
|
|
102
103
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteConnectorCommandOutput extends DeleteConnectorResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteConnectorCommand_base: {
|
|
24
24
|
new (input: DeleteConnectorCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteConnectorCommandInput, DeleteConnectorCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteConnectorCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteConnectorCommandInput, DeleteConnectorCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the specified connector.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -82,6 +82,7 @@ declare const DeleteConnectorCommand_base: {
|
|
|
82
82
|
* @throws {@link KafkaConnectServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class DeleteConnectorCommand extends DeleteConnectorCommand_base {
|
|
87
88
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteCustomPluginCommandOutput extends DeleteCustomPluginRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteCustomPluginCommand_base: {
|
|
24
24
|
new (input: DeleteCustomPluginCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteCustomPluginCommandInput, DeleteCustomPluginCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteCustomPluginCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteCustomPluginCommandInput, DeleteCustomPluginCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a custom plugin.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -81,6 +81,7 @@ declare const DeleteCustomPluginCommand_base: {
|
|
|
81
81
|
* @throws {@link KafkaConnectServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class DeleteCustomPluginCommand extends DeleteCustomPluginCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteWorkerConfigurationCommandOutput extends DeleteWorkerConf
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteWorkerConfigurationCommand_base: {
|
|
24
24
|
new (input: DeleteWorkerConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteWorkerConfigurationCommandInput, DeleteWorkerConfigurationCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteWorkerConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteWorkerConfigurationCommandInput, DeleteWorkerConfigurationCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the specified worker configuration.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -81,6 +81,7 @@ declare const DeleteWorkerConfigurationCommand_base: {
|
|
|
81
81
|
* @throws {@link KafkaConnectServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class DeleteWorkerConfigurationCommand extends DeleteWorkerConfigurationCommand_base {
|
|
86
87
|
}
|
|
@@ -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, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeConnectorCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeConnectorCommandInput, DescribeConnectorCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns summary information about the connector.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -159,6 +159,7 @@ declare const DescribeConnectorCommand_base: {
|
|
|
159
159
|
* @throws {@link KafkaConnectServiceException}
|
|
160
160
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
161
161
|
*
|
|
162
|
+
* @public
|
|
162
163
|
*/
|
|
163
164
|
export declare class DescribeConnectorCommand extends DescribeConnectorCommand_base {
|
|
164
165
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeCustomPluginCommandOutput extends DescribeCustomPluginR
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeCustomPluginCommand_base: {
|
|
24
24
|
new (input: DescribeCustomPluginCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeCustomPluginCommandInput, DescribeCustomPluginCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeCustomPluginCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeCustomPluginCommandInput, DescribeCustomPluginCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>A summary description of the custom plugin.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -105,6 +105,7 @@ declare const DescribeCustomPluginCommand_base: {
|
|
|
105
105
|
* @throws {@link KafkaConnectServiceException}
|
|
106
106
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
107
107
|
*
|
|
108
|
+
* @public
|
|
108
109
|
*/
|
|
109
110
|
export declare class DescribeCustomPluginCommand extends DescribeCustomPluginCommand_base {
|
|
110
111
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeWorkerConfigurationCommandOutput extends DescribeWorker
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeWorkerConfigurationCommand_base: {
|
|
24
24
|
new (input: DescribeWorkerConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeWorkerConfigurationCommandInput, DescribeWorkerConfigurationCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeWorkerConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeWorkerConfigurationCommandInput, DescribeWorkerConfigurationCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information about a worker configuration.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -90,6 +90,7 @@ declare const DescribeWorkerConfigurationCommand_base: {
|
|
|
90
90
|
* @throws {@link KafkaConnectServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
92
92
|
*
|
|
93
|
+
* @public
|
|
93
94
|
*/
|
|
94
95
|
export declare class DescribeWorkerConfigurationCommand extends DescribeWorkerConfigurationCommand_base {
|
|
95
96
|
}
|
|
@@ -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, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListConnectorsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListConnectorsCommandInput, ListConnectorsCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of all the connectors in this account and Region. The list is limited to
|
|
30
30
|
* connectors whose name starts with the specified prefix. The response also includes a
|
|
31
31
|
* description of each of the listed connectors.</p>
|
|
@@ -161,6 +161,7 @@ declare const ListConnectorsCommand_base: {
|
|
|
161
161
|
* @throws {@link KafkaConnectServiceException}
|
|
162
162
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
163
163
|
*
|
|
164
|
+
* @public
|
|
164
165
|
*/
|
|
165
166
|
export declare class ListConnectorsCommand extends ListConnectorsCommand_base {
|
|
166
167
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListCustomPluginsCommandOutput extends ListCustomPluginsRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListCustomPluginsCommand_base: {
|
|
24
24
|
new (input: ListCustomPluginsCommandInput): import("@smithy/smithy-client").CommandImpl<ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListCustomPluginsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of all of the custom plugins in this account and Region.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -108,6 +108,7 @@ declare const ListCustomPluginsCommand_base: {
|
|
|
108
108
|
* @throws {@link KafkaConnectServiceException}
|
|
109
109
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
110
110
|
*
|
|
111
|
+
* @public
|
|
111
112
|
*/
|
|
112
113
|
export declare class ListCustomPluginsCommand extends ListCustomPluginsCommand_base {
|
|
113
114
|
}
|
|
@@ -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, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all the tags attached to the specified resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -82,6 +82,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
82
82
|
* @throws {@link KafkaConnectServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
87
88
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListWorkerConfigurationsCommandOutput extends ListWorkerConfigu
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListWorkerConfigurationsCommand_base: {
|
|
24
24
|
new (input: ListWorkerConfigurationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListWorkerConfigurationsCommandInput, ListWorkerConfigurationsCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListWorkerConfigurationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListWorkerConfigurationsCommandInput, ListWorkerConfigurationsCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of all of the worker configurations in this account and Region.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -96,6 +96,7 @@ declare const ListWorkerConfigurationsCommand_base: {
|
|
|
96
96
|
* @throws {@link KafkaConnectServiceException}
|
|
97
97
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
98
98
|
*
|
|
99
|
+
* @public
|
|
99
100
|
*/
|
|
100
101
|
export declare class ListWorkerConfigurationsCommand extends ListWorkerConfigurationsCommand_base {
|
|
101
102
|
}
|
|
@@ -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, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Attaches tags to the specified resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -85,6 +85,7 @@ declare const TagResourceCommand_base: {
|
|
|
85
85
|
* @throws {@link KafkaConnectServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
87
87
|
*
|
|
88
|
+
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
90
91
|
}
|
|
@@ -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, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes tags from the specified resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -81,6 +81,7 @@ declare const UntagResourceCommand_base: {
|
|
|
81
81
|
* @throws {@link KafkaConnectServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateConnectorCommand_base: {
|
|
24
24
|
new (input: UpdateConnectorCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateConnectorCommandInput, UpdateConnectorCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateConnectorCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateConnectorCommandInput, UpdateConnectorCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates the specified connector.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -99,6 +99,7 @@ declare const UpdateConnectorCommand_base: {
|
|
|
99
99
|
* @throws {@link KafkaConnectServiceException}
|
|
100
100
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
101
101
|
*
|
|
102
|
+
* @public
|
|
102
103
|
*/
|
|
103
104
|
export declare class UpdateConnectorCommand extends UpdateConnectorCommand_base {
|
|
104
105
|
}
|
package/dist-types/index.d.ts
CHANGED
|
@@ -11,5 +11,4 @@ export { KafkaConnectExtensionConfiguration } from "./extensionConfiguration";
|
|
|
11
11
|
export * from "./commands";
|
|
12
12
|
export * from "./pagination";
|
|
13
13
|
export * from "./models";
|
|
14
|
-
import "@aws-sdk/util-endpoints";
|
|
15
14
|
export { KafkaConnectServiceException } from "./models/KafkaConnectServiceException";
|