@effect-aws/client-kafka 1.10.6
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/Errors/package.json +6 -0
- package/KafkaClientInstance/package.json +6 -0
- package/KafkaService/package.json +6 -0
- package/KafkaServiceConfig/package.json +6 -0
- package/LICENSE +19 -0
- package/README.md +58 -0
- package/dist/cjs/Errors.d.ts +15 -0
- package/dist/cjs/Errors.d.ts.map +1 -0
- package/dist/cjs/Errors.js +14 -0
- package/dist/cjs/Errors.js.map +1 -0
- package/dist/cjs/KafkaClientInstance.d.ts +24 -0
- package/dist/cjs/KafkaClientInstance.d.ts.map +1 -0
- package/dist/cjs/KafkaClientInstance.js +50 -0
- package/dist/cjs/KafkaClientInstance.js.map +1 -0
- package/dist/cjs/KafkaService.d.ts +270 -0
- package/dist/cjs/KafkaService.d.ts.map +1 -0
- package/dist/cjs/KafkaService.js +115 -0
- package/dist/cjs/KafkaService.js.map +1 -0
- package/dist/cjs/KafkaServiceConfig.d.ts +25 -0
- package/dist/cjs/KafkaServiceConfig.d.ts.map +1 -0
- package/dist/cjs/KafkaServiceConfig.js +35 -0
- package/dist/cjs/KafkaServiceConfig.js.map +1 -0
- package/dist/cjs/index.d.ts +44 -0
- package/dist/cjs/index.d.ts.map +1 -0
- package/dist/cjs/index.js +56 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/dts/Errors.d.ts +15 -0
- package/dist/dts/Errors.d.ts.map +1 -0
- package/dist/dts/KafkaClientInstance.d.ts +24 -0
- package/dist/dts/KafkaClientInstance.d.ts.map +1 -0
- package/dist/dts/KafkaService.d.ts +270 -0
- package/dist/dts/KafkaService.d.ts.map +1 -0
- package/dist/dts/KafkaServiceConfig.d.ts +25 -0
- package/dist/dts/KafkaServiceConfig.d.ts.map +1 -0
- package/dist/dts/index.d.ts +44 -0
- package/dist/dts/index.d.ts.map +1 -0
- package/dist/esm/Errors.js +11 -0
- package/dist/esm/Errors.js.map +1 -0
- package/dist/esm/KafkaClientInstance.js +23 -0
- package/dist/esm/KafkaClientInstance.js.map +1 -0
- package/dist/esm/KafkaService.js +88 -0
- package/dist/esm/KafkaService.js.map +1 -0
- package/dist/esm/KafkaServiceConfig.js +31 -0
- package/dist/esm/KafkaServiceConfig.js.map +1 -0
- package/dist/esm/index.js +27 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/package.json +4 -0
- package/package.json +71 -0
- package/src/Errors.ts +32 -0
- package/src/KafkaClientInstance.ts +33 -0
- package/src/KafkaService.ts +1234 -0
- package/src/KafkaServiceConfig.ts +52 -0
- package/src/index.ts +50 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Copyright (c) 2025 Victor Korzunin
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
in the Software without restriction, including without limitation the rights
|
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
furnished to do so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11
|
+
copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# @effect-aws/client-kafka
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@effect-aws/client-kafka)
|
|
4
|
+
[](https://www.npmjs.com/package/@effect-aws/client-kafka)
|
|
5
|
+
|
|
6
|
+
## Installation
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
npm install --save @effect-aws/client-kafka
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Usage
|
|
13
|
+
|
|
14
|
+
With default KafkaClient instance:
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { Kafka } from "@effect-aws/client-kafka";
|
|
18
|
+
|
|
19
|
+
const program = Kafka.listClusters(args);
|
|
20
|
+
|
|
21
|
+
const result = pipe(
|
|
22
|
+
program,
|
|
23
|
+
Effect.provide(Kafka.defaultLayer),
|
|
24
|
+
Effect.runPromise,
|
|
25
|
+
);
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
With custom KafkaClient instance:
|
|
29
|
+
|
|
30
|
+
```typescript
|
|
31
|
+
import { Kafka } from "@effect-aws/client-kafka";
|
|
32
|
+
|
|
33
|
+
const program = Kafka.listClusters(args);
|
|
34
|
+
|
|
35
|
+
const result = await pipe(
|
|
36
|
+
program,
|
|
37
|
+
Effect.provide(
|
|
38
|
+
Kafka.baseLayer(() => new KafkaClient({ region: "eu-central-1" })),
|
|
39
|
+
),
|
|
40
|
+
Effect.runPromise,
|
|
41
|
+
);
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
With custom KafkaClient configuration:
|
|
45
|
+
|
|
46
|
+
```typescript
|
|
47
|
+
import { Kafka } from "@effect-aws/client-kafka";
|
|
48
|
+
|
|
49
|
+
const program = Kafka.listClusters(args);
|
|
50
|
+
|
|
51
|
+
const result = await pipe(
|
|
52
|
+
program,
|
|
53
|
+
Effect.provide(Kafka.layer({ region: "eu-central-1" })),
|
|
54
|
+
Effect.runPromiseExit,
|
|
55
|
+
);
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
or use `Kafka.baseLayer((default) => new KafkaClient({ ...default, region: "eu-central-1" }))`
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { BadRequestException, ConflictException, ForbiddenException, InternalServerErrorException, NotFoundException, ServiceUnavailableException, TooManyRequestsException, UnauthorizedException } from "@aws-sdk/client-kafka";
|
|
2
|
+
import type { TaggedException } from "@effect-aws/commons";
|
|
3
|
+
export declare const AllServiceErrors: readonly ["BadRequestException", "ConflictException", "ForbiddenException", "InternalServerErrorException", "NotFoundException", "ServiceUnavailableException", "TooManyRequestsException", "UnauthorizedException"];
|
|
4
|
+
export type BadRequestError = TaggedException<BadRequestException>;
|
|
5
|
+
export type ConflictError = TaggedException<ConflictException>;
|
|
6
|
+
export type ForbiddenError = TaggedException<ForbiddenException>;
|
|
7
|
+
export type InternalServerError = TaggedException<InternalServerErrorException>;
|
|
8
|
+
export type NotFoundError = TaggedException<NotFoundException>;
|
|
9
|
+
export type ServiceUnavailableError = TaggedException<ServiceUnavailableException>;
|
|
10
|
+
export type TooManyRequestsError = TaggedException<TooManyRequestsException>;
|
|
11
|
+
export type UnauthorizedError = TaggedException<UnauthorizedException>;
|
|
12
|
+
export type SdkError = TaggedException<Error & {
|
|
13
|
+
name: "SdkError";
|
|
14
|
+
}>;
|
|
15
|
+
//# sourceMappingURL=Errors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Errors.d.ts","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,mBAAmB,EACnB,iBAAiB,EACjB,kBAAkB,EAClB,4BAA4B,EAC5B,iBAAiB,EACjB,2BAA2B,EAC3B,wBAAwB,EACxB,qBAAqB,EACtB,MAAM,uBAAuB,CAAC;AAC/B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAE3D,eAAO,MAAM,gBAAgB,sNASnB,CAAC;AAEX,MAAM,MAAM,eAAe,GAAG,eAAe,CAAC,mBAAmB,CAAC,CAAC;AACnE,MAAM,MAAM,aAAa,GAAG,eAAe,CAAC,iBAAiB,CAAC,CAAC;AAC/D,MAAM,MAAM,cAAc,GAAG,eAAe,CAAC,kBAAkB,CAAC,CAAC;AACjE,MAAM,MAAM,mBAAmB,GAAG,eAAe,CAAC,4BAA4B,CAAC,CAAC;AAChF,MAAM,MAAM,aAAa,GAAG,eAAe,CAAC,iBAAiB,CAAC,CAAC;AAC/D,MAAM,MAAM,uBAAuB,GAAG,eAAe,CAAC,2BAA2B,CAAC,CAAC;AACnF,MAAM,MAAM,oBAAoB,GAAG,eAAe,CAAC,wBAAwB,CAAC,CAAC;AAC7E,MAAM,MAAM,iBAAiB,GAAG,eAAe,CAAC,qBAAqB,CAAC,CAAC;AACvE,MAAM,MAAM,QAAQ,GAAG,eAAe,CAAC,KAAK,GAAG;IAAE,IAAI,EAAE,UAAU,CAAA;CAAE,CAAC,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AllServiceErrors = void 0;
|
|
4
|
+
exports.AllServiceErrors = [
|
|
5
|
+
"BadRequestException",
|
|
6
|
+
"ConflictException",
|
|
7
|
+
"ForbiddenException",
|
|
8
|
+
"InternalServerErrorException",
|
|
9
|
+
"NotFoundException",
|
|
10
|
+
"ServiceUnavailableException",
|
|
11
|
+
"TooManyRequestsException",
|
|
12
|
+
"UnauthorizedException",
|
|
13
|
+
];
|
|
14
|
+
//# sourceMappingURL=Errors.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Errors.js","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":";;;AAYa,QAAA,gBAAgB,GAAG;IAC9B,qBAAqB;IACrB,mBAAmB;IACnB,oBAAoB;IACpB,8BAA8B;IAC9B,mBAAmB;IACnB,6BAA6B;IAC7B,0BAA0B;IAC1B,uBAAuB;CACf,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 1.0.0
|
|
3
|
+
*/
|
|
4
|
+
import { KafkaClient } from "@aws-sdk/client-kafka";
|
|
5
|
+
import { Context, Effect, Layer } from "effect";
|
|
6
|
+
declare const KafkaClientInstance_base: Context.TagClass<KafkaClientInstance, "@effect-aws/client-kafka/KafkaClientInstance", KafkaClient>;
|
|
7
|
+
/**
|
|
8
|
+
* @since 1.0.0
|
|
9
|
+
* @category tags
|
|
10
|
+
*/
|
|
11
|
+
export declare class KafkaClientInstance extends KafkaClientInstance_base {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @since 1.0.0
|
|
15
|
+
* @category constructors
|
|
16
|
+
*/
|
|
17
|
+
export declare const make: Effect.Effect<KafkaClient, never, import("effect/Scope").Scope>;
|
|
18
|
+
/**
|
|
19
|
+
* @since 1.0.0
|
|
20
|
+
* @category layers
|
|
21
|
+
*/
|
|
22
|
+
export declare const layer: Layer.Layer<KafkaClientInstance, never, never>;
|
|
23
|
+
export {};
|
|
24
|
+
//# sourceMappingURL=KafkaClientInstance.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"KafkaClientInstance.d.ts","sourceRoot":"","sources":["../../src/KafkaClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACpD,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;;AAGhD;;;GAGG;AACH,qBAAa,mBAAoB,SAAQ,wBAEJ;CAAG;AAExC;;;GAGG;AACH,eAAO,MAAM,IAAI,iEAOhB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,KAAK,gDAA0C,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.layer = exports.make = exports.KafkaClientInstance = void 0;
|
|
27
|
+
/**
|
|
28
|
+
* @since 1.0.0
|
|
29
|
+
*/
|
|
30
|
+
const client_kafka_1 = require("@aws-sdk/client-kafka");
|
|
31
|
+
const effect_1 = require("effect");
|
|
32
|
+
const KafkaServiceConfig = __importStar(require("./KafkaServiceConfig.js"));
|
|
33
|
+
/**
|
|
34
|
+
* @since 1.0.0
|
|
35
|
+
* @category tags
|
|
36
|
+
*/
|
|
37
|
+
class KafkaClientInstance extends effect_1.Context.Tag("@effect-aws/client-kafka/KafkaClientInstance")() {
|
|
38
|
+
}
|
|
39
|
+
exports.KafkaClientInstance = KafkaClientInstance;
|
|
40
|
+
/**
|
|
41
|
+
* @since 1.0.0
|
|
42
|
+
* @category constructors
|
|
43
|
+
*/
|
|
44
|
+
exports.make = effect_1.Effect.flatMap(KafkaServiceConfig.toKafkaClientConfig, (config) => effect_1.Effect.acquireRelease(effect_1.Effect.sync(() => new client_kafka_1.KafkaClient(config)), (client) => effect_1.Effect.sync(() => client.destroy())));
|
|
45
|
+
/**
|
|
46
|
+
* @since 1.0.0
|
|
47
|
+
* @category layers
|
|
48
|
+
*/
|
|
49
|
+
exports.layer = effect_1.Layer.scoped(KafkaClientInstance, exports.make);
|
|
50
|
+
//# sourceMappingURL=KafkaClientInstance.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"KafkaClientInstance.js","sourceRoot":"","sources":["../../src/KafkaClientInstance.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,wDAAoD;AACpD,mCAAgD;AAChD,4EAA8D;AAE9D;;;GAGG;AACH,MAAa,mBAAoB,SAAQ,gBAAO,CAAC,GAAG,CAClD,8CAA8C,CAC/C,EAAoC;CAAG;AAFxC,kDAEwC;AAExC;;;GAGG;AACU,QAAA,IAAI,GAAG,eAAM,CAAC,OAAO,CAChC,kBAAkB,CAAC,mBAAmB,EACtC,CAAC,MAAM,EAAE,EAAE,CACT,eAAM,CAAC,cAAc,CACnB,eAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,0BAAW,CAAC,MAAM,CAAC,CAAC,EAC1C,CAAC,MAAM,EAAE,EAAE,CAAC,eAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC,CAChD,CACJ,CAAC;AAEF;;;GAGG;AACU,QAAA,KAAK,GAAG,cAAK,CAAC,MAAM,CAAC,mBAAmB,EAAE,YAAI,CAAC,CAAC"}
|
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 1.0.0
|
|
3
|
+
*/
|
|
4
|
+
import { type BatchAssociateScramSecretCommandInput, type BatchAssociateScramSecretCommandOutput, type BatchDisassociateScramSecretCommandInput, type BatchDisassociateScramSecretCommandOutput, type CreateClusterCommandInput, type CreateClusterCommandOutput, type CreateClusterV2CommandInput, type CreateClusterV2CommandOutput, type CreateConfigurationCommandInput, type CreateConfigurationCommandOutput, type CreateReplicatorCommandInput, type CreateReplicatorCommandOutput, type CreateVpcConnectionCommandInput, type CreateVpcConnectionCommandOutput, type DeleteClusterCommandInput, type DeleteClusterCommandOutput, type DeleteClusterPolicyCommandInput, type DeleteClusterPolicyCommandOutput, type DeleteConfigurationCommandInput, type DeleteConfigurationCommandOutput, type DeleteReplicatorCommandInput, type DeleteReplicatorCommandOutput, type DeleteVpcConnectionCommandInput, type DeleteVpcConnectionCommandOutput, type DescribeClusterCommandInput, type DescribeClusterCommandOutput, type DescribeClusterOperationCommandInput, type DescribeClusterOperationCommandOutput, type DescribeClusterOperationV2CommandInput, type DescribeClusterOperationV2CommandOutput, type DescribeClusterV2CommandInput, type DescribeClusterV2CommandOutput, type DescribeConfigurationCommandInput, type DescribeConfigurationCommandOutput, type DescribeConfigurationRevisionCommandInput, type DescribeConfigurationRevisionCommandOutput, type DescribeReplicatorCommandInput, type DescribeReplicatorCommandOutput, type DescribeTopicCommandInput, type DescribeTopicCommandOutput, type DescribeTopicPartitionsCommandInput, type DescribeTopicPartitionsCommandOutput, type DescribeVpcConnectionCommandInput, type DescribeVpcConnectionCommandOutput, type GetBootstrapBrokersCommandInput, type GetBootstrapBrokersCommandOutput, type GetClusterPolicyCommandInput, type GetClusterPolicyCommandOutput, type GetCompatibleKafkaVersionsCommandInput, type GetCompatibleKafkaVersionsCommandOutput, type KafkaClient, type KafkaClientConfig, type ListClientVpcConnectionsCommandInput, type ListClientVpcConnectionsCommandOutput, type ListClusterOperationsCommandInput, type ListClusterOperationsCommandOutput, type ListClusterOperationsV2CommandInput, type ListClusterOperationsV2CommandOutput, type ListClustersCommandInput, type ListClustersCommandOutput, type ListClustersV2CommandInput, type ListClustersV2CommandOutput, type ListConfigurationRevisionsCommandInput, type ListConfigurationRevisionsCommandOutput, type ListConfigurationsCommandInput, type ListConfigurationsCommandOutput, type ListKafkaVersionsCommandInput, type ListKafkaVersionsCommandOutput, type ListNodesCommandInput, type ListNodesCommandOutput, type ListReplicatorsCommandInput, type ListReplicatorsCommandOutput, type ListScramSecretsCommandInput, type ListScramSecretsCommandOutput, type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput, type ListTopicsCommandInput, type ListTopicsCommandOutput, type ListVpcConnectionsCommandInput, type ListVpcConnectionsCommandOutput, type PutClusterPolicyCommandInput, type PutClusterPolicyCommandOutput, type RebootBrokerCommandInput, type RebootBrokerCommandOutput, type RejectClientVpcConnectionCommandInput, type RejectClientVpcConnectionCommandOutput, type TagResourceCommandInput, type TagResourceCommandOutput, type UntagResourceCommandInput, type UntagResourceCommandOutput, type UpdateBrokerCountCommandInput, type UpdateBrokerCountCommandOutput, type UpdateBrokerStorageCommandInput, type UpdateBrokerStorageCommandOutput, type UpdateBrokerTypeCommandInput, type UpdateBrokerTypeCommandOutput, type UpdateClusterConfigurationCommandInput, type UpdateClusterConfigurationCommandOutput, type UpdateClusterKafkaVersionCommandInput, type UpdateClusterKafkaVersionCommandOutput, type UpdateConfigurationCommandInput, type UpdateConfigurationCommandOutput, type UpdateConnectivityCommandInput, type UpdateConnectivityCommandOutput, type UpdateMonitoringCommandInput, type UpdateMonitoringCommandOutput, type UpdateRebalancingCommandInput, type UpdateRebalancingCommandOutput, type UpdateReplicationInfoCommandInput, type UpdateReplicationInfoCommandOutput, type UpdateSecurityCommandInput, type UpdateSecurityCommandOutput, type UpdateStorageCommandInput, type UpdateStorageCommandOutput } from "@aws-sdk/client-kafka";
|
|
5
|
+
import type { HttpHandlerOptions, ServiceLogger } from "@effect-aws/commons";
|
|
6
|
+
import type { Cause } from "effect";
|
|
7
|
+
import { Effect, Layer } from "effect";
|
|
8
|
+
import type { BadRequestError, ConflictError, ForbiddenError, InternalServerError, NotFoundError, SdkError, ServiceUnavailableError, TooManyRequestsError, UnauthorizedError } from "./Errors.js";
|
|
9
|
+
import * as Instance from "./KafkaClientInstance.js";
|
|
10
|
+
interface KafkaService$ {
|
|
11
|
+
readonly _: unique symbol;
|
|
12
|
+
/**
|
|
13
|
+
* @see {@link BatchAssociateScramSecretCommand}
|
|
14
|
+
*/
|
|
15
|
+
batchAssociateScramSecret(args: BatchAssociateScramSecretCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchAssociateScramSecretCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
16
|
+
/**
|
|
17
|
+
* @see {@link BatchDisassociateScramSecretCommand}
|
|
18
|
+
*/
|
|
19
|
+
batchDisassociateScramSecret(args: BatchDisassociateScramSecretCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchDisassociateScramSecretCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
20
|
+
/**
|
|
21
|
+
* @see {@link CreateClusterCommand}
|
|
22
|
+
*/
|
|
23
|
+
createCluster(args: CreateClusterCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateClusterCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | ForbiddenError | InternalServerError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
24
|
+
/**
|
|
25
|
+
* @see {@link CreateClusterV2Command}
|
|
26
|
+
*/
|
|
27
|
+
createClusterV2(args: CreateClusterV2CommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateClusterV2CommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | ForbiddenError | InternalServerError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
28
|
+
/**
|
|
29
|
+
* @see {@link CreateConfigurationCommand}
|
|
30
|
+
*/
|
|
31
|
+
createConfiguration(args: CreateConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateConfigurationCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | ForbiddenError | InternalServerError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
32
|
+
/**
|
|
33
|
+
* @see {@link CreateReplicatorCommand}
|
|
34
|
+
*/
|
|
35
|
+
createReplicator(args: CreateReplicatorCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateReplicatorCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
36
|
+
/**
|
|
37
|
+
* @see {@link CreateVpcConnectionCommand}
|
|
38
|
+
*/
|
|
39
|
+
createVpcConnection(args: CreateVpcConnectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateVpcConnectionCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
40
|
+
/**
|
|
41
|
+
* @see {@link DeleteClusterCommand}
|
|
42
|
+
*/
|
|
43
|
+
deleteCluster(args: DeleteClusterCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteClusterCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError>;
|
|
44
|
+
/**
|
|
45
|
+
* @see {@link DeleteClusterPolicyCommand}
|
|
46
|
+
*/
|
|
47
|
+
deleteClusterPolicy(args: DeleteClusterPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteClusterPolicyCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError>;
|
|
48
|
+
/**
|
|
49
|
+
* @see {@link DeleteConfigurationCommand}
|
|
50
|
+
*/
|
|
51
|
+
deleteConfiguration(args: DeleteConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteConfigurationCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError>;
|
|
52
|
+
/**
|
|
53
|
+
* @see {@link DeleteReplicatorCommand}
|
|
54
|
+
*/
|
|
55
|
+
deleteReplicator(args: DeleteReplicatorCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteReplicatorCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
56
|
+
/**
|
|
57
|
+
* @see {@link DeleteVpcConnectionCommand}
|
|
58
|
+
*/
|
|
59
|
+
deleteVpcConnection(args: DeleteVpcConnectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteVpcConnectionCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError>;
|
|
60
|
+
/**
|
|
61
|
+
* @see {@link DescribeClusterCommand}
|
|
62
|
+
*/
|
|
63
|
+
describeCluster(args: DescribeClusterCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeClusterCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | UnauthorizedError>;
|
|
64
|
+
/**
|
|
65
|
+
* @see {@link DescribeClusterOperationCommand}
|
|
66
|
+
*/
|
|
67
|
+
describeClusterOperation(args: DescribeClusterOperationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeClusterOperationCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | UnauthorizedError>;
|
|
68
|
+
/**
|
|
69
|
+
* @see {@link DescribeClusterOperationV2Command}
|
|
70
|
+
*/
|
|
71
|
+
describeClusterOperationV2(args: DescribeClusterOperationV2CommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeClusterOperationV2CommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
72
|
+
/**
|
|
73
|
+
* @see {@link DescribeClusterV2Command}
|
|
74
|
+
*/
|
|
75
|
+
describeClusterV2(args: DescribeClusterV2CommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeClusterV2CommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | UnauthorizedError>;
|
|
76
|
+
/**
|
|
77
|
+
* @see {@link DescribeConfigurationCommand}
|
|
78
|
+
*/
|
|
79
|
+
describeConfiguration(args: DescribeConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeConfigurationCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | UnauthorizedError>;
|
|
80
|
+
/**
|
|
81
|
+
* @see {@link DescribeConfigurationRevisionCommand}
|
|
82
|
+
*/
|
|
83
|
+
describeConfigurationRevision(args: DescribeConfigurationRevisionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeConfigurationRevisionCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | UnauthorizedError>;
|
|
84
|
+
/**
|
|
85
|
+
* @see {@link DescribeReplicatorCommand}
|
|
86
|
+
*/
|
|
87
|
+
describeReplicator(args: DescribeReplicatorCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeReplicatorCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
88
|
+
/**
|
|
89
|
+
* @see {@link DescribeTopicCommand}
|
|
90
|
+
*/
|
|
91
|
+
describeTopic(args: DescribeTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeTopicCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | UnauthorizedError>;
|
|
92
|
+
/**
|
|
93
|
+
* @see {@link DescribeTopicPartitionsCommand}
|
|
94
|
+
*/
|
|
95
|
+
describeTopicPartitions(args: DescribeTopicPartitionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeTopicPartitionsCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | UnauthorizedError>;
|
|
96
|
+
/**
|
|
97
|
+
* @see {@link DescribeVpcConnectionCommand}
|
|
98
|
+
*/
|
|
99
|
+
describeVpcConnection(args: DescribeVpcConnectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeVpcConnectionCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | UnauthorizedError>;
|
|
100
|
+
/**
|
|
101
|
+
* @see {@link GetBootstrapBrokersCommand}
|
|
102
|
+
*/
|
|
103
|
+
getBootstrapBrokers(args: GetBootstrapBrokersCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetBootstrapBrokersCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | ForbiddenError | InternalServerError | UnauthorizedError>;
|
|
104
|
+
/**
|
|
105
|
+
* @see {@link GetClusterPolicyCommand}
|
|
106
|
+
*/
|
|
107
|
+
getClusterPolicy(args: GetClusterPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetClusterPolicyCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError>;
|
|
108
|
+
/**
|
|
109
|
+
* @see {@link GetCompatibleKafkaVersionsCommand}
|
|
110
|
+
*/
|
|
111
|
+
getCompatibleKafkaVersions(args: GetCompatibleKafkaVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCompatibleKafkaVersionsCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
112
|
+
/**
|
|
113
|
+
* @see {@link ListClientVpcConnectionsCommand}
|
|
114
|
+
*/
|
|
115
|
+
listClientVpcConnections(args: ListClientVpcConnectionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListClientVpcConnectionsCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | ServiceUnavailableError | UnauthorizedError>;
|
|
116
|
+
/**
|
|
117
|
+
* @see {@link ListClusterOperationsCommand}
|
|
118
|
+
*/
|
|
119
|
+
listClusterOperations(args: ListClusterOperationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListClusterOperationsCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | UnauthorizedError>;
|
|
120
|
+
/**
|
|
121
|
+
* @see {@link ListClusterOperationsV2Command}
|
|
122
|
+
*/
|
|
123
|
+
listClusterOperationsV2(args: ListClusterOperationsV2CommandInput, options?: HttpHandlerOptions): Effect.Effect<ListClusterOperationsV2CommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
124
|
+
/**
|
|
125
|
+
* @see {@link ListClustersCommand}
|
|
126
|
+
*/
|
|
127
|
+
listClusters(args: ListClustersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListClustersCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | UnauthorizedError>;
|
|
128
|
+
/**
|
|
129
|
+
* @see {@link ListClustersV2Command}
|
|
130
|
+
*/
|
|
131
|
+
listClustersV2(args: ListClustersV2CommandInput, options?: HttpHandlerOptions): Effect.Effect<ListClustersV2CommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | UnauthorizedError>;
|
|
132
|
+
/**
|
|
133
|
+
* @see {@link ListConfigurationRevisionsCommand}
|
|
134
|
+
*/
|
|
135
|
+
listConfigurationRevisions(args: ListConfigurationRevisionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListConfigurationRevisionsCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | UnauthorizedError>;
|
|
136
|
+
/**
|
|
137
|
+
* @see {@link ListConfigurationsCommand}
|
|
138
|
+
*/
|
|
139
|
+
listConfigurations(args: ListConfigurationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListConfigurationsCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | ServiceUnavailableError | UnauthorizedError>;
|
|
140
|
+
/**
|
|
141
|
+
* @see {@link ListKafkaVersionsCommand}
|
|
142
|
+
*/
|
|
143
|
+
listKafkaVersions(args: ListKafkaVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListKafkaVersionsCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | UnauthorizedError>;
|
|
144
|
+
/**
|
|
145
|
+
* @see {@link ListNodesCommand}
|
|
146
|
+
*/
|
|
147
|
+
listNodes(args: ListNodesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListNodesCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError>;
|
|
148
|
+
/**
|
|
149
|
+
* @see {@link ListReplicatorsCommand}
|
|
150
|
+
*/
|
|
151
|
+
listReplicators(args: ListReplicatorsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListReplicatorsCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
152
|
+
/**
|
|
153
|
+
* @see {@link ListScramSecretsCommand}
|
|
154
|
+
*/
|
|
155
|
+
listScramSecrets(args: ListScramSecretsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListScramSecretsCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
156
|
+
/**
|
|
157
|
+
* @see {@link ListTagsForResourceCommand}
|
|
158
|
+
*/
|
|
159
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | InternalServerError | NotFoundError>;
|
|
160
|
+
/**
|
|
161
|
+
* @see {@link ListTopicsCommand}
|
|
162
|
+
*/
|
|
163
|
+
listTopics(args: ListTopicsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTopicsCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | ServiceUnavailableError | UnauthorizedError>;
|
|
164
|
+
/**
|
|
165
|
+
* @see {@link ListVpcConnectionsCommand}
|
|
166
|
+
*/
|
|
167
|
+
listVpcConnections(args: ListVpcConnectionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListVpcConnectionsCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | ServiceUnavailableError | UnauthorizedError>;
|
|
168
|
+
/**
|
|
169
|
+
* @see {@link PutClusterPolicyCommand}
|
|
170
|
+
*/
|
|
171
|
+
putClusterPolicy(args: PutClusterPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutClusterPolicyCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError>;
|
|
172
|
+
/**
|
|
173
|
+
* @see {@link RebootBrokerCommand}
|
|
174
|
+
*/
|
|
175
|
+
rebootBroker(args: RebootBrokerCommandInput, options?: HttpHandlerOptions): Effect.Effect<RebootBrokerCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
176
|
+
/**
|
|
177
|
+
* @see {@link RejectClientVpcConnectionCommand}
|
|
178
|
+
*/
|
|
179
|
+
rejectClientVpcConnection(args: RejectClientVpcConnectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<RejectClientVpcConnectionCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | ServiceUnavailableError | UnauthorizedError>;
|
|
180
|
+
/**
|
|
181
|
+
* @see {@link TagResourceCommand}
|
|
182
|
+
*/
|
|
183
|
+
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | InternalServerError | NotFoundError>;
|
|
184
|
+
/**
|
|
185
|
+
* @see {@link UntagResourceCommand}
|
|
186
|
+
*/
|
|
187
|
+
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | InternalServerError | NotFoundError>;
|
|
188
|
+
/**
|
|
189
|
+
* @see {@link UpdateBrokerCountCommand}
|
|
190
|
+
*/
|
|
191
|
+
updateBrokerCount(args: UpdateBrokerCountCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateBrokerCountCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | ServiceUnavailableError | UnauthorizedError>;
|
|
192
|
+
/**
|
|
193
|
+
* @see {@link UpdateBrokerStorageCommand}
|
|
194
|
+
*/
|
|
195
|
+
updateBrokerStorage(args: UpdateBrokerStorageCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateBrokerStorageCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | ServiceUnavailableError | UnauthorizedError>;
|
|
196
|
+
/**
|
|
197
|
+
* @see {@link UpdateBrokerTypeCommand}
|
|
198
|
+
*/
|
|
199
|
+
updateBrokerType(args: UpdateBrokerTypeCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateBrokerTypeCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
200
|
+
/**
|
|
201
|
+
* @see {@link UpdateClusterConfigurationCommand}
|
|
202
|
+
*/
|
|
203
|
+
updateClusterConfiguration(args: UpdateClusterConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateClusterConfigurationCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | UnauthorizedError>;
|
|
204
|
+
/**
|
|
205
|
+
* @see {@link UpdateClusterKafkaVersionCommand}
|
|
206
|
+
*/
|
|
207
|
+
updateClusterKafkaVersion(args: UpdateClusterKafkaVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateClusterKafkaVersionCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
208
|
+
/**
|
|
209
|
+
* @see {@link UpdateConfigurationCommand}
|
|
210
|
+
*/
|
|
211
|
+
updateConfiguration(args: UpdateConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateConfigurationCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | UnauthorizedError>;
|
|
212
|
+
/**
|
|
213
|
+
* @see {@link UpdateConnectivityCommand}
|
|
214
|
+
*/
|
|
215
|
+
updateConnectivity(args: UpdateConnectivityCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateConnectivityCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | UnauthorizedError>;
|
|
216
|
+
/**
|
|
217
|
+
* @see {@link UpdateMonitoringCommand}
|
|
218
|
+
*/
|
|
219
|
+
updateMonitoring(args: UpdateMonitoringCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateMonitoringCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | ServiceUnavailableError | UnauthorizedError>;
|
|
220
|
+
/**
|
|
221
|
+
* @see {@link UpdateRebalancingCommand}
|
|
222
|
+
*/
|
|
223
|
+
updateRebalancing(args: UpdateRebalancingCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateRebalancingCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
224
|
+
/**
|
|
225
|
+
* @see {@link UpdateReplicationInfoCommand}
|
|
226
|
+
*/
|
|
227
|
+
updateReplicationInfo(args: UpdateReplicationInfoCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateReplicationInfoCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
228
|
+
/**
|
|
229
|
+
* @see {@link UpdateSecurityCommand}
|
|
230
|
+
*/
|
|
231
|
+
updateSecurity(args: UpdateSecurityCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateSecurityCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
232
|
+
/**
|
|
233
|
+
* @see {@link UpdateStorageCommand}
|
|
234
|
+
*/
|
|
235
|
+
updateStorage(args: UpdateStorageCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateStorageCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
236
|
+
}
|
|
237
|
+
/**
|
|
238
|
+
* @since 1.0.0
|
|
239
|
+
* @category constructors
|
|
240
|
+
*/
|
|
241
|
+
export declare const makeKafkaService: Effect.Effect<KafkaService$, never, Instance.KafkaClientInstance>;
|
|
242
|
+
declare const KafkaService_base: import("effect/Context").TagClass<KafkaService, "@effect-aws/client-kafka/KafkaService", KafkaService$> & Effect.Tag.Proxy<KafkaService, KafkaService$> & {
|
|
243
|
+
use: <X>(body: (_: KafkaService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, KafkaService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, Cause.UnknownException, KafkaService> : Effect.Effect<X, never, KafkaService>;
|
|
244
|
+
};
|
|
245
|
+
/**
|
|
246
|
+
* @since 1.0.0
|
|
247
|
+
* @category models
|
|
248
|
+
*/
|
|
249
|
+
export declare class KafkaService extends KafkaService_base {
|
|
250
|
+
static readonly defaultLayer: Layer.Layer<KafkaService, never, never>;
|
|
251
|
+
static readonly layer: (config: KafkaService.Config) => Layer.Layer<KafkaService, never, never>;
|
|
252
|
+
static readonly baseLayer: (evaluate: (defaultConfig: KafkaClientConfig) => KafkaClient) => Layer.Layer<KafkaService, never, never>;
|
|
253
|
+
}
|
|
254
|
+
/**
|
|
255
|
+
* @since 1.0.0
|
|
256
|
+
*/
|
|
257
|
+
export declare namespace KafkaService {
|
|
258
|
+
/**
|
|
259
|
+
* @since 1.0.0
|
|
260
|
+
*/
|
|
261
|
+
interface Config extends Omit<KafkaClientConfig, "logger"> {
|
|
262
|
+
readonly logger?: ServiceLogger.ServiceLoggerConstructorProps | true;
|
|
263
|
+
}
|
|
264
|
+
/**
|
|
265
|
+
* @since 1.0.0
|
|
266
|
+
*/
|
|
267
|
+
type Type = KafkaService$;
|
|
268
|
+
}
|
|
269
|
+
export {};
|
|
270
|
+
//# sourceMappingURL=KafkaService.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"KafkaService.d.ts","sourceRoot":"","sources":["../../src/KafkaService.ts"],"names":[],"mappings":"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"}
|