@aws-sdk/client-kafkaconnect 3.128.0 → 3.137.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 +30 -0
- package/dist-cjs/commands/CreateConnectorCommand.js +2 -2
- package/dist-cjs/commands/CreateCustomPluginCommand.js +2 -2
- package/dist-cjs/commands/CreateWorkerConfigurationCommand.js +2 -2
- package/dist-cjs/commands/DeleteConnectorCommand.js +2 -2
- package/dist-cjs/commands/DeleteCustomPluginCommand.js +2 -2
- package/dist-cjs/commands/DescribeConnectorCommand.js +2 -2
- package/dist-cjs/commands/DescribeCustomPluginCommand.js +2 -2
- package/dist-cjs/commands/DescribeWorkerConfigurationCommand.js +2 -2
- package/dist-cjs/commands/ListConnectorsCommand.js +2 -2
- package/dist-cjs/commands/ListCustomPluginsCommand.js +2 -2
- package/dist-cjs/commands/ListWorkerConfigurationsCommand.js +2 -2
- package/dist-cjs/commands/UpdateConnectorCommand.js +2 -2
- package/dist-cjs/models/models_0.js +317 -471
- package/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/dist-es/commands/CreateConnectorCommand.js +3 -3
- package/dist-es/commands/CreateCustomPluginCommand.js +3 -3
- package/dist-es/commands/CreateWorkerConfigurationCommand.js +3 -3
- package/dist-es/commands/DeleteConnectorCommand.js +3 -3
- package/dist-es/commands/DeleteCustomPluginCommand.js +3 -3
- package/dist-es/commands/DescribeConnectorCommand.js +3 -3
- package/dist-es/commands/DescribeCustomPluginCommand.js +3 -3
- package/dist-es/commands/DescribeWorkerConfigurationCommand.js +3 -3
- package/dist-es/commands/ListConnectorsCommand.js +3 -3
- package/dist-es/commands/ListCustomPluginsCommand.js +3 -3
- package/dist-es/commands/ListWorkerConfigurationsCommand.js +3 -3
- package/dist-es/commands/UpdateConnectorCommand.js +3 -3
- package/dist-es/models/models_0.js +79 -310
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-types/models/models_0.d.ts +308 -462
- package/dist-types/ts3.4/models/models_0.d.ts +154 -308
- package/package.json +9 -9
|
@@ -1797,6 +1797,9 @@ const loadRestJsonErrorCode = (output, data) => {
|
|
|
1797
1797
|
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
1798
1798
|
const sanitizeErrorCode = (rawValue) => {
|
|
1799
1799
|
let cleanValue = rawValue;
|
|
1800
|
+
if (typeof cleanValue === "number") {
|
|
1801
|
+
cleanValue = cleanValue.toString();
|
|
1802
|
+
}
|
|
1800
1803
|
if (cleanValue.indexOf(":") >= 0) {
|
|
1801
1804
|
cleanValue = cleanValue.split(":")[0];
|
|
1802
1805
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateConnectorRequestFilterSensitiveLog, CreateConnectorResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateConnectorCommand, serializeAws_restJson1CreateConnectorCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateConnectorCommand = (function (_super) {
|
|
7
7
|
__extends(CreateConnectorCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateConnectorCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateConnectorRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateConnectorResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateCustomPluginRequestFilterSensitiveLog, CreateCustomPluginResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateCustomPluginCommand, serializeAws_restJson1CreateCustomPluginCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateCustomPluginCommand = (function (_super) {
|
|
7
7
|
__extends(CreateCustomPluginCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateCustomPluginCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateCustomPluginRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateCustomPluginResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateWorkerConfigurationRequestFilterSensitiveLog, CreateWorkerConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateWorkerConfigurationCommand, serializeAws_restJson1CreateWorkerConfigurationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateWorkerConfigurationCommand = (function (_super) {
|
|
7
7
|
__extends(CreateWorkerConfigurationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateWorkerConfigurationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateWorkerConfigurationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateWorkerConfigurationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteConnectorRequestFilterSensitiveLog, DeleteConnectorResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteConnectorCommand, serializeAws_restJson1DeleteConnectorCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteConnectorCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteConnectorCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteConnectorCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteConnectorRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteConnectorResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteCustomPluginRequestFilterSensitiveLog, DeleteCustomPluginResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteCustomPluginCommand, serializeAws_restJson1DeleteCustomPluginCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteCustomPluginCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteCustomPluginCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteCustomPluginCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteCustomPluginRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteCustomPluginResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeConnectorRequestFilterSensitiveLog, DescribeConnectorResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeConnectorCommand, serializeAws_restJson1DescribeConnectorCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeConnectorCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeConnectorCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeConnectorCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeConnectorRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeConnectorResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeCustomPluginRequestFilterSensitiveLog, DescribeCustomPluginResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeCustomPluginCommand, serializeAws_restJson1DescribeCustomPluginCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeCustomPluginCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeCustomPluginCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeCustomPluginCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeCustomPluginRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeCustomPluginResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeWorkerConfigurationRequestFilterSensitiveLog, DescribeWorkerConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeWorkerConfigurationCommand, serializeAws_restJson1DescribeWorkerConfigurationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeWorkerConfigurationCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeWorkerConfigurationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeWorkerConfigurationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeWorkerConfigurationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeWorkerConfigurationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListConnectorsRequestFilterSensitiveLog, ListConnectorsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListConnectorsCommand, serializeAws_restJson1ListConnectorsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListConnectorsCommand = (function (_super) {
|
|
7
7
|
__extends(ListConnectorsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListConnectorsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListConnectorsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListConnectorsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListCustomPluginsRequestFilterSensitiveLog, ListCustomPluginsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListCustomPluginsCommand, serializeAws_restJson1ListCustomPluginsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListCustomPluginsCommand = (function (_super) {
|
|
7
7
|
__extends(ListCustomPluginsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListCustomPluginsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListCustomPluginsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListCustomPluginsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListWorkerConfigurationsRequestFilterSensitiveLog, ListWorkerConfigurationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListWorkerConfigurationsCommand, serializeAws_restJson1ListWorkerConfigurationsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListWorkerConfigurationsCommand = (function (_super) {
|
|
7
7
|
__extends(ListWorkerConfigurationsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListWorkerConfigurationsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListWorkerConfigurationsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListWorkerConfigurationsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UpdateConnectorRequestFilterSensitiveLog, UpdateConnectorResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateConnectorCommand, serializeAws_restJson1UpdateConnectorCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateConnectorCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateConnectorCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateConnectorCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateConnectorRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateConnectorResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|