@aws-sdk/client-kafkaconnect 3.478.0 → 3.481.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/commands/CreateConnectorCommand.js +18 -41
- package/dist-cjs/commands/CreateCustomPluginCommand.js +18 -41
- package/dist-cjs/commands/CreateWorkerConfigurationCommand.js +18 -41
- package/dist-cjs/commands/DeleteConnectorCommand.js +18 -41
- package/dist-cjs/commands/DeleteCustomPluginCommand.js +18 -41
- package/dist-cjs/commands/DescribeConnectorCommand.js +18 -41
- package/dist-cjs/commands/DescribeCustomPluginCommand.js +18 -41
- package/dist-cjs/commands/DescribeWorkerConfigurationCommand.js +18 -41
- package/dist-cjs/commands/ListConnectorsCommand.js +18 -41
- package/dist-cjs/commands/ListCustomPluginsCommand.js +18 -41
- package/dist-cjs/commands/ListWorkerConfigurationsCommand.js +18 -41
- package/dist-cjs/commands/UpdateConnectorCommand.js +18 -41
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-es/commands/CreateConnectorCommand.js +18 -41
- package/dist-es/commands/CreateCustomPluginCommand.js +18 -41
- package/dist-es/commands/CreateWorkerConfigurationCommand.js +18 -41
- package/dist-es/commands/DeleteConnectorCommand.js +18 -41
- package/dist-es/commands/DeleteCustomPluginCommand.js +18 -41
- package/dist-es/commands/DescribeConnectorCommand.js +18 -41
- package/dist-es/commands/DescribeCustomPluginCommand.js +18 -41
- package/dist-es/commands/DescribeWorkerConfigurationCommand.js +18 -41
- package/dist-es/commands/ListConnectorsCommand.js +18 -41
- package/dist-es/commands/ListCustomPluginsCommand.js +18 -41
- package/dist-es/commands/ListWorkerConfigurationsCommand.js +18 -41
- package/dist-es/commands/UpdateConnectorCommand.js +18 -41
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-types/commands/CreateConnectorCommand.d.ts +6 -21
- package/dist-types/commands/CreateCustomPluginCommand.d.ts +6 -21
- package/dist-types/commands/CreateWorkerConfigurationCommand.d.ts +6 -21
- package/dist-types/commands/DeleteConnectorCommand.d.ts +6 -21
- package/dist-types/commands/DeleteCustomPluginCommand.d.ts +6 -21
- package/dist-types/commands/DescribeConnectorCommand.d.ts +6 -21
- package/dist-types/commands/DescribeCustomPluginCommand.d.ts +6 -21
- package/dist-types/commands/DescribeWorkerConfigurationCommand.d.ts +6 -21
- package/dist-types/commands/ListConnectorsCommand.d.ts +6 -21
- package/dist-types/commands/ListCustomPluginsCommand.d.ts +6 -21
- package/dist-types/commands/ListWorkerConfigurationsCommand.d.ts +6 -21
- package/dist-types/commands/UpdateConnectorCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/commands/CreateConnectorCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/CreateCustomPluginCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/CreateWorkerConfigurationCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DeleteConnectorCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DeleteCustomPluginCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DescribeCustomPluginCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DescribeWorkerConfigurationCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListCustomPluginsCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListWorkerConfigurationsCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/UpdateConnectorCommand.d.ts +14 -23
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/package.json +9 -9
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
|
|
5
4
|
import { DescribeConnectorRequest, DescribeConnectorResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeConnectorCommandInput extends DescribeConnectorRequest
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeConnectorCommandOutput extends DescribeConnectorResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeConnectorCommand_base: {
|
|
24
|
+
new (input: DescribeConnectorCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeConnectorCommandInput, DescribeConnectorCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Returns summary information about the connector.</p>
|
|
@@ -157,23 +160,5 @@ export interface DescribeConnectorCommandOutput extends DescribeConnectorRespons
|
|
|
157
160
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
158
161
|
*
|
|
159
162
|
*/
|
|
160
|
-
export declare class DescribeConnectorCommand extends
|
|
161
|
-
readonly input: DescribeConnectorCommandInput;
|
|
162
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
163
|
-
/**
|
|
164
|
-
* @public
|
|
165
|
-
*/
|
|
166
|
-
constructor(input: DescribeConnectorCommandInput);
|
|
167
|
-
/**
|
|
168
|
-
* @internal
|
|
169
|
-
*/
|
|
170
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeConnectorCommandInput, DescribeConnectorCommandOutput>;
|
|
171
|
-
/**
|
|
172
|
-
* @internal
|
|
173
|
-
*/
|
|
174
|
-
private serialize;
|
|
175
|
-
/**
|
|
176
|
-
* @internal
|
|
177
|
-
*/
|
|
178
|
-
private deserialize;
|
|
163
|
+
export declare class DescribeConnectorCommand extends DescribeConnectorCommand_base {
|
|
179
164
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
|
|
5
4
|
import { DescribeCustomPluginRequest, DescribeCustomPluginResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeCustomPluginCommandInput extends DescribeCustomPluginRe
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeCustomPluginCommandOutput extends DescribeCustomPluginResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeCustomPluginCommand_base: {
|
|
24
|
+
new (input: DescribeCustomPluginCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeCustomPluginCommandInput, DescribeCustomPluginCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>A summary description of the custom plugin.</p>
|
|
@@ -103,23 +106,5 @@ export interface DescribeCustomPluginCommandOutput extends DescribeCustomPluginR
|
|
|
103
106
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
104
107
|
*
|
|
105
108
|
*/
|
|
106
|
-
export declare class DescribeCustomPluginCommand extends
|
|
107
|
-
readonly input: DescribeCustomPluginCommandInput;
|
|
108
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
109
|
-
/**
|
|
110
|
-
* @public
|
|
111
|
-
*/
|
|
112
|
-
constructor(input: DescribeCustomPluginCommandInput);
|
|
113
|
-
/**
|
|
114
|
-
* @internal
|
|
115
|
-
*/
|
|
116
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCustomPluginCommandInput, DescribeCustomPluginCommandOutput>;
|
|
117
|
-
/**
|
|
118
|
-
* @internal
|
|
119
|
-
*/
|
|
120
|
-
private serialize;
|
|
121
|
-
/**
|
|
122
|
-
* @internal
|
|
123
|
-
*/
|
|
124
|
-
private deserialize;
|
|
109
|
+
export declare class DescribeCustomPluginCommand extends DescribeCustomPluginCommand_base {
|
|
125
110
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
|
|
5
4
|
import { DescribeWorkerConfigurationRequest, DescribeWorkerConfigurationResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeWorkerConfigurationCommandInput extends DescribeWorkerC
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeWorkerConfigurationCommandOutput extends DescribeWorkerConfigurationResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeWorkerConfigurationCommand_base: {
|
|
24
|
+
new (input: DescribeWorkerConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeWorkerConfigurationCommandInput, DescribeWorkerConfigurationCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Returns information about a worker configuration.</p>
|
|
@@ -87,23 +90,5 @@ export interface DescribeWorkerConfigurationCommandOutput extends DescribeWorker
|
|
|
87
90
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
88
91
|
*
|
|
89
92
|
*/
|
|
90
|
-
export declare class DescribeWorkerConfigurationCommand extends
|
|
91
|
-
readonly input: DescribeWorkerConfigurationCommandInput;
|
|
92
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
93
|
-
/**
|
|
94
|
-
* @public
|
|
95
|
-
*/
|
|
96
|
-
constructor(input: DescribeWorkerConfigurationCommandInput);
|
|
97
|
-
/**
|
|
98
|
-
* @internal
|
|
99
|
-
*/
|
|
100
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeWorkerConfigurationCommandInput, DescribeWorkerConfigurationCommandOutput>;
|
|
101
|
-
/**
|
|
102
|
-
* @internal
|
|
103
|
-
*/
|
|
104
|
-
private serialize;
|
|
105
|
-
/**
|
|
106
|
-
* @internal
|
|
107
|
-
*/
|
|
108
|
-
private deserialize;
|
|
93
|
+
export declare class DescribeWorkerConfigurationCommand extends DescribeWorkerConfigurationCommand_base {
|
|
109
94
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
|
|
5
4
|
import { ListConnectorsRequest, ListConnectorsResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListConnectorsCommandInput extends ListConnectorsRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListConnectorsCommand_base: {
|
|
24
|
+
new (input: ListConnectorsCommandInput): import("@smithy/smithy-client").CommandImpl<ListConnectorsCommandInput, ListConnectorsCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Returns a list of all the connectors in this account and Region. The list is limited to
|
|
@@ -159,23 +162,5 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M
|
|
|
159
162
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
160
163
|
*
|
|
161
164
|
*/
|
|
162
|
-
export declare class ListConnectorsCommand extends
|
|
163
|
-
readonly input: ListConnectorsCommandInput;
|
|
164
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
165
|
-
/**
|
|
166
|
-
* @public
|
|
167
|
-
*/
|
|
168
|
-
constructor(input: ListConnectorsCommandInput);
|
|
169
|
-
/**
|
|
170
|
-
* @internal
|
|
171
|
-
*/
|
|
172
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConnectorsCommandInput, ListConnectorsCommandOutput>;
|
|
173
|
-
/**
|
|
174
|
-
* @internal
|
|
175
|
-
*/
|
|
176
|
-
private serialize;
|
|
177
|
-
/**
|
|
178
|
-
* @internal
|
|
179
|
-
*/
|
|
180
|
-
private deserialize;
|
|
165
|
+
export declare class ListConnectorsCommand extends ListConnectorsCommand_base {
|
|
181
166
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
|
|
5
4
|
import { ListCustomPluginsRequest, ListCustomPluginsResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListCustomPluginsCommandInput extends ListCustomPluginsRequest
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListCustomPluginsCommandOutput extends ListCustomPluginsResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListCustomPluginsCommand_base: {
|
|
24
|
+
new (input: ListCustomPluginsCommandInput): import("@smithy/smithy-client").CommandImpl<ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Returns a list of all of the custom plugins in this account and Region.</p>
|
|
@@ -105,23 +108,5 @@ export interface ListCustomPluginsCommandOutput extends ListCustomPluginsRespons
|
|
|
105
108
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
106
109
|
*
|
|
107
110
|
*/
|
|
108
|
-
export declare class ListCustomPluginsCommand extends
|
|
109
|
-
readonly input: ListCustomPluginsCommandInput;
|
|
110
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
111
|
-
/**
|
|
112
|
-
* @public
|
|
113
|
-
*/
|
|
114
|
-
constructor(input: ListCustomPluginsCommandInput);
|
|
115
|
-
/**
|
|
116
|
-
* @internal
|
|
117
|
-
*/
|
|
118
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput>;
|
|
119
|
-
/**
|
|
120
|
-
* @internal
|
|
121
|
-
*/
|
|
122
|
-
private serialize;
|
|
123
|
-
/**
|
|
124
|
-
* @internal
|
|
125
|
-
*/
|
|
126
|
-
private deserialize;
|
|
111
|
+
export declare class ListCustomPluginsCommand extends ListCustomPluginsCommand_base {
|
|
127
112
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
|
|
5
4
|
import { ListWorkerConfigurationsRequest, ListWorkerConfigurationsResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListWorkerConfigurationsCommandInput extends ListWorkerConfigur
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListWorkerConfigurationsCommandOutput extends ListWorkerConfigurationsResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListWorkerConfigurationsCommand_base: {
|
|
24
|
+
new (input: ListWorkerConfigurationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListWorkerConfigurationsCommandInput, ListWorkerConfigurationsCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Returns a list of all of the worker configurations in this account and Region.</p>
|
|
@@ -92,23 +95,5 @@ export interface ListWorkerConfigurationsCommandOutput extends ListWorkerConfigu
|
|
|
92
95
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
93
96
|
*
|
|
94
97
|
*/
|
|
95
|
-
export declare class ListWorkerConfigurationsCommand extends
|
|
96
|
-
readonly input: ListWorkerConfigurationsCommandInput;
|
|
97
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
98
|
-
/**
|
|
99
|
-
* @public
|
|
100
|
-
*/
|
|
101
|
-
constructor(input: ListWorkerConfigurationsCommandInput);
|
|
102
|
-
/**
|
|
103
|
-
* @internal
|
|
104
|
-
*/
|
|
105
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWorkerConfigurationsCommandInput, ListWorkerConfigurationsCommandOutput>;
|
|
106
|
-
/**
|
|
107
|
-
* @internal
|
|
108
|
-
*/
|
|
109
|
-
private serialize;
|
|
110
|
-
/**
|
|
111
|
-
* @internal
|
|
112
|
-
*/
|
|
113
|
-
private deserialize;
|
|
98
|
+
export declare class ListWorkerConfigurationsCommand extends ListWorkerConfigurationsCommand_base {
|
|
114
99
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
|
|
5
4
|
import { UpdateConnectorRequest, UpdateConnectorResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface UpdateConnectorCommandInput extends UpdateConnectorRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const UpdateConnectorCommand_base: {
|
|
24
|
+
new (input: UpdateConnectorCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateConnectorCommandInput, UpdateConnectorCommandOutput, KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Updates the specified connector.</p>
|
|
@@ -97,23 +100,5 @@ export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, _
|
|
|
97
100
|
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
98
101
|
*
|
|
99
102
|
*/
|
|
100
|
-
export declare class UpdateConnectorCommand extends
|
|
101
|
-
readonly input: UpdateConnectorCommandInput;
|
|
102
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
103
|
-
/**
|
|
104
|
-
* @public
|
|
105
|
-
*/
|
|
106
|
-
constructor(input: UpdateConnectorCommandInput);
|
|
107
|
-
/**
|
|
108
|
-
* @internal
|
|
109
|
-
*/
|
|
110
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateConnectorCommandInput, UpdateConnectorCommandOutput>;
|
|
111
|
-
/**
|
|
112
|
-
* @internal
|
|
113
|
-
*/
|
|
114
|
-
private serialize;
|
|
115
|
-
/**
|
|
116
|
-
* @internal
|
|
117
|
-
*/
|
|
118
|
-
private deserialize;
|
|
103
|
+
export declare class UpdateConnectorCommand extends UpdateConnectorCommand_base {
|
|
119
104
|
}
|
|
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
|
14
14
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
15
15
|
defaultSigningName: string;
|
|
16
16
|
};
|
|
17
|
+
export declare const commonParams: {
|
|
18
|
+
readonly UseFIPS: {
|
|
19
|
+
readonly type: "builtInParams";
|
|
20
|
+
readonly name: "useFipsEndpoint";
|
|
21
|
+
};
|
|
22
|
+
readonly Endpoint: {
|
|
23
|
+
readonly type: "builtInParams";
|
|
24
|
+
readonly name: "endpoint";
|
|
25
|
+
};
|
|
26
|
+
readonly Region: {
|
|
27
|
+
readonly type: "builtInParams";
|
|
28
|
+
readonly name: "region";
|
|
29
|
+
};
|
|
30
|
+
readonly UseDualStack: {
|
|
31
|
+
readonly type: "builtInParams";
|
|
32
|
+
readonly name: "useDualstackEndpoint";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
17
35
|
export interface EndpointParameters extends __EndpointParameters {
|
|
18
36
|
Region?: string;
|
|
19
37
|
UseDualStack?: boolean;
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
KafkaConnectClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -20,19 +14,16 @@ export interface CreateConnectorCommandInput extends CreateConnectorRequest {}
|
|
|
20
14
|
export interface CreateConnectorCommandOutput
|
|
21
15
|
extends CreateConnectorResponse,
|
|
22
16
|
__MetadataBearer {}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
17
|
+
declare const CreateConnectorCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: CreateConnectorCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
CreateConnectorCommandInput,
|
|
22
|
+
CreateConnectorCommandOutput,
|
|
23
|
+
KafkaConnectClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class CreateConnectorCommand extends CreateConnectorCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
KafkaConnectClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,19 +15,16 @@ export interface CreateCustomPluginCommandInput
|
|
|
21
15
|
export interface CreateCustomPluginCommandOutput
|
|
22
16
|
extends CreateCustomPluginResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
private serialize;
|
|
38
|
-
private deserialize;
|
|
39
|
-
}
|
|
18
|
+
declare const CreateCustomPluginCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateCustomPluginCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateCustomPluginCommandInput,
|
|
23
|
+
CreateCustomPluginCommandOutput,
|
|
24
|
+
KafkaConnectClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class CreateCustomPluginCommand extends CreateCustomPluginCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
KafkaConnectClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,22 +15,16 @@ export interface CreateWorkerConfigurationCommandInput
|
|
|
21
15
|
export interface CreateWorkerConfigurationCommandOutput
|
|
22
16
|
extends CreateWorkerConfigurationResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: CreateWorkerConfigurationCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: CreateWorkerConfigurationCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: KafkaConnectClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const CreateWorkerConfigurationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateWorkerConfigurationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
CreateWorkerConfigurationCommandInput,
|
|
38
|
-
CreateWorkerConfigurationCommandOutput
|
|
23
|
+
CreateWorkerConfigurationCommandOutput,
|
|
24
|
+
KafkaConnectClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class CreateWorkerConfigurationCommand extends CreateWorkerConfigurationCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
KafkaConnectClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -20,19 +14,16 @@ export interface DeleteConnectorCommandInput extends DeleteConnectorRequest {}
|
|
|
20
14
|
export interface DeleteConnectorCommandOutput
|
|
21
15
|
extends DeleteConnectorResponse,
|
|
22
16
|
__MetadataBearer {}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
17
|
+
declare const DeleteConnectorCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: DeleteConnectorCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
DeleteConnectorCommandInput,
|
|
22
|
+
DeleteConnectorCommandOutput,
|
|
23
|
+
KafkaConnectClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class DeleteConnectorCommand extends DeleteConnectorCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
KafkaConnectClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,19 +15,16 @@ export interface DeleteCustomPluginCommandInput
|
|
|
21
15
|
export interface DeleteCustomPluginCommandOutput
|
|
22
16
|
extends DeleteCustomPluginResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
private serialize;
|
|
38
|
-
private deserialize;
|
|
39
|
-
}
|
|
18
|
+
declare const DeleteCustomPluginCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteCustomPluginCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DeleteCustomPluginCommandInput,
|
|
23
|
+
DeleteCustomPluginCommandOutput,
|
|
24
|
+
KafkaConnectClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class DeleteCustomPluginCommand extends DeleteCustomPluginCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
KafkaConnectClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,19 +15,16 @@ export interface DescribeConnectorCommandInput
|
|
|
21
15
|
export interface DescribeConnectorCommandOutput
|
|
22
16
|
extends DescribeConnectorResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
private serialize;
|
|
38
|
-
private deserialize;
|
|
39
|
-
}
|
|
18
|
+
declare const DescribeConnectorCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DescribeConnectorCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DescribeConnectorCommandInput,
|
|
23
|
+
DescribeConnectorCommandOutput,
|
|
24
|
+
KafkaConnectClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class DescribeConnectorCommand extends DescribeConnectorCommand_base {}
|