@effect-aws/client-kafka 1.10.6 → 2.0.0-beta.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/LICENSE +1 -1
- package/README.md +3 -3
- package/dist/dts/Errors.d.ts +11 -2
- package/dist/dts/Errors.d.ts.map +1 -1
- package/dist/dts/KafkaClientInstance.d.ts +2 -2
- package/dist/dts/KafkaClientInstance.d.ts.map +1 -1
- package/dist/dts/KafkaService.d.ts +72 -62
- package/dist/dts/KafkaService.d.ts.map +1 -1
- package/dist/dts/KafkaServiceConfig.d.ts.map +1 -1
- package/dist/esm/Errors.js +9 -0
- package/dist/esm/Errors.js.map +1 -1
- package/dist/esm/KafkaClientInstance.js +3 -3
- package/dist/esm/KafkaClientInstance.js.map +1 -1
- package/dist/esm/KafkaService.js +6 -3
- package/dist/esm/KafkaService.js.map +1 -1
- package/dist/esm/KafkaServiceConfig.js +5 -6
- package/dist/esm/KafkaServiceConfig.js.map +1 -1
- package/package.json +8 -14
- package/src/Errors.ts +27 -0
- package/src/KafkaClientInstance.ts +4 -4
- package/src/KafkaService.ts +158 -59
- package/src/KafkaServiceConfig.ts +6 -8
- package/dist/cjs/Errors.d.ts +0 -15
- package/dist/cjs/Errors.d.ts.map +0 -1
- package/dist/cjs/Errors.js +0 -14
- package/dist/cjs/Errors.js.map +0 -1
- package/dist/cjs/KafkaClientInstance.d.ts +0 -24
- package/dist/cjs/KafkaClientInstance.d.ts.map +0 -1
- package/dist/cjs/KafkaClientInstance.js +0 -50
- package/dist/cjs/KafkaClientInstance.js.map +0 -1
- package/dist/cjs/KafkaService.d.ts +0 -270
- package/dist/cjs/KafkaService.d.ts.map +0 -1
- package/dist/cjs/KafkaService.js +0 -115
- package/dist/cjs/KafkaService.js.map +0 -1
- package/dist/cjs/KafkaServiceConfig.d.ts +0 -25
- package/dist/cjs/KafkaServiceConfig.d.ts.map +0 -1
- package/dist/cjs/KafkaServiceConfig.js +0 -35
- package/dist/cjs/KafkaServiceConfig.js.map +0 -1
- package/dist/cjs/index.d.ts +0 -44
- package/dist/cjs/index.d.ts.map +0 -1
- package/dist/cjs/index.js +0 -56
- package/dist/cjs/index.js.map +0 -1
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ With default KafkaClient instance:
|
|
|
16
16
|
```typescript
|
|
17
17
|
import { Kafka } from "@effect-aws/client-kafka";
|
|
18
18
|
|
|
19
|
-
const program = Kafka.listClusters(args);
|
|
19
|
+
const program = Kafka.use((svc) => svc.listClusters(args));
|
|
20
20
|
|
|
21
21
|
const result = pipe(
|
|
22
22
|
program,
|
|
@@ -30,7 +30,7 @@ With custom KafkaClient instance:
|
|
|
30
30
|
```typescript
|
|
31
31
|
import { Kafka } from "@effect-aws/client-kafka";
|
|
32
32
|
|
|
33
|
-
const program = Kafka.listClusters(args);
|
|
33
|
+
const program = Kafka.use((svc) => svc.listClusters(args));
|
|
34
34
|
|
|
35
35
|
const result = await pipe(
|
|
36
36
|
program,
|
|
@@ -46,7 +46,7 @@ With custom KafkaClient configuration:
|
|
|
46
46
|
```typescript
|
|
47
47
|
import { Kafka } from "@effect-aws/client-kafka";
|
|
48
48
|
|
|
49
|
-
const program = Kafka.listClusters(args);
|
|
49
|
+
const program = Kafka.use((svc) => svc.listClusters(args));
|
|
50
50
|
|
|
51
51
|
const result = await pipe(
|
|
52
52
|
program,
|
package/dist/dts/Errors.d.ts
CHANGED
|
@@ -1,14 +1,23 @@
|
|
|
1
|
-
import type { BadRequestException, ConflictException, ForbiddenException, InternalServerErrorException, NotFoundException, ServiceUnavailableException, TooManyRequestsException, UnauthorizedException } from "@aws-sdk/client-kafka";
|
|
1
|
+
import type { BadRequestException, ClusterConnectivityException, ConflictException, ControllerMovedException, ForbiddenException, GroupSubscribedToTopicException, InternalServerErrorException, KafkaRequestException, KafkaTimeoutException, NotControllerException, NotFoundException, ReassignmentInProgressException, ServiceUnavailableException, TooManyRequestsException, TopicExistsException, UnauthorizedException, UnknownTopicOrPartitionException } from "@aws-sdk/client-kafka";
|
|
2
2
|
import type { TaggedException } from "@effect-aws/commons";
|
|
3
|
-
export declare const AllServiceErrors: readonly ["BadRequestException", "ConflictException", "ForbiddenException", "InternalServerErrorException", "NotFoundException", "ServiceUnavailableException", "TooManyRequestsException", "UnauthorizedException"];
|
|
3
|
+
export declare const AllServiceErrors: readonly ["BadRequestException", "ClusterConnectivityException", "ConflictException", "ControllerMovedException", "ForbiddenException", "GroupSubscribedToTopicException", "InternalServerErrorException", "KafkaRequestException", "KafkaTimeoutException", "NotControllerException", "NotFoundException", "ReassignmentInProgressException", "ServiceUnavailableException", "TooManyRequestsException", "TopicExistsException", "UnauthorizedException", "UnknownTopicOrPartitionException"];
|
|
4
4
|
export type BadRequestError = TaggedException<BadRequestException>;
|
|
5
|
+
export type ClusterConnectivityError = TaggedException<ClusterConnectivityException>;
|
|
5
6
|
export type ConflictError = TaggedException<ConflictException>;
|
|
7
|
+
export type ControllerMovedError = TaggedException<ControllerMovedException>;
|
|
6
8
|
export type ForbiddenError = TaggedException<ForbiddenException>;
|
|
9
|
+
export type GroupSubscribedToTopicError = TaggedException<GroupSubscribedToTopicException>;
|
|
7
10
|
export type InternalServerError = TaggedException<InternalServerErrorException>;
|
|
11
|
+
export type KafkaRequestError = TaggedException<KafkaRequestException>;
|
|
12
|
+
export type KafkaTimeoutError = TaggedException<KafkaTimeoutException>;
|
|
13
|
+
export type NotControllerError = TaggedException<NotControllerException>;
|
|
8
14
|
export type NotFoundError = TaggedException<NotFoundException>;
|
|
15
|
+
export type ReassignmentInProgressError = TaggedException<ReassignmentInProgressException>;
|
|
9
16
|
export type ServiceUnavailableError = TaggedException<ServiceUnavailableException>;
|
|
10
17
|
export type TooManyRequestsError = TaggedException<TooManyRequestsException>;
|
|
18
|
+
export type TopicExistsError = TaggedException<TopicExistsException>;
|
|
11
19
|
export type UnauthorizedError = TaggedException<UnauthorizedException>;
|
|
20
|
+
export type UnknownTopicOrPartitionError = TaggedException<UnknownTopicOrPartitionException>;
|
|
12
21
|
export type SdkError = TaggedException<Error & {
|
|
13
22
|
name: "SdkError";
|
|
14
23
|
}>;
|
package/dist/dts/Errors.d.ts.map
CHANGED
|
@@ -1 +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,
|
|
1
|
+
{"version":3,"file":"Errors.d.ts","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,mBAAmB,EACnB,4BAA4B,EAC5B,iBAAiB,EACjB,wBAAwB,EACxB,kBAAkB,EAClB,+BAA+B,EAC/B,4BAA4B,EAC5B,qBAAqB,EACrB,qBAAqB,EACrB,sBAAsB,EACtB,iBAAiB,EACjB,+BAA+B,EAC/B,2BAA2B,EAC3B,wBAAwB,EACxB,oBAAoB,EACpB,qBAAqB,EACrB,gCAAgC,EACjC,MAAM,uBAAuB,CAAC;AAC/B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAE3D,eAAO,MAAM,gBAAgB,geAkBnB,CAAC;AAEX,MAAM,MAAM,eAAe,GAAG,eAAe,CAAC,mBAAmB,CAAC,CAAC;AACnE,MAAM,MAAM,wBAAwB,GAAG,eAAe,CAAC,4BAA4B,CAAC,CAAC;AACrF,MAAM,MAAM,aAAa,GAAG,eAAe,CAAC,iBAAiB,CAAC,CAAC;AAC/D,MAAM,MAAM,oBAAoB,GAAG,eAAe,CAAC,wBAAwB,CAAC,CAAC;AAC7E,MAAM,MAAM,cAAc,GAAG,eAAe,CAAC,kBAAkB,CAAC,CAAC;AACjE,MAAM,MAAM,2BAA2B,GAAG,eAAe,CAAC,+BAA+B,CAAC,CAAC;AAC3F,MAAM,MAAM,mBAAmB,GAAG,eAAe,CAAC,4BAA4B,CAAC,CAAC;AAChF,MAAM,MAAM,iBAAiB,GAAG,eAAe,CAAC,qBAAqB,CAAC,CAAC;AACvE,MAAM,MAAM,iBAAiB,GAAG,eAAe,CAAC,qBAAqB,CAAC,CAAC;AACvE,MAAM,MAAM,kBAAkB,GAAG,eAAe,CAAC,sBAAsB,CAAC,CAAC;AACzE,MAAM,MAAM,aAAa,GAAG,eAAe,CAAC,iBAAiB,CAAC,CAAC;AAC/D,MAAM,MAAM,2BAA2B,GAAG,eAAe,CAAC,+BAA+B,CAAC,CAAC;AAC3F,MAAM,MAAM,uBAAuB,GAAG,eAAe,CAAC,2BAA2B,CAAC,CAAC;AACnF,MAAM,MAAM,oBAAoB,GAAG,eAAe,CAAC,wBAAwB,CAAC,CAAC;AAC7E,MAAM,MAAM,gBAAgB,GAAG,eAAe,CAAC,oBAAoB,CAAC,CAAC;AACrE,MAAM,MAAM,iBAAiB,GAAG,eAAe,CAAC,qBAAqB,CAAC,CAAC;AACvE,MAAM,MAAM,4BAA4B,GAAG,eAAe,CAAC,gCAAgC,CAAC,CAAC;AAC7F,MAAM,MAAM,QAAQ,GAAG,eAAe,CAAC,KAAK,GAAG;IAAE,IAAI,EAAE,UAAU,CAAA;CAAE,CAAC,CAAC"}
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* @since 1.0.0
|
|
3
3
|
*/
|
|
4
4
|
import { KafkaClient } from "@aws-sdk/client-kafka";
|
|
5
|
-
import {
|
|
6
|
-
declare const KafkaClientInstance_base:
|
|
5
|
+
import { Effect, Layer, ServiceMap } from "effect";
|
|
6
|
+
declare const KafkaClientInstance_base: ServiceMap.ServiceClass<KafkaClientInstance, "@effect-aws/client-kafka/KafkaClientInstance", KafkaClient>;
|
|
7
7
|
/**
|
|
8
8
|
* @since 1.0.0
|
|
9
9
|
* @category tags
|
|
@@ -1 +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,
|
|
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,MAAM,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;;AAGnD;;;GAGG;AACH,qBAAa,mBAAoB,SAAQ,wBAExC;CAAG;AAEJ;;;GAGG;AACH,eAAO,MAAM,IAAI,iEAOhB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,KAAK,gDAA0C,CAAC"}
|
|
@@ -1,247 +1,257 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @since 1.0.0
|
|
3
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";
|
|
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 CreateTopicCommandInput, type CreateTopicCommandOutput, type CreateVpcConnectionCommandInput, type CreateVpcConnectionCommandOutput, type DeleteClusterCommandInput, type DeleteClusterCommandOutput, type DeleteClusterPolicyCommandInput, type DeleteClusterPolicyCommandOutput, type DeleteConfigurationCommandInput, type DeleteConfigurationCommandOutput, type DeleteReplicatorCommandInput, type DeleteReplicatorCommandOutput, type DeleteTopicCommandInput, type DeleteTopicCommandOutput, 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, type UpdateTopicCommandInput, type UpdateTopicCommandOutput } from "@aws-sdk/client-kafka";
|
|
5
5
|
import type { HttpHandlerOptions, ServiceLogger } from "@effect-aws/commons";
|
|
6
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";
|
|
7
|
+
import { Effect, Layer, ServiceMap } from "effect";
|
|
8
|
+
import type { BadRequestError, ClusterConnectivityError, ConflictError, ControllerMovedError, ForbiddenError, GroupSubscribedToTopicError, InternalServerError, KafkaRequestError, KafkaTimeoutError, NotControllerError, NotFoundError, ReassignmentInProgressError, SdkError, ServiceUnavailableError, TooManyRequestsError, TopicExistsError, UnauthorizedError, UnknownTopicOrPartitionError } from "./Errors.js";
|
|
9
9
|
import * as Instance from "./KafkaClientInstance.js";
|
|
10
10
|
interface KafkaService$ {
|
|
11
11
|
readonly _: unique symbol;
|
|
12
12
|
/**
|
|
13
13
|
* @see {@link BatchAssociateScramSecretCommand}
|
|
14
14
|
*/
|
|
15
|
-
batchAssociateScramSecret(args: BatchAssociateScramSecretCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchAssociateScramSecretCommandOutput, Cause.
|
|
15
|
+
batchAssociateScramSecret(args: BatchAssociateScramSecretCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchAssociateScramSecretCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
16
16
|
/**
|
|
17
17
|
* @see {@link BatchDisassociateScramSecretCommand}
|
|
18
18
|
*/
|
|
19
|
-
batchDisassociateScramSecret(args: BatchDisassociateScramSecretCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchDisassociateScramSecretCommandOutput, Cause.
|
|
19
|
+
batchDisassociateScramSecret(args: BatchDisassociateScramSecretCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchDisassociateScramSecretCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
20
20
|
/**
|
|
21
21
|
* @see {@link CreateClusterCommand}
|
|
22
22
|
*/
|
|
23
|
-
createCluster(args: CreateClusterCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateClusterCommandOutput, Cause.
|
|
23
|
+
createCluster(args: CreateClusterCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateClusterCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ConflictError | ForbiddenError | InternalServerError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
24
24
|
/**
|
|
25
25
|
* @see {@link CreateClusterV2Command}
|
|
26
26
|
*/
|
|
27
|
-
createClusterV2(args: CreateClusterV2CommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateClusterV2CommandOutput, Cause.
|
|
27
|
+
createClusterV2(args: CreateClusterV2CommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateClusterV2CommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ConflictError | ForbiddenError | InternalServerError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
28
28
|
/**
|
|
29
29
|
* @see {@link CreateConfigurationCommand}
|
|
30
30
|
*/
|
|
31
|
-
createConfiguration(args: CreateConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateConfigurationCommandOutput, Cause.
|
|
31
|
+
createConfiguration(args: CreateConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateConfigurationCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ConflictError | ForbiddenError | InternalServerError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
32
32
|
/**
|
|
33
33
|
* @see {@link CreateReplicatorCommand}
|
|
34
34
|
*/
|
|
35
|
-
createReplicator(args: CreateReplicatorCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateReplicatorCommandOutput, Cause.
|
|
35
|
+
createReplicator(args: CreateReplicatorCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateReplicatorCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ConflictError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
36
|
+
/**
|
|
37
|
+
* @see {@link CreateTopicCommand}
|
|
38
|
+
*/
|
|
39
|
+
createTopic(args: CreateTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateTopicCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ClusterConnectivityError | ConflictError | ControllerMovedError | ForbiddenError | GroupSubscribedToTopicError | InternalServerError | KafkaRequestError | KafkaTimeoutError | NotControllerError | ReassignmentInProgressError | ServiceUnavailableError | TooManyRequestsError | TopicExistsError | UnauthorizedError | UnknownTopicOrPartitionError>;
|
|
36
40
|
/**
|
|
37
41
|
* @see {@link CreateVpcConnectionCommand}
|
|
38
42
|
*/
|
|
39
|
-
createVpcConnection(args: CreateVpcConnectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateVpcConnectionCommandOutput, Cause.
|
|
43
|
+
createVpcConnection(args: CreateVpcConnectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateVpcConnectionCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
40
44
|
/**
|
|
41
45
|
* @see {@link DeleteClusterCommand}
|
|
42
46
|
*/
|
|
43
|
-
deleteCluster(args: DeleteClusterCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteClusterCommandOutput, Cause.
|
|
47
|
+
deleteCluster(args: DeleteClusterCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteClusterCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError>;
|
|
44
48
|
/**
|
|
45
49
|
* @see {@link DeleteClusterPolicyCommand}
|
|
46
50
|
*/
|
|
47
|
-
deleteClusterPolicy(args: DeleteClusterPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteClusterPolicyCommandOutput, Cause.
|
|
51
|
+
deleteClusterPolicy(args: DeleteClusterPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteClusterPolicyCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError>;
|
|
48
52
|
/**
|
|
49
53
|
* @see {@link DeleteConfigurationCommand}
|
|
50
54
|
*/
|
|
51
|
-
deleteConfiguration(args: DeleteConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteConfigurationCommandOutput, Cause.
|
|
55
|
+
deleteConfiguration(args: DeleteConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteConfigurationCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError>;
|
|
52
56
|
/**
|
|
53
57
|
* @see {@link DeleteReplicatorCommand}
|
|
54
58
|
*/
|
|
55
|
-
deleteReplicator(args: DeleteReplicatorCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteReplicatorCommandOutput, Cause.
|
|
59
|
+
deleteReplicator(args: DeleteReplicatorCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteReplicatorCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
60
|
+
/**
|
|
61
|
+
* @see {@link DeleteTopicCommand}
|
|
62
|
+
*/
|
|
63
|
+
deleteTopic(args: DeleteTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteTopicCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ClusterConnectivityError | ControllerMovedError | ForbiddenError | GroupSubscribedToTopicError | InternalServerError | KafkaRequestError | KafkaTimeoutError | NotControllerError | NotFoundError | ReassignmentInProgressError | UnknownTopicOrPartitionError>;
|
|
56
64
|
/**
|
|
57
65
|
* @see {@link DeleteVpcConnectionCommand}
|
|
58
66
|
*/
|
|
59
|
-
deleteVpcConnection(args: DeleteVpcConnectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteVpcConnectionCommandOutput, Cause.
|
|
67
|
+
deleteVpcConnection(args: DeleteVpcConnectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteVpcConnectionCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError>;
|
|
60
68
|
/**
|
|
61
69
|
* @see {@link DescribeClusterCommand}
|
|
62
70
|
*/
|
|
63
|
-
describeCluster(args: DescribeClusterCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeClusterCommandOutput, Cause.
|
|
71
|
+
describeCluster(args: DescribeClusterCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeClusterCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | UnauthorizedError>;
|
|
64
72
|
/**
|
|
65
73
|
* @see {@link DescribeClusterOperationCommand}
|
|
66
74
|
*/
|
|
67
|
-
describeClusterOperation(args: DescribeClusterOperationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeClusterOperationCommandOutput, Cause.
|
|
75
|
+
describeClusterOperation(args: DescribeClusterOperationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeClusterOperationCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | UnauthorizedError>;
|
|
68
76
|
/**
|
|
69
77
|
* @see {@link DescribeClusterOperationV2Command}
|
|
70
78
|
*/
|
|
71
|
-
describeClusterOperationV2(args: DescribeClusterOperationV2CommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeClusterOperationV2CommandOutput, Cause.
|
|
79
|
+
describeClusterOperationV2(args: DescribeClusterOperationV2CommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeClusterOperationV2CommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
72
80
|
/**
|
|
73
81
|
* @see {@link DescribeClusterV2Command}
|
|
74
82
|
*/
|
|
75
|
-
describeClusterV2(args: DescribeClusterV2CommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeClusterV2CommandOutput, Cause.
|
|
83
|
+
describeClusterV2(args: DescribeClusterV2CommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeClusterV2CommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | UnauthorizedError>;
|
|
76
84
|
/**
|
|
77
85
|
* @see {@link DescribeConfigurationCommand}
|
|
78
86
|
*/
|
|
79
|
-
describeConfiguration(args: DescribeConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeConfigurationCommandOutput, Cause.
|
|
87
|
+
describeConfiguration(args: DescribeConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeConfigurationCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | UnauthorizedError>;
|
|
80
88
|
/**
|
|
81
89
|
* @see {@link DescribeConfigurationRevisionCommand}
|
|
82
90
|
*/
|
|
83
|
-
describeConfigurationRevision(args: DescribeConfigurationRevisionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeConfigurationRevisionCommandOutput, Cause.
|
|
91
|
+
describeConfigurationRevision(args: DescribeConfigurationRevisionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeConfigurationRevisionCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | UnauthorizedError>;
|
|
84
92
|
/**
|
|
85
93
|
* @see {@link DescribeReplicatorCommand}
|
|
86
94
|
*/
|
|
87
|
-
describeReplicator(args: DescribeReplicatorCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeReplicatorCommandOutput, Cause.
|
|
95
|
+
describeReplicator(args: DescribeReplicatorCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeReplicatorCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
88
96
|
/**
|
|
89
97
|
* @see {@link DescribeTopicCommand}
|
|
90
98
|
*/
|
|
91
|
-
describeTopic(args: DescribeTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeTopicCommandOutput, Cause.
|
|
99
|
+
describeTopic(args: DescribeTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeTopicCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | UnauthorizedError>;
|
|
92
100
|
/**
|
|
93
101
|
* @see {@link DescribeTopicPartitionsCommand}
|
|
94
102
|
*/
|
|
95
|
-
describeTopicPartitions(args: DescribeTopicPartitionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeTopicPartitionsCommandOutput, Cause.
|
|
103
|
+
describeTopicPartitions(args: DescribeTopicPartitionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeTopicPartitionsCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | UnauthorizedError>;
|
|
96
104
|
/**
|
|
97
105
|
* @see {@link DescribeVpcConnectionCommand}
|
|
98
106
|
*/
|
|
99
|
-
describeVpcConnection(args: DescribeVpcConnectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeVpcConnectionCommandOutput, Cause.
|
|
107
|
+
describeVpcConnection(args: DescribeVpcConnectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeVpcConnectionCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | UnauthorizedError>;
|
|
100
108
|
/**
|
|
101
109
|
* @see {@link GetBootstrapBrokersCommand}
|
|
102
110
|
*/
|
|
103
|
-
getBootstrapBrokers(args: GetBootstrapBrokersCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetBootstrapBrokersCommandOutput, Cause.
|
|
111
|
+
getBootstrapBrokers(args: GetBootstrapBrokersCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetBootstrapBrokersCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ConflictError | ForbiddenError | InternalServerError | UnauthorizedError>;
|
|
104
112
|
/**
|
|
105
113
|
* @see {@link GetClusterPolicyCommand}
|
|
106
114
|
*/
|
|
107
|
-
getClusterPolicy(args: GetClusterPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetClusterPolicyCommandOutput, Cause.
|
|
115
|
+
getClusterPolicy(args: GetClusterPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetClusterPolicyCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError>;
|
|
108
116
|
/**
|
|
109
117
|
* @see {@link GetCompatibleKafkaVersionsCommand}
|
|
110
118
|
*/
|
|
111
|
-
getCompatibleKafkaVersions(args: GetCompatibleKafkaVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCompatibleKafkaVersionsCommandOutput, Cause.
|
|
119
|
+
getCompatibleKafkaVersions(args: GetCompatibleKafkaVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCompatibleKafkaVersionsCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
112
120
|
/**
|
|
113
121
|
* @see {@link ListClientVpcConnectionsCommand}
|
|
114
122
|
*/
|
|
115
|
-
listClientVpcConnections(args: ListClientVpcConnectionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListClientVpcConnectionsCommandOutput, Cause.
|
|
123
|
+
listClientVpcConnections(args: ListClientVpcConnectionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListClientVpcConnectionsCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | ServiceUnavailableError | UnauthorizedError>;
|
|
116
124
|
/**
|
|
117
125
|
* @see {@link ListClusterOperationsCommand}
|
|
118
126
|
*/
|
|
119
|
-
listClusterOperations(args: ListClusterOperationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListClusterOperationsCommandOutput, Cause.
|
|
127
|
+
listClusterOperations(args: ListClusterOperationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListClusterOperationsCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | UnauthorizedError>;
|
|
120
128
|
/**
|
|
121
129
|
* @see {@link ListClusterOperationsV2Command}
|
|
122
130
|
*/
|
|
123
|
-
listClusterOperationsV2(args: ListClusterOperationsV2CommandInput, options?: HttpHandlerOptions): Effect.Effect<ListClusterOperationsV2CommandOutput, Cause.
|
|
131
|
+
listClusterOperationsV2(args: ListClusterOperationsV2CommandInput, options?: HttpHandlerOptions): Effect.Effect<ListClusterOperationsV2CommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
124
132
|
/**
|
|
125
133
|
* @see {@link ListClustersCommand}
|
|
126
134
|
*/
|
|
127
|
-
listClusters(args: ListClustersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListClustersCommandOutput, Cause.
|
|
135
|
+
listClusters(args: ListClustersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListClustersCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | UnauthorizedError>;
|
|
128
136
|
/**
|
|
129
137
|
* @see {@link ListClustersV2Command}
|
|
130
138
|
*/
|
|
131
|
-
listClustersV2(args: ListClustersV2CommandInput, options?: HttpHandlerOptions): Effect.Effect<ListClustersV2CommandOutput, Cause.
|
|
139
|
+
listClustersV2(args: ListClustersV2CommandInput, options?: HttpHandlerOptions): Effect.Effect<ListClustersV2CommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | UnauthorizedError>;
|
|
132
140
|
/**
|
|
133
141
|
* @see {@link ListConfigurationRevisionsCommand}
|
|
134
142
|
*/
|
|
135
|
-
listConfigurationRevisions(args: ListConfigurationRevisionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListConfigurationRevisionsCommandOutput, Cause.
|
|
143
|
+
listConfigurationRevisions(args: ListConfigurationRevisionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListConfigurationRevisionsCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | UnauthorizedError>;
|
|
136
144
|
/**
|
|
137
145
|
* @see {@link ListConfigurationsCommand}
|
|
138
146
|
*/
|
|
139
|
-
listConfigurations(args: ListConfigurationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListConfigurationsCommandOutput, Cause.
|
|
147
|
+
listConfigurations(args: ListConfigurationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListConfigurationsCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | ServiceUnavailableError | UnauthorizedError>;
|
|
140
148
|
/**
|
|
141
149
|
* @see {@link ListKafkaVersionsCommand}
|
|
142
150
|
*/
|
|
143
|
-
listKafkaVersions(args: ListKafkaVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListKafkaVersionsCommandOutput, Cause.
|
|
151
|
+
listKafkaVersions(args: ListKafkaVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListKafkaVersionsCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | UnauthorizedError>;
|
|
144
152
|
/**
|
|
145
153
|
* @see {@link ListNodesCommand}
|
|
146
154
|
*/
|
|
147
|
-
listNodes(args: ListNodesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListNodesCommandOutput, Cause.
|
|
155
|
+
listNodes(args: ListNodesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListNodesCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError>;
|
|
148
156
|
/**
|
|
149
157
|
* @see {@link ListReplicatorsCommand}
|
|
150
158
|
*/
|
|
151
|
-
listReplicators(args: ListReplicatorsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListReplicatorsCommandOutput, Cause.
|
|
159
|
+
listReplicators(args: ListReplicatorsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListReplicatorsCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
152
160
|
/**
|
|
153
161
|
* @see {@link ListScramSecretsCommand}
|
|
154
162
|
*/
|
|
155
|
-
listScramSecrets(args: ListScramSecretsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListScramSecretsCommandOutput, Cause.
|
|
163
|
+
listScramSecrets(args: ListScramSecretsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListScramSecretsCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
156
164
|
/**
|
|
157
165
|
* @see {@link ListTagsForResourceCommand}
|
|
158
166
|
*/
|
|
159
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, Cause.
|
|
167
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | InternalServerError | NotFoundError>;
|
|
160
168
|
/**
|
|
161
169
|
* @see {@link ListTopicsCommand}
|
|
162
170
|
*/
|
|
163
|
-
listTopics(args: ListTopicsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTopicsCommandOutput, Cause.
|
|
171
|
+
listTopics(args: ListTopicsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTopicsCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | ServiceUnavailableError | UnauthorizedError>;
|
|
164
172
|
/**
|
|
165
173
|
* @see {@link ListVpcConnectionsCommand}
|
|
166
174
|
*/
|
|
167
|
-
listVpcConnections(args: ListVpcConnectionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListVpcConnectionsCommandOutput, Cause.
|
|
175
|
+
listVpcConnections(args: ListVpcConnectionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListVpcConnectionsCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | ServiceUnavailableError | UnauthorizedError>;
|
|
168
176
|
/**
|
|
169
177
|
* @see {@link PutClusterPolicyCommand}
|
|
170
178
|
*/
|
|
171
|
-
putClusterPolicy(args: PutClusterPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutClusterPolicyCommandOutput, Cause.
|
|
179
|
+
putClusterPolicy(args: PutClusterPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutClusterPolicyCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError>;
|
|
172
180
|
/**
|
|
173
181
|
* @see {@link RebootBrokerCommand}
|
|
174
182
|
*/
|
|
175
|
-
rebootBroker(args: RebootBrokerCommandInput, options?: HttpHandlerOptions): Effect.Effect<RebootBrokerCommandOutput, Cause.
|
|
183
|
+
rebootBroker(args: RebootBrokerCommandInput, options?: HttpHandlerOptions): Effect.Effect<RebootBrokerCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
176
184
|
/**
|
|
177
185
|
* @see {@link RejectClientVpcConnectionCommand}
|
|
178
186
|
*/
|
|
179
|
-
rejectClientVpcConnection(args: RejectClientVpcConnectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<RejectClientVpcConnectionCommandOutput, Cause.
|
|
187
|
+
rejectClientVpcConnection(args: RejectClientVpcConnectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<RejectClientVpcConnectionCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | ServiceUnavailableError | UnauthorizedError>;
|
|
180
188
|
/**
|
|
181
189
|
* @see {@link TagResourceCommand}
|
|
182
190
|
*/
|
|
183
|
-
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, Cause.
|
|
191
|
+
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | InternalServerError | NotFoundError>;
|
|
184
192
|
/**
|
|
185
193
|
* @see {@link UntagResourceCommand}
|
|
186
194
|
*/
|
|
187
|
-
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, Cause.
|
|
195
|
+
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | InternalServerError | NotFoundError>;
|
|
188
196
|
/**
|
|
189
197
|
* @see {@link UpdateBrokerCountCommand}
|
|
190
198
|
*/
|
|
191
|
-
updateBrokerCount(args: UpdateBrokerCountCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateBrokerCountCommandOutput, Cause.
|
|
199
|
+
updateBrokerCount(args: UpdateBrokerCountCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateBrokerCountCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | ServiceUnavailableError | UnauthorizedError>;
|
|
192
200
|
/**
|
|
193
201
|
* @see {@link UpdateBrokerStorageCommand}
|
|
194
202
|
*/
|
|
195
|
-
updateBrokerStorage(args: UpdateBrokerStorageCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateBrokerStorageCommandOutput, Cause.
|
|
203
|
+
updateBrokerStorage(args: UpdateBrokerStorageCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateBrokerStorageCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | ServiceUnavailableError | UnauthorizedError>;
|
|
196
204
|
/**
|
|
197
205
|
* @see {@link UpdateBrokerTypeCommand}
|
|
198
206
|
*/
|
|
199
|
-
updateBrokerType(args: UpdateBrokerTypeCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateBrokerTypeCommandOutput, Cause.
|
|
207
|
+
updateBrokerType(args: UpdateBrokerTypeCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateBrokerTypeCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
200
208
|
/**
|
|
201
209
|
* @see {@link UpdateClusterConfigurationCommand}
|
|
202
210
|
*/
|
|
203
|
-
updateClusterConfiguration(args: UpdateClusterConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateClusterConfigurationCommandOutput, Cause.
|
|
211
|
+
updateClusterConfiguration(args: UpdateClusterConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateClusterConfigurationCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | UnauthorizedError>;
|
|
204
212
|
/**
|
|
205
213
|
* @see {@link UpdateClusterKafkaVersionCommand}
|
|
206
214
|
*/
|
|
207
|
-
updateClusterKafkaVersion(args: UpdateClusterKafkaVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateClusterKafkaVersionCommandOutput, Cause.
|
|
215
|
+
updateClusterKafkaVersion(args: UpdateClusterKafkaVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateClusterKafkaVersionCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
208
216
|
/**
|
|
209
217
|
* @see {@link UpdateConfigurationCommand}
|
|
210
218
|
*/
|
|
211
|
-
updateConfiguration(args: UpdateConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateConfigurationCommandOutput, Cause.
|
|
219
|
+
updateConfiguration(args: UpdateConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateConfigurationCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | UnauthorizedError>;
|
|
212
220
|
/**
|
|
213
221
|
* @see {@link UpdateConnectivityCommand}
|
|
214
222
|
*/
|
|
215
|
-
updateConnectivity(args: UpdateConnectivityCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateConnectivityCommandOutput, Cause.
|
|
223
|
+
updateConnectivity(args: UpdateConnectivityCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateConnectivityCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | UnauthorizedError>;
|
|
216
224
|
/**
|
|
217
225
|
* @see {@link UpdateMonitoringCommand}
|
|
218
226
|
*/
|
|
219
|
-
updateMonitoring(args: UpdateMonitoringCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateMonitoringCommandOutput, Cause.
|
|
227
|
+
updateMonitoring(args: UpdateMonitoringCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateMonitoringCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | ServiceUnavailableError | UnauthorizedError>;
|
|
220
228
|
/**
|
|
221
229
|
* @see {@link UpdateRebalancingCommand}
|
|
222
230
|
*/
|
|
223
|
-
updateRebalancing(args: UpdateRebalancingCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateRebalancingCommandOutput, Cause.
|
|
231
|
+
updateRebalancing(args: UpdateRebalancingCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateRebalancingCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
224
232
|
/**
|
|
225
233
|
* @see {@link UpdateReplicationInfoCommand}
|
|
226
234
|
*/
|
|
227
|
-
updateReplicationInfo(args: UpdateReplicationInfoCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateReplicationInfoCommandOutput, Cause.
|
|
235
|
+
updateReplicationInfo(args: UpdateReplicationInfoCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateReplicationInfoCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
228
236
|
/**
|
|
229
237
|
* @see {@link UpdateSecurityCommand}
|
|
230
238
|
*/
|
|
231
|
-
updateSecurity(args: UpdateSecurityCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateSecurityCommandOutput, Cause.
|
|
239
|
+
updateSecurity(args: UpdateSecurityCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateSecurityCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
232
240
|
/**
|
|
233
241
|
* @see {@link UpdateStorageCommand}
|
|
234
242
|
*/
|
|
235
|
-
updateStorage(args: UpdateStorageCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateStorageCommandOutput, Cause.
|
|
243
|
+
updateStorage(args: UpdateStorageCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateStorageCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ForbiddenError | InternalServerError | NotFoundError | ServiceUnavailableError | TooManyRequestsError | UnauthorizedError>;
|
|
244
|
+
/**
|
|
245
|
+
* @see {@link UpdateTopicCommand}
|
|
246
|
+
*/
|
|
247
|
+
updateTopic(args: UpdateTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateTopicCommandOutput, Cause.TimeoutError | SdkError | BadRequestError | ClusterConnectivityError | ControllerMovedError | ForbiddenError | GroupSubscribedToTopicError | InternalServerError | KafkaRequestError | KafkaTimeoutError | NotControllerError | NotFoundError | ReassignmentInProgressError | ServiceUnavailableError | UnauthorizedError | UnknownTopicOrPartitionError>;
|
|
236
248
|
}
|
|
237
249
|
/**
|
|
238
250
|
* @since 1.0.0
|
|
239
251
|
* @category constructors
|
|
240
252
|
*/
|
|
241
253
|
export declare const makeKafkaService: Effect.Effect<KafkaService$, never, Instance.KafkaClientInstance>;
|
|
242
|
-
declare const KafkaService_base:
|
|
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
|
-
};
|
|
254
|
+
declare const KafkaService_base: ServiceMap.ServiceClass<KafkaService, "@effect-aws/client-kafka/KafkaService", KafkaService$>;
|
|
245
255
|
/**
|
|
246
256
|
* @since 1.0.0
|
|
247
257
|
* @category models
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KafkaService.d.ts","sourceRoot":"","sources":["../../src/KafkaService.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"KafkaService.d.ts","sourceRoot":"","sources":["../../src/KafkaService.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KafkaServiceConfig.d.ts","sourceRoot":"","sources":["../../src/KafkaServiceConfig.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE/D,OAAO,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"KafkaServiceConfig.d.ts","sourceRoot":"","sources":["../../src/KafkaServiceConfig.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE/D,OAAO,EAAE,MAAM,EAAE,KAAK,EAAc,MAAM,QAAQ,CAAC;AAEnD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAWtD;;;GAGG;AACH,eAAO,MAAM,sBAAsB,EAAE;IACnC,CAAC,MAAM,EAAE,YAAY,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IACnG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,YAAY,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;CAKhG,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,qBAAqB,WAAY,aAAa,MAAM,qCAAqD,CAAC;AAEvH;;;GAGG;AACH,eAAO,MAAM,mBAAmB,EAAE,MAAM,CAAC,MAAM,CAAC,iBAAiB,CAQ/D,CAAC"}
|
package/dist/esm/Errors.js
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
export const AllServiceErrors = [
|
|
2
2
|
"BadRequestException",
|
|
3
|
+
"ClusterConnectivityException",
|
|
3
4
|
"ConflictException",
|
|
5
|
+
"ControllerMovedException",
|
|
4
6
|
"ForbiddenException",
|
|
7
|
+
"GroupSubscribedToTopicException",
|
|
5
8
|
"InternalServerErrorException",
|
|
9
|
+
"KafkaRequestException",
|
|
10
|
+
"KafkaTimeoutException",
|
|
11
|
+
"NotControllerException",
|
|
6
12
|
"NotFoundException",
|
|
13
|
+
"ReassignmentInProgressException",
|
|
7
14
|
"ServiceUnavailableException",
|
|
8
15
|
"TooManyRequestsException",
|
|
16
|
+
"TopicExistsException",
|
|
9
17
|
"UnauthorizedException",
|
|
18
|
+
"UnknownTopicOrPartitionException",
|
|
10
19
|
];
|
|
11
20
|
//# sourceMappingURL=Errors.js.map
|
package/dist/esm/Errors.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Errors.js","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Errors.js","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":"AAqBA,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,qBAAqB;IACrB,8BAA8B;IAC9B,mBAAmB;IACnB,0BAA0B;IAC1B,oBAAoB;IACpB,iCAAiC;IACjC,8BAA8B;IAC9B,uBAAuB;IACvB,uBAAuB;IACvB,wBAAwB;IACxB,mBAAmB;IACnB,iCAAiC;IACjC,6BAA6B;IAC7B,0BAA0B;IAC1B,sBAAsB;IACtB,uBAAuB;IACvB,kCAAkC;CAC1B,CAAC"}
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
* @since 1.0.0
|
|
3
3
|
*/
|
|
4
4
|
import { KafkaClient } from "@aws-sdk/client-kafka";
|
|
5
|
-
import {
|
|
5
|
+
import { Effect, Layer, ServiceMap } from "effect";
|
|
6
6
|
import * as KafkaServiceConfig from "./KafkaServiceConfig.js";
|
|
7
7
|
/**
|
|
8
8
|
* @since 1.0.0
|
|
9
9
|
* @category tags
|
|
10
10
|
*/
|
|
11
|
-
export class KafkaClientInstance extends
|
|
11
|
+
export class KafkaClientInstance extends ServiceMap.Service()("@effect-aws/client-kafka/KafkaClientInstance") {
|
|
12
12
|
}
|
|
13
13
|
/**
|
|
14
14
|
* @since 1.0.0
|
|
@@ -19,5 +19,5 @@ export const make = Effect.flatMap(KafkaServiceConfig.toKafkaClientConfig, (conf
|
|
|
19
19
|
* @since 1.0.0
|
|
20
20
|
* @category layers
|
|
21
21
|
*/
|
|
22
|
-
export const layer = Layer.
|
|
22
|
+
export const layer = Layer.effect(KafkaClientInstance, make);
|
|
23
23
|
//# sourceMappingURL=KafkaClientInstance.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KafkaClientInstance.js","sourceRoot":"","sources":["../../src/KafkaClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACpD,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"KafkaClientInstance.js","sourceRoot":"","sources":["../../src/KafkaClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACpD,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AACnD,OAAO,KAAK,kBAAkB,MAAM,yBAAyB,CAAC;AAE9D;;;GAGG;AACH,MAAM,OAAO,mBAAoB,SAAQ,UAAU,CAAC,OAAO,EAAoC,CAC7F,8CAA8C,CAC/C;CAAG;AAEJ;;;GAGG;AACH,MAAM,CAAC,MAAM,IAAI,GAAG,MAAM,CAAC,OAAO,CAChC,kBAAkB,CAAC,mBAAmB,EACtC,CAAC,MAAM,EAAE,EAAE,CACT,MAAM,CAAC,cAAc,CACnB,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC,EAC1C,CAAC,MAAM,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC,CAChD,CACJ,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,KAAK,GAAG,KAAK,CAAC,MAAM,CAAC,mBAAmB,EAAE,IAAI,CAAC,CAAC"}
|