@aws-sdk/client-kafkaconnect 3.169.0 → 3.170.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/KafkaConnect.d.ts +220 -65
- package/dist-types/ts3.4/KafkaConnectClient.d.ts +202 -85
- package/dist-types/ts3.4/commands/CreateConnectorCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateCustomPluginCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateWorkerConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteConnectorCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteCustomPluginCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeCustomPluginCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeWorkerConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListCustomPluginsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListWorkerConfigurationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateConnectorCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +12 -12
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/KafkaConnectServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +953 -880
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListCustomPluginsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListWorkerConfigurationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -38
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
|
|
23
|
+
export declare class CreateCustomPluginCommand extends $Command<
|
|
24
|
+
CreateCustomPluginCommandInput,
|
|
25
|
+
CreateCustomPluginCommandOutput,
|
|
26
|
+
KafkaConnectClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateCustomPluginCommandInput;
|
|
29
|
+
constructor(input: CreateCustomPluginCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KafkaConnectClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateCustomPluginCommandInput, CreateCustomPluginCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
|
|
23
|
+
export declare class CreateWorkerConfigurationCommand extends $Command<
|
|
24
|
+
CreateWorkerConfigurationCommandInput,
|
|
25
|
+
CreateWorkerConfigurationCommandOutput,
|
|
26
|
+
KafkaConnectClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateWorkerConfigurationCommandInput;
|
|
29
|
+
constructor(input: CreateWorkerConfigurationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KafkaConnectClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateWorkerConfigurationCommandInput,
|
|
37
|
+
CreateWorkerConfigurationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
|
|
22
|
+
export declare class DeleteConnectorCommand extends $Command<
|
|
23
|
+
DeleteConnectorCommandInput,
|
|
24
|
+
DeleteConnectorCommandOutput,
|
|
25
|
+
KafkaConnectClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteConnectorCommandInput;
|
|
28
|
+
constructor(input: DeleteConnectorCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: KafkaConnectClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DeleteConnectorCommandInput, DeleteConnectorCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
|
|
23
|
+
export declare class DeleteCustomPluginCommand extends $Command<
|
|
24
|
+
DeleteCustomPluginCommandInput,
|
|
25
|
+
DeleteCustomPluginCommandOutput,
|
|
26
|
+
KafkaConnectClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteCustomPluginCommandInput;
|
|
29
|
+
constructor(input: DeleteCustomPluginCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KafkaConnectClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeleteCustomPluginCommandInput, DeleteCustomPluginCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
|
|
23
|
+
export declare class DescribeConnectorCommand extends $Command<
|
|
24
|
+
DescribeConnectorCommandInput,
|
|
25
|
+
DescribeConnectorCommandOutput,
|
|
26
|
+
KafkaConnectClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeConnectorCommandInput;
|
|
29
|
+
constructor(input: DescribeConnectorCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KafkaConnectClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DescribeConnectorCommandInput, DescribeConnectorCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
|
|
23
|
+
export declare class DescribeCustomPluginCommand extends $Command<
|
|
24
|
+
DescribeCustomPluginCommandInput,
|
|
25
|
+
DescribeCustomPluginCommandOutput,
|
|
26
|
+
KafkaConnectClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeCustomPluginCommandInput;
|
|
29
|
+
constructor(input: DescribeCustomPluginCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KafkaConnectClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeCustomPluginCommandInput,
|
|
37
|
+
DescribeCustomPluginCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
|
|
23
|
+
export declare class DescribeWorkerConfigurationCommand extends $Command<
|
|
24
|
+
DescribeWorkerConfigurationCommandInput,
|
|
25
|
+
DescribeWorkerConfigurationCommandOutput,
|
|
26
|
+
KafkaConnectClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeWorkerConfigurationCommandInput;
|
|
29
|
+
constructor(input: DescribeWorkerConfigurationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KafkaConnectClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeWorkerConfigurationCommandInput,
|
|
37
|
+
DescribeWorkerConfigurationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
|
|
22
|
+
export declare class ListConnectorsCommand extends $Command<
|
|
23
|
+
ListConnectorsCommandInput,
|
|
24
|
+
ListConnectorsCommandOutput,
|
|
25
|
+
KafkaConnectClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListConnectorsCommandInput;
|
|
28
|
+
constructor(input: ListConnectorsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: KafkaConnectClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListConnectorsCommandInput, ListConnectorsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
|
|
23
|
+
export declare class ListCustomPluginsCommand extends $Command<
|
|
24
|
+
ListCustomPluginsCommandInput,
|
|
25
|
+
ListCustomPluginsCommandOutput,
|
|
26
|
+
KafkaConnectClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListCustomPluginsCommandInput;
|
|
29
|
+
constructor(input: ListCustomPluginsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KafkaConnectClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
|
|
23
|
+
export declare class ListWorkerConfigurationsCommand extends $Command<
|
|
24
|
+
ListWorkerConfigurationsCommandInput,
|
|
25
|
+
ListWorkerConfigurationsCommandOutput,
|
|
26
|
+
KafkaConnectClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListWorkerConfigurationsCommandInput;
|
|
29
|
+
constructor(input: ListWorkerConfigurationsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KafkaConnectClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListWorkerConfigurationsCommandInput,
|
|
37
|
+
ListWorkerConfigurationsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
|
|
22
|
+
export declare class UpdateConnectorCommand extends $Command<
|
|
23
|
+
UpdateConnectorCommandInput,
|
|
24
|
+
UpdateConnectorCommandOutput,
|
|
25
|
+
KafkaConnectClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateConnectorCommandInput;
|
|
28
|
+
constructor(input: UpdateConnectorCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: KafkaConnectClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UpdateConnectorCommandInput, UpdateConnectorCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|