@aws-sdk/client-kafkaconnect 3.169.0 → 3.171.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 (32) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/KafkaConnect.d.ts +208 -65
  3. package/dist-types/ts3.4/KafkaConnectClient.d.ts +177 -85
  4. package/dist-types/ts3.4/commands/CreateConnectorCommand.d.ts +35 -17
  5. package/dist-types/ts3.4/commands/CreateCustomPluginCommand.d.ts +36 -17
  6. package/dist-types/ts3.4/commands/CreateWorkerConfigurationCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/DeleteConnectorCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/DeleteCustomPluginCommand.d.ts +36 -17
  9. package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +36 -17
  10. package/dist-types/ts3.4/commands/DescribeCustomPluginCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DescribeWorkerConfigurationCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +35 -17
  13. package/dist-types/ts3.4/commands/ListCustomPluginsCommand.d.ts +36 -17
  14. package/dist-types/ts3.4/commands/ListWorkerConfigurationsCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/UpdateConnectorCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/index.d.ts +12 -12
  17. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  18. package/dist-types/ts3.4/index.d.ts +6 -6
  19. package/dist-types/ts3.4/models/KafkaConnectServiceException.d.ts +7 -6
  20. package/dist-types/ts3.4/models/index.d.ts +1 -1
  21. package/dist-types/ts3.4/models/models_0.d.ts +667 -880
  22. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  23. package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +11 -4
  24. package/dist-types/ts3.4/pagination/ListCustomPluginsPaginator.d.ts +11 -4
  25. package/dist-types/ts3.4/pagination/ListWorkerConfigurationsPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  27. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -38
  28. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  29. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  30. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  31. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  32. package/package.json +34 -34
@@ -1,17 +1,36 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KafkaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KafkaConnectClient";
13
+ import {
14
+ CreateCustomPluginRequest,
15
+ CreateCustomPluginResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateCustomPluginCommandInput
18
+ extends CreateCustomPluginRequest {}
19
+ export interface CreateCustomPluginCommandOutput
20
+ extends CreateCustomPluginResponse,
21
+ __MetadataBearer {}
22
+ export declare class CreateCustomPluginCommand extends $Command<
23
+ CreateCustomPluginCommandInput,
24
+ CreateCustomPluginCommandOutput,
25
+ KafkaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: CreateCustomPluginCommandInput;
28
+ constructor(input: CreateCustomPluginCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: KafkaConnectClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<CreateCustomPluginCommandInput, CreateCustomPluginCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,39 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KafkaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KafkaConnectClient";
13
+ import {
14
+ CreateWorkerConfigurationRequest,
15
+ CreateWorkerConfigurationResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateWorkerConfigurationCommandInput
18
+ extends CreateWorkerConfigurationRequest {}
19
+ export interface CreateWorkerConfigurationCommandOutput
20
+ extends CreateWorkerConfigurationResponse,
21
+ __MetadataBearer {}
22
+ export declare class CreateWorkerConfigurationCommand extends $Command<
23
+ CreateWorkerConfigurationCommandInput,
24
+ CreateWorkerConfigurationCommandOutput,
25
+ KafkaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: CreateWorkerConfigurationCommandInput;
28
+ constructor(input: CreateWorkerConfigurationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: KafkaConnectClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ CreateWorkerConfigurationCommandInput,
35
+ CreateWorkerConfigurationCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,35 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KafkaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KafkaConnectClient";
13
+ import {
14
+ DeleteConnectorRequest,
15
+ DeleteConnectorResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteConnectorCommandInput extends DeleteConnectorRequest {}
18
+ export interface DeleteConnectorCommandOutput
19
+ extends DeleteConnectorResponse,
20
+ __MetadataBearer {}
21
+ export declare class DeleteConnectorCommand extends $Command<
22
+ DeleteConnectorCommandInput,
23
+ DeleteConnectorCommandOutput,
24
+ KafkaConnectClientResolvedConfig
25
+ > {
26
+ readonly input: DeleteConnectorCommandInput;
27
+ constructor(input: DeleteConnectorCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: KafkaConnectClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DeleteConnectorCommandInput, DeleteConnectorCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,36 @@
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 { DeleteCustomPluginRequest, DeleteCustomPluginResponse } from "../models/models_0";
5
- export interface DeleteCustomPluginCommandInput extends DeleteCustomPluginRequest {
6
- }
7
- export interface DeleteCustomPluginCommandOutput extends DeleteCustomPluginResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteCustomPluginCommand extends $Command<DeleteCustomPluginCommandInput, DeleteCustomPluginCommandOutput, KafkaConnectClientResolvedConfig> {
11
- readonly input: DeleteCustomPluginCommandInput;
12
- constructor(input: DeleteCustomPluginCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteCustomPluginCommandInput, DeleteCustomPluginCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KafkaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KafkaConnectClient";
13
+ import {
14
+ DeleteCustomPluginRequest,
15
+ DeleteCustomPluginResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteCustomPluginCommandInput
18
+ extends DeleteCustomPluginRequest {}
19
+ export interface DeleteCustomPluginCommandOutput
20
+ extends DeleteCustomPluginResponse,
21
+ __MetadataBearer {}
22
+ export declare class DeleteCustomPluginCommand extends $Command<
23
+ DeleteCustomPluginCommandInput,
24
+ DeleteCustomPluginCommandOutput,
25
+ KafkaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteCustomPluginCommandInput;
28
+ constructor(input: DeleteCustomPluginCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: KafkaConnectClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<DeleteCustomPluginCommandInput, DeleteCustomPluginCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,36 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KafkaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KafkaConnectClient";
13
+ import {
14
+ DescribeConnectorRequest,
15
+ DescribeConnectorResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeConnectorCommandInput
18
+ extends DescribeConnectorRequest {}
19
+ export interface DescribeConnectorCommandOutput
20
+ extends DescribeConnectorResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeConnectorCommand extends $Command<
23
+ DescribeConnectorCommandInput,
24
+ DescribeConnectorCommandOutput,
25
+ KafkaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeConnectorCommandInput;
28
+ constructor(input: DescribeConnectorCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: KafkaConnectClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<DescribeConnectorCommandInput, DescribeConnectorCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,39 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KafkaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KafkaConnectClient";
13
+ import {
14
+ DescribeCustomPluginRequest,
15
+ DescribeCustomPluginResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeCustomPluginCommandInput
18
+ extends DescribeCustomPluginRequest {}
19
+ export interface DescribeCustomPluginCommandOutput
20
+ extends DescribeCustomPluginResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeCustomPluginCommand extends $Command<
23
+ DescribeCustomPluginCommandInput,
24
+ DescribeCustomPluginCommandOutput,
25
+ KafkaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeCustomPluginCommandInput;
28
+ constructor(input: DescribeCustomPluginCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: KafkaConnectClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeCustomPluginCommandInput,
35
+ DescribeCustomPluginCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KafkaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KafkaConnectClient";
13
+ import {
14
+ DescribeWorkerConfigurationRequest,
15
+ DescribeWorkerConfigurationResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeWorkerConfigurationCommandInput
18
+ extends DescribeWorkerConfigurationRequest {}
19
+ export interface DescribeWorkerConfigurationCommandOutput
20
+ extends DescribeWorkerConfigurationResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeWorkerConfigurationCommand extends $Command<
23
+ DescribeWorkerConfigurationCommandInput,
24
+ DescribeWorkerConfigurationCommandOutput,
25
+ KafkaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeWorkerConfigurationCommandInput;
28
+ constructor(input: DescribeWorkerConfigurationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: KafkaConnectClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeWorkerConfigurationCommandInput,
35
+ DescribeWorkerConfigurationCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,35 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KafkaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KafkaConnectClient";
13
+ import {
14
+ ListConnectorsRequest,
15
+ ListConnectorsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListConnectorsCommandInput extends ListConnectorsRequest {}
18
+ export interface ListConnectorsCommandOutput
19
+ extends ListConnectorsResponse,
20
+ __MetadataBearer {}
21
+ export declare class ListConnectorsCommand extends $Command<
22
+ ListConnectorsCommandInput,
23
+ ListConnectorsCommandOutput,
24
+ KafkaConnectClientResolvedConfig
25
+ > {
26
+ readonly input: ListConnectorsCommandInput;
27
+ constructor(input: ListConnectorsCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: KafkaConnectClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListConnectorsCommandInput, ListConnectorsCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,36 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KafkaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KafkaConnectClient";
13
+ import {
14
+ ListCustomPluginsRequest,
15
+ ListCustomPluginsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListCustomPluginsCommandInput
18
+ extends ListCustomPluginsRequest {}
19
+ export interface ListCustomPluginsCommandOutput
20
+ extends ListCustomPluginsResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListCustomPluginsCommand extends $Command<
23
+ ListCustomPluginsCommandInput,
24
+ ListCustomPluginsCommandOutput,
25
+ KafkaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: ListCustomPluginsCommandInput;
28
+ constructor(input: ListCustomPluginsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: KafkaConnectClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,39 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KafkaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KafkaConnectClient";
13
+ import {
14
+ ListWorkerConfigurationsRequest,
15
+ ListWorkerConfigurationsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListWorkerConfigurationsCommandInput
18
+ extends ListWorkerConfigurationsRequest {}
19
+ export interface ListWorkerConfigurationsCommandOutput
20
+ extends ListWorkerConfigurationsResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListWorkerConfigurationsCommand extends $Command<
23
+ ListWorkerConfigurationsCommandInput,
24
+ ListWorkerConfigurationsCommandOutput,
25
+ KafkaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: ListWorkerConfigurationsCommandInput;
28
+ constructor(input: ListWorkerConfigurationsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: KafkaConnectClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ ListWorkerConfigurationsCommandInput,
35
+ ListWorkerConfigurationsCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,35 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KafkaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KafkaConnectClient";
13
+ import {
14
+ UpdateConnectorRequest,
15
+ UpdateConnectorResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateConnectorCommandInput extends UpdateConnectorRequest {}
18
+ export interface UpdateConnectorCommandOutput
19
+ extends UpdateConnectorResponse,
20
+ __MetadataBearer {}
21
+ export declare class UpdateConnectorCommand extends $Command<
22
+ UpdateConnectorCommandInput,
23
+ UpdateConnectorCommandOutput,
24
+ KafkaConnectClientResolvedConfig
25
+ > {
26
+ readonly input: UpdateConnectorCommandInput;
27
+ constructor(input: UpdateConnectorCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: KafkaConnectClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UpdateConnectorCommandInput, UpdateConnectorCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,12 +1,12 @@
1
- export * from "./CreateConnectorCommand";
2
- export * from "./CreateCustomPluginCommand";
3
- export * from "./CreateWorkerConfigurationCommand";
4
- export * from "./DeleteConnectorCommand";
5
- export * from "./DeleteCustomPluginCommand";
6
- export * from "./DescribeConnectorCommand";
7
- export * from "./DescribeCustomPluginCommand";
8
- export * from "./DescribeWorkerConfigurationCommand";
9
- export * from "./ListConnectorsCommand";
10
- export * from "./ListCustomPluginsCommand";
11
- export * from "./ListWorkerConfigurationsCommand";
12
- export * from "./UpdateConnectorCommand";
1
+ export * from "./CreateConnectorCommand";
2
+ export * from "./CreateCustomPluginCommand";
3
+ export * from "./CreateWorkerConfigurationCommand";
4
+ export * from "./DeleteConnectorCommand";
5
+ export * from "./DeleteCustomPluginCommand";
6
+ export * from "./DescribeConnectorCommand";
7
+ export * from "./DescribeCustomPluginCommand";
8
+ export * from "./DescribeWorkerConfigurationCommand";
9
+ export * from "./ListConnectorsCommand";
10
+ export * from "./ListCustomPluginsCommand";
11
+ export * from "./ListWorkerConfigurationsCommand";
12
+ export * from "./UpdateConnectorCommand";