@aws-sdk/client-kafkaconnect 3.952.0 → 3.954.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/index.js +408 -273
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateConnectorCommand.js +2 -2
- package/dist-es/commands/CreateCustomPluginCommand.js +2 -2
- package/dist-es/commands/CreateWorkerConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteConnectorCommand.js +2 -2
- package/dist-es/commands/DeleteCustomPluginCommand.js +2 -2
- package/dist-es/commands/DeleteWorkerConfigurationCommand.js +2 -2
- package/dist-es/commands/DescribeConnectorCommand.js +2 -2
- package/dist-es/commands/DescribeConnectorOperationCommand.js +2 -2
- package/dist-es/commands/DescribeCustomPluginCommand.js +2 -2
- package/dist-es/commands/DescribeWorkerConfigurationCommand.js +2 -2
- package/dist-es/commands/ListConnectorOperationsCommand.js +2 -2
- package/dist-es/commands/ListConnectorsCommand.js +2 -2
- package/dist-es/commands/ListCustomPluginsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListWorkerConfigurationsCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateConnectorCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +4 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +249 -238
- package/dist-types/KafkaConnectClient.d.ts +1 -10
- package/dist-types/commands/CreateConnectorCommand.d.ts +8 -14
- package/dist-types/commands/CreateCustomPluginCommand.d.ts +7 -14
- package/dist-types/commands/CreateWorkerConfigurationCommand.d.ts +7 -14
- package/dist-types/commands/DeleteConnectorCommand.d.ts +6 -12
- package/dist-types/commands/DeleteCustomPluginCommand.d.ts +6 -12
- package/dist-types/commands/DeleteWorkerConfigurationCommand.d.ts +6 -12
- package/dist-types/commands/DescribeConnectorCommand.d.ts +7 -12
- package/dist-types/commands/DescribeConnectorOperationCommand.d.ts +6 -12
- package/dist-types/commands/DescribeCustomPluginCommand.d.ts +6 -12
- package/dist-types/commands/DescribeWorkerConfigurationCommand.d.ts +6 -12
- package/dist-types/commands/ListConnectorOperationsCommand.d.ts +6 -12
- package/dist-types/commands/ListConnectorsCommand.d.ts +8 -15
- package/dist-types/commands/ListCustomPluginsCommand.d.ts +6 -12
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -12
- package/dist-types/commands/ListWorkerConfigurationsCommand.d.ts +6 -12
- package/dist-types/commands/TagResourceCommand.d.ts +7 -14
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -12
- package/dist-types/commands/UpdateConnectorCommand.d.ts +7 -13
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +12 -0
- package/dist-types/models/errors.d.ts +7 -14
- package/dist-types/models/models_0.d.ts +66 -111
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +120 -133
- package/dist-types/ts3.4/KafkaConnectClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +119 -135
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.kafkaconnect",
|
|
32
|
+
version: "2021-09-14",
|
|
33
|
+
serviceTarget: "KafkaConnect",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "KafkaConnect",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateConnector } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateConnector$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateConnectorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateConnectorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KafkaConnect", "CreateConnector", {})
|
|
13
13
|
.n("KafkaConnectClient", "CreateConnectorCommand")
|
|
14
|
-
.sc(CreateConnector)
|
|
14
|
+
.sc(CreateConnector$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateCustomPlugin } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateCustomPlugin$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateCustomPluginCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateCustomPluginCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KafkaConnect", "CreateCustomPlugin", {})
|
|
13
13
|
.n("KafkaConnectClient", "CreateCustomPluginCommand")
|
|
14
|
-
.sc(CreateCustomPlugin)
|
|
14
|
+
.sc(CreateCustomPlugin$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateWorkerConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateWorkerConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateWorkerConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateWorkerConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KafkaConnect", "CreateWorkerConfiguration", {})
|
|
13
13
|
.n("KafkaConnectClient", "CreateWorkerConfigurationCommand")
|
|
14
|
-
.sc(CreateWorkerConfiguration)
|
|
14
|
+
.sc(CreateWorkerConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteConnector } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteConnector$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteConnectorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteConnectorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KafkaConnect", "DeleteConnector", {})
|
|
13
13
|
.n("KafkaConnectClient", "DeleteConnectorCommand")
|
|
14
|
-
.sc(DeleteConnector)
|
|
14
|
+
.sc(DeleteConnector$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteCustomPlugin } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteCustomPlugin$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteCustomPluginCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteCustomPluginCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KafkaConnect", "DeleteCustomPlugin", {})
|
|
13
13
|
.n("KafkaConnectClient", "DeleteCustomPluginCommand")
|
|
14
|
-
.sc(DeleteCustomPlugin)
|
|
14
|
+
.sc(DeleteCustomPlugin$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteWorkerConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteWorkerConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteWorkerConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteWorkerConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KafkaConnect", "DeleteWorkerConfiguration", {})
|
|
13
13
|
.n("KafkaConnectClient", "DeleteWorkerConfigurationCommand")
|
|
14
|
-
.sc(DeleteWorkerConfiguration)
|
|
14
|
+
.sc(DeleteWorkerConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeConnector } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeConnector$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeConnectorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeConnectorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KafkaConnect", "DescribeConnector", {})
|
|
13
13
|
.n("KafkaConnectClient", "DescribeConnectorCommand")
|
|
14
|
-
.sc(DescribeConnector)
|
|
14
|
+
.sc(DescribeConnector$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeConnectorOperation } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeConnectorOperation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeConnectorOperationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeConnectorOperationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KafkaConnect", "DescribeConnectorOperation", {})
|
|
13
13
|
.n("KafkaConnectClient", "DescribeConnectorOperationCommand")
|
|
14
|
-
.sc(DescribeConnectorOperation)
|
|
14
|
+
.sc(DescribeConnectorOperation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeCustomPlugin } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeCustomPlugin$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeCustomPluginCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeCustomPluginCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KafkaConnect", "DescribeCustomPlugin", {})
|
|
13
13
|
.n("KafkaConnectClient", "DescribeCustomPluginCommand")
|
|
14
|
-
.sc(DescribeCustomPlugin)
|
|
14
|
+
.sc(DescribeCustomPlugin$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeWorkerConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeWorkerConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeWorkerConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeWorkerConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KafkaConnect", "DescribeWorkerConfiguration", {})
|
|
13
13
|
.n("KafkaConnectClient", "DescribeWorkerConfigurationCommand")
|
|
14
|
-
.sc(DescribeWorkerConfiguration)
|
|
14
|
+
.sc(DescribeWorkerConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListConnectorOperations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListConnectorOperations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListConnectorOperationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListConnectorOperationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KafkaConnect", "ListConnectorOperations", {})
|
|
13
13
|
.n("KafkaConnectClient", "ListConnectorOperationsCommand")
|
|
14
|
-
.sc(ListConnectorOperations)
|
|
14
|
+
.sc(ListConnectorOperations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListConnectors } from "../schemas/schemas_0";
|
|
4
|
+
import { ListConnectors$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListConnectorsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListConnectorsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KafkaConnect", "ListConnectors", {})
|
|
13
13
|
.n("KafkaConnectClient", "ListConnectorsCommand")
|
|
14
|
-
.sc(ListConnectors)
|
|
14
|
+
.sc(ListConnectors$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListCustomPlugins } from "../schemas/schemas_0";
|
|
4
|
+
import { ListCustomPlugins$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListCustomPluginsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListCustomPluginsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KafkaConnect", "ListCustomPlugins", {})
|
|
13
13
|
.n("KafkaConnectClient", "ListCustomPluginsCommand")
|
|
14
|
-
.sc(ListCustomPlugins)
|
|
14
|
+
.sc(ListCustomPlugins$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KafkaConnect", "ListTagsForResource", {})
|
|
13
13
|
.n("KafkaConnectClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListWorkerConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListWorkerConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListWorkerConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListWorkerConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KafkaConnect", "ListWorkerConfigurations", {})
|
|
13
13
|
.n("KafkaConnectClient", "ListWorkerConfigurationsCommand")
|
|
14
|
-
.sc(ListWorkerConfigurations)
|
|
14
|
+
.sc(ListWorkerConfigurations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KafkaConnect", "TagResource", {})
|
|
13
13
|
.n("KafkaConnectClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KafkaConnect", "UntagResource", {})
|
|
13
13
|
.n("KafkaConnectClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateConnector } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateConnector$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateConnectorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateConnectorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KafkaConnect", "UpdateConnector", {})
|
|
13
13
|
.n("KafkaConnectClient", "UpdateConnectorCommand")
|
|
14
|
-
.sc(UpdateConnector)
|
|
14
|
+
.sc(UpdateConnector$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
package/dist-es/models/enums.js
CHANGED
|
@@ -42,6 +42,10 @@ export const KafkaClusterEncryptionInTransitType = {
|
|
|
42
42
|
PLAINTEXT: "PLAINTEXT",
|
|
43
43
|
TLS: "TLS",
|
|
44
44
|
};
|
|
45
|
+
export const NetworkType = {
|
|
46
|
+
DUAL: "DUAL",
|
|
47
|
+
IPV4: "IPV4",
|
|
48
|
+
};
|
|
45
49
|
export const CustomPluginState = {
|
|
46
50
|
ACTIVE: "ACTIVE",
|
|
47
51
|
CREATE_FAILED: "CREATE_FAILED",
|
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.kafkaconnect",
|
|
29
|
+
version: "2021-09-14",
|
|
30
|
+
serviceTarget: "KafkaConnect",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "KafkaConnect",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|