@aws-sdk/client-kafkaconnect 3.288.0 → 3.290.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-types/commands/CreateConnectorCommand.d.ts +32 -0
- package/dist-types/commands/CreateCustomPluginCommand.d.ts +32 -0
- package/dist-types/commands/CreateWorkerConfigurationCommand.d.ts +32 -0
- package/dist-types/commands/DeleteConnectorCommand.d.ts +28 -0
- package/dist-types/commands/DeleteCustomPluginCommand.d.ts +28 -0
- package/dist-types/commands/DescribeConnectorCommand.d.ts +28 -0
- package/dist-types/commands/DescribeCustomPluginCommand.d.ts +28 -0
- package/dist-types/commands/DescribeWorkerConfigurationCommand.d.ts +28 -0
- package/dist-types/commands/ListConnectorsCommand.d.ts +28 -0
- package/dist-types/commands/ListCustomPluginsCommand.d.ts +28 -0
- package/dist-types/commands/ListWorkerConfigurationsCommand.d.ts +28 -0
- package/dist-types/commands/UpdateConnectorCommand.d.ts +28 -0
- package/package.json +29 -29
|
@@ -29,6 +29,38 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _
|
|
|
29
29
|
* @see {@link CreateConnectorCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>HTTP Status Code 400: Bad request due to incorrect input. Correct your request and then
|
|
34
|
+
* retry it.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConflictException} (client fault)
|
|
37
|
+
* <p>HTTP Status Code 409: Conflict. A resource with this name already exists. Retry your
|
|
38
|
+
* request with another name.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
41
|
+
* <p>HTTP Status Code 403: Access forbidden. Correct your credentials and then retry your
|
|
42
|
+
* request.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
45
|
+
* <p>HTTP Status Code 500: Unexpected internal server error. Retrying your request might
|
|
46
|
+
* resolve the issue.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link NotFoundException} (client fault)
|
|
49
|
+
* <p>HTTP Status Code 404: Resource not found due to incorrect input. Correct your request
|
|
50
|
+
* and then retry it.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
53
|
+
* <p>HTTP Status Code 503: Service Unavailable. Retrying your request in some time might
|
|
54
|
+
* resolve the issue.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
57
|
+
* <p>HTTP Status Code 429: Limit exceeded. Resource limit reached.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
60
|
+
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
61
|
+
* validated.</p>
|
|
62
|
+
*
|
|
63
|
+
*
|
|
32
64
|
*/
|
|
33
65
|
export declare class CreateConnectorCommand extends $Command<CreateConnectorCommandInput, CreateConnectorCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
34
66
|
readonly input: CreateConnectorCommandInput;
|
|
@@ -29,6 +29,38 @@ export interface CreateCustomPluginCommandOutput extends CreateCustomPluginRespo
|
|
|
29
29
|
* @see {@link CreateCustomPluginCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>HTTP Status Code 400: Bad request due to incorrect input. Correct your request and then
|
|
34
|
+
* retry it.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConflictException} (client fault)
|
|
37
|
+
* <p>HTTP Status Code 409: Conflict. A resource with this name already exists. Retry your
|
|
38
|
+
* request with another name.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
41
|
+
* <p>HTTP Status Code 403: Access forbidden. Correct your credentials and then retry your
|
|
42
|
+
* request.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
45
|
+
* <p>HTTP Status Code 500: Unexpected internal server error. Retrying your request might
|
|
46
|
+
* resolve the issue.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link NotFoundException} (client fault)
|
|
49
|
+
* <p>HTTP Status Code 404: Resource not found due to incorrect input. Correct your request
|
|
50
|
+
* and then retry it.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
53
|
+
* <p>HTTP Status Code 503: Service Unavailable. Retrying your request in some time might
|
|
54
|
+
* resolve the issue.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
57
|
+
* <p>HTTP Status Code 429: Limit exceeded. Resource limit reached.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
60
|
+
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
61
|
+
* validated.</p>
|
|
62
|
+
*
|
|
63
|
+
*
|
|
32
64
|
*/
|
|
33
65
|
export declare class CreateCustomPluginCommand extends $Command<CreateCustomPluginCommandInput, CreateCustomPluginCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
34
66
|
readonly input: CreateCustomPluginCommandInput;
|
|
@@ -29,6 +29,38 @@ export interface CreateWorkerConfigurationCommandOutput extends CreateWorkerConf
|
|
|
29
29
|
* @see {@link CreateWorkerConfigurationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>HTTP Status Code 400: Bad request due to incorrect input. Correct your request and then
|
|
34
|
+
* retry it.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConflictException} (client fault)
|
|
37
|
+
* <p>HTTP Status Code 409: Conflict. A resource with this name already exists. Retry your
|
|
38
|
+
* request with another name.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
41
|
+
* <p>HTTP Status Code 403: Access forbidden. Correct your credentials and then retry your
|
|
42
|
+
* request.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
45
|
+
* <p>HTTP Status Code 500: Unexpected internal server error. Retrying your request might
|
|
46
|
+
* resolve the issue.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link NotFoundException} (client fault)
|
|
49
|
+
* <p>HTTP Status Code 404: Resource not found due to incorrect input. Correct your request
|
|
50
|
+
* and then retry it.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
53
|
+
* <p>HTTP Status Code 503: Service Unavailable. Retrying your request in some time might
|
|
54
|
+
* resolve the issue.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
57
|
+
* <p>HTTP Status Code 429: Limit exceeded. Resource limit reached.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
60
|
+
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
61
|
+
* validated.</p>
|
|
62
|
+
*
|
|
63
|
+
*
|
|
32
64
|
*/
|
|
33
65
|
export declare class CreateWorkerConfigurationCommand extends $Command<CreateWorkerConfigurationCommandInput, CreateWorkerConfigurationCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
34
66
|
readonly input: CreateWorkerConfigurationCommandInput;
|
|
@@ -29,6 +29,34 @@ export interface DeleteConnectorCommandOutput extends DeleteConnectorResponse, _
|
|
|
29
29
|
* @see {@link DeleteConnectorCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>HTTP Status Code 400: Bad request due to incorrect input. Correct your request and then
|
|
34
|
+
* retry it.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
37
|
+
* <p>HTTP Status Code 403: Access forbidden. Correct your credentials and then retry your
|
|
38
|
+
* request.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
41
|
+
* <p>HTTP Status Code 500: Unexpected internal server error. Retrying your request might
|
|
42
|
+
* resolve the issue.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotFoundException} (client fault)
|
|
45
|
+
* <p>HTTP Status Code 404: Resource not found due to incorrect input. Correct your request
|
|
46
|
+
* and then retry it.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
49
|
+
* <p>HTTP Status Code 503: Service Unavailable. Retrying your request in some time might
|
|
50
|
+
* resolve the issue.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
53
|
+
* <p>HTTP Status Code 429: Limit exceeded. Resource limit reached.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
56
|
+
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
57
|
+
* validated.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
32
60
|
*/
|
|
33
61
|
export declare class DeleteConnectorCommand extends $Command<DeleteConnectorCommandInput, DeleteConnectorCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
34
62
|
readonly input: DeleteConnectorCommandInput;
|
|
@@ -29,6 +29,34 @@ export interface DeleteCustomPluginCommandOutput extends DeleteCustomPluginRespo
|
|
|
29
29
|
* @see {@link DeleteCustomPluginCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>HTTP Status Code 400: Bad request due to incorrect input. Correct your request and then
|
|
34
|
+
* retry it.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
37
|
+
* <p>HTTP Status Code 403: Access forbidden. Correct your credentials and then retry your
|
|
38
|
+
* request.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
41
|
+
* <p>HTTP Status Code 500: Unexpected internal server error. Retrying your request might
|
|
42
|
+
* resolve the issue.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotFoundException} (client fault)
|
|
45
|
+
* <p>HTTP Status Code 404: Resource not found due to incorrect input. Correct your request
|
|
46
|
+
* and then retry it.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
49
|
+
* <p>HTTP Status Code 503: Service Unavailable. Retrying your request in some time might
|
|
50
|
+
* resolve the issue.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
53
|
+
* <p>HTTP Status Code 429: Limit exceeded. Resource limit reached.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
56
|
+
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
57
|
+
* validated.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
32
60
|
*/
|
|
33
61
|
export declare class DeleteCustomPluginCommand extends $Command<DeleteCustomPluginCommandInput, DeleteCustomPluginCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
34
62
|
readonly input: DeleteCustomPluginCommandInput;
|
|
@@ -29,6 +29,34 @@ export interface DescribeConnectorCommandOutput extends DescribeConnectorRespons
|
|
|
29
29
|
* @see {@link DescribeConnectorCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>HTTP Status Code 400: Bad request due to incorrect input. Correct your request and then
|
|
34
|
+
* retry it.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
37
|
+
* <p>HTTP Status Code 403: Access forbidden. Correct your credentials and then retry your
|
|
38
|
+
* request.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
41
|
+
* <p>HTTP Status Code 500: Unexpected internal server error. Retrying your request might
|
|
42
|
+
* resolve the issue.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotFoundException} (client fault)
|
|
45
|
+
* <p>HTTP Status Code 404: Resource not found due to incorrect input. Correct your request
|
|
46
|
+
* and then retry it.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
49
|
+
* <p>HTTP Status Code 503: Service Unavailable. Retrying your request in some time might
|
|
50
|
+
* resolve the issue.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
53
|
+
* <p>HTTP Status Code 429: Limit exceeded. Resource limit reached.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
56
|
+
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
57
|
+
* validated.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
32
60
|
*/
|
|
33
61
|
export declare class DescribeConnectorCommand extends $Command<DescribeConnectorCommandInput, DescribeConnectorCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
34
62
|
readonly input: DescribeConnectorCommandInput;
|
|
@@ -29,6 +29,34 @@ export interface DescribeCustomPluginCommandOutput extends DescribeCustomPluginR
|
|
|
29
29
|
* @see {@link DescribeCustomPluginCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>HTTP Status Code 400: Bad request due to incorrect input. Correct your request and then
|
|
34
|
+
* retry it.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
37
|
+
* <p>HTTP Status Code 403: Access forbidden. Correct your credentials and then retry your
|
|
38
|
+
* request.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
41
|
+
* <p>HTTP Status Code 500: Unexpected internal server error. Retrying your request might
|
|
42
|
+
* resolve the issue.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotFoundException} (client fault)
|
|
45
|
+
* <p>HTTP Status Code 404: Resource not found due to incorrect input. Correct your request
|
|
46
|
+
* and then retry it.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
49
|
+
* <p>HTTP Status Code 503: Service Unavailable. Retrying your request in some time might
|
|
50
|
+
* resolve the issue.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
53
|
+
* <p>HTTP Status Code 429: Limit exceeded. Resource limit reached.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
56
|
+
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
57
|
+
* validated.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
32
60
|
*/
|
|
33
61
|
export declare class DescribeCustomPluginCommand extends $Command<DescribeCustomPluginCommandInput, DescribeCustomPluginCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
34
62
|
readonly input: DescribeCustomPluginCommandInput;
|
|
@@ -29,6 +29,34 @@ export interface DescribeWorkerConfigurationCommandOutput extends DescribeWorker
|
|
|
29
29
|
* @see {@link DescribeWorkerConfigurationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>HTTP Status Code 400: Bad request due to incorrect input. Correct your request and then
|
|
34
|
+
* retry it.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
37
|
+
* <p>HTTP Status Code 403: Access forbidden. Correct your credentials and then retry your
|
|
38
|
+
* request.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
41
|
+
* <p>HTTP Status Code 500: Unexpected internal server error. Retrying your request might
|
|
42
|
+
* resolve the issue.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotFoundException} (client fault)
|
|
45
|
+
* <p>HTTP Status Code 404: Resource not found due to incorrect input. Correct your request
|
|
46
|
+
* and then retry it.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
49
|
+
* <p>HTTP Status Code 503: Service Unavailable. Retrying your request in some time might
|
|
50
|
+
* resolve the issue.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
53
|
+
* <p>HTTP Status Code 429: Limit exceeded. Resource limit reached.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
56
|
+
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
57
|
+
* validated.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
32
60
|
*/
|
|
33
61
|
export declare class DescribeWorkerConfigurationCommand extends $Command<DescribeWorkerConfigurationCommandInput, DescribeWorkerConfigurationCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
34
62
|
readonly input: DescribeWorkerConfigurationCommandInput;
|
|
@@ -31,6 +31,34 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M
|
|
|
31
31
|
* @see {@link ListConnectorsCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>HTTP Status Code 400: Bad request due to incorrect input. Correct your request and then
|
|
36
|
+
* retry it.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
39
|
+
* <p>HTTP Status Code 403: Access forbidden. Correct your credentials and then retry your
|
|
40
|
+
* request.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
43
|
+
* <p>HTTP Status Code 500: Unexpected internal server error. Retrying your request might
|
|
44
|
+
* resolve the issue.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link NotFoundException} (client fault)
|
|
47
|
+
* <p>HTTP Status Code 404: Resource not found due to incorrect input. Correct your request
|
|
48
|
+
* and then retry it.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
51
|
+
* <p>HTTP Status Code 503: Service Unavailable. Retrying your request in some time might
|
|
52
|
+
* resolve the issue.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
55
|
+
* <p>HTTP Status Code 429: Limit exceeded. Resource limit reached.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
58
|
+
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
59
|
+
* validated.</p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
34
62
|
*/
|
|
35
63
|
export declare class ListConnectorsCommand extends $Command<ListConnectorsCommandInput, ListConnectorsCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
36
64
|
readonly input: ListConnectorsCommandInput;
|
|
@@ -29,6 +29,34 @@ export interface ListCustomPluginsCommandOutput extends ListCustomPluginsRespons
|
|
|
29
29
|
* @see {@link ListCustomPluginsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>HTTP Status Code 400: Bad request due to incorrect input. Correct your request and then
|
|
34
|
+
* retry it.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
37
|
+
* <p>HTTP Status Code 403: Access forbidden. Correct your credentials and then retry your
|
|
38
|
+
* request.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
41
|
+
* <p>HTTP Status Code 500: Unexpected internal server error. Retrying your request might
|
|
42
|
+
* resolve the issue.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotFoundException} (client fault)
|
|
45
|
+
* <p>HTTP Status Code 404: Resource not found due to incorrect input. Correct your request
|
|
46
|
+
* and then retry it.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
49
|
+
* <p>HTTP Status Code 503: Service Unavailable. Retrying your request in some time might
|
|
50
|
+
* resolve the issue.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
53
|
+
* <p>HTTP Status Code 429: Limit exceeded. Resource limit reached.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
56
|
+
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
57
|
+
* validated.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
32
60
|
*/
|
|
33
61
|
export declare class ListCustomPluginsCommand extends $Command<ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
34
62
|
readonly input: ListCustomPluginsCommandInput;
|
|
@@ -29,6 +29,34 @@ export interface ListWorkerConfigurationsCommandOutput extends ListWorkerConfigu
|
|
|
29
29
|
* @see {@link ListWorkerConfigurationsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>HTTP Status Code 400: Bad request due to incorrect input. Correct your request and then
|
|
34
|
+
* retry it.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
37
|
+
* <p>HTTP Status Code 403: Access forbidden. Correct your credentials and then retry your
|
|
38
|
+
* request.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
41
|
+
* <p>HTTP Status Code 500: Unexpected internal server error. Retrying your request might
|
|
42
|
+
* resolve the issue.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotFoundException} (client fault)
|
|
45
|
+
* <p>HTTP Status Code 404: Resource not found due to incorrect input. Correct your request
|
|
46
|
+
* and then retry it.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
49
|
+
* <p>HTTP Status Code 503: Service Unavailable. Retrying your request in some time might
|
|
50
|
+
* resolve the issue.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
53
|
+
* <p>HTTP Status Code 429: Limit exceeded. Resource limit reached.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
56
|
+
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
57
|
+
* validated.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
32
60
|
*/
|
|
33
61
|
export declare class ListWorkerConfigurationsCommand extends $Command<ListWorkerConfigurationsCommandInput, ListWorkerConfigurationsCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
34
62
|
readonly input: ListWorkerConfigurationsCommandInput;
|
|
@@ -29,6 +29,34 @@ export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, _
|
|
|
29
29
|
* @see {@link UpdateConnectorCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>HTTP Status Code 400: Bad request due to incorrect input. Correct your request and then
|
|
34
|
+
* retry it.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
37
|
+
* <p>HTTP Status Code 403: Access forbidden. Correct your credentials and then retry your
|
|
38
|
+
* request.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
41
|
+
* <p>HTTP Status Code 500: Unexpected internal server error. Retrying your request might
|
|
42
|
+
* resolve the issue.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotFoundException} (client fault)
|
|
45
|
+
* <p>HTTP Status Code 404: Resource not found due to incorrect input. Correct your request
|
|
46
|
+
* and then retry it.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
49
|
+
* <p>HTTP Status Code 503: Service Unavailable. Retrying your request in some time might
|
|
50
|
+
* resolve the issue.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
53
|
+
* <p>HTTP Status Code 429: Limit exceeded. Resource limit reached.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
56
|
+
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
57
|
+
* validated.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
32
60
|
*/
|
|
33
61
|
export declare class UpdateConnectorCommand extends $Command<UpdateConnectorCommandInput, UpdateConnectorCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
34
62
|
readonly input: UpdateConnectorCommandInput;
|
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.290.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",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|