@aws-sdk/client-kafkaconnect 3.489.0 → 3.495.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 +1 -35
- package/dist-cjs/KafkaConnectClient.js +1 -43
- package/dist-cjs/commands/CreateConnectorCommand.js +1 -29
- package/dist-cjs/commands/CreateCustomPluginCommand.js +1 -28
- package/dist-cjs/commands/CreateWorkerConfigurationCommand.js +1 -29
- package/dist-cjs/commands/DeleteConnectorCommand.js +1 -28
- package/dist-cjs/commands/DeleteCustomPluginCommand.js +1 -28
- package/dist-cjs/commands/DescribeConnectorCommand.js +1 -29
- package/dist-cjs/commands/DescribeCustomPluginCommand.js +1 -28
- package/dist-cjs/commands/DescribeWorkerConfigurationCommand.js +1 -29
- package/dist-cjs/commands/ListConnectorsCommand.js +1 -28
- package/dist-cjs/commands/ListCustomPluginsCommand.js +1 -28
- package/dist-cjs/commands/ListWorkerConfigurationsCommand.js +1 -28
- package/dist-cjs/commands/UpdateConnectorCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -15
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +1702 -11
- package/dist-cjs/models/KafkaConnectServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -163
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListConnectorsPaginator.js +1 -7
- package/dist-cjs/pagination/ListCustomPluginsPaginator.js +1 -7
- package/dist-cjs/pagination/ListWorkerConfigurationsPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -7
- package/dist-cjs/protocols/Aws_restJson1.js +1 -1097
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.KafkaConnectServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class KafkaConnectServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, KafkaConnectServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.KafkaConnectServiceException = KafkaConnectServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED
|
@@ -1,163 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DescribeWorkerConfigurationResponseFilterSensitiveLog = exports.WorkerConfigurationRevisionDescriptionFilterSensitiveLog = exports.DescribeConnectorResponseFilterSensitiveLog = exports.CreateWorkerConfigurationRequestFilterSensitiveLog = exports.CreateConnectorRequestFilterSensitiveLog = exports.UnauthorizedException = exports.TooManyRequestsException = exports.ServiceUnavailableException = exports.NotFoundException = exports.InternalServerErrorException = exports.ForbiddenException = exports.ConflictException = exports.BadRequestException = exports.CustomPluginContentType = exports.CustomPluginState = exports.KafkaClusterEncryptionInTransitType = exports.KafkaClusterClientAuthenticationType = exports.ConnectorState = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
const KafkaConnectServiceException_1 = require("./KafkaConnectServiceException");
|
|
6
|
-
exports.ConnectorState = {
|
|
7
|
-
CREATING: "CREATING",
|
|
8
|
-
DELETING: "DELETING",
|
|
9
|
-
FAILED: "FAILED",
|
|
10
|
-
RUNNING: "RUNNING",
|
|
11
|
-
UPDATING: "UPDATING",
|
|
12
|
-
};
|
|
13
|
-
exports.KafkaClusterClientAuthenticationType = {
|
|
14
|
-
IAM: "IAM",
|
|
15
|
-
NONE: "NONE",
|
|
16
|
-
};
|
|
17
|
-
exports.KafkaClusterEncryptionInTransitType = {
|
|
18
|
-
PLAINTEXT: "PLAINTEXT",
|
|
19
|
-
TLS: "TLS",
|
|
20
|
-
};
|
|
21
|
-
exports.CustomPluginState = {
|
|
22
|
-
ACTIVE: "ACTIVE",
|
|
23
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
24
|
-
CREATING: "CREATING",
|
|
25
|
-
DELETING: "DELETING",
|
|
26
|
-
UPDATE_FAILED: "UPDATE_FAILED",
|
|
27
|
-
UPDATING: "UPDATING",
|
|
28
|
-
};
|
|
29
|
-
exports.CustomPluginContentType = {
|
|
30
|
-
JAR: "JAR",
|
|
31
|
-
ZIP: "ZIP",
|
|
32
|
-
};
|
|
33
|
-
class BadRequestException extends KafkaConnectServiceException_1.KafkaConnectServiceException {
|
|
34
|
-
constructor(opts) {
|
|
35
|
-
super({
|
|
36
|
-
name: "BadRequestException",
|
|
37
|
-
$fault: "client",
|
|
38
|
-
...opts,
|
|
39
|
-
});
|
|
40
|
-
this.name = "BadRequestException";
|
|
41
|
-
this.$fault = "client";
|
|
42
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
exports.BadRequestException = BadRequestException;
|
|
46
|
-
class ConflictException extends KafkaConnectServiceException_1.KafkaConnectServiceException {
|
|
47
|
-
constructor(opts) {
|
|
48
|
-
super({
|
|
49
|
-
name: "ConflictException",
|
|
50
|
-
$fault: "client",
|
|
51
|
-
...opts,
|
|
52
|
-
});
|
|
53
|
-
this.name = "ConflictException";
|
|
54
|
-
this.$fault = "client";
|
|
55
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
exports.ConflictException = ConflictException;
|
|
59
|
-
class ForbiddenException extends KafkaConnectServiceException_1.KafkaConnectServiceException {
|
|
60
|
-
constructor(opts) {
|
|
61
|
-
super({
|
|
62
|
-
name: "ForbiddenException",
|
|
63
|
-
$fault: "client",
|
|
64
|
-
...opts,
|
|
65
|
-
});
|
|
66
|
-
this.name = "ForbiddenException";
|
|
67
|
-
this.$fault = "client";
|
|
68
|
-
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
exports.ForbiddenException = ForbiddenException;
|
|
72
|
-
class InternalServerErrorException extends KafkaConnectServiceException_1.KafkaConnectServiceException {
|
|
73
|
-
constructor(opts) {
|
|
74
|
-
super({
|
|
75
|
-
name: "InternalServerErrorException",
|
|
76
|
-
$fault: "server",
|
|
77
|
-
...opts,
|
|
78
|
-
});
|
|
79
|
-
this.name = "InternalServerErrorException";
|
|
80
|
-
this.$fault = "server";
|
|
81
|
-
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
exports.InternalServerErrorException = InternalServerErrorException;
|
|
85
|
-
class NotFoundException extends KafkaConnectServiceException_1.KafkaConnectServiceException {
|
|
86
|
-
constructor(opts) {
|
|
87
|
-
super({
|
|
88
|
-
name: "NotFoundException",
|
|
89
|
-
$fault: "client",
|
|
90
|
-
...opts,
|
|
91
|
-
});
|
|
92
|
-
this.name = "NotFoundException";
|
|
93
|
-
this.$fault = "client";
|
|
94
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
exports.NotFoundException = NotFoundException;
|
|
98
|
-
class ServiceUnavailableException extends KafkaConnectServiceException_1.KafkaConnectServiceException {
|
|
99
|
-
constructor(opts) {
|
|
100
|
-
super({
|
|
101
|
-
name: "ServiceUnavailableException",
|
|
102
|
-
$fault: "server",
|
|
103
|
-
...opts,
|
|
104
|
-
});
|
|
105
|
-
this.name = "ServiceUnavailableException";
|
|
106
|
-
this.$fault = "server";
|
|
107
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
111
|
-
class TooManyRequestsException extends KafkaConnectServiceException_1.KafkaConnectServiceException {
|
|
112
|
-
constructor(opts) {
|
|
113
|
-
super({
|
|
114
|
-
name: "TooManyRequestsException",
|
|
115
|
-
$fault: "client",
|
|
116
|
-
...opts,
|
|
117
|
-
});
|
|
118
|
-
this.name = "TooManyRequestsException";
|
|
119
|
-
this.$fault = "client";
|
|
120
|
-
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
exports.TooManyRequestsException = TooManyRequestsException;
|
|
124
|
-
class UnauthorizedException extends KafkaConnectServiceException_1.KafkaConnectServiceException {
|
|
125
|
-
constructor(opts) {
|
|
126
|
-
super({
|
|
127
|
-
name: "UnauthorizedException",
|
|
128
|
-
$fault: "client",
|
|
129
|
-
...opts,
|
|
130
|
-
});
|
|
131
|
-
this.name = "UnauthorizedException";
|
|
132
|
-
this.$fault = "client";
|
|
133
|
-
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
exports.UnauthorizedException = UnauthorizedException;
|
|
137
|
-
const CreateConnectorRequestFilterSensitiveLog = (obj) => ({
|
|
138
|
-
...obj,
|
|
139
|
-
...(obj.connectorConfiguration && { connectorConfiguration: smithy_client_1.SENSITIVE_STRING }),
|
|
140
|
-
});
|
|
141
|
-
exports.CreateConnectorRequestFilterSensitiveLog = CreateConnectorRequestFilterSensitiveLog;
|
|
142
|
-
const CreateWorkerConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
143
|
-
...obj,
|
|
144
|
-
...(obj.propertiesFileContent && { propertiesFileContent: smithy_client_1.SENSITIVE_STRING }),
|
|
145
|
-
});
|
|
146
|
-
exports.CreateWorkerConfigurationRequestFilterSensitiveLog = CreateWorkerConfigurationRequestFilterSensitiveLog;
|
|
147
|
-
const DescribeConnectorResponseFilterSensitiveLog = (obj) => ({
|
|
148
|
-
...obj,
|
|
149
|
-
...(obj.connectorConfiguration && { connectorConfiguration: smithy_client_1.SENSITIVE_STRING }),
|
|
150
|
-
});
|
|
151
|
-
exports.DescribeConnectorResponseFilterSensitiveLog = DescribeConnectorResponseFilterSensitiveLog;
|
|
152
|
-
const WorkerConfigurationRevisionDescriptionFilterSensitiveLog = (obj) => ({
|
|
153
|
-
...obj,
|
|
154
|
-
...(obj.propertiesFileContent && { propertiesFileContent: smithy_client_1.SENSITIVE_STRING }),
|
|
155
|
-
});
|
|
156
|
-
exports.WorkerConfigurationRevisionDescriptionFilterSensitiveLog = WorkerConfigurationRevisionDescriptionFilterSensitiveLog;
|
|
157
|
-
const DescribeWorkerConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
158
|
-
...obj,
|
|
159
|
-
...(obj.latestRevision && {
|
|
160
|
-
latestRevision: (0, exports.WorkerConfigurationRevisionDescriptionFilterSensitiveLog)(obj.latestRevision),
|
|
161
|
-
}),
|
|
162
|
-
});
|
|
163
|
-
exports.DescribeWorkerConfigurationResponseFilterSensitiveLog = DescribeWorkerConfigurationResponseFilterSensitiveLog;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListConnectors = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListConnectorsCommand_1 = require("../commands/ListConnectorsCommand");
|
|
6
|
-
const KafkaConnectClient_1 = require("../KafkaConnectClient");
|
|
7
|
-
exports.paginateListConnectors = (0, core_1.createPaginator)(KafkaConnectClient_1.KafkaConnectClient, ListConnectorsCommand_1.ListConnectorsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListCustomPlugins = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListCustomPluginsCommand_1 = require("../commands/ListCustomPluginsCommand");
|
|
6
|
-
const KafkaConnectClient_1 = require("../KafkaConnectClient");
|
|
7
|
-
exports.paginateListCustomPlugins = (0, core_1.createPaginator)(KafkaConnectClient_1.KafkaConnectClient, ListCustomPluginsCommand_1.ListCustomPluginsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListWorkerConfigurations = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListWorkerConfigurationsCommand_1 = require("../commands/ListWorkerConfigurationsCommand");
|
|
6
|
-
const KafkaConnectClient_1 = require("../KafkaConnectClient");
|
|
7
|
-
exports.paginateListWorkerConfigurations = (0, core_1.createPaginator)(KafkaConnectClient_1.KafkaConnectClient, ListWorkerConfigurationsCommand_1.ListWorkerConfigurationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./ListConnectorsPaginator"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./ListCustomPluginsPaginator"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./ListWorkerConfigurationsPaginator"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|