@effect-aws/client-kms 1.10.3 → 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/KMSClientInstance.d.ts +2 -2
- package/dist/dts/KMSClientInstance.d.ts.map +1 -1
- package/dist/dts/KMSService.d.ts +55 -57
- package/dist/dts/KMSService.d.ts.map +1 -1
- package/dist/dts/KMSServiceConfig.d.ts.map +1 -1
- package/dist/esm/KMSClientInstance.js +3 -3
- package/dist/esm/KMSClientInstance.js.map +1 -1
- package/dist/esm/KMSService.js +2 -2
- package/dist/esm/KMSService.js.map +1 -1
- package/dist/esm/KMSServiceConfig.js +5 -6
- package/dist/esm/KMSServiceConfig.js.map +1 -1
- package/package.json +8 -14
- package/src/KMSClientInstance.ts +4 -4
- package/src/KMSService.ts +56 -62
- package/src/KMSServiceConfig.ts +6 -7
- package/dist/cjs/Errors.d.ts +0 -55
- package/dist/cjs/Errors.d.ts.map +0 -1
- package/dist/cjs/Errors.js +0 -54
- package/dist/cjs/Errors.js.map +0 -1
- package/dist/cjs/KMSClientInstance.d.ts +0 -24
- package/dist/cjs/KMSClientInstance.d.ts.map +0 -1
- package/dist/cjs/KMSClientInstance.js +0 -50
- package/dist/cjs/KMSClientInstance.js.map +0 -1
- package/dist/cjs/KMSService.d.ts +0 -258
- package/dist/cjs/KMSService.d.ts.map +0 -1
- package/dist/cjs/KMSService.js +0 -112
- package/dist/cjs/KMSService.js.map +0 -1
- package/dist/cjs/KMSServiceConfig.d.ts +0 -25
- package/dist/cjs/KMSServiceConfig.d.ts.map +0 -1
- package/dist/cjs/KMSServiceConfig.js +0 -35
- package/dist/cjs/KMSServiceConfig.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 KMSClient instance:
|
|
|
16
16
|
```typescript
|
|
17
17
|
import { KMS } from "@effect-aws/client-kms";
|
|
18
18
|
|
|
19
|
-
const program = KMS.listKeys(args);
|
|
19
|
+
const program = KMS.use((svc) => svc.listKeys(args));
|
|
20
20
|
|
|
21
21
|
const result = pipe(
|
|
22
22
|
program,
|
|
@@ -30,7 +30,7 @@ With custom KMSClient instance:
|
|
|
30
30
|
```typescript
|
|
31
31
|
import { KMS } from "@effect-aws/client-kms";
|
|
32
32
|
|
|
33
|
-
const program = KMS.listKeys(args);
|
|
33
|
+
const program = KMS.use((svc) => svc.listKeys(args));
|
|
34
34
|
|
|
35
35
|
const result = await pipe(
|
|
36
36
|
program,
|
|
@@ -46,7 +46,7 @@ With custom KMSClient configuration:
|
|
|
46
46
|
```typescript
|
|
47
47
|
import { KMS } from "@effect-aws/client-kms";
|
|
48
48
|
|
|
49
|
-
const program = KMS.listKeys(args);
|
|
49
|
+
const program = KMS.use((svc) => svc.listKeys(args));
|
|
50
50
|
|
|
51
51
|
const result = await pipe(
|
|
52
52
|
program,
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* @since 1.0.0
|
|
3
3
|
*/
|
|
4
4
|
import { KMSClient } from "@aws-sdk/client-kms";
|
|
5
|
-
import {
|
|
6
|
-
declare const KMSClientInstance_base:
|
|
5
|
+
import { Effect, Layer, ServiceMap } from "effect";
|
|
6
|
+
declare const KMSClientInstance_base: ServiceMap.ServiceClass<KMSClientInstance, "@effect-aws/client-kms/KMSClientInstance", KMSClient>;
|
|
7
7
|
/**
|
|
8
8
|
* @since 1.0.0
|
|
9
9
|
* @category tags
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KMSClientInstance.d.ts","sourceRoot":"","sources":["../../src/KMSClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"KMSClientInstance.d.ts","sourceRoot":"","sources":["../../src/KMSClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;;AAGnD;;;GAGG;AACH,qBAAa,iBAAkB,SAAQ,sBAEtC;CAAG;AAEJ;;;GAGG;AACH,eAAO,MAAM,IAAI,+DAOhB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,KAAK,8CAAwC,CAAC"}
|
package/dist/dts/KMSService.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { type CancelKeyDeletionCommandInput, type CancelKeyDeletionCommandOutput, type ConnectCustomKeyStoreCommandInput, type ConnectCustomKeyStoreCommandOutput, type CreateAliasCommandInput, type CreateAliasCommandOutput, type CreateCustomKeyStoreCommandInput, type CreateCustomKeyStoreCommandOutput, type CreateGrantCommandInput, type CreateGrantCommandOutput, type CreateKeyCommandInput, type CreateKeyCommandOutput, type DecryptCommandInput, type DecryptCommandOutput, type DeleteAliasCommandInput, type DeleteAliasCommandOutput, type DeleteCustomKeyStoreCommandInput, type DeleteCustomKeyStoreCommandOutput, type DeleteImportedKeyMaterialCommandInput, type DeleteImportedKeyMaterialCommandOutput, type DeriveSharedSecretCommandInput, type DeriveSharedSecretCommandOutput, type DescribeCustomKeyStoresCommandInput, type DescribeCustomKeyStoresCommandOutput, type DescribeKeyCommandInput, type DescribeKeyCommandOutput, type DisableKeyCommandInput, type DisableKeyCommandOutput, type DisableKeyRotationCommandInput, type DisableKeyRotationCommandOutput, type DisconnectCustomKeyStoreCommandInput, type DisconnectCustomKeyStoreCommandOutput, type EnableKeyCommandInput, type EnableKeyCommandOutput, type EnableKeyRotationCommandInput, type EnableKeyRotationCommandOutput, type EncryptCommandInput, type EncryptCommandOutput, type GenerateDataKeyCommandInput, type GenerateDataKeyCommandOutput, type GenerateDataKeyPairCommandInput, type GenerateDataKeyPairCommandOutput, type GenerateDataKeyPairWithoutPlaintextCommandInput, type GenerateDataKeyPairWithoutPlaintextCommandOutput, type GenerateDataKeyWithoutPlaintextCommandInput, type GenerateDataKeyWithoutPlaintextCommandOutput, type GenerateMacCommandInput, type GenerateMacCommandOutput, type GenerateRandomCommandInput, type GenerateRandomCommandOutput, type GetKeyPolicyCommandInput, type GetKeyPolicyCommandOutput, type GetKeyRotationStatusCommandInput, type GetKeyRotationStatusCommandOutput, type GetParametersForImportCommandInput, type GetParametersForImportCommandOutput, type GetPublicKeyCommandInput, type GetPublicKeyCommandOutput, type ImportKeyMaterialCommandInput, type ImportKeyMaterialCommandOutput, type KMSClient, type KMSClientConfig, type ListAliasesCommandInput, type ListAliasesCommandOutput, type ListGrantsCommandInput, type ListGrantsCommandOutput, type ListKeyPoliciesCommandInput, type ListKeyPoliciesCommandOutput, type ListKeyRotationsCommandInput, type ListKeyRotationsCommandOutput, type ListKeysCommandInput, type ListKeysCommandOutput, type ListResourceTagsCommandInput, type ListResourceTagsCommandOutput, type ListRetirableGrantsCommandInput, type ListRetirableGrantsCommandOutput, type PutKeyPolicyCommandInput, type PutKeyPolicyCommandOutput, type ReEncryptCommandInput, type ReEncryptCommandOutput, type ReplicateKeyCommandInput, type ReplicateKeyCommandOutput, type RetireGrantCommandInput, type RetireGrantCommandOutput, type RevokeGrantCommandInput, type RevokeGrantCommandOutput, type RotateKeyOnDemandCommandInput, type RotateKeyOnDemandCommandOutput, type ScheduleKeyDeletionCommandInput, type ScheduleKeyDeletionCommandOutput, type SignCommandInput, type SignCommandOutput, type TagResourceCommandInput, type TagResourceCommandOutput, type UntagResourceCommandInput, type UntagResourceCommandOutput, type UpdateAliasCommandInput, type UpdateAliasCommandOutput, type UpdateCustomKeyStoreCommandInput, type UpdateCustomKeyStoreCommandOutput, type UpdateKeyDescriptionCommandInput, type UpdateKeyDescriptionCommandOutput, type UpdatePrimaryRegionCommandInput, type UpdatePrimaryRegionCommandOutput, type VerifyCommandInput, type VerifyCommandOutput, type VerifyMacCommandInput, type VerifyMacCommandOutput } from "@aws-sdk/client-kms";
|
|
5
5
|
import type { HttpHandlerOptions, ServiceLogger } from "@effect-aws/commons";
|
|
6
6
|
import type { Cause } from "effect";
|
|
7
|
-
import { Effect, Layer } from "effect";
|
|
7
|
+
import { Effect, Layer, ServiceMap } from "effect";
|
|
8
8
|
import type { AlreadyExistsError, CloudHsmClusterInUseError, CloudHsmClusterInvalidConfigurationError, CloudHsmClusterNotActiveError, CloudHsmClusterNotFoundError, CloudHsmClusterNotRelatedError, ConflictError, CustomKeyStoreHasCMKsError, CustomKeyStoreInvalidStateError, CustomKeyStoreNameInUseError, CustomKeyStoreNotFoundError, DependencyTimeoutError, DisabledError, DryRunOperationError, ExpiredImportTokenError, IncorrectKeyError, IncorrectKeyMaterialError, IncorrectTrustAnchorError, InvalidAliasNameError, InvalidArnError, InvalidCiphertextError, InvalidGrantIdError, InvalidGrantTokenError, InvalidImportTokenError, InvalidKeyUsageError, InvalidMarkerError, KeyUnavailableError, KMSInternalError, KMSInvalidMacError, KMSInvalidSignatureError, KMSInvalidStateError, LimitExceededError, MalformedPolicyDocumentError, NotFoundError, SdkError, TagError, UnsupportedOperationError, XksKeyAlreadyInUseError, XksKeyInvalidConfigurationError, XksKeyNotFoundError, XksProxyIncorrectAuthenticationCredentialError, XksProxyInvalidConfigurationError, XksProxyInvalidResponseError, XksProxyUriEndpointInUseError, XksProxyUriInUseError, XksProxyUriUnreachableError, XksProxyVpcEndpointServiceInUseError, XksProxyVpcEndpointServiceInvalidConfigurationError, XksProxyVpcEndpointServiceNotFoundError } from "./Errors.js";
|
|
9
9
|
import * as Instance from "./KMSClientInstance.js";
|
|
10
10
|
interface KMSService$ {
|
|
@@ -12,224 +12,222 @@ interface KMSService$ {
|
|
|
12
12
|
/**
|
|
13
13
|
* @see {@link CancelKeyDeletionCommand}
|
|
14
14
|
*/
|
|
15
|
-
cancelKeyDeletion(args: CancelKeyDeletionCommandInput, options?: HttpHandlerOptions): Effect.Effect<CancelKeyDeletionCommandOutput, Cause.
|
|
15
|
+
cancelKeyDeletion(args: CancelKeyDeletionCommandInput, options?: HttpHandlerOptions): Effect.Effect<CancelKeyDeletionCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | InvalidArnError | KMSInternalError | KMSInvalidStateError | NotFoundError>;
|
|
16
16
|
/**
|
|
17
17
|
* @see {@link ConnectCustomKeyStoreCommand}
|
|
18
18
|
*/
|
|
19
|
-
connectCustomKeyStore(args: ConnectCustomKeyStoreCommandInput, options?: HttpHandlerOptions): Effect.Effect<ConnectCustomKeyStoreCommandOutput, Cause.
|
|
19
|
+
connectCustomKeyStore(args: ConnectCustomKeyStoreCommandInput, options?: HttpHandlerOptions): Effect.Effect<ConnectCustomKeyStoreCommandOutput, Cause.TimeoutError | SdkError | CloudHsmClusterInvalidConfigurationError | CloudHsmClusterNotActiveError | CustomKeyStoreInvalidStateError | CustomKeyStoreNotFoundError | KMSInternalError>;
|
|
20
20
|
/**
|
|
21
21
|
* @see {@link CreateAliasCommand}
|
|
22
22
|
*/
|
|
23
|
-
createAlias(args: CreateAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateAliasCommandOutput, Cause.
|
|
23
|
+
createAlias(args: CreateAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateAliasCommandOutput, Cause.TimeoutError | SdkError | AlreadyExistsError | DependencyTimeoutError | InvalidAliasNameError | KMSInternalError | KMSInvalidStateError | LimitExceededError | NotFoundError>;
|
|
24
24
|
/**
|
|
25
25
|
* @see {@link CreateCustomKeyStoreCommand}
|
|
26
26
|
*/
|
|
27
|
-
createCustomKeyStore(args: CreateCustomKeyStoreCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateCustomKeyStoreCommandOutput, Cause.
|
|
27
|
+
createCustomKeyStore(args: CreateCustomKeyStoreCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateCustomKeyStoreCommandOutput, Cause.TimeoutError | SdkError | CloudHsmClusterInUseError | CloudHsmClusterInvalidConfigurationError | CloudHsmClusterNotActiveError | CloudHsmClusterNotFoundError | CustomKeyStoreNameInUseError | IncorrectTrustAnchorError | KMSInternalError | LimitExceededError | XksProxyIncorrectAuthenticationCredentialError | XksProxyInvalidConfigurationError | XksProxyInvalidResponseError | XksProxyUriEndpointInUseError | XksProxyUriInUseError | XksProxyUriUnreachableError | XksProxyVpcEndpointServiceInUseError | XksProxyVpcEndpointServiceInvalidConfigurationError | XksProxyVpcEndpointServiceNotFoundError>;
|
|
28
28
|
/**
|
|
29
29
|
* @see {@link CreateGrantCommand}
|
|
30
30
|
*/
|
|
31
|
-
createGrant(args: CreateGrantCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateGrantCommandOutput, Cause.
|
|
31
|
+
createGrant(args: CreateGrantCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateGrantCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | DisabledError | DryRunOperationError | InvalidArnError | InvalidGrantTokenError | KMSInternalError | KMSInvalidStateError | LimitExceededError | NotFoundError>;
|
|
32
32
|
/**
|
|
33
33
|
* @see {@link CreateKeyCommand}
|
|
34
34
|
*/
|
|
35
|
-
createKey(args: CreateKeyCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateKeyCommandOutput, Cause.
|
|
35
|
+
createKey(args: CreateKeyCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateKeyCommandOutput, Cause.TimeoutError | SdkError | CloudHsmClusterInvalidConfigurationError | CustomKeyStoreInvalidStateError | CustomKeyStoreNotFoundError | DependencyTimeoutError | InvalidArnError | KMSInternalError | LimitExceededError | MalformedPolicyDocumentError | TagError | UnsupportedOperationError | XksKeyAlreadyInUseError | XksKeyInvalidConfigurationError | XksKeyNotFoundError>;
|
|
36
36
|
/**
|
|
37
37
|
* @see {@link DecryptCommand}
|
|
38
38
|
*/
|
|
39
|
-
decrypt(args: DecryptCommandInput, options?: HttpHandlerOptions): Effect.Effect<DecryptCommandOutput, Cause.
|
|
39
|
+
decrypt(args: DecryptCommandInput, options?: HttpHandlerOptions): Effect.Effect<DecryptCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | DisabledError | DryRunOperationError | IncorrectKeyError | InvalidCiphertextError | InvalidGrantTokenError | InvalidKeyUsageError | KeyUnavailableError | KMSInternalError | KMSInvalidStateError | NotFoundError>;
|
|
40
40
|
/**
|
|
41
41
|
* @see {@link DeleteAliasCommand}
|
|
42
42
|
*/
|
|
43
|
-
deleteAlias(args: DeleteAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteAliasCommandOutput, Cause.
|
|
43
|
+
deleteAlias(args: DeleteAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteAliasCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | KMSInternalError | KMSInvalidStateError | NotFoundError>;
|
|
44
44
|
/**
|
|
45
45
|
* @see {@link DeleteCustomKeyStoreCommand}
|
|
46
46
|
*/
|
|
47
|
-
deleteCustomKeyStore(args: DeleteCustomKeyStoreCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteCustomKeyStoreCommandOutput, Cause.
|
|
47
|
+
deleteCustomKeyStore(args: DeleteCustomKeyStoreCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteCustomKeyStoreCommandOutput, Cause.TimeoutError | SdkError | CustomKeyStoreHasCMKsError | CustomKeyStoreInvalidStateError | CustomKeyStoreNotFoundError | KMSInternalError>;
|
|
48
48
|
/**
|
|
49
49
|
* @see {@link DeleteImportedKeyMaterialCommand}
|
|
50
50
|
*/
|
|
51
|
-
deleteImportedKeyMaterial(args: DeleteImportedKeyMaterialCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteImportedKeyMaterialCommandOutput, Cause.
|
|
51
|
+
deleteImportedKeyMaterial(args: DeleteImportedKeyMaterialCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteImportedKeyMaterialCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | InvalidArnError | KMSInternalError | KMSInvalidStateError | NotFoundError | UnsupportedOperationError>;
|
|
52
52
|
/**
|
|
53
53
|
* @see {@link DeriveSharedSecretCommand}
|
|
54
54
|
*/
|
|
55
|
-
deriveSharedSecret(args: DeriveSharedSecretCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeriveSharedSecretCommandOutput, Cause.
|
|
55
|
+
deriveSharedSecret(args: DeriveSharedSecretCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeriveSharedSecretCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | DisabledError | DryRunOperationError | InvalidGrantTokenError | InvalidKeyUsageError | KeyUnavailableError | KMSInternalError | KMSInvalidStateError | NotFoundError>;
|
|
56
56
|
/**
|
|
57
57
|
* @see {@link DescribeCustomKeyStoresCommand}
|
|
58
58
|
*/
|
|
59
|
-
describeCustomKeyStores(args: DescribeCustomKeyStoresCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeCustomKeyStoresCommandOutput, Cause.
|
|
59
|
+
describeCustomKeyStores(args: DescribeCustomKeyStoresCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeCustomKeyStoresCommandOutput, Cause.TimeoutError | SdkError | CustomKeyStoreNotFoundError | InvalidMarkerError | KMSInternalError>;
|
|
60
60
|
/**
|
|
61
61
|
* @see {@link DescribeKeyCommand}
|
|
62
62
|
*/
|
|
63
|
-
describeKey(args: DescribeKeyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeKeyCommandOutput, Cause.
|
|
63
|
+
describeKey(args: DescribeKeyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeKeyCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | InvalidArnError | KMSInternalError | NotFoundError>;
|
|
64
64
|
/**
|
|
65
65
|
* @see {@link DisableKeyCommand}
|
|
66
66
|
*/
|
|
67
|
-
disableKey(args: DisableKeyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DisableKeyCommandOutput, Cause.
|
|
67
|
+
disableKey(args: DisableKeyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DisableKeyCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | InvalidArnError | KMSInternalError | KMSInvalidStateError | NotFoundError>;
|
|
68
68
|
/**
|
|
69
69
|
* @see {@link DisableKeyRotationCommand}
|
|
70
70
|
*/
|
|
71
|
-
disableKeyRotation(args: DisableKeyRotationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DisableKeyRotationCommandOutput, Cause.
|
|
71
|
+
disableKeyRotation(args: DisableKeyRotationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DisableKeyRotationCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | DisabledError | InvalidArnError | KMSInternalError | KMSInvalidStateError | NotFoundError | UnsupportedOperationError>;
|
|
72
72
|
/**
|
|
73
73
|
* @see {@link DisconnectCustomKeyStoreCommand}
|
|
74
74
|
*/
|
|
75
|
-
disconnectCustomKeyStore(args: DisconnectCustomKeyStoreCommandInput, options?: HttpHandlerOptions): Effect.Effect<DisconnectCustomKeyStoreCommandOutput, Cause.
|
|
75
|
+
disconnectCustomKeyStore(args: DisconnectCustomKeyStoreCommandInput, options?: HttpHandlerOptions): Effect.Effect<DisconnectCustomKeyStoreCommandOutput, Cause.TimeoutError | SdkError | CustomKeyStoreInvalidStateError | CustomKeyStoreNotFoundError | KMSInternalError>;
|
|
76
76
|
/**
|
|
77
77
|
* @see {@link EnableKeyCommand}
|
|
78
78
|
*/
|
|
79
|
-
enableKey(args: EnableKeyCommandInput, options?: HttpHandlerOptions): Effect.Effect<EnableKeyCommandOutput, Cause.
|
|
79
|
+
enableKey(args: EnableKeyCommandInput, options?: HttpHandlerOptions): Effect.Effect<EnableKeyCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | InvalidArnError | KMSInternalError | KMSInvalidStateError | LimitExceededError | NotFoundError>;
|
|
80
80
|
/**
|
|
81
81
|
* @see {@link EnableKeyRotationCommand}
|
|
82
82
|
*/
|
|
83
|
-
enableKeyRotation(args: EnableKeyRotationCommandInput, options?: HttpHandlerOptions): Effect.Effect<EnableKeyRotationCommandOutput, Cause.
|
|
83
|
+
enableKeyRotation(args: EnableKeyRotationCommandInput, options?: HttpHandlerOptions): Effect.Effect<EnableKeyRotationCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | DisabledError | InvalidArnError | KMSInternalError | KMSInvalidStateError | NotFoundError | UnsupportedOperationError>;
|
|
84
84
|
/**
|
|
85
85
|
* @see {@link EncryptCommand}
|
|
86
86
|
*/
|
|
87
|
-
encrypt(args: EncryptCommandInput, options?: HttpHandlerOptions): Effect.Effect<EncryptCommandOutput, Cause.
|
|
87
|
+
encrypt(args: EncryptCommandInput, options?: HttpHandlerOptions): Effect.Effect<EncryptCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | DisabledError | DryRunOperationError | InvalidGrantTokenError | InvalidKeyUsageError | KeyUnavailableError | KMSInternalError | KMSInvalidStateError | NotFoundError>;
|
|
88
88
|
/**
|
|
89
89
|
* @see {@link GenerateDataKeyCommand}
|
|
90
90
|
*/
|
|
91
|
-
generateDataKey(args: GenerateDataKeyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GenerateDataKeyCommandOutput, Cause.
|
|
91
|
+
generateDataKey(args: GenerateDataKeyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GenerateDataKeyCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | DisabledError | DryRunOperationError | InvalidGrantTokenError | InvalidKeyUsageError | KeyUnavailableError | KMSInternalError | KMSInvalidStateError | NotFoundError>;
|
|
92
92
|
/**
|
|
93
93
|
* @see {@link GenerateDataKeyPairCommand}
|
|
94
94
|
*/
|
|
95
|
-
generateDataKeyPair(args: GenerateDataKeyPairCommandInput, options?: HttpHandlerOptions): Effect.Effect<GenerateDataKeyPairCommandOutput, Cause.
|
|
95
|
+
generateDataKeyPair(args: GenerateDataKeyPairCommandInput, options?: HttpHandlerOptions): Effect.Effect<GenerateDataKeyPairCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | DisabledError | DryRunOperationError | InvalidGrantTokenError | InvalidKeyUsageError | KeyUnavailableError | KMSInternalError | KMSInvalidStateError | NotFoundError | UnsupportedOperationError>;
|
|
96
96
|
/**
|
|
97
97
|
* @see {@link GenerateDataKeyPairWithoutPlaintextCommand}
|
|
98
98
|
*/
|
|
99
|
-
generateDataKeyPairWithoutPlaintext(args: GenerateDataKeyPairWithoutPlaintextCommandInput, options?: HttpHandlerOptions): Effect.Effect<GenerateDataKeyPairWithoutPlaintextCommandOutput, Cause.
|
|
99
|
+
generateDataKeyPairWithoutPlaintext(args: GenerateDataKeyPairWithoutPlaintextCommandInput, options?: HttpHandlerOptions): Effect.Effect<GenerateDataKeyPairWithoutPlaintextCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | DisabledError | DryRunOperationError | InvalidGrantTokenError | InvalidKeyUsageError | KeyUnavailableError | KMSInternalError | KMSInvalidStateError | NotFoundError | UnsupportedOperationError>;
|
|
100
100
|
/**
|
|
101
101
|
* @see {@link GenerateDataKeyWithoutPlaintextCommand}
|
|
102
102
|
*/
|
|
103
|
-
generateDataKeyWithoutPlaintext(args: GenerateDataKeyWithoutPlaintextCommandInput, options?: HttpHandlerOptions): Effect.Effect<GenerateDataKeyWithoutPlaintextCommandOutput, Cause.
|
|
103
|
+
generateDataKeyWithoutPlaintext(args: GenerateDataKeyWithoutPlaintextCommandInput, options?: HttpHandlerOptions): Effect.Effect<GenerateDataKeyWithoutPlaintextCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | DisabledError | DryRunOperationError | InvalidGrantTokenError | InvalidKeyUsageError | KeyUnavailableError | KMSInternalError | KMSInvalidStateError | NotFoundError>;
|
|
104
104
|
/**
|
|
105
105
|
* @see {@link GenerateMacCommand}
|
|
106
106
|
*/
|
|
107
|
-
generateMac(args: GenerateMacCommandInput, options?: HttpHandlerOptions): Effect.Effect<GenerateMacCommandOutput, Cause.
|
|
107
|
+
generateMac(args: GenerateMacCommandInput, options?: HttpHandlerOptions): Effect.Effect<GenerateMacCommandOutput, Cause.TimeoutError | SdkError | DisabledError | DryRunOperationError | InvalidGrantTokenError | InvalidKeyUsageError | KeyUnavailableError | KMSInternalError | KMSInvalidStateError | NotFoundError>;
|
|
108
108
|
/**
|
|
109
109
|
* @see {@link GenerateRandomCommand}
|
|
110
110
|
*/
|
|
111
|
-
generateRandom(args: GenerateRandomCommandInput, options?: HttpHandlerOptions): Effect.Effect<GenerateRandomCommandOutput, Cause.
|
|
111
|
+
generateRandom(args: GenerateRandomCommandInput, options?: HttpHandlerOptions): Effect.Effect<GenerateRandomCommandOutput, Cause.TimeoutError | SdkError | CustomKeyStoreInvalidStateError | CustomKeyStoreNotFoundError | DependencyTimeoutError | KMSInternalError | UnsupportedOperationError>;
|
|
112
112
|
/**
|
|
113
113
|
* @see {@link GetKeyPolicyCommand}
|
|
114
114
|
*/
|
|
115
|
-
getKeyPolicy(args: GetKeyPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetKeyPolicyCommandOutput, Cause.
|
|
115
|
+
getKeyPolicy(args: GetKeyPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetKeyPolicyCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | InvalidArnError | KMSInternalError | KMSInvalidStateError | NotFoundError>;
|
|
116
116
|
/**
|
|
117
117
|
* @see {@link GetKeyRotationStatusCommand}
|
|
118
118
|
*/
|
|
119
|
-
getKeyRotationStatus(args: GetKeyRotationStatusCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetKeyRotationStatusCommandOutput, Cause.
|
|
119
|
+
getKeyRotationStatus(args: GetKeyRotationStatusCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetKeyRotationStatusCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | InvalidArnError | KMSInternalError | KMSInvalidStateError | NotFoundError | UnsupportedOperationError>;
|
|
120
120
|
/**
|
|
121
121
|
* @see {@link GetParametersForImportCommand}
|
|
122
122
|
*/
|
|
123
|
-
getParametersForImport(args: GetParametersForImportCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetParametersForImportCommandOutput, Cause.
|
|
123
|
+
getParametersForImport(args: GetParametersForImportCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetParametersForImportCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | InvalidArnError | KMSInternalError | KMSInvalidStateError | NotFoundError | UnsupportedOperationError>;
|
|
124
124
|
/**
|
|
125
125
|
* @see {@link GetPublicKeyCommand}
|
|
126
126
|
*/
|
|
127
|
-
getPublicKey(args: GetPublicKeyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPublicKeyCommandOutput, Cause.
|
|
127
|
+
getPublicKey(args: GetPublicKeyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPublicKeyCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | DisabledError | InvalidArnError | InvalidGrantTokenError | InvalidKeyUsageError | KeyUnavailableError | KMSInternalError | KMSInvalidStateError | NotFoundError | UnsupportedOperationError>;
|
|
128
128
|
/**
|
|
129
129
|
* @see {@link ImportKeyMaterialCommand}
|
|
130
130
|
*/
|
|
131
|
-
importKeyMaterial(args: ImportKeyMaterialCommandInput, options?: HttpHandlerOptions): Effect.Effect<ImportKeyMaterialCommandOutput, Cause.
|
|
131
|
+
importKeyMaterial(args: ImportKeyMaterialCommandInput, options?: HttpHandlerOptions): Effect.Effect<ImportKeyMaterialCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | ExpiredImportTokenError | IncorrectKeyMaterialError | InvalidArnError | InvalidCiphertextError | InvalidImportTokenError | KMSInternalError | KMSInvalidStateError | NotFoundError | UnsupportedOperationError>;
|
|
132
132
|
/**
|
|
133
133
|
* @see {@link ListAliasesCommand}
|
|
134
134
|
*/
|
|
135
|
-
listAliases(args: ListAliasesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListAliasesCommandOutput, Cause.
|
|
135
|
+
listAliases(args: ListAliasesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListAliasesCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | InvalidArnError | InvalidMarkerError | KMSInternalError | NotFoundError>;
|
|
136
136
|
/**
|
|
137
137
|
* @see {@link ListGrantsCommand}
|
|
138
138
|
*/
|
|
139
|
-
listGrants(args: ListGrantsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListGrantsCommandOutput, Cause.
|
|
139
|
+
listGrants(args: ListGrantsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListGrantsCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | InvalidArnError | InvalidGrantIdError | InvalidMarkerError | KMSInternalError | KMSInvalidStateError | NotFoundError>;
|
|
140
140
|
/**
|
|
141
141
|
* @see {@link ListKeyPoliciesCommand}
|
|
142
142
|
*/
|
|
143
|
-
listKeyPolicies(args: ListKeyPoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListKeyPoliciesCommandOutput, Cause.
|
|
143
|
+
listKeyPolicies(args: ListKeyPoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListKeyPoliciesCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | InvalidArnError | KMSInternalError | KMSInvalidStateError | NotFoundError>;
|
|
144
144
|
/**
|
|
145
145
|
* @see {@link ListKeyRotationsCommand}
|
|
146
146
|
*/
|
|
147
|
-
listKeyRotations(args: ListKeyRotationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListKeyRotationsCommandOutput, Cause.
|
|
147
|
+
listKeyRotations(args: ListKeyRotationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListKeyRotationsCommandOutput, Cause.TimeoutError | SdkError | InvalidArnError | InvalidMarkerError | KMSInternalError | KMSInvalidStateError | NotFoundError | UnsupportedOperationError>;
|
|
148
148
|
/**
|
|
149
149
|
* @see {@link ListKeysCommand}
|
|
150
150
|
*/
|
|
151
|
-
listKeys(args: ListKeysCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListKeysCommandOutput, Cause.
|
|
151
|
+
listKeys(args: ListKeysCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListKeysCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | InvalidMarkerError | KMSInternalError>;
|
|
152
152
|
/**
|
|
153
153
|
* @see {@link ListResourceTagsCommand}
|
|
154
154
|
*/
|
|
155
|
-
listResourceTags(args: ListResourceTagsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListResourceTagsCommandOutput, Cause.
|
|
155
|
+
listResourceTags(args: ListResourceTagsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListResourceTagsCommandOutput, Cause.TimeoutError | SdkError | InvalidArnError | InvalidMarkerError | KMSInternalError | NotFoundError>;
|
|
156
156
|
/**
|
|
157
157
|
* @see {@link ListRetirableGrantsCommand}
|
|
158
158
|
*/
|
|
159
|
-
listRetirableGrants(args: ListRetirableGrantsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListRetirableGrantsCommandOutput, Cause.
|
|
159
|
+
listRetirableGrants(args: ListRetirableGrantsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListRetirableGrantsCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | InvalidArnError | InvalidMarkerError | KMSInternalError | NotFoundError>;
|
|
160
160
|
/**
|
|
161
161
|
* @see {@link PutKeyPolicyCommand}
|
|
162
162
|
*/
|
|
163
|
-
putKeyPolicy(args: PutKeyPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutKeyPolicyCommandOutput, Cause.
|
|
163
|
+
putKeyPolicy(args: PutKeyPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutKeyPolicyCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | InvalidArnError | KMSInternalError | KMSInvalidStateError | LimitExceededError | MalformedPolicyDocumentError | NotFoundError | UnsupportedOperationError>;
|
|
164
164
|
/**
|
|
165
165
|
* @see {@link ReEncryptCommand}
|
|
166
166
|
*/
|
|
167
|
-
reEncrypt(args: ReEncryptCommandInput, options?: HttpHandlerOptions): Effect.Effect<ReEncryptCommandOutput, Cause.
|
|
167
|
+
reEncrypt(args: ReEncryptCommandInput, options?: HttpHandlerOptions): Effect.Effect<ReEncryptCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | DisabledError | DryRunOperationError | IncorrectKeyError | InvalidCiphertextError | InvalidGrantTokenError | InvalidKeyUsageError | KeyUnavailableError | KMSInternalError | KMSInvalidStateError | NotFoundError>;
|
|
168
168
|
/**
|
|
169
169
|
* @see {@link ReplicateKeyCommand}
|
|
170
170
|
*/
|
|
171
|
-
replicateKey(args: ReplicateKeyCommandInput, options?: HttpHandlerOptions): Effect.Effect<ReplicateKeyCommandOutput, Cause.
|
|
171
|
+
replicateKey(args: ReplicateKeyCommandInput, options?: HttpHandlerOptions): Effect.Effect<ReplicateKeyCommandOutput, Cause.TimeoutError | SdkError | AlreadyExistsError | DisabledError | InvalidArnError | KMSInternalError | KMSInvalidStateError | LimitExceededError | MalformedPolicyDocumentError | NotFoundError | TagError | UnsupportedOperationError>;
|
|
172
172
|
/**
|
|
173
173
|
* @see {@link RetireGrantCommand}
|
|
174
174
|
*/
|
|
175
|
-
retireGrant(args: RetireGrantCommandInput, options?: HttpHandlerOptions): Effect.Effect<RetireGrantCommandOutput, Cause.
|
|
175
|
+
retireGrant(args: RetireGrantCommandInput, options?: HttpHandlerOptions): Effect.Effect<RetireGrantCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | DryRunOperationError | InvalidArnError | InvalidGrantIdError | InvalidGrantTokenError | KMSInternalError | KMSInvalidStateError | NotFoundError>;
|
|
176
176
|
/**
|
|
177
177
|
* @see {@link RevokeGrantCommand}
|
|
178
178
|
*/
|
|
179
|
-
revokeGrant(args: RevokeGrantCommandInput, options?: HttpHandlerOptions): Effect.Effect<RevokeGrantCommandOutput, Cause.
|
|
179
|
+
revokeGrant(args: RevokeGrantCommandInput, options?: HttpHandlerOptions): Effect.Effect<RevokeGrantCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | DryRunOperationError | InvalidArnError | InvalidGrantIdError | KMSInternalError | KMSInvalidStateError | NotFoundError>;
|
|
180
180
|
/**
|
|
181
181
|
* @see {@link RotateKeyOnDemandCommand}
|
|
182
182
|
*/
|
|
183
|
-
rotateKeyOnDemand(args: RotateKeyOnDemandCommandInput, options?: HttpHandlerOptions): Effect.Effect<RotateKeyOnDemandCommandOutput, Cause.
|
|
183
|
+
rotateKeyOnDemand(args: RotateKeyOnDemandCommandInput, options?: HttpHandlerOptions): Effect.Effect<RotateKeyOnDemandCommandOutput, Cause.TimeoutError | SdkError | ConflictError | DependencyTimeoutError | DisabledError | InvalidArnError | KMSInternalError | KMSInvalidStateError | LimitExceededError | NotFoundError | UnsupportedOperationError>;
|
|
184
184
|
/**
|
|
185
185
|
* @see {@link ScheduleKeyDeletionCommand}
|
|
186
186
|
*/
|
|
187
|
-
scheduleKeyDeletion(args: ScheduleKeyDeletionCommandInput, options?: HttpHandlerOptions): Effect.Effect<ScheduleKeyDeletionCommandOutput, Cause.
|
|
187
|
+
scheduleKeyDeletion(args: ScheduleKeyDeletionCommandInput, options?: HttpHandlerOptions): Effect.Effect<ScheduleKeyDeletionCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | InvalidArnError | KMSInternalError | KMSInvalidStateError | NotFoundError>;
|
|
188
188
|
/**
|
|
189
189
|
* @see {@link SignCommand}
|
|
190
190
|
*/
|
|
191
|
-
sign(args: SignCommandInput, options?: HttpHandlerOptions): Effect.Effect<SignCommandOutput, Cause.
|
|
191
|
+
sign(args: SignCommandInput, options?: HttpHandlerOptions): Effect.Effect<SignCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | DisabledError | DryRunOperationError | InvalidGrantTokenError | InvalidKeyUsageError | KeyUnavailableError | KMSInternalError | KMSInvalidStateError | NotFoundError>;
|
|
192
192
|
/**
|
|
193
193
|
* @see {@link TagResourceCommand}
|
|
194
194
|
*/
|
|
195
|
-
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, Cause.
|
|
195
|
+
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, Cause.TimeoutError | SdkError | InvalidArnError | KMSInternalError | KMSInvalidStateError | LimitExceededError | NotFoundError | TagError>;
|
|
196
196
|
/**
|
|
197
197
|
* @see {@link UntagResourceCommand}
|
|
198
198
|
*/
|
|
199
|
-
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, Cause.
|
|
199
|
+
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, Cause.TimeoutError | SdkError | InvalidArnError | KMSInternalError | KMSInvalidStateError | NotFoundError | TagError>;
|
|
200
200
|
/**
|
|
201
201
|
* @see {@link UpdateAliasCommand}
|
|
202
202
|
*/
|
|
203
|
-
updateAlias(args: UpdateAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAliasCommandOutput, Cause.
|
|
203
|
+
updateAlias(args: UpdateAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAliasCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | KMSInternalError | KMSInvalidStateError | LimitExceededError | NotFoundError>;
|
|
204
204
|
/**
|
|
205
205
|
* @see {@link UpdateCustomKeyStoreCommand}
|
|
206
206
|
*/
|
|
207
|
-
updateCustomKeyStore(args: UpdateCustomKeyStoreCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateCustomKeyStoreCommandOutput, Cause.
|
|
207
|
+
updateCustomKeyStore(args: UpdateCustomKeyStoreCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateCustomKeyStoreCommandOutput, Cause.TimeoutError | SdkError | CloudHsmClusterInvalidConfigurationError | CloudHsmClusterNotActiveError | CloudHsmClusterNotFoundError | CloudHsmClusterNotRelatedError | CustomKeyStoreInvalidStateError | CustomKeyStoreNameInUseError | CustomKeyStoreNotFoundError | KMSInternalError | XksProxyIncorrectAuthenticationCredentialError | XksProxyInvalidConfigurationError | XksProxyInvalidResponseError | XksProxyUriEndpointInUseError | XksProxyUriInUseError | XksProxyUriUnreachableError | XksProxyVpcEndpointServiceInUseError | XksProxyVpcEndpointServiceInvalidConfigurationError | XksProxyVpcEndpointServiceNotFoundError>;
|
|
208
208
|
/**
|
|
209
209
|
* @see {@link UpdateKeyDescriptionCommand}
|
|
210
210
|
*/
|
|
211
|
-
updateKeyDescription(args: UpdateKeyDescriptionCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateKeyDescriptionCommandOutput, Cause.
|
|
211
|
+
updateKeyDescription(args: UpdateKeyDescriptionCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateKeyDescriptionCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | InvalidArnError | KMSInternalError | KMSInvalidStateError | NotFoundError>;
|
|
212
212
|
/**
|
|
213
213
|
* @see {@link UpdatePrimaryRegionCommand}
|
|
214
214
|
*/
|
|
215
|
-
updatePrimaryRegion(args: UpdatePrimaryRegionCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdatePrimaryRegionCommandOutput, Cause.
|
|
215
|
+
updatePrimaryRegion(args: UpdatePrimaryRegionCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdatePrimaryRegionCommandOutput, Cause.TimeoutError | SdkError | DisabledError | InvalidArnError | KMSInternalError | KMSInvalidStateError | NotFoundError | UnsupportedOperationError>;
|
|
216
216
|
/**
|
|
217
217
|
* @see {@link VerifyCommand}
|
|
218
218
|
*/
|
|
219
|
-
verify(args: VerifyCommandInput, options?: HttpHandlerOptions): Effect.Effect<VerifyCommandOutput, Cause.
|
|
219
|
+
verify(args: VerifyCommandInput, options?: HttpHandlerOptions): Effect.Effect<VerifyCommandOutput, Cause.TimeoutError | SdkError | DependencyTimeoutError | DisabledError | DryRunOperationError | InvalidGrantTokenError | InvalidKeyUsageError | KeyUnavailableError | KMSInternalError | KMSInvalidSignatureError | KMSInvalidStateError | NotFoundError>;
|
|
220
220
|
/**
|
|
221
221
|
* @see {@link VerifyMacCommand}
|
|
222
222
|
*/
|
|
223
|
-
verifyMac(args: VerifyMacCommandInput, options?: HttpHandlerOptions): Effect.Effect<VerifyMacCommandOutput, Cause.
|
|
223
|
+
verifyMac(args: VerifyMacCommandInput, options?: HttpHandlerOptions): Effect.Effect<VerifyMacCommandOutput, Cause.TimeoutError | SdkError | DisabledError | DryRunOperationError | InvalidGrantTokenError | InvalidKeyUsageError | KeyUnavailableError | KMSInternalError | KMSInvalidMacError | KMSInvalidStateError | NotFoundError>;
|
|
224
224
|
}
|
|
225
225
|
/**
|
|
226
226
|
* @since 1.0.0
|
|
227
227
|
* @category constructors
|
|
228
228
|
*/
|
|
229
229
|
export declare const makeKMSService: Effect.Effect<KMSService$, never, Instance.KMSClientInstance>;
|
|
230
|
-
declare const KMSService_base:
|
|
231
|
-
use: <X>(body: (_: KMSService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, KMSService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, Cause.UnknownException, KMSService> : Effect.Effect<X, never, KMSService>;
|
|
232
|
-
};
|
|
230
|
+
declare const KMSService_base: ServiceMap.ServiceClass<KMSService, "@effect-aws/client-kms/KMSService", KMSService$>;
|
|
233
231
|
/**
|
|
234
232
|
* @since 1.0.0
|
|
235
233
|
* @category models
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KMSService.d.ts","sourceRoot":"","sources":["../../src/KMSService.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAEL,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EAEnC,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EAEvC,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,EAE7B,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,EAE7B,KAAK,qBAAqB,EAC1B,KAAK,sBAAsB,EAE3B,KAAK,mBAAmB,EACxB,KAAK,oBAAoB,EAEzB,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,EAE7B,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,qCAAqC,EAC1C,KAAK,sCAAsC,EAE3C,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EAEpC,KAAK,mCAAmC,EACxC,KAAK,oCAAoC,EAEzC,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,EAE7B,KAAK,sBAAsB,EAC3B,KAAK,uBAAuB,EAE5B,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EAEpC,KAAK,oCAAoC,EACzC,KAAK,qCAAqC,EAE1C,KAAK,qBAAqB,EAC1B,KAAK,sBAAsB,EAE3B,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EAEnC,KAAK,mBAAmB,EACxB,KAAK,oBAAoB,EAEzB,KAAK,2BAA2B,EAChC,KAAK,4BAA4B,EAEjC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,+CAA+C,EACpD,KAAK,gDAAgD,EAErD,KAAK,2CAA2C,EAChD,KAAK,4CAA4C,EAEjD,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,EAE7B,KAAK,0BAA0B,EAC/B,KAAK,2BAA2B,EAEhC,KAAK,wBAAwB,EAC7B,KAAK,yBAAyB,EAE9B,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,kCAAkC,EACvC,KAAK,mCAAmC,EAExC,KAAK,wBAAwB,EAC7B,KAAK,yBAAyB,EAE9B,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EACnC,KAAK,SAAS,EACd,KAAK,eAAe,EAEpB,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,EAE7B,KAAK,sBAAsB,EAC3B,KAAK,uBAAuB,EAE5B,KAAK,2BAA2B,EAChC,KAAK,4BAA4B,EAEjC,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAElC,KAAK,oBAAoB,EACzB,KAAK,qBAAqB,EAE1B,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAElC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,wBAAwB,EAC7B,KAAK,yBAAyB,EAE9B,KAAK,qBAAqB,EAC1B,KAAK,sBAAsB,EAE3B,KAAK,wBAAwB,EAC7B,KAAK,yBAAyB,EAE9B,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,EAE7B,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,EAE7B,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EAEnC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,gBAAgB,EACrB,KAAK,iBAAiB,EAEtB,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,EAE7B,KAAK,yBAAyB,EAC9B,KAAK,0BAA0B,EAE/B,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,EAE7B,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,kBAAkB,EACvB,KAAK,mBAAmB,EAExB,KAAK,qBAAqB,EAC1B,KAAK,sBAAsB,EAC5B,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EAAE,kBAAkB,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAE7E,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;AACvC,OAAO,KAAK,EACV,kBAAkB,EAClB,yBAAyB,EACzB,wCAAwC,EACxC,6BAA6B,EAC7B,4BAA4B,EAC5B,8BAA8B,EAC9B,aAAa,EACb,0BAA0B,EAC1B,+BAA+B,EAC/B,4BAA4B,EAC5B,2BAA2B,EAC3B,sBAAsB,EACtB,aAAa,EACb,oBAAoB,EACpB,uBAAuB,EACvB,iBAAiB,EACjB,yBAAyB,EACzB,yBAAyB,EACzB,qBAAqB,EACrB,eAAe,EACf,sBAAsB,EACtB,mBAAmB,EACnB,sBAAsB,EACtB,uBAAuB,EACvB,oBAAoB,EACpB,kBAAkB,EAClB,mBAAmB,EACnB,gBAAgB,EAChB,kBAAkB,EAClB,wBAAwB,EACxB,oBAAoB,EACpB,kBAAkB,EAClB,4BAA4B,EAC5B,aAAa,EACb,QAAQ,EACR,QAAQ,EACR,yBAAyB,EACzB,uBAAuB,EACvB,+BAA+B,EAC/B,mBAAmB,EACnB,8CAA8C,EAC9C,iCAAiC,EACjC,4BAA4B,EAC5B,6BAA6B,EAC7B,qBAAqB,EACrB,2BAA2B,EAC3B,oCAAoC,EACpC,mDAAmD,EACnD,uCAAuC,EACxC,MAAM,aAAa,CAAC;AAErB,OAAO,KAAK,QAAQ,MAAM,wBAAwB,CAAC;AA2DnD,UAAU,WAAW;IACnB,QAAQ,CAAC,CAAC,EAAE,OAAO,MAAM,CAAC;IAE1B;;OAEG;IACH,iBAAiB,CACf,IAAI,EAAE,6BAA6B,EACnC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,8BAA8B,EAC5B,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,qBAAqB,CACnB,IAAI,EAAE,iCAAiC,EACvC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,kCAAkC,EAChC,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,wCAAwC,GACxC,6BAA6B,GAC7B,+BAA+B,GAC/B,2BAA2B,GAC3B,gBAAgB,CACnB,CAAC;IAEF;;OAEG;IACH,WAAW,CACT,IAAI,EAAE,uBAAuB,EAC7B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wBAAwB,EACtB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,kBAAkB,GAClB,sBAAsB,GACtB,qBAAqB,GACrB,gBAAgB,GAChB,oBAAoB,GACpB,kBAAkB,GAClB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,oBAAoB,CAClB,IAAI,EAAE,gCAAgC,EACtC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,iCAAiC,EAC/B,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,yBAAyB,GACzB,wCAAwC,GACxC,6BAA6B,GAC7B,4BAA4B,GAC5B,4BAA4B,GAC5B,yBAAyB,GACzB,gBAAgB,GAChB,kBAAkB,GAClB,8CAA8C,GAC9C,iCAAiC,GACjC,4BAA4B,GAC5B,6BAA6B,GAC7B,qBAAqB,GACrB,2BAA2B,GAC3B,oCAAoC,GACpC,mDAAmD,GACnD,uCAAuC,CAC1C,CAAC;IAEF;;OAEG;IACH,WAAW,CACT,IAAI,EAAE,uBAAuB,EAC7B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wBAAwB,EACtB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,aAAa,GACb,oBAAoB,GACpB,eAAe,GACf,sBAAsB,GACtB,gBAAgB,GAChB,oBAAoB,GACpB,kBAAkB,GAClB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,SAAS,CACP,IAAI,EAAE,qBAAqB,EAC3B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,sBAAsB,EACpB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,wCAAwC,GACxC,+BAA+B,GAC/B,2BAA2B,GAC3B,sBAAsB,GACtB,eAAe,GACf,gBAAgB,GAChB,kBAAkB,GAClB,4BAA4B,GAC5B,QAAQ,GACR,yBAAyB,GACzB,uBAAuB,GACvB,+BAA+B,GAC/B,mBAAmB,CACtB,CAAC;IAEF;;OAEG;IACH,OAAO,CACL,IAAI,EAAE,mBAAmB,EACzB,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,oBAAoB,EAClB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,aAAa,GACb,oBAAoB,GACpB,iBAAiB,GACjB,sBAAsB,GACtB,sBAAsB,GACtB,oBAAoB,GACpB,mBAAmB,GACnB,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,WAAW,CACT,IAAI,EAAE,uBAAuB,EAC7B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wBAAwB,EACxB,KAAK,CAAC,gBAAgB,GAAG,QAAQ,GAAG,sBAAsB,GAAG,gBAAgB,GAAG,oBAAoB,GAAG,aAAa,CACrH,CAAC;IAEF;;OAEG;IACH,oBAAoB,CAClB,IAAI,EAAE,gCAAgC,EACtC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,iCAAiC,EAC/B,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,0BAA0B,GAC1B,+BAA+B,GAC/B,2BAA2B,GAC3B,gBAAgB,CACnB,CAAC;IAEF;;OAEG;IACH,yBAAyB,CACvB,IAAI,EAAE,qCAAqC,EAC3C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,sCAAsC,EACpC,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,GACb,yBAAyB,CAC5B,CAAC;IAEF;;OAEG;IACH,kBAAkB,CAChB,IAAI,EAAE,8BAA8B,EACpC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,+BAA+B,EAC7B,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,aAAa,GACb,oBAAoB,GACpB,sBAAsB,GACtB,oBAAoB,GACpB,mBAAmB,GACnB,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,uBAAuB,CACrB,IAAI,EAAE,mCAAmC,EACzC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,oCAAoC,EACpC,KAAK,CAAC,gBAAgB,GAAG,QAAQ,GAAG,2BAA2B,GAAG,kBAAkB,GAAG,gBAAgB,CACxG,CAAC;IAEF;;OAEG;IACH,WAAW,CACT,IAAI,EAAE,uBAAuB,EAC7B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wBAAwB,EACxB,KAAK,CAAC,gBAAgB,GAAG,QAAQ,GAAG,sBAAsB,GAAG,eAAe,GAAG,gBAAgB,GAAG,aAAa,CAChH,CAAC;IAEF;;OAEG;IACH,UAAU,CACR,IAAI,EAAE,sBAAsB,EAC5B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,uBAAuB,EACrB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,kBAAkB,CAChB,IAAI,EAAE,8BAA8B,EACpC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,+BAA+B,EAC7B,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,aAAa,GACb,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,GACb,yBAAyB,CAC5B,CAAC;IAEF;;OAEG;IACH,wBAAwB,CACtB,IAAI,EAAE,oCAAoC,EAC1C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,qCAAqC,EACrC,KAAK,CAAC,gBAAgB,GAAG,QAAQ,GAAG,+BAA+B,GAAG,2BAA2B,GAAG,gBAAgB,CACrH,CAAC;IAEF;;OAEG;IACH,SAAS,CACP,IAAI,EAAE,qBAAqB,EAC3B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,sBAAsB,EACpB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,kBAAkB,GAClB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,iBAAiB,CACf,IAAI,EAAE,6BAA6B,EACnC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,8BAA8B,EAC5B,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,aAAa,GACb,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,GACb,yBAAyB,CAC5B,CAAC;IAEF;;OAEG;IACH,OAAO,CACL,IAAI,EAAE,mBAAmB,EACzB,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,oBAAoB,EAClB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,aAAa,GACb,oBAAoB,GACpB,sBAAsB,GACtB,oBAAoB,GACpB,mBAAmB,GACnB,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,eAAe,CACb,IAAI,EAAE,2BAA2B,EACjC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,4BAA4B,EAC1B,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,aAAa,GACb,oBAAoB,GACpB,sBAAsB,GACtB,oBAAoB,GACpB,mBAAmB,GACnB,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,mBAAmB,CACjB,IAAI,EAAE,+BAA+B,EACrC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,gCAAgC,EAC9B,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,aAAa,GACb,oBAAoB,GACpB,sBAAsB,GACtB,oBAAoB,GACpB,mBAAmB,GACnB,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,GACb,yBAAyB,CAC5B,CAAC;IAEF;;OAEG;IACH,mCAAmC,CACjC,IAAI,EAAE,+CAA+C,EACrD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,gDAAgD,EAC9C,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,aAAa,GACb,oBAAoB,GACpB,sBAAsB,GACtB,oBAAoB,GACpB,mBAAmB,GACnB,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,GACb,yBAAyB,CAC5B,CAAC;IAEF;;OAEG;IACH,+BAA+B,CAC7B,IAAI,EAAE,2CAA2C,EACjD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,4CAA4C,EAC1C,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,aAAa,GACb,oBAAoB,GACpB,sBAAsB,GACtB,oBAAoB,GACpB,mBAAmB,GACnB,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,WAAW,CACT,IAAI,EAAE,uBAAuB,EAC7B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wBAAwB,EACtB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,aAAa,GACb,oBAAoB,GACpB,sBAAsB,GACtB,oBAAoB,GACpB,mBAAmB,GACnB,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,cAAc,CACZ,IAAI,EAAE,0BAA0B,EAChC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,2BAA2B,EACzB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,+BAA+B,GAC/B,2BAA2B,GAC3B,sBAAsB,GACtB,gBAAgB,GAChB,yBAAyB,CAC5B,CAAC;IAEF;;OAEG;IACH,YAAY,CACV,IAAI,EAAE,wBAAwB,EAC9B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,yBAAyB,EACvB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,oBAAoB,CAClB,IAAI,EAAE,gCAAgC,EACtC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,iCAAiC,EAC/B,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,GACb,yBAAyB,CAC5B,CAAC;IAEF;;OAEG;IACH,sBAAsB,CACpB,IAAI,EAAE,kCAAkC,EACxC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,mCAAmC,EACjC,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,GACb,yBAAyB,CAC5B,CAAC;IAEF;;OAEG;IACH,YAAY,CACV,IAAI,EAAE,wBAAwB,EAC9B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,yBAAyB,EACvB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,aAAa,GACb,eAAe,GACf,sBAAsB,GACtB,oBAAoB,GACpB,mBAAmB,GACnB,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,GACb,yBAAyB,CAC5B,CAAC;IAEF;;OAEG;IACH,iBAAiB,CACf,IAAI,EAAE,6BAA6B,EACnC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,8BAA8B,EAC5B,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,uBAAuB,GACvB,yBAAyB,GACzB,eAAe,GACf,sBAAsB,GACtB,uBAAuB,GACvB,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,GACb,yBAAyB,CAC5B,CAAC;IAEF;;OAEG;IACH,WAAW,CACT,IAAI,EAAE,uBAAuB,EAC7B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wBAAwB,EACtB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,eAAe,GACf,kBAAkB,GAClB,gBAAgB,GAChB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,UAAU,CACR,IAAI,EAAE,sBAAsB,EAC5B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,uBAAuB,EACrB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,eAAe,GACf,mBAAmB,GACnB,kBAAkB,GAClB,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,eAAe,CACb,IAAI,EAAE,2BAA2B,EACjC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,4BAA4B,EAC1B,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,gBAAgB,CACd,IAAI,EAAE,4BAA4B,EAClC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,6BAA6B,EAC3B,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,eAAe,GACf,kBAAkB,GAClB,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,GACb,yBAAyB,CAC5B,CAAC;IAEF;;OAEG;IACH,QAAQ,CACN,IAAI,EAAE,oBAAoB,EAC1B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,qBAAqB,EACrB,KAAK,CAAC,gBAAgB,GAAG,QAAQ,GAAG,sBAAsB,GAAG,kBAAkB,GAAG,gBAAgB,CACnG,CAAC;IAEF;;OAEG;IACH,gBAAgB,CACd,IAAI,EAAE,4BAA4B,EAClC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,6BAA6B,EAC7B,KAAK,CAAC,gBAAgB,GAAG,QAAQ,GAAG,eAAe,GAAG,kBAAkB,GAAG,gBAAgB,GAAG,aAAa,CAC5G,CAAC;IAEF;;OAEG;IACH,mBAAmB,CACjB,IAAI,EAAE,+BAA+B,EACrC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,gCAAgC,EAC9B,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,eAAe,GACf,kBAAkB,GAClB,gBAAgB,GAChB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,YAAY,CACV,IAAI,EAAE,wBAAwB,EAC9B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,yBAAyB,EACvB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,kBAAkB,GAClB,4BAA4B,GAC5B,aAAa,GACb,yBAAyB,CAC5B,CAAC;IAEF;;OAEG;IACH,SAAS,CACP,IAAI,EAAE,qBAAqB,EAC3B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,sBAAsB,EACpB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,aAAa,GACb,oBAAoB,GACpB,iBAAiB,GACjB,sBAAsB,GACtB,sBAAsB,GACtB,oBAAoB,GACpB,mBAAmB,GACnB,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,YAAY,CACV,IAAI,EAAE,wBAAwB,EAC9B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,yBAAyB,EACvB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,kBAAkB,GAClB,aAAa,GACb,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,kBAAkB,GAClB,4BAA4B,GAC5B,aAAa,GACb,QAAQ,GACR,yBAAyB,CAC5B,CAAC;IAEF;;OAEG;IACH,WAAW,CACT,IAAI,EAAE,uBAAuB,EAC7B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wBAAwB,EACtB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,oBAAoB,GACpB,eAAe,GACf,mBAAmB,GACnB,sBAAsB,GACtB,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,WAAW,CACT,IAAI,EAAE,uBAAuB,EAC7B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wBAAwB,EACtB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,oBAAoB,GACpB,eAAe,GACf,mBAAmB,GACnB,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,iBAAiB,CACf,IAAI,EAAE,6BAA6B,EACnC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,8BAA8B,EAC5B,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,aAAa,GACb,sBAAsB,GACtB,aAAa,GACb,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,kBAAkB,GAClB,aAAa,GACb,yBAAyB,CAC5B,CAAC;IAEF;;OAEG;IACH,mBAAmB,CACjB,IAAI,EAAE,+BAA+B,EACrC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,gCAAgC,EAC9B,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,IAAI,CACF,IAAI,EAAE,gBAAgB,EACtB,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,iBAAiB,EACf,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,aAAa,GACb,oBAAoB,GACpB,sBAAsB,GACtB,oBAAoB,GACpB,mBAAmB,GACnB,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,WAAW,CACT,IAAI,EAAE,uBAAuB,EAC7B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wBAAwB,EACtB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,kBAAkB,GAClB,aAAa,GACb,QAAQ,CACX,CAAC;IAEF;;OAEG;IACH,aAAa,CACX,IAAI,EAAE,yBAAyB,EAC/B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,0BAA0B,EACxB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,GACb,QAAQ,CACX,CAAC;IAEF;;OAEG;IACH,WAAW,CACT,IAAI,EAAE,uBAAuB,EAC7B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wBAAwB,EACtB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,gBAAgB,GAChB,oBAAoB,GACpB,kBAAkB,GAClB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,oBAAoB,CAClB,IAAI,EAAE,gCAAgC,EACtC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,iCAAiC,EAC/B,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,wCAAwC,GACxC,6BAA6B,GAC7B,4BAA4B,GAC5B,8BAA8B,GAC9B,+BAA+B,GAC/B,4BAA4B,GAC5B,2BAA2B,GAC3B,gBAAgB,GAChB,8CAA8C,GAC9C,iCAAiC,GACjC,4BAA4B,GAC5B,6BAA6B,GAC7B,qBAAqB,GACrB,2BAA2B,GAC3B,oCAAoC,GACpC,mDAAmD,GACnD,uCAAuC,CAC1C,CAAC;IAEF;;OAEG;IACH,oBAAoB,CAClB,IAAI,EAAE,gCAAgC,EACtC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,iCAAiC,EAC/B,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,mBAAmB,CACjB,IAAI,EAAE,+BAA+B,EACrC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,gCAAgC,EAC9B,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,aAAa,GACb,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,GACb,yBAAyB,CAC5B,CAAC;IAEF;;OAEG;IACH,MAAM,CACJ,IAAI,EAAE,kBAAkB,EACxB,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,mBAAmB,EACjB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,sBAAsB,GACtB,aAAa,GACb,oBAAoB,GACpB,sBAAsB,GACtB,oBAAoB,GACpB,mBAAmB,GACnB,gBAAgB,GAChB,wBAAwB,GACxB,oBAAoB,GACpB,aAAa,CAChB,CAAC;IAEF;;OAEG;IACH,SAAS,CACP,IAAI,EAAE,qBAAqB,EAC3B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,sBAAsB,EACpB,KAAK,CAAC,gBAAgB,GACtB,QAAQ,GACR,aAAa,GACb,oBAAoB,GACpB,sBAAsB,GACtB,oBAAoB,GACpB,mBAAmB,GACnB,gBAAgB,GAChB,kBAAkB,GAClB,oBAAoB,GACpB,aAAa,CAChB,CAAC;CACH;AAED;;;GAGG;AACH,eAAO,MAAM,cAAc,+DAWzB,CAAC;;;;AAEH;;;GAGG;AACH,qBAAa,UAAW,SAAQ,eAG7B;IACD,MAAM,CAAC,QAAQ,CAAC,YAAY,wCAA0E;IACtG,MAAM,CAAC,QAAQ,CAAC,KAAK,WAAY,WAAW,MAAM,2CAI9C;IACJ,MAAM,CAAC,QAAQ,CAAC,SAAS,aACb,CAAC,aAAa,EAAE,eAAe,KAAK,SAAS,2CASrD;CACL;AAED;;GAEG;AACH,MAAM,CAAC,OAAO,WAAW,UAAU,CAAC;IAClC;;OAEG;IACH,UAAiB,MAAO,SAAQ,IAAI,CAAC,eAAe,EAAE,QAAQ,CAAC;QAC7D,QAAQ,CAAC,MAAM,CAAC,EAAE,aAAa,CAAC,6BAA6B,GAAG,IAAI,CAAC;KACtE;IAED;;OAEG;IACH,KAAY,IAAI,GAAG,WAAW,CAAC;CAChC"}
|
|
1
|
+
{"version":3,"file":"KMSService.d.ts","sourceRoot":"","sources":["../../src/KMSService.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KMSServiceConfig.d.ts","sourceRoot":"","sources":["../../src/KMSServiceConfig.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAE3D,OAAO,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"KMSServiceConfig.d.ts","sourceRoot":"","sources":["../../src/KMSServiceConfig.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAE3D,OAAO,EAAE,MAAM,EAAE,KAAK,EAAc,MAAM,QAAQ,CAAC;AAEnD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAWlD;;;GAGG;AACH,eAAO,MAAM,oBAAoB,EAAE;IACjC,CAAC,MAAM,EAAE,UAAU,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;IACjG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;CAK9F,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,mBAAmB,WAAY,WAAW,MAAM,qCAAmD,CAAC;AAEjH;;;GAGG;AACH,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,CAAC,eAAe,CAQ3D,CAAC"}
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
* @since 1.0.0
|
|
3
3
|
*/
|
|
4
4
|
import { KMSClient } from "@aws-sdk/client-kms";
|
|
5
|
-
import {
|
|
5
|
+
import { Effect, Layer, ServiceMap } from "effect";
|
|
6
6
|
import * as KMSServiceConfig from "./KMSServiceConfig.js";
|
|
7
7
|
/**
|
|
8
8
|
* @since 1.0.0
|
|
9
9
|
* @category tags
|
|
10
10
|
*/
|
|
11
|
-
export class KMSClientInstance extends
|
|
11
|
+
export class KMSClientInstance extends ServiceMap.Service()("@effect-aws/client-kms/KMSClientInstance") {
|
|
12
12
|
}
|
|
13
13
|
/**
|
|
14
14
|
* @since 1.0.0
|
|
@@ -19,5 +19,5 @@ export const make = Effect.flatMap(KMSServiceConfig.toKMSClientConfig, (config)
|
|
|
19
19
|
* @since 1.0.0
|
|
20
20
|
* @category layers
|
|
21
21
|
*/
|
|
22
|
-
export const layer = Layer.
|
|
22
|
+
export const layer = Layer.effect(KMSClientInstance, make);
|
|
23
23
|
//# sourceMappingURL=KMSClientInstance.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KMSClientInstance.js","sourceRoot":"","sources":["../../src/KMSClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"KMSClientInstance.js","sourceRoot":"","sources":["../../src/KMSClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AACnD,OAAO,KAAK,gBAAgB,MAAM,uBAAuB,CAAC;AAE1D;;;GAGG;AACH,MAAM,OAAO,iBAAkB,SAAQ,UAAU,CAAC,OAAO,EAAgC,CACvF,0CAA0C,CAC3C;CAAG;AAEJ;;;GAGG;AACH,MAAM,CAAC,MAAM,IAAI,GAAG,MAAM,CAAC,OAAO,CAChC,gBAAgB,CAAC,iBAAiB,EAClC,CAAC,MAAM,EAAE,EAAE,CACT,MAAM,CAAC,cAAc,CACnB,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,SAAS,CAAC,MAAM,CAAC,CAAC,EACxC,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,iBAAiB,EAAE,IAAI,CAAC,CAAC"}
|
package/dist/esm/KMSService.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import { CancelKeyDeletionCommand, ConnectCustomKeyStoreCommand, CreateAliasCommand, CreateCustomKeyStoreCommand, CreateGrantCommand, CreateKeyCommand, DecryptCommand, DeleteAliasCommand, DeleteCustomKeyStoreCommand, DeleteImportedKeyMaterialCommand, DeriveSharedSecretCommand, DescribeCustomKeyStoresCommand, DescribeKeyCommand, DisableKeyCommand, DisableKeyRotationCommand, DisconnectCustomKeyStoreCommand, EnableKeyCommand, EnableKeyRotationCommand, EncryptCommand, GenerateDataKeyCommand, GenerateDataKeyPairCommand, GenerateDataKeyPairWithoutPlaintextCommand, GenerateDataKeyWithoutPlaintextCommand, GenerateMacCommand, GenerateRandomCommand, GetKeyPolicyCommand, GetKeyRotationStatusCommand, GetParametersForImportCommand, GetPublicKeyCommand, ImportKeyMaterialCommand, ListAliasesCommand, ListGrantsCommand, ListKeyPoliciesCommand, ListKeyRotationsCommand, ListKeysCommand, ListResourceTagsCommand, ListRetirableGrantsCommand, PutKeyPolicyCommand, ReEncryptCommand, ReplicateKeyCommand, RetireGrantCommand, RevokeGrantCommand, RotateKeyOnDemandCommand, ScheduleKeyDeletionCommand, SignCommand, TagResourceCommand, UntagResourceCommand, UpdateAliasCommand, UpdateCustomKeyStoreCommand, UpdateKeyDescriptionCommand, UpdatePrimaryRegionCommand, VerifyCommand, VerifyMacCommand, } from "@aws-sdk/client-kms";
|
|
5
5
|
import { Service } from "@effect-aws/commons";
|
|
6
|
-
import { Effect, Layer } from "effect";
|
|
6
|
+
import { Effect, Layer, ServiceMap } from "effect";
|
|
7
7
|
import { AllServiceErrors } from "./Errors.js";
|
|
8
8
|
import * as Instance from "./KMSClientInstance.js";
|
|
9
9
|
import * as KMSServiceConfig from "./KMSServiceConfig.js";
|
|
@@ -77,7 +77,7 @@ export const makeKMSService = Effect.gen(function* () {
|
|
|
77
77
|
* @since 1.0.0
|
|
78
78
|
* @category models
|
|
79
79
|
*/
|
|
80
|
-
export class KMSService extends
|
|
80
|
+
export class KMSService extends ServiceMap.Service()("@effect-aws/client-kms/KMSService") {
|
|
81
81
|
static defaultLayer = Layer.effect(this, makeKMSService).pipe(Layer.provide(Instance.layer));
|
|
82
82
|
static layer = (config) => Layer.effect(this, makeKMSService).pipe(Layer.provide(Instance.layer), Layer.provide(KMSServiceConfig.setKMSServiceConfig(config)));
|
|
83
83
|
static baseLayer = (evaluate) => Layer.effect(this, makeKMSService).pipe(Layer.provide(Layer.effect(Instance.KMSClientInstance, Effect.map(KMSServiceConfig.toKMSClientConfig, evaluate))));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KMSService.js","sourceRoot":"","sources":["../../src/KMSService.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EACL,wBAAwB,EAGxB,4BAA4B,EAG5B,kBAAkB,EAGlB,2BAA2B,EAG3B,kBAAkB,EAGlB,gBAAgB,EAGhB,cAAc,EAGd,kBAAkB,EAGlB,2BAA2B,EAG3B,gCAAgC,EAGhC,yBAAyB,EAGzB,8BAA8B,EAG9B,kBAAkB,EAGlB,iBAAiB,EAGjB,yBAAyB,EAGzB,+BAA+B,EAG/B,gBAAgB,EAGhB,wBAAwB,EAGxB,cAAc,EAGd,sBAAsB,EAGtB,0BAA0B,EAG1B,0CAA0C,EAG1C,sCAAsC,EAGtC,kBAAkB,EAGlB,qBAAqB,EAGrB,mBAAmB,EAGnB,2BAA2B,EAG3B,6BAA6B,EAG7B,mBAAmB,EAGnB,wBAAwB,EAKxB,kBAAkB,EAGlB,iBAAiB,EAGjB,sBAAsB,EAGtB,uBAAuB,EAGvB,eAAe,EAGf,uBAAuB,EAGvB,0BAA0B,EAG1B,mBAAmB,EAGnB,gBAAgB,EAGhB,mBAAmB,EAGnB,kBAAkB,EAGlB,kBAAkB,EAGlB,wBAAwB,EAGxB,0BAA0B,EAG1B,WAAW,EAGX,kBAAkB,EAGlB,oBAAoB,EAGpB,kBAAkB,EAGlB,2BAA2B,EAG3B,2BAA2B,EAG3B,0BAA0B,EAG1B,aAAa,EAGb,gBAAgB,GAGjB,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AAE9C,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"KMSService.js","sourceRoot":"","sources":["../../src/KMSService.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,28 +1,27 @@
|
|
|
1
1
|
import { ServiceLogger } from "@effect-aws/commons";
|
|
2
|
-
import { Effect,
|
|
2
|
+
import { Effect, Layer, ServiceMap } from "effect";
|
|
3
3
|
import { dual } from "effect/Function";
|
|
4
|
-
import { globalValue } from "effect/GlobalValue";
|
|
5
4
|
/**
|
|
6
5
|
* @since 1.0.0
|
|
7
6
|
* @category kms service config
|
|
8
7
|
*/
|
|
9
|
-
const currentKMSServiceConfig =
|
|
8
|
+
const currentKMSServiceConfig = ServiceMap.Reference("@effect-aws/client-kms/currentKMSServiceConfig", { defaultValue: () => ({}) });
|
|
10
9
|
/**
|
|
11
10
|
* @since 1.0.0
|
|
12
11
|
* @category kms service config
|
|
13
12
|
*/
|
|
14
|
-
export const withKMSServiceConfig = dual(2, (effect, config) => Effect.
|
|
13
|
+
export const withKMSServiceConfig = dual(2, (effect, config) => Effect.provideService(effect, currentKMSServiceConfig, config));
|
|
15
14
|
/**
|
|
16
15
|
* @since 1.0.0
|
|
17
16
|
* @category kms service config
|
|
18
17
|
*/
|
|
19
|
-
export const setKMSServiceConfig = (config) => Layer.
|
|
18
|
+
export const setKMSServiceConfig = (config) => Layer.succeed(currentKMSServiceConfig, config);
|
|
20
19
|
/**
|
|
21
20
|
* @since 1.0.0
|
|
22
21
|
* @category adapters
|
|
23
22
|
*/
|
|
24
23
|
export const toKMSClientConfig = Effect.gen(function* () {
|
|
25
|
-
const { logger: serviceLogger, ...config } = yield*
|
|
24
|
+
const { logger: serviceLogger, ...config } = yield* currentKMSServiceConfig;
|
|
26
25
|
const logger = serviceLogger === true
|
|
27
26
|
? yield* ServiceLogger.toClientLogger(ServiceLogger.defaultServiceLogger)
|
|
28
27
|
: (serviceLogger ? yield* ServiceLogger.toClientLogger(ServiceLogger.make(serviceLogger)) : undefined);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KMSServiceConfig.js","sourceRoot":"","sources":["../../src/KMSServiceConfig.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"KMSServiceConfig.js","sourceRoot":"","sources":["../../src/KMSServiceConfig.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AACnD,OAAO,EAAE,IAAI,EAAE,MAAM,iBAAiB,CAAC;AAGvC;;;GAGG;AACH,MAAM,uBAAuB,GAAG,UAAU,CAAC,SAAS,CAClD,gDAAgD,EAChD,EAAE,YAAY,EAAE,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAC7B,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAG7B,IAAI,CACN,CAAC,EACD,CAAU,MAA8B,EAAE,MAAyB,EAA0B,EAAE,CAC7F,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,uBAAuB,EAAE,MAAM,CAAC,CACjE,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,MAAyB,EAAE,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,uBAAuB,EAAE,MAAM,CAAC,CAAC;AAEjH;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAmC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC;IACnF,MAAM,EAAE,MAAM,EAAE,aAAa,EAAE,GAAG,MAAM,EAAE,GAAG,KAAK,CAAC,CAAC,uBAAuB,CAAC;IAE5E,MAAM,MAAM,GAAG,aAAa,KAAK,IAAI;QACnC,CAAC,CAAC,KAAK,CAAC,CAAC,aAAa,CAAC,cAAc,CAAC,aAAa,CAAC,oBAAoB,CAAC;QACzE,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,aAAa,CAAC,cAAc,CAAC,aAAa,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC;IAEzG,OAAO,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC;AAC/B,CAAC,CAAC,CAAC"}
|