@aws-sdk/client-kafkaconnect 3.50.0 → 3.53.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.
Files changed (42) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/KafkaConnectServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +107 -2
  5. package/dist-cjs/protocols/Aws_restJson1.js +184 -651
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/KafkaConnectServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +98 -1
  9. package/dist-es/protocols/Aws_restJson1.js +337 -704
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/KafkaConnectServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +58 -33
  13. package/dist-types/ts3.4/KafkaConnect.d.ts +60 -0
  14. package/dist-types/ts3.4/KafkaConnectClient.d.ts +84 -0
  15. package/dist-types/ts3.4/commands/CreateConnectorCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateCustomPluginCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreateWorkerConfigurationCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DeleteConnectorCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DescribeCustomPluginCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DescribeWorkerConfigurationCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/ListCustomPluginsCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/ListWorkerConfigurationsCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/UpdateConnectorCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  27. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  28. package/dist-types/ts3.4/index.d.ts +6 -0
  29. package/dist-types/ts3.4/models/KafkaConnectServiceException.d.ts +6 -0
  30. package/dist-types/ts3.4/models/index.d.ts +1 -0
  31. package/dist-types/ts3.4/models/models_0.d.ts +1005 -0
  32. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  33. package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +4 -0
  34. package/dist-types/ts3.4/pagination/ListCustomPluginsPaginator.d.ts +4 -0
  35. package/dist-types/ts3.4/pagination/ListWorkerConfigurationsPaginator.d.ts +4 -0
  36. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  37. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +35 -0
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  42. package/package.json +33 -33
@@ -3,3 +3,4 @@ export * from "./KafkaConnectClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { KafkaConnectServiceException } from "./models/KafkaConnectServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from KafkaConnect service.
4
+ */
5
+ export declare class KafkaConnectServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { KafkaConnectServiceException as __BaseException } from "./KafkaConnectServiceException";
2
3
  /**
3
4
  * <p>The description of the scale-in policy for the connector.</p>
4
5
  */
@@ -809,10 +810,13 @@ export declare namespace AutoScalingUpdate {
809
810
  /**
810
811
  * <p>HTTP Status Code 400: Bad request due to incorrect input. Correct your request and then retry it.</p>
811
812
  */
812
- export interface BadRequestException extends __SmithyException, $MetadataBearer {
813
- name: "BadRequestException";
814
- $fault: "client";
815
- message?: string;
813
+ export declare class BadRequestException extends __BaseException {
814
+ readonly name: "BadRequestException";
815
+ readonly $fault: "client";
816
+ /**
817
+ * @internal
818
+ */
819
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
816
820
  }
817
821
  /**
818
822
  * <p>Details about a connector's provisioned capacity.</p>
@@ -912,10 +916,13 @@ export declare namespace CloudWatchLogsLogDelivery {
912
916
  /**
913
917
  * <p>HTTP Status Code 409: Conflict. A resource with this name already exists. Retry your request with another name.</p>
914
918
  */
915
- export interface ConflictException extends __SmithyException, $MetadataBearer {
916
- name: "ConflictException";
917
- $fault: "client";
918
- message?: string;
919
+ export declare class ConflictException extends __BaseException {
920
+ readonly name: "ConflictException";
921
+ readonly $fault: "client";
922
+ /**
923
+ * @internal
924
+ */
925
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
919
926
  }
920
927
  /**
921
928
  * <p>The details of the Apache Kafka cluster to which the connector is connected.</p>
@@ -1142,50 +1149,68 @@ export declare namespace CreateConnectorResponse {
1142
1149
  /**
1143
1150
  * <p>HTTP Status Code 403: Access forbidden. Correct your credentials and then retry your request.</p>
1144
1151
  */
1145
- export interface ForbiddenException extends __SmithyException, $MetadataBearer {
1146
- name: "ForbiddenException";
1147
- $fault: "client";
1148
- message?: string;
1152
+ export declare class ForbiddenException extends __BaseException {
1153
+ readonly name: "ForbiddenException";
1154
+ readonly $fault: "client";
1155
+ /**
1156
+ * @internal
1157
+ */
1158
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
1149
1159
  }
1150
1160
  /**
1151
1161
  * <p>HTTP Status Code 500: Unexpected internal server error. Retrying your request might resolve the issue.</p>
1152
1162
  */
1153
- export interface InternalServerErrorException extends __SmithyException, $MetadataBearer {
1154
- name: "InternalServerErrorException";
1155
- $fault: "server";
1156
- message?: string;
1163
+ export declare class InternalServerErrorException extends __BaseException {
1164
+ readonly name: "InternalServerErrorException";
1165
+ readonly $fault: "server";
1166
+ /**
1167
+ * @internal
1168
+ */
1169
+ constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
1157
1170
  }
1158
1171
  /**
1159
1172
  * <p>HTTP Status Code 404: Resource not found due to incorrect input. Correct your request and then retry it.</p>
1160
1173
  */
1161
- export interface NotFoundException extends __SmithyException, $MetadataBearer {
1162
- name: "NotFoundException";
1163
- $fault: "client";
1164
- message?: string;
1174
+ export declare class NotFoundException extends __BaseException {
1175
+ readonly name: "NotFoundException";
1176
+ readonly $fault: "client";
1177
+ /**
1178
+ * @internal
1179
+ */
1180
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
1165
1181
  }
1166
1182
  /**
1167
1183
  * <p>HTTP Status Code 503: Service Unavailable. Retrying your request in some time might resolve the issue.</p>
1168
1184
  */
1169
- export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
1170
- name: "ServiceUnavailableException";
1171
- $fault: "server";
1172
- message?: string;
1185
+ export declare class ServiceUnavailableException extends __BaseException {
1186
+ readonly name: "ServiceUnavailableException";
1187
+ readonly $fault: "server";
1188
+ /**
1189
+ * @internal
1190
+ */
1191
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
1173
1192
  }
1174
1193
  /**
1175
1194
  * <p>HTTP Status Code 429: Limit exceeded. Resource limit reached.</p>
1176
1195
  */
1177
- export interface TooManyRequestsException extends __SmithyException, $MetadataBearer {
1178
- name: "TooManyRequestsException";
1179
- $fault: "client";
1180
- message?: string;
1196
+ export declare class TooManyRequestsException extends __BaseException {
1197
+ readonly name: "TooManyRequestsException";
1198
+ readonly $fault: "client";
1199
+ /**
1200
+ * @internal
1201
+ */
1202
+ constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
1181
1203
  }
1182
1204
  /**
1183
1205
  * <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be validated.</p>
1184
1206
  */
1185
- export interface UnauthorizedException extends __SmithyException, $MetadataBearer {
1186
- name: "UnauthorizedException";
1187
- $fault: "client";
1188
- message?: string;
1207
+ export declare class UnauthorizedException extends __BaseException {
1208
+ readonly name: "UnauthorizedException";
1209
+ readonly $fault: "client";
1210
+ /**
1211
+ * @internal
1212
+ */
1213
+ constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
1189
1214
  }
1190
1215
  /**
1191
1216
  * <p>The location of an object in Amazon S3.</p>
@@ -0,0 +1,60 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { CreateConnectorCommandInput, CreateConnectorCommandOutput } from "./commands/CreateConnectorCommand";
3
+ import { CreateCustomPluginCommandInput, CreateCustomPluginCommandOutput } from "./commands/CreateCustomPluginCommand";
4
+ import { CreateWorkerConfigurationCommandInput, CreateWorkerConfigurationCommandOutput } from "./commands/CreateWorkerConfigurationCommand";
5
+ import { DeleteConnectorCommandInput, DeleteConnectorCommandOutput } from "./commands/DeleteConnectorCommand";
6
+ import { DescribeConnectorCommandInput, DescribeConnectorCommandOutput } from "./commands/DescribeConnectorCommand";
7
+ import { DescribeCustomPluginCommandInput, DescribeCustomPluginCommandOutput } from "./commands/DescribeCustomPluginCommand";
8
+ import { DescribeWorkerConfigurationCommandInput, DescribeWorkerConfigurationCommandOutput } from "./commands/DescribeWorkerConfigurationCommand";
9
+ import { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "./commands/ListConnectorsCommand";
10
+ import { ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput } from "./commands/ListCustomPluginsCommand";
11
+ import { ListWorkerConfigurationsCommandInput, ListWorkerConfigurationsCommandOutput } from "./commands/ListWorkerConfigurationsCommand";
12
+ import { UpdateConnectorCommandInput, UpdateConnectorCommandOutput } from "./commands/UpdateConnectorCommand";
13
+ import { KafkaConnectClient } from "./KafkaConnectClient";
14
+
15
+ export declare class KafkaConnect extends KafkaConnectClient {
16
+
17
+ createConnector(args: CreateConnectorCommandInput, options?: __HttpHandlerOptions): Promise<CreateConnectorCommandOutput>;
18
+ createConnector(args: CreateConnectorCommandInput, cb: (err: any, data?: CreateConnectorCommandOutput) => void): void;
19
+ createConnector(args: CreateConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConnectorCommandOutput) => void): void;
20
+
21
+ createCustomPlugin(args: CreateCustomPluginCommandInput, options?: __HttpHandlerOptions): Promise<CreateCustomPluginCommandOutput>;
22
+ createCustomPlugin(args: CreateCustomPluginCommandInput, cb: (err: any, data?: CreateCustomPluginCommandOutput) => void): void;
23
+ createCustomPlugin(args: CreateCustomPluginCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCustomPluginCommandOutput) => void): void;
24
+
25
+ createWorkerConfiguration(args: CreateWorkerConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkerConfigurationCommandOutput>;
26
+ createWorkerConfiguration(args: CreateWorkerConfigurationCommandInput, cb: (err: any, data?: CreateWorkerConfigurationCommandOutput) => void): void;
27
+ createWorkerConfiguration(args: CreateWorkerConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkerConfigurationCommandOutput) => void): void;
28
+
29
+ deleteConnector(args: DeleteConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConnectorCommandOutput>;
30
+ deleteConnector(args: DeleteConnectorCommandInput, cb: (err: any, data?: DeleteConnectorCommandOutput) => void): void;
31
+ deleteConnector(args: DeleteConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectorCommandOutput) => void): void;
32
+
33
+ describeConnector(args: DescribeConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectorCommandOutput>;
34
+ describeConnector(args: DescribeConnectorCommandInput, cb: (err: any, data?: DescribeConnectorCommandOutput) => void): void;
35
+ describeConnector(args: DescribeConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectorCommandOutput) => void): void;
36
+
37
+ describeCustomPlugin(args: DescribeCustomPluginCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCustomPluginCommandOutput>;
38
+ describeCustomPlugin(args: DescribeCustomPluginCommandInput, cb: (err: any, data?: DescribeCustomPluginCommandOutput) => void): void;
39
+ describeCustomPlugin(args: DescribeCustomPluginCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCustomPluginCommandOutput) => void): void;
40
+
41
+ describeWorkerConfiguration(args: DescribeWorkerConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeWorkerConfigurationCommandOutput>;
42
+ describeWorkerConfiguration(args: DescribeWorkerConfigurationCommandInput, cb: (err: any, data?: DescribeWorkerConfigurationCommandOutput) => void): void;
43
+ describeWorkerConfiguration(args: DescribeWorkerConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeWorkerConfigurationCommandOutput) => void): void;
44
+
45
+ listConnectors(args: ListConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectorsCommandOutput>;
46
+ listConnectors(args: ListConnectorsCommandInput, cb: (err: any, data?: ListConnectorsCommandOutput) => void): void;
47
+ listConnectors(args: ListConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectorsCommandOutput) => void): void;
48
+
49
+ listCustomPlugins(args: ListCustomPluginsCommandInput, options?: __HttpHandlerOptions): Promise<ListCustomPluginsCommandOutput>;
50
+ listCustomPlugins(args: ListCustomPluginsCommandInput, cb: (err: any, data?: ListCustomPluginsCommandOutput) => void): void;
51
+ listCustomPlugins(args: ListCustomPluginsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCustomPluginsCommandOutput) => void): void;
52
+
53
+ listWorkerConfigurations(args: ListWorkerConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkerConfigurationsCommandOutput>;
54
+ listWorkerConfigurations(args: ListWorkerConfigurationsCommandInput, cb: (err: any, data?: ListWorkerConfigurationsCommandOutput) => void): void;
55
+ listWorkerConfigurations(args: ListWorkerConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkerConfigurationsCommandOutput) => void): void;
56
+
57
+ updateConnector(args: UpdateConnectorCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConnectorCommandOutput>;
58
+ updateConnector(args: UpdateConnectorCommandInput, cb: (err: any, data?: UpdateConnectorCommandOutput) => void): void;
59
+ updateConnector(args: UpdateConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConnectorCommandOutput) => void): void;
60
+ }
@@ -0,0 +1,84 @@
1
+ import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
+ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
+ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
+ import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { CreateConnectorCommandInput, CreateConnectorCommandOutput } from "./commands/CreateConnectorCommand";
10
+ import { CreateCustomPluginCommandInput, CreateCustomPluginCommandOutput } from "./commands/CreateCustomPluginCommand";
11
+ import { CreateWorkerConfigurationCommandInput, CreateWorkerConfigurationCommandOutput } from "./commands/CreateWorkerConfigurationCommand";
12
+ import { DeleteConnectorCommandInput, DeleteConnectorCommandOutput } from "./commands/DeleteConnectorCommand";
13
+ import { DescribeConnectorCommandInput, DescribeConnectorCommandOutput } from "./commands/DescribeConnectorCommand";
14
+ import { DescribeCustomPluginCommandInput, DescribeCustomPluginCommandOutput } from "./commands/DescribeCustomPluginCommand";
15
+ import { DescribeWorkerConfigurationCommandInput, DescribeWorkerConfigurationCommandOutput } from "./commands/DescribeWorkerConfigurationCommand";
16
+ import { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "./commands/ListConnectorsCommand";
17
+ import { ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput } from "./commands/ListCustomPluginsCommand";
18
+ import { ListWorkerConfigurationsCommandInput, ListWorkerConfigurationsCommandOutput } from "./commands/ListWorkerConfigurationsCommand";
19
+ import { UpdateConnectorCommandInput, UpdateConnectorCommandOutput } from "./commands/UpdateConnectorCommand";
20
+ export declare type ServiceInputTypes = CreateConnectorCommandInput | CreateCustomPluginCommandInput | CreateWorkerConfigurationCommandInput | DeleteConnectorCommandInput | DescribeConnectorCommandInput | DescribeCustomPluginCommandInput | DescribeWorkerConfigurationCommandInput | ListConnectorsCommandInput | ListCustomPluginsCommandInput | ListWorkerConfigurationsCommandInput | UpdateConnectorCommandInput;
21
+ export declare type ServiceOutputTypes = CreateConnectorCommandOutput | CreateCustomPluginCommandOutput | CreateWorkerConfigurationCommandOutput | DeleteConnectorCommandOutput | DescribeConnectorCommandOutput | DescribeCustomPluginCommandOutput | DescribeWorkerConfigurationCommandOutput | ListConnectorsCommandOutput | ListCustomPluginsCommandOutput | ListWorkerConfigurationsCommandOutput | UpdateConnectorCommandOutput;
22
+ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
23
+
24
+ requestHandler?: __HttpHandler;
25
+
26
+ sha256?: __HashConstructor;
27
+
28
+ urlParser?: __UrlParser;
29
+
30
+ bodyLengthChecker?: (body: any) => number | undefined;
31
+
32
+ streamCollector?: __StreamCollector;
33
+
34
+ base64Decoder?: __Decoder;
35
+
36
+ base64Encoder?: __Encoder;
37
+
38
+ utf8Decoder?: __Decoder;
39
+
40
+ utf8Encoder?: __Encoder;
41
+
42
+ runtime?: string;
43
+
44
+ disableHostPrefix?: boolean;
45
+
46
+ maxAttempts?: number | __Provider<number>;
47
+
48
+ retryMode?: string | __Provider<string>;
49
+
50
+ logger?: __Logger;
51
+
52
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
53
+
54
+ useFipsEndpoint?: boolean | __Provider<boolean>;
55
+
56
+ serviceId?: string;
57
+
58
+ region?: string | __Provider<string>;
59
+
60
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
61
+
62
+ regionInfoProvider?: RegionInfoProvider;
63
+
64
+ defaultUserAgentProvider?: Provider<__UserAgent>;
65
+
66
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
67
+ }
68
+ declare type KafkaConnectClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
69
+
70
+ export interface KafkaConnectClientConfig extends KafkaConnectClientConfigType {
71
+ }
72
+ declare type KafkaConnectClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
73
+
74
+ export interface KafkaConnectClientResolvedConfig extends KafkaConnectClientResolvedConfigType {
75
+ }
76
+
77
+ export declare class KafkaConnectClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, KafkaConnectClientResolvedConfig> {
78
+
79
+ readonly config: KafkaConnectClientResolvedConfig;
80
+ constructor(configuration: KafkaConnectClientConfig);
81
+
82
+ destroy(): void;
83
+ }
84
+ export {};
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
4
+ import { CreateConnectorRequest, CreateConnectorResponse } from "../models/models_0";
5
+ export interface CreateConnectorCommandInput extends CreateConnectorRequest {
6
+ }
7
+ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateConnectorCommand extends $Command<CreateConnectorCommandInput, CreateConnectorCommandOutput, KafkaConnectClientResolvedConfig> {
11
+ readonly input: CreateConnectorCommandInput;
12
+ constructor(input: CreateConnectorCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateConnectorCommandInput, CreateConnectorCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
4
+ import { CreateCustomPluginRequest, CreateCustomPluginResponse } from "../models/models_0";
5
+ export interface CreateCustomPluginCommandInput extends CreateCustomPluginRequest {
6
+ }
7
+ export interface CreateCustomPluginCommandOutput extends CreateCustomPluginResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateCustomPluginCommand extends $Command<CreateCustomPluginCommandInput, CreateCustomPluginCommandOutput, KafkaConnectClientResolvedConfig> {
11
+ readonly input: CreateCustomPluginCommandInput;
12
+ constructor(input: CreateCustomPluginCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCustomPluginCommandInput, CreateCustomPluginCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
4
+ import { CreateWorkerConfigurationRequest, CreateWorkerConfigurationResponse } from "../models/models_0";
5
+ export interface CreateWorkerConfigurationCommandInput extends CreateWorkerConfigurationRequest {
6
+ }
7
+ export interface CreateWorkerConfigurationCommandOutput extends CreateWorkerConfigurationResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateWorkerConfigurationCommand extends $Command<CreateWorkerConfigurationCommandInput, CreateWorkerConfigurationCommandOutput, KafkaConnectClientResolvedConfig> {
11
+ readonly input: CreateWorkerConfigurationCommandInput;
12
+ constructor(input: CreateWorkerConfigurationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateWorkerConfigurationCommandInput, CreateWorkerConfigurationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
4
+ import { DeleteConnectorRequest, DeleteConnectorResponse } from "../models/models_0";
5
+ export interface DeleteConnectorCommandInput extends DeleteConnectorRequest {
6
+ }
7
+ export interface DeleteConnectorCommandOutput extends DeleteConnectorResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteConnectorCommand extends $Command<DeleteConnectorCommandInput, DeleteConnectorCommandOutput, KafkaConnectClientResolvedConfig> {
11
+ readonly input: DeleteConnectorCommandInput;
12
+ constructor(input: DeleteConnectorCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteConnectorCommandInput, DeleteConnectorCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
4
+ import { DescribeConnectorRequest, DescribeConnectorResponse } from "../models/models_0";
5
+ export interface DescribeConnectorCommandInput extends DescribeConnectorRequest {
6
+ }
7
+ export interface DescribeConnectorCommandOutput extends DescribeConnectorResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeConnectorCommand extends $Command<DescribeConnectorCommandInput, DescribeConnectorCommandOutput, KafkaConnectClientResolvedConfig> {
11
+ readonly input: DescribeConnectorCommandInput;
12
+ constructor(input: DescribeConnectorCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeConnectorCommandInput, DescribeConnectorCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
4
+ import { DescribeCustomPluginRequest, DescribeCustomPluginResponse } from "../models/models_0";
5
+ export interface DescribeCustomPluginCommandInput extends DescribeCustomPluginRequest {
6
+ }
7
+ export interface DescribeCustomPluginCommandOutput extends DescribeCustomPluginResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeCustomPluginCommand extends $Command<DescribeCustomPluginCommandInput, DescribeCustomPluginCommandOutput, KafkaConnectClientResolvedConfig> {
11
+ readonly input: DescribeCustomPluginCommandInput;
12
+ constructor(input: DescribeCustomPluginCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCustomPluginCommandInput, DescribeCustomPluginCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
4
+ import { DescribeWorkerConfigurationRequest, DescribeWorkerConfigurationResponse } from "../models/models_0";
5
+ export interface DescribeWorkerConfigurationCommandInput extends DescribeWorkerConfigurationRequest {
6
+ }
7
+ export interface DescribeWorkerConfigurationCommandOutput extends DescribeWorkerConfigurationResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeWorkerConfigurationCommand extends $Command<DescribeWorkerConfigurationCommandInput, DescribeWorkerConfigurationCommandOutput, KafkaConnectClientResolvedConfig> {
11
+ readonly input: DescribeWorkerConfigurationCommandInput;
12
+ constructor(input: DescribeWorkerConfigurationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeWorkerConfigurationCommandInput, DescribeWorkerConfigurationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
4
+ import { ListConnectorsRequest, ListConnectorsResponse } from "../models/models_0";
5
+ export interface ListConnectorsCommandInput extends ListConnectorsRequest {
6
+ }
7
+ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListConnectorsCommand extends $Command<ListConnectorsCommandInput, ListConnectorsCommandOutput, KafkaConnectClientResolvedConfig> {
11
+ readonly input: ListConnectorsCommandInput;
12
+ constructor(input: ListConnectorsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConnectorsCommandInput, ListConnectorsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
4
+ import { ListCustomPluginsRequest, ListCustomPluginsResponse } from "../models/models_0";
5
+ export interface ListCustomPluginsCommandInput extends ListCustomPluginsRequest {
6
+ }
7
+ export interface ListCustomPluginsCommandOutput extends ListCustomPluginsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListCustomPluginsCommand extends $Command<ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput, KafkaConnectClientResolvedConfig> {
11
+ readonly input: ListCustomPluginsCommandInput;
12
+ constructor(input: ListCustomPluginsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
4
+ import { ListWorkerConfigurationsRequest, ListWorkerConfigurationsResponse } from "../models/models_0";
5
+ export interface ListWorkerConfigurationsCommandInput extends ListWorkerConfigurationsRequest {
6
+ }
7
+ export interface ListWorkerConfigurationsCommandOutput extends ListWorkerConfigurationsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListWorkerConfigurationsCommand extends $Command<ListWorkerConfigurationsCommandInput, ListWorkerConfigurationsCommandOutput, KafkaConnectClientResolvedConfig> {
11
+ readonly input: ListWorkerConfigurationsCommandInput;
12
+ constructor(input: ListWorkerConfigurationsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWorkerConfigurationsCommandInput, ListWorkerConfigurationsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
4
+ import { UpdateConnectorRequest, UpdateConnectorResponse } from "../models/models_0";
5
+ export interface UpdateConnectorCommandInput extends UpdateConnectorRequest {
6
+ }
7
+ export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateConnectorCommand extends $Command<UpdateConnectorCommandInput, UpdateConnectorCommandOutput, KafkaConnectClientResolvedConfig> {
11
+ readonly input: UpdateConnectorCommandInput;
12
+ constructor(input: UpdateConnectorCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateConnectorCommandInput, UpdateConnectorCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,11 @@
1
+ export * from "./CreateConnectorCommand";
2
+ export * from "./CreateCustomPluginCommand";
3
+ export * from "./CreateWorkerConfigurationCommand";
4
+ export * from "./DeleteConnectorCommand";
5
+ export * from "./DescribeConnectorCommand";
6
+ export * from "./DescribeCustomPluginCommand";
7
+ export * from "./DescribeWorkerConfigurationCommand";
8
+ export * from "./ListConnectorsCommand";
9
+ export * from "./ListCustomPluginsCommand";
10
+ export * from "./ListWorkerConfigurationsCommand";
11
+ export * from "./UpdateConnectorCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +1,6 @@
1
+ export * from "./KafkaConnect";
2
+ export * from "./KafkaConnectClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { KafkaConnectServiceException } from "./models/KafkaConnectServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class KafkaConnectServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";