@aws-sdk/client-kafkaconnect 3.312.0 → 3.316.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/KafkaConnect.js +16 -168
- package/dist-cjs/protocols/Aws_restJson1.js +237 -681
- package/dist-es/KafkaConnect.js +16 -168
- package/dist-es/protocols/Aws_restJson1.js +213 -657
- package/dist-types/KafkaConnect.d.ts +19 -31
- package/dist-types/ts3.4/KafkaConnect.d.ts +4 -1
- package/package.json +6 -6
|
@@ -12,95 +12,83 @@ import { ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput } from ".
|
|
|
12
12
|
import { ListWorkerConfigurationsCommandInput, ListWorkerConfigurationsCommandOutput } from "./commands/ListWorkerConfigurationsCommand";
|
|
13
13
|
import { UpdateConnectorCommandInput, UpdateConnectorCommandOutput } from "./commands/UpdateConnectorCommand";
|
|
14
14
|
import { KafkaConnectClient } from "./KafkaConnectClient";
|
|
15
|
-
|
|
16
|
-
* @public
|
|
17
|
-
* <p/>
|
|
18
|
-
*/
|
|
19
|
-
export declare class KafkaConnect extends KafkaConnectClient {
|
|
15
|
+
export interface KafkaConnect {
|
|
20
16
|
/**
|
|
21
|
-
* @
|
|
22
|
-
* <p>Creates a connector using the specified properties.</p>
|
|
17
|
+
* @see {@link CreateConnectorCommand}
|
|
23
18
|
*/
|
|
24
19
|
createConnector(args: CreateConnectorCommandInput, options?: __HttpHandlerOptions): Promise<CreateConnectorCommandOutput>;
|
|
25
20
|
createConnector(args: CreateConnectorCommandInput, cb: (err: any, data?: CreateConnectorCommandOutput) => void): void;
|
|
26
21
|
createConnector(args: CreateConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConnectorCommandOutput) => void): void;
|
|
27
22
|
/**
|
|
28
|
-
* @
|
|
29
|
-
* <p>Creates a custom plugin using the specified properties.</p>
|
|
23
|
+
* @see {@link CreateCustomPluginCommand}
|
|
30
24
|
*/
|
|
31
25
|
createCustomPlugin(args: CreateCustomPluginCommandInput, options?: __HttpHandlerOptions): Promise<CreateCustomPluginCommandOutput>;
|
|
32
26
|
createCustomPlugin(args: CreateCustomPluginCommandInput, cb: (err: any, data?: CreateCustomPluginCommandOutput) => void): void;
|
|
33
27
|
createCustomPlugin(args: CreateCustomPluginCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCustomPluginCommandOutput) => void): void;
|
|
34
28
|
/**
|
|
35
|
-
* @
|
|
36
|
-
* <p>Creates a worker configuration using the specified properties.</p>
|
|
29
|
+
* @see {@link CreateWorkerConfigurationCommand}
|
|
37
30
|
*/
|
|
38
31
|
createWorkerConfiguration(args: CreateWorkerConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkerConfigurationCommandOutput>;
|
|
39
32
|
createWorkerConfiguration(args: CreateWorkerConfigurationCommandInput, cb: (err: any, data?: CreateWorkerConfigurationCommandOutput) => void): void;
|
|
40
33
|
createWorkerConfiguration(args: CreateWorkerConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkerConfigurationCommandOutput) => void): void;
|
|
41
34
|
/**
|
|
42
|
-
* @
|
|
43
|
-
* <p>Deletes the specified connector.</p>
|
|
35
|
+
* @see {@link DeleteConnectorCommand}
|
|
44
36
|
*/
|
|
45
37
|
deleteConnector(args: DeleteConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConnectorCommandOutput>;
|
|
46
38
|
deleteConnector(args: DeleteConnectorCommandInput, cb: (err: any, data?: DeleteConnectorCommandOutput) => void): void;
|
|
47
39
|
deleteConnector(args: DeleteConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectorCommandOutput) => void): void;
|
|
48
40
|
/**
|
|
49
|
-
* @
|
|
50
|
-
* <p>Deletes a custom plugin.</p>
|
|
41
|
+
* @see {@link DeleteCustomPluginCommand}
|
|
51
42
|
*/
|
|
52
43
|
deleteCustomPlugin(args: DeleteCustomPluginCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCustomPluginCommandOutput>;
|
|
53
44
|
deleteCustomPlugin(args: DeleteCustomPluginCommandInput, cb: (err: any, data?: DeleteCustomPluginCommandOutput) => void): void;
|
|
54
45
|
deleteCustomPlugin(args: DeleteCustomPluginCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCustomPluginCommandOutput) => void): void;
|
|
55
46
|
/**
|
|
56
|
-
* @
|
|
57
|
-
* <p>Returns summary information about the connector.</p>
|
|
47
|
+
* @see {@link DescribeConnectorCommand}
|
|
58
48
|
*/
|
|
59
49
|
describeConnector(args: DescribeConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectorCommandOutput>;
|
|
60
50
|
describeConnector(args: DescribeConnectorCommandInput, cb: (err: any, data?: DescribeConnectorCommandOutput) => void): void;
|
|
61
51
|
describeConnector(args: DescribeConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectorCommandOutput) => void): void;
|
|
62
52
|
/**
|
|
63
|
-
* @
|
|
64
|
-
* <p>A summary description of the custom plugin.</p>
|
|
53
|
+
* @see {@link DescribeCustomPluginCommand}
|
|
65
54
|
*/
|
|
66
55
|
describeCustomPlugin(args: DescribeCustomPluginCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCustomPluginCommandOutput>;
|
|
67
56
|
describeCustomPlugin(args: DescribeCustomPluginCommandInput, cb: (err: any, data?: DescribeCustomPluginCommandOutput) => void): void;
|
|
68
57
|
describeCustomPlugin(args: DescribeCustomPluginCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCustomPluginCommandOutput) => void): void;
|
|
69
58
|
/**
|
|
70
|
-
* @
|
|
71
|
-
* <p>Returns information about a worker configuration.</p>
|
|
59
|
+
* @see {@link DescribeWorkerConfigurationCommand}
|
|
72
60
|
*/
|
|
73
61
|
describeWorkerConfiguration(args: DescribeWorkerConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeWorkerConfigurationCommandOutput>;
|
|
74
62
|
describeWorkerConfiguration(args: DescribeWorkerConfigurationCommandInput, cb: (err: any, data?: DescribeWorkerConfigurationCommandOutput) => void): void;
|
|
75
63
|
describeWorkerConfiguration(args: DescribeWorkerConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeWorkerConfigurationCommandOutput) => void): void;
|
|
76
64
|
/**
|
|
77
|
-
* @
|
|
78
|
-
* <p>Returns a list of all the connectors in this account and Region. The list is limited to
|
|
79
|
-
* connectors whose name starts with the specified prefix. The response also includes a
|
|
80
|
-
* description of each of the listed connectors.</p>
|
|
65
|
+
* @see {@link ListConnectorsCommand}
|
|
81
66
|
*/
|
|
82
67
|
listConnectors(args: ListConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectorsCommandOutput>;
|
|
83
68
|
listConnectors(args: ListConnectorsCommandInput, cb: (err: any, data?: ListConnectorsCommandOutput) => void): void;
|
|
84
69
|
listConnectors(args: ListConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectorsCommandOutput) => void): void;
|
|
85
70
|
/**
|
|
86
|
-
* @
|
|
87
|
-
* <p>Returns a list of all of the custom plugins in this account and Region.</p>
|
|
71
|
+
* @see {@link ListCustomPluginsCommand}
|
|
88
72
|
*/
|
|
89
73
|
listCustomPlugins(args: ListCustomPluginsCommandInput, options?: __HttpHandlerOptions): Promise<ListCustomPluginsCommandOutput>;
|
|
90
74
|
listCustomPlugins(args: ListCustomPluginsCommandInput, cb: (err: any, data?: ListCustomPluginsCommandOutput) => void): void;
|
|
91
75
|
listCustomPlugins(args: ListCustomPluginsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCustomPluginsCommandOutput) => void): void;
|
|
92
76
|
/**
|
|
93
|
-
* @
|
|
94
|
-
* <p>Returns a list of all of the worker configurations in this account and Region.</p>
|
|
77
|
+
* @see {@link ListWorkerConfigurationsCommand}
|
|
95
78
|
*/
|
|
96
79
|
listWorkerConfigurations(args: ListWorkerConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkerConfigurationsCommandOutput>;
|
|
97
80
|
listWorkerConfigurations(args: ListWorkerConfigurationsCommandInput, cb: (err: any, data?: ListWorkerConfigurationsCommandOutput) => void): void;
|
|
98
81
|
listWorkerConfigurations(args: ListWorkerConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkerConfigurationsCommandOutput) => void): void;
|
|
99
82
|
/**
|
|
100
|
-
* @
|
|
101
|
-
* <p>Updates the specified connector.</p>
|
|
83
|
+
* @see {@link UpdateConnectorCommand}
|
|
102
84
|
*/
|
|
103
85
|
updateConnector(args: UpdateConnectorCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConnectorCommandOutput>;
|
|
104
86
|
updateConnector(args: UpdateConnectorCommandInput, cb: (err: any, data?: UpdateConnectorCommandOutput) => void): void;
|
|
105
87
|
updateConnector(args: UpdateConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConnectorCommandOutput) => void): void;
|
|
106
88
|
}
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
* <p/>
|
|
92
|
+
*/
|
|
93
|
+
export declare class KafkaConnect extends KafkaConnectClient implements KafkaConnect {
|
|
94
|
+
}
|
|
@@ -48,7 +48,7 @@ import {
|
|
|
48
48
|
UpdateConnectorCommandOutput,
|
|
49
49
|
} from "./commands/UpdateConnectorCommand";
|
|
50
50
|
import { KafkaConnectClient } from "./KafkaConnectClient";
|
|
51
|
-
export
|
|
51
|
+
export interface KafkaConnect {
|
|
52
52
|
createConnector(
|
|
53
53
|
args: CreateConnectorCommandInput,
|
|
54
54
|
options?: __HttpHandlerOptions
|
|
@@ -206,3 +206,6 @@ export declare class KafkaConnect extends KafkaConnectClient {
|
|
|
206
206
|
cb: (err: any, data?: UpdateConnectorCommandOutput) => void
|
|
207
207
|
): void;
|
|
208
208
|
}
|
|
209
|
+
export declare class KafkaConnect
|
|
210
|
+
extends KafkaConnectClient
|
|
211
|
+
implements KafkaConnect {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kafkaconnect",
|
|
3
3
|
"description": "AWS SDK for JavaScript Kafkaconnect Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|