@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
package/dist-cjs/KafkaConnect.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.KafkaConnect = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
4
5
|
const CreateConnectorCommand_1 = require("./commands/CreateConnectorCommand");
|
|
5
6
|
const CreateCustomPluginCommand_1 = require("./commands/CreateCustomPluginCommand");
|
|
6
7
|
const CreateWorkerConfigurationCommand_1 = require("./commands/CreateWorkerConfigurationCommand");
|
|
@@ -14,174 +15,21 @@ const ListCustomPluginsCommand_1 = require("./commands/ListCustomPluginsCommand"
|
|
|
14
15
|
const ListWorkerConfigurationsCommand_1 = require("./commands/ListWorkerConfigurationsCommand");
|
|
15
16
|
const UpdateConnectorCommand_1 = require("./commands/UpdateConnectorCommand");
|
|
16
17
|
const KafkaConnectClient_1 = require("./KafkaConnectClient");
|
|
18
|
+
const commands = {
|
|
19
|
+
CreateConnectorCommand: CreateConnectorCommand_1.CreateConnectorCommand,
|
|
20
|
+
CreateCustomPluginCommand: CreateCustomPluginCommand_1.CreateCustomPluginCommand,
|
|
21
|
+
CreateWorkerConfigurationCommand: CreateWorkerConfigurationCommand_1.CreateWorkerConfigurationCommand,
|
|
22
|
+
DeleteConnectorCommand: DeleteConnectorCommand_1.DeleteConnectorCommand,
|
|
23
|
+
DeleteCustomPluginCommand: DeleteCustomPluginCommand_1.DeleteCustomPluginCommand,
|
|
24
|
+
DescribeConnectorCommand: DescribeConnectorCommand_1.DescribeConnectorCommand,
|
|
25
|
+
DescribeCustomPluginCommand: DescribeCustomPluginCommand_1.DescribeCustomPluginCommand,
|
|
26
|
+
DescribeWorkerConfigurationCommand: DescribeWorkerConfigurationCommand_1.DescribeWorkerConfigurationCommand,
|
|
27
|
+
ListConnectorsCommand: ListConnectorsCommand_1.ListConnectorsCommand,
|
|
28
|
+
ListCustomPluginsCommand: ListCustomPluginsCommand_1.ListCustomPluginsCommand,
|
|
29
|
+
ListWorkerConfigurationsCommand: ListWorkerConfigurationsCommand_1.ListWorkerConfigurationsCommand,
|
|
30
|
+
UpdateConnectorCommand: UpdateConnectorCommand_1.UpdateConnectorCommand,
|
|
31
|
+
};
|
|
17
32
|
class KafkaConnect extends KafkaConnectClient_1.KafkaConnectClient {
|
|
18
|
-
createConnector(args, optionsOrCb, cb) {
|
|
19
|
-
const command = new CreateConnectorCommand_1.CreateConnectorCommand(args);
|
|
20
|
-
if (typeof optionsOrCb === "function") {
|
|
21
|
-
this.send(command, optionsOrCb);
|
|
22
|
-
}
|
|
23
|
-
else if (typeof cb === "function") {
|
|
24
|
-
if (typeof optionsOrCb !== "object")
|
|
25
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
26
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
27
|
-
}
|
|
28
|
-
else {
|
|
29
|
-
return this.send(command, optionsOrCb);
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
createCustomPlugin(args, optionsOrCb, cb) {
|
|
33
|
-
const command = new CreateCustomPluginCommand_1.CreateCustomPluginCommand(args);
|
|
34
|
-
if (typeof optionsOrCb === "function") {
|
|
35
|
-
this.send(command, optionsOrCb);
|
|
36
|
-
}
|
|
37
|
-
else if (typeof cb === "function") {
|
|
38
|
-
if (typeof optionsOrCb !== "object")
|
|
39
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
40
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
41
|
-
}
|
|
42
|
-
else {
|
|
43
|
-
return this.send(command, optionsOrCb);
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
createWorkerConfiguration(args, optionsOrCb, cb) {
|
|
47
|
-
const command = new CreateWorkerConfigurationCommand_1.CreateWorkerConfigurationCommand(args);
|
|
48
|
-
if (typeof optionsOrCb === "function") {
|
|
49
|
-
this.send(command, optionsOrCb);
|
|
50
|
-
}
|
|
51
|
-
else if (typeof cb === "function") {
|
|
52
|
-
if (typeof optionsOrCb !== "object")
|
|
53
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
54
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
55
|
-
}
|
|
56
|
-
else {
|
|
57
|
-
return this.send(command, optionsOrCb);
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
deleteConnector(args, optionsOrCb, cb) {
|
|
61
|
-
const command = new DeleteConnectorCommand_1.DeleteConnectorCommand(args);
|
|
62
|
-
if (typeof optionsOrCb === "function") {
|
|
63
|
-
this.send(command, optionsOrCb);
|
|
64
|
-
}
|
|
65
|
-
else if (typeof cb === "function") {
|
|
66
|
-
if (typeof optionsOrCb !== "object")
|
|
67
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
68
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
69
|
-
}
|
|
70
|
-
else {
|
|
71
|
-
return this.send(command, optionsOrCb);
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
deleteCustomPlugin(args, optionsOrCb, cb) {
|
|
75
|
-
const command = new DeleteCustomPluginCommand_1.DeleteCustomPluginCommand(args);
|
|
76
|
-
if (typeof optionsOrCb === "function") {
|
|
77
|
-
this.send(command, optionsOrCb);
|
|
78
|
-
}
|
|
79
|
-
else if (typeof cb === "function") {
|
|
80
|
-
if (typeof optionsOrCb !== "object")
|
|
81
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
82
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
83
|
-
}
|
|
84
|
-
else {
|
|
85
|
-
return this.send(command, optionsOrCb);
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
describeConnector(args, optionsOrCb, cb) {
|
|
89
|
-
const command = new DescribeConnectorCommand_1.DescribeConnectorCommand(args);
|
|
90
|
-
if (typeof optionsOrCb === "function") {
|
|
91
|
-
this.send(command, optionsOrCb);
|
|
92
|
-
}
|
|
93
|
-
else if (typeof cb === "function") {
|
|
94
|
-
if (typeof optionsOrCb !== "object")
|
|
95
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
96
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
97
|
-
}
|
|
98
|
-
else {
|
|
99
|
-
return this.send(command, optionsOrCb);
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
describeCustomPlugin(args, optionsOrCb, cb) {
|
|
103
|
-
const command = new DescribeCustomPluginCommand_1.DescribeCustomPluginCommand(args);
|
|
104
|
-
if (typeof optionsOrCb === "function") {
|
|
105
|
-
this.send(command, optionsOrCb);
|
|
106
|
-
}
|
|
107
|
-
else if (typeof cb === "function") {
|
|
108
|
-
if (typeof optionsOrCb !== "object")
|
|
109
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
110
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
111
|
-
}
|
|
112
|
-
else {
|
|
113
|
-
return this.send(command, optionsOrCb);
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
describeWorkerConfiguration(args, optionsOrCb, cb) {
|
|
117
|
-
const command = new DescribeWorkerConfigurationCommand_1.DescribeWorkerConfigurationCommand(args);
|
|
118
|
-
if (typeof optionsOrCb === "function") {
|
|
119
|
-
this.send(command, optionsOrCb);
|
|
120
|
-
}
|
|
121
|
-
else if (typeof cb === "function") {
|
|
122
|
-
if (typeof optionsOrCb !== "object")
|
|
123
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
124
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
125
|
-
}
|
|
126
|
-
else {
|
|
127
|
-
return this.send(command, optionsOrCb);
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
listConnectors(args, optionsOrCb, cb) {
|
|
131
|
-
const command = new ListConnectorsCommand_1.ListConnectorsCommand(args);
|
|
132
|
-
if (typeof optionsOrCb === "function") {
|
|
133
|
-
this.send(command, optionsOrCb);
|
|
134
|
-
}
|
|
135
|
-
else if (typeof cb === "function") {
|
|
136
|
-
if (typeof optionsOrCb !== "object")
|
|
137
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
138
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
139
|
-
}
|
|
140
|
-
else {
|
|
141
|
-
return this.send(command, optionsOrCb);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
listCustomPlugins(args, optionsOrCb, cb) {
|
|
145
|
-
const command = new ListCustomPluginsCommand_1.ListCustomPluginsCommand(args);
|
|
146
|
-
if (typeof optionsOrCb === "function") {
|
|
147
|
-
this.send(command, optionsOrCb);
|
|
148
|
-
}
|
|
149
|
-
else if (typeof cb === "function") {
|
|
150
|
-
if (typeof optionsOrCb !== "object")
|
|
151
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
152
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
153
|
-
}
|
|
154
|
-
else {
|
|
155
|
-
return this.send(command, optionsOrCb);
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
listWorkerConfigurations(args, optionsOrCb, cb) {
|
|
159
|
-
const command = new ListWorkerConfigurationsCommand_1.ListWorkerConfigurationsCommand(args);
|
|
160
|
-
if (typeof optionsOrCb === "function") {
|
|
161
|
-
this.send(command, optionsOrCb);
|
|
162
|
-
}
|
|
163
|
-
else if (typeof cb === "function") {
|
|
164
|
-
if (typeof optionsOrCb !== "object")
|
|
165
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
166
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
167
|
-
}
|
|
168
|
-
else {
|
|
169
|
-
return this.send(command, optionsOrCb);
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
updateConnector(args, optionsOrCb, cb) {
|
|
173
|
-
const command = new UpdateConnectorCommand_1.UpdateConnectorCommand(args);
|
|
174
|
-
if (typeof optionsOrCb === "function") {
|
|
175
|
-
this.send(command, optionsOrCb);
|
|
176
|
-
}
|
|
177
|
-
else if (typeof cb === "function") {
|
|
178
|
-
if (typeof optionsOrCb !== "object")
|
|
179
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
180
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
181
|
-
}
|
|
182
|
-
else {
|
|
183
|
-
return this.send(command, optionsOrCb);
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
33
|
}
|
|
187
34
|
exports.KafkaConnect = KafkaConnect;
|
|
35
|
+
(0, smithy_client_1.createAggregatedClient)(commands, KafkaConnect);
|