@sphereon/ssi-sdk.kms-rest-client 0.36.1-feature.SSISDK.44.finish.dcql.1 → 0.36.1-feature.SSISDK.70.integrate.digidentity.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +82 -20
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +28 -52
- package/dist/index.d.ts +28 -52
- package/dist/index.js +82 -20
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/agent/KmsRestClient.ts +55 -42
- package/src/types/IKmsRestClient.ts +43 -60
package/dist/index.d.cts
CHANGED
|
@@ -3829,7 +3829,7 @@ declare function VerifySimpleSignatureToJSON(json: any): VerifySimpleSignature;
|
|
|
3829
3829
|
declare function VerifySimpleSignatureToJSONTyped(value?: VerifySimpleSignature | null, ignoreDiscriminator?: boolean): any;
|
|
3830
3830
|
|
|
3831
3831
|
interface IKmsRestClient extends IPluginMethodMap {
|
|
3832
|
-
kmsClientGetResolver(args:
|
|
3832
|
+
kmsClientGetResolver(args: KmsClientGetResolverArgs): Promise<Resolver>;
|
|
3833
3833
|
kmsClientListResolvers(args?: KmsClientListResolversArgs): Promise<ListResolversResponse>;
|
|
3834
3834
|
kmsClientResolveKey(args: KmsClientResolveKeyArgs): Promise<ResolvedKeyInfo>;
|
|
3835
3835
|
kmsClientCreateRawSignature(args: KmsClientCreateRawSignatureArgs): Promise<CreateRawSignatureResponse>;
|
|
@@ -3847,68 +3847,44 @@ interface IKmsRestClient extends IPluginMethodMap {
|
|
|
3847
3847
|
kmsClientProviderGetKey(args: KmsClientProviderGetKeyArgs): Promise<GetKeyResponse>;
|
|
3848
3848
|
kmsClientProviderDeleteKey(args: KmsClientProviderDeleteKeyArgs): Promise<boolean>;
|
|
3849
3849
|
}
|
|
3850
|
-
type
|
|
3850
|
+
type BaseArgs = {
|
|
3851
3851
|
baseUrl?: string;
|
|
3852
|
+
tenantId?: string;
|
|
3853
|
+
userId?: string;
|
|
3852
3854
|
};
|
|
3853
|
-
type
|
|
3854
|
-
|
|
3855
|
+
type OptionalProviderContextArgs = BaseArgs & {
|
|
3856
|
+
providerId?: string;
|
|
3857
|
+
};
|
|
3858
|
+
type ProviderContextArgs = BaseArgs & {
|
|
3859
|
+
providerId: string;
|
|
3860
|
+
};
|
|
3861
|
+
type KmsClientListResolversArgs = BaseArgs;
|
|
3862
|
+
type KmsClientGetResolverArgs = BaseArgs & {
|
|
3855
3863
|
resolverId: string;
|
|
3856
3864
|
};
|
|
3857
|
-
type KmsClientResolveKeyArgs = {
|
|
3858
|
-
baseUrl?: string;
|
|
3865
|
+
type KmsClientResolveKeyArgs = BaseArgs & {
|
|
3859
3866
|
resolverId: String;
|
|
3860
3867
|
} & ResolvePublicKey;
|
|
3861
|
-
type KmsClientCreateRawSignatureArgs =
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
type KmsClientIsValidRawSignatureArgs = {
|
|
3865
|
-
baseUrl?: string;
|
|
3866
|
-
} & VerifyRawSignature;
|
|
3867
|
-
type KmsClientGetKeyArgs = {
|
|
3868
|
-
baseUrl?: string;
|
|
3868
|
+
type KmsClientCreateRawSignatureArgs = BaseArgs & CreateRawSignature;
|
|
3869
|
+
type KmsClientIsValidRawSignatureArgs = BaseArgs & VerifyRawSignature;
|
|
3870
|
+
type KmsClientGetKeyArgs = BaseArgs & OptionalProviderContextArgs & {
|
|
3869
3871
|
aliasOrKid: string;
|
|
3870
3872
|
};
|
|
3871
|
-
type KmsClientListKeysArgs =
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
type KmsClientStoreKeyArgs = {
|
|
3876
|
-
baseUrl?: string;
|
|
3877
|
-
} & StoreKey;
|
|
3878
|
-
type KmsClientGenerateKeyArgs = {
|
|
3879
|
-
baseUrl?: string;
|
|
3880
|
-
} & GenerateKeyGlobal;
|
|
3881
|
-
type KmsClientDeleteKeyArgs = {
|
|
3882
|
-
baseUrl?: string;
|
|
3873
|
+
type KmsClientListKeysArgs = BaseArgs & OptionalProviderContextArgs;
|
|
3874
|
+
type KmsClientStoreKeyArgs = BaseArgs & StoreKey;
|
|
3875
|
+
type KmsClientGenerateKeyArgs = BaseArgs & OptionalProviderContextArgs & GenerateKeyGlobal;
|
|
3876
|
+
type KmsClientDeleteKeyArgs = BaseArgs & OptionalProviderContextArgs & {
|
|
3883
3877
|
aliasOrKid: string;
|
|
3884
3878
|
};
|
|
3885
|
-
type KmsClientGetKeyProviderArgs =
|
|
3886
|
-
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
type
|
|
3890
|
-
|
|
3891
|
-
};
|
|
3892
|
-
type KmsClientProviderListKeysArgs = {
|
|
3893
|
-
baseUrl?: string;
|
|
3894
|
-
providerId: string;
|
|
3895
|
-
};
|
|
3896
|
-
type KmsClientProviderStoreKeyArgs = {
|
|
3897
|
-
baseUrl?: string;
|
|
3898
|
-
providerId: string;
|
|
3899
|
-
} & StoreKey;
|
|
3900
|
-
type KmsClientProviderGenerateKeyArgs = {
|
|
3901
|
-
baseUrl?: string;
|
|
3902
|
-
providerId: string;
|
|
3903
|
-
} & GenerateKey;
|
|
3904
|
-
type KmsClientProviderGetKeyArgs = {
|
|
3905
|
-
baseUrl?: string;
|
|
3906
|
-
providerId: string;
|
|
3879
|
+
type KmsClientGetKeyProviderArgs = BaseArgs & ProviderContextArgs;
|
|
3880
|
+
type KmsClientListKeyProvidersArgs = BaseArgs;
|
|
3881
|
+
type KmsClientProviderListKeysArgs = BaseArgs & ProviderContextArgs;
|
|
3882
|
+
type KmsClientProviderStoreKeyArgs = BaseArgs & ProviderContextArgs & StoreKey;
|
|
3883
|
+
type KmsClientProviderGenerateKeyArgs = BaseArgs & ProviderContextArgs & GenerateKey;
|
|
3884
|
+
type KmsClientProviderGetKeyArgs = BaseArgs & ProviderContextArgs & {
|
|
3907
3885
|
aliasOrKid: string;
|
|
3908
3886
|
};
|
|
3909
|
-
type KmsClientProviderDeleteKeyArgs = {
|
|
3910
|
-
baseUrl?: string;
|
|
3911
|
-
providerId: string;
|
|
3887
|
+
type KmsClientProviderDeleteKeyArgs = BaseArgs & ProviderContextArgs & {
|
|
3912
3888
|
aliasOrKid: string;
|
|
3913
3889
|
};
|
|
3914
3890
|
type RestClientAuthenticationOpts = {
|
|
@@ -3970,4 +3946,4 @@ declare class KmsRestClient implements IAgentPlugin {
|
|
|
3970
3946
|
private handleHttpError;
|
|
3971
3947
|
}
|
|
3972
3948
|
|
|
3973
|
-
export { type AwsAssumeRoleCredentials, AwsAssumeRoleCredentialsFromJSON, AwsAssumeRoleCredentialsFromJSONTyped, AwsAssumeRoleCredentialsToJSON, AwsAssumeRoleCredentialsToJSONTyped, type AwsClientConfiguration, AwsClientConfigurationFromJSON, AwsClientConfigurationFromJSONTyped, AwsClientConfigurationToJSON, AwsClientConfigurationToJSONTyped, type AwsKmsSetting, AwsKmsSettingFromJSON, AwsKmsSettingFromJSONTyped, AwsKmsSettingToJSON, AwsKmsSettingToJSONTyped, type AwsStaticCredentials, AwsStaticCredentialsFromJSON, AwsStaticCredentialsFromJSONTyped, AwsStaticCredentialsToJSON, AwsStaticCredentialsToJSONTyped, type AwsWebIdentityTokenCredentials, AwsWebIdentityTokenCredentialsFromJSON, AwsWebIdentityTokenCredentialsFromJSONTyped, AwsWebIdentityTokenCredentialsToJSON, AwsWebIdentityTokenCredentialsToJSONTyped, type AzureClientSecretCredentialOpts, AzureClientSecretCredentialOptsFromJSON, AzureClientSecretCredentialOptsFromJSONTyped, AzureClientSecretCredentialOptsToJSON, AzureClientSecretCredentialOptsToJSONTyped, type AzureCredentialOpts, AzureCredentialOptsFromJSON, AzureCredentialOptsFromJSONTyped, AzureCredentialOptsToJSON, AzureCredentialOptsToJSONTyped, type AzureKeyVaultSetting, AzureKeyVaultSettingFromJSON, AzureKeyVaultSettingFromJSONTyped, AzureKeyVaultSettingToJSON, AzureKeyVaultSettingToJSONTyped, type CoseKey, CoseKeyFromJSON, CoseKeyFromJSONTyped, type CoseKeyPair, CoseKeyPairFromJSON, CoseKeyPairFromJSONTyped, CoseKeyPairToJSON, CoseKeyPairToJSONTyped, CoseKeyToJSON, CoseKeyToJSONTyped, CoseKeyType, CoseKeyTypeFromJSON, CoseKeyTypeFromJSONTyped, CoseKeyTypeToJSON, CoseKeyTypeToJSONTyped, type CreateKeyProvider, CreateKeyProviderFromJSON, CreateKeyProviderFromJSONTyped, CreateKeyProviderToJSON, CreateKeyProviderToJSONTyped, type CreateRawSignature, CreateRawSignatureFromJSON, CreateRawSignatureFromJSONTyped, type CreateRawSignatureResponse, CreateRawSignatureResponseFromJSON, CreateRawSignatureResponseFromJSONTyped, CreateRawSignatureResponseToJSON, CreateRawSignatureResponseToJSONTyped, CreateRawSignatureToJSON, CreateRawSignatureToJSONTyped, type CreateSimpleSignature, CreateSimpleSignatureFromJSON, CreateSimpleSignatureFromJSONTyped, CreateSimpleSignatureToJSON, CreateSimpleSignatureToJSONTyped, CryptoAlg, CryptoAlgFromJSON, CryptoAlgFromJSONTyped, CryptoAlgToJSON, CryptoAlgToJSONTyped, Curve, CurveFromJSON, CurveFromJSONTyped, CurveToJSON, CurveToJSONTyped, DigestAlg, DigestAlgFromJSON, DigestAlgFromJSONTyped, DigestAlgToJSON, DigestAlgToJSONTyped, type ErrorResponse, ErrorResponseFromJSON, ErrorResponseFromJSONTyped, ErrorResponseToJSON, ErrorResponseToJSONTyped, type GenerateKey, GenerateKeyFromJSON, GenerateKeyFromJSONTyped, type GenerateKeyGlobal, GenerateKeyGlobalFromJSON, GenerateKeyGlobalFromJSONTyped, GenerateKeyGlobalToJSON, GenerateKeyGlobalToJSONTyped, type GenerateKeyResponse, GenerateKeyResponseFromJSON, GenerateKeyResponseFromJSONTyped, GenerateKeyResponseToJSON, GenerateKeyResponseToJSONTyped, GenerateKeyToJSON, GenerateKeyToJSONTyped, type GetKeyResponse, GetKeyResponseFromJSON, GetKeyResponseFromJSONTyped, GetKeyResponseToJSON, GetKeyResponseToJSONTyped, type IKmsRestClient, type IRequiredContext, IdentifierMethod, IdentifierMethodFromJSON, IdentifierMethodFromJSONTyped, IdentifierMethodToJSON, IdentifierMethodToJSONTyped, type JoseKeyPair, JoseKeyPairFromJSON, JoseKeyPairFromJSONTyped, JoseKeyPairToJSON, JoseKeyPairToJSONTyped, type Jwk, JwkFromJSON, JwkFromJSONTyped, JwkKeyType, JwkKeyTypeFromJSON, JwkKeyTypeFromJSONTyped, JwkKeyTypeToJSON, JwkKeyTypeToJSONTyped, JwkToJSON, JwkToJSONTyped, JwkUse, JwkUseFromJSON, JwkUseFromJSONTyped, JwkUseToJSON, JwkUseToJSONTyped, KeyEncoding, KeyEncodingFromJSON, KeyEncodingFromJSONTyped, KeyEncodingToJSON, KeyEncodingToJSONTyped, type KeyInfo, KeyInfoFromJSON, KeyInfoFromJSONTyped, KeyInfoToJSON, KeyInfoToJSONTyped, KeyOperations, KeyOperationsFromJSON, KeyOperationsFromJSONTyped, KeyOperationsToJSON, KeyOperationsToJSONTyped, type KeyProvider, KeyProviderFromJSON, KeyProviderFromJSONTyped, type KeyProviderResponse, KeyProviderResponseFromJSON, KeyProviderResponseFromJSONTyped, KeyProviderResponseToJSON, KeyProviderResponseToJSONTyped, KeyProviderToJSON, KeyProviderToJSONTyped, KeyProviderType, KeyProviderTypeFromJSON, KeyProviderTypeFromJSONTyped, KeyProviderTypeToJSON, KeyProviderTypeToJSONTyped, type KeyResolver, KeyResolverFromJSON, KeyResolverFromJSONTyped, KeyResolverToJSON, KeyResolverToJSONTyped, KeyType, KeyTypeFromJSON, KeyTypeFromJSONTyped, KeyTypeToJSON, KeyTypeToJSONTyped, KeyVisibility, KeyVisibilityFromJSON, KeyVisibilityFromJSONTyped, KeyVisibilityToJSON, KeyVisibilityToJSONTyped, type KmsClientCreateRawSignatureArgs, type KmsClientDeleteKeyArgs, type KmsClientGenerateKeyArgs, type KmsClientGetKeyArgs, type KmsClientGetKeyProviderArgs, type KmsClientIsValidRawSignatureArgs, type KmsClientListKeyProvidersArgs, type KmsClientListKeysArgs, type KmsClientListResolversArgs, type KmsClientProviderDeleteKeyArgs, type KmsClientProviderGenerateKeyArgs, type KmsClientProviderGetKeyArgs, type KmsClientProviderListKeysArgs, type KmsClientProviderStoreKeyArgs, type KmsClientResolveKeyArgs, type KmsClientStoreKeyArgs, KmsRestClient, type KmsRestClientArgs, type ListKeyProvidersResponse, ListKeyProvidersResponseFromJSON, ListKeyProvidersResponseFromJSONTyped, ListKeyProvidersResponseToJSON, ListKeyProvidersResponseToJSONTyped, type ListKeysResponse, ListKeysResponseFromJSON, ListKeysResponseFromJSONTyped, ListKeysResponseToJSON, ListKeysResponseToJSONTyped, type ListResolversResponse, ListResolversResponseFromJSON, ListResolversResponseFromJSONTyped, ListResolversResponseToJSON, ListResolversResponseToJSONTyped, LookupMode, LookupModeFromJSON, LookupModeFromJSONTyped, LookupModeToJSON, LookupModeToJSONTyped, type ManagedKeyInfo, ManagedKeyInfoFromJSON, ManagedKeyInfoFromJSONTyped, ManagedKeyInfoToJSON, ManagedKeyInfoToJSONTyped, type ManagedKeyPair, ManagedKeyPairFromJSON, ManagedKeyPairFromJSONTyped, ManagedKeyPairToJSON, ManagedKeyPairToJSONTyped, MaskGenFunction, MaskGenFunctionFromJSON, MaskGenFunctionFromJSONTyped, MaskGenFunctionToJSON, MaskGenFunctionToJSONTyped, type ProviderCapabilities, ProviderCapabilitiesFromJSON, ProviderCapabilitiesFromJSONTyped, ProviderCapabilitiesToJSON, ProviderCapabilitiesToJSONTyped, type ResolvePublicKey, ResolvePublicKeyFromJSON, ResolvePublicKeyFromJSONTyped, ResolvePublicKeyToJSON, ResolvePublicKeyToJSONTyped, type ResolvedKeyInfo, ResolvedKeyInfoFromJSON, ResolvedKeyInfoFromJSONTyped, ResolvedKeyInfoToJSON, ResolvedKeyInfoToJSONTyped, type Resolver, ResolverFromJSON, ResolverFromJSONTyped, ResolverToJSON, ResolverToJSONTyped, type RestClientAuthenticationOpts, type SignInput, SignInputFromJSON, SignInputFromJSONTyped, SignInputModeEnum, SignInputToJSON, SignInputToJSONTyped, type SignOutput, SignOutputFromJSON, SignOutputFromJSONTyped, SignOutputToJSON, SignOutputToJSONTyped, type Signature, SignatureAlgorithm, SignatureAlgorithmFromJSON, SignatureAlgorithmFromJSONTyped, SignatureAlgorithmToJSON, SignatureAlgorithmToJSONTyped, SignatureFromJSON, SignatureFromJSONTyped, SignatureToJSON, SignatureToJSONTyped, type StoreKey, StoreKeyFromJSON, StoreKeyFromJSONTyped, type StoreKeyResponse, StoreKeyResponseFromJSON, StoreKeyResponseFromJSONTyped, StoreKeyResponseToJSON, StoreKeyResponseToJSONTyped, StoreKeyToJSON, StoreKeyToJSONTyped, type UpdateKeyProvider, UpdateKeyProviderFromJSON, UpdateKeyProviderFromJSONTyped, UpdateKeyProviderToJSON, UpdateKeyProviderToJSONTyped, type VerifyRawSignature, VerifyRawSignatureFromJSON, VerifyRawSignatureFromJSONTyped, type VerifyRawSignatureResponse, VerifyRawSignatureResponseFromJSON, VerifyRawSignatureResponseFromJSONTyped, VerifyRawSignatureResponseToJSON, VerifyRawSignatureResponseToJSONTyped, VerifyRawSignatureToJSON, VerifyRawSignatureToJSONTyped, type VerifySimpleSignature, VerifySimpleSignatureFromJSON, VerifySimpleSignatureFromJSONTyped, VerifySimpleSignatureToJSON, VerifySimpleSignatureToJSONTyped, instanceOfAwsAssumeRoleCredentials, instanceOfAwsClientConfiguration, instanceOfAwsKmsSetting, instanceOfAwsStaticCredentials, instanceOfAwsWebIdentityTokenCredentials, instanceOfAzureClientSecretCredentialOpts, instanceOfAzureCredentialOpts, instanceOfAzureKeyVaultSetting, instanceOfCoseKey, instanceOfCoseKeyPair, instanceOfCoseKeyType, instanceOfCreateKeyProvider, instanceOfCreateRawSignature, instanceOfCreateRawSignatureResponse, instanceOfCreateSimpleSignature, instanceOfCryptoAlg, instanceOfCurve, instanceOfDigestAlg, instanceOfErrorResponse, instanceOfGenerateKey, instanceOfGenerateKeyGlobal, instanceOfGenerateKeyResponse, instanceOfGetKeyResponse, instanceOfIdentifierMethod, instanceOfJoseKeyPair, instanceOfJwk, instanceOfJwkKeyType, instanceOfJwkUse, instanceOfKeyEncoding, instanceOfKeyInfo, instanceOfKeyOperations, instanceOfKeyProvider, instanceOfKeyProviderResponse, instanceOfKeyProviderType, instanceOfKeyResolver, instanceOfKeyType, instanceOfKeyVisibility, instanceOfListKeyProvidersResponse, instanceOfListKeysResponse, instanceOfListResolversResponse, instanceOfLookupMode, instanceOfManagedKeyInfo, instanceOfManagedKeyPair, instanceOfMaskGenFunction, instanceOfProviderCapabilities, instanceOfResolvePublicKey, instanceOfResolvedKeyInfo, instanceOfResolver, instanceOfSignInput, instanceOfSignOutput, instanceOfSignature, instanceOfSignatureAlgorithm, instanceOfStoreKey, instanceOfStoreKeyResponse, instanceOfUpdateKeyProvider, instanceOfVerifyRawSignature, instanceOfVerifyRawSignatureResponse, instanceOfVerifySimpleSignature,
|
|
3949
|
+
export { type AwsAssumeRoleCredentials, AwsAssumeRoleCredentialsFromJSON, AwsAssumeRoleCredentialsFromJSONTyped, AwsAssumeRoleCredentialsToJSON, AwsAssumeRoleCredentialsToJSONTyped, type AwsClientConfiguration, AwsClientConfigurationFromJSON, AwsClientConfigurationFromJSONTyped, AwsClientConfigurationToJSON, AwsClientConfigurationToJSONTyped, type AwsKmsSetting, AwsKmsSettingFromJSON, AwsKmsSettingFromJSONTyped, AwsKmsSettingToJSON, AwsKmsSettingToJSONTyped, type AwsStaticCredentials, AwsStaticCredentialsFromJSON, AwsStaticCredentialsFromJSONTyped, AwsStaticCredentialsToJSON, AwsStaticCredentialsToJSONTyped, type AwsWebIdentityTokenCredentials, AwsWebIdentityTokenCredentialsFromJSON, AwsWebIdentityTokenCredentialsFromJSONTyped, AwsWebIdentityTokenCredentialsToJSON, AwsWebIdentityTokenCredentialsToJSONTyped, type AzureClientSecretCredentialOpts, AzureClientSecretCredentialOptsFromJSON, AzureClientSecretCredentialOptsFromJSONTyped, AzureClientSecretCredentialOptsToJSON, AzureClientSecretCredentialOptsToJSONTyped, type AzureCredentialOpts, AzureCredentialOptsFromJSON, AzureCredentialOptsFromJSONTyped, AzureCredentialOptsToJSON, AzureCredentialOptsToJSONTyped, type AzureKeyVaultSetting, AzureKeyVaultSettingFromJSON, AzureKeyVaultSettingFromJSONTyped, AzureKeyVaultSettingToJSON, AzureKeyVaultSettingToJSONTyped, type BaseArgs, type CoseKey, CoseKeyFromJSON, CoseKeyFromJSONTyped, type CoseKeyPair, CoseKeyPairFromJSON, CoseKeyPairFromJSONTyped, CoseKeyPairToJSON, CoseKeyPairToJSONTyped, CoseKeyToJSON, CoseKeyToJSONTyped, CoseKeyType, CoseKeyTypeFromJSON, CoseKeyTypeFromJSONTyped, CoseKeyTypeToJSON, CoseKeyTypeToJSONTyped, type CreateKeyProvider, CreateKeyProviderFromJSON, CreateKeyProviderFromJSONTyped, CreateKeyProviderToJSON, CreateKeyProviderToJSONTyped, type CreateRawSignature, CreateRawSignatureFromJSON, CreateRawSignatureFromJSONTyped, type CreateRawSignatureResponse, CreateRawSignatureResponseFromJSON, CreateRawSignatureResponseFromJSONTyped, CreateRawSignatureResponseToJSON, CreateRawSignatureResponseToJSONTyped, CreateRawSignatureToJSON, CreateRawSignatureToJSONTyped, type CreateSimpleSignature, CreateSimpleSignatureFromJSON, CreateSimpleSignatureFromJSONTyped, CreateSimpleSignatureToJSON, CreateSimpleSignatureToJSONTyped, CryptoAlg, CryptoAlgFromJSON, CryptoAlgFromJSONTyped, CryptoAlgToJSON, CryptoAlgToJSONTyped, Curve, CurveFromJSON, CurveFromJSONTyped, CurveToJSON, CurveToJSONTyped, DigestAlg, DigestAlgFromJSON, DigestAlgFromJSONTyped, DigestAlgToJSON, DigestAlgToJSONTyped, type ErrorResponse, ErrorResponseFromJSON, ErrorResponseFromJSONTyped, ErrorResponseToJSON, ErrorResponseToJSONTyped, type GenerateKey, GenerateKeyFromJSON, GenerateKeyFromJSONTyped, type GenerateKeyGlobal, GenerateKeyGlobalFromJSON, GenerateKeyGlobalFromJSONTyped, GenerateKeyGlobalToJSON, GenerateKeyGlobalToJSONTyped, type GenerateKeyResponse, GenerateKeyResponseFromJSON, GenerateKeyResponseFromJSONTyped, GenerateKeyResponseToJSON, GenerateKeyResponseToJSONTyped, GenerateKeyToJSON, GenerateKeyToJSONTyped, type GetKeyResponse, GetKeyResponseFromJSON, GetKeyResponseFromJSONTyped, GetKeyResponseToJSON, GetKeyResponseToJSONTyped, type IKmsRestClient, type IRequiredContext, IdentifierMethod, IdentifierMethodFromJSON, IdentifierMethodFromJSONTyped, IdentifierMethodToJSON, IdentifierMethodToJSONTyped, type JoseKeyPair, JoseKeyPairFromJSON, JoseKeyPairFromJSONTyped, JoseKeyPairToJSON, JoseKeyPairToJSONTyped, type Jwk, JwkFromJSON, JwkFromJSONTyped, JwkKeyType, JwkKeyTypeFromJSON, JwkKeyTypeFromJSONTyped, JwkKeyTypeToJSON, JwkKeyTypeToJSONTyped, JwkToJSON, JwkToJSONTyped, JwkUse, JwkUseFromJSON, JwkUseFromJSONTyped, JwkUseToJSON, JwkUseToJSONTyped, KeyEncoding, KeyEncodingFromJSON, KeyEncodingFromJSONTyped, KeyEncodingToJSON, KeyEncodingToJSONTyped, type KeyInfo, KeyInfoFromJSON, KeyInfoFromJSONTyped, KeyInfoToJSON, KeyInfoToJSONTyped, KeyOperations, KeyOperationsFromJSON, KeyOperationsFromJSONTyped, KeyOperationsToJSON, KeyOperationsToJSONTyped, type KeyProvider, KeyProviderFromJSON, KeyProviderFromJSONTyped, type KeyProviderResponse, KeyProviderResponseFromJSON, KeyProviderResponseFromJSONTyped, KeyProviderResponseToJSON, KeyProviderResponseToJSONTyped, KeyProviderToJSON, KeyProviderToJSONTyped, KeyProviderType, KeyProviderTypeFromJSON, KeyProviderTypeFromJSONTyped, KeyProviderTypeToJSON, KeyProviderTypeToJSONTyped, type KeyResolver, KeyResolverFromJSON, KeyResolverFromJSONTyped, KeyResolverToJSON, KeyResolverToJSONTyped, KeyType, KeyTypeFromJSON, KeyTypeFromJSONTyped, KeyTypeToJSON, KeyTypeToJSONTyped, KeyVisibility, KeyVisibilityFromJSON, KeyVisibilityFromJSONTyped, KeyVisibilityToJSON, KeyVisibilityToJSONTyped, type KmsClientCreateRawSignatureArgs, type KmsClientDeleteKeyArgs, type KmsClientGenerateKeyArgs, type KmsClientGetKeyArgs, type KmsClientGetKeyProviderArgs, type KmsClientGetResolverArgs, type KmsClientIsValidRawSignatureArgs, type KmsClientListKeyProvidersArgs, type KmsClientListKeysArgs, type KmsClientListResolversArgs, type KmsClientProviderDeleteKeyArgs, type KmsClientProviderGenerateKeyArgs, type KmsClientProviderGetKeyArgs, type KmsClientProviderListKeysArgs, type KmsClientProviderStoreKeyArgs, type KmsClientResolveKeyArgs, type KmsClientStoreKeyArgs, KmsRestClient, type KmsRestClientArgs, type ListKeyProvidersResponse, ListKeyProvidersResponseFromJSON, ListKeyProvidersResponseFromJSONTyped, ListKeyProvidersResponseToJSON, ListKeyProvidersResponseToJSONTyped, type ListKeysResponse, ListKeysResponseFromJSON, ListKeysResponseFromJSONTyped, ListKeysResponseToJSON, ListKeysResponseToJSONTyped, type ListResolversResponse, ListResolversResponseFromJSON, ListResolversResponseFromJSONTyped, ListResolversResponseToJSON, ListResolversResponseToJSONTyped, LookupMode, LookupModeFromJSON, LookupModeFromJSONTyped, LookupModeToJSON, LookupModeToJSONTyped, type ManagedKeyInfo, ManagedKeyInfoFromJSON, ManagedKeyInfoFromJSONTyped, ManagedKeyInfoToJSON, ManagedKeyInfoToJSONTyped, type ManagedKeyPair, ManagedKeyPairFromJSON, ManagedKeyPairFromJSONTyped, ManagedKeyPairToJSON, ManagedKeyPairToJSONTyped, MaskGenFunction, MaskGenFunctionFromJSON, MaskGenFunctionFromJSONTyped, MaskGenFunctionToJSON, MaskGenFunctionToJSONTyped, type OptionalProviderContextArgs, type ProviderCapabilities, ProviderCapabilitiesFromJSON, ProviderCapabilitiesFromJSONTyped, ProviderCapabilitiesToJSON, ProviderCapabilitiesToJSONTyped, type ProviderContextArgs, type ResolvePublicKey, ResolvePublicKeyFromJSON, ResolvePublicKeyFromJSONTyped, ResolvePublicKeyToJSON, ResolvePublicKeyToJSONTyped, type ResolvedKeyInfo, ResolvedKeyInfoFromJSON, ResolvedKeyInfoFromJSONTyped, ResolvedKeyInfoToJSON, ResolvedKeyInfoToJSONTyped, type Resolver, ResolverFromJSON, ResolverFromJSONTyped, ResolverToJSON, ResolverToJSONTyped, type RestClientAuthenticationOpts, type SignInput, SignInputFromJSON, SignInputFromJSONTyped, SignInputModeEnum, SignInputToJSON, SignInputToJSONTyped, type SignOutput, SignOutputFromJSON, SignOutputFromJSONTyped, SignOutputToJSON, SignOutputToJSONTyped, type Signature, SignatureAlgorithm, SignatureAlgorithmFromJSON, SignatureAlgorithmFromJSONTyped, SignatureAlgorithmToJSON, SignatureAlgorithmToJSONTyped, SignatureFromJSON, SignatureFromJSONTyped, SignatureToJSON, SignatureToJSONTyped, type StoreKey, StoreKeyFromJSON, StoreKeyFromJSONTyped, type StoreKeyResponse, StoreKeyResponseFromJSON, StoreKeyResponseFromJSONTyped, StoreKeyResponseToJSON, StoreKeyResponseToJSONTyped, StoreKeyToJSON, StoreKeyToJSONTyped, type UpdateKeyProvider, UpdateKeyProviderFromJSON, UpdateKeyProviderFromJSONTyped, UpdateKeyProviderToJSON, UpdateKeyProviderToJSONTyped, type VerifyRawSignature, VerifyRawSignatureFromJSON, VerifyRawSignatureFromJSONTyped, type VerifyRawSignatureResponse, VerifyRawSignatureResponseFromJSON, VerifyRawSignatureResponseFromJSONTyped, VerifyRawSignatureResponseToJSON, VerifyRawSignatureResponseToJSONTyped, VerifyRawSignatureToJSON, VerifyRawSignatureToJSONTyped, type VerifySimpleSignature, VerifySimpleSignatureFromJSON, VerifySimpleSignatureFromJSONTyped, VerifySimpleSignatureToJSON, VerifySimpleSignatureToJSONTyped, instanceOfAwsAssumeRoleCredentials, instanceOfAwsClientConfiguration, instanceOfAwsKmsSetting, instanceOfAwsStaticCredentials, instanceOfAwsWebIdentityTokenCredentials, instanceOfAzureClientSecretCredentialOpts, instanceOfAzureCredentialOpts, instanceOfAzureKeyVaultSetting, instanceOfCoseKey, instanceOfCoseKeyPair, instanceOfCoseKeyType, instanceOfCreateKeyProvider, instanceOfCreateRawSignature, instanceOfCreateRawSignatureResponse, instanceOfCreateSimpleSignature, instanceOfCryptoAlg, instanceOfCurve, instanceOfDigestAlg, instanceOfErrorResponse, instanceOfGenerateKey, instanceOfGenerateKeyGlobal, instanceOfGenerateKeyResponse, instanceOfGetKeyResponse, instanceOfIdentifierMethod, instanceOfJoseKeyPair, instanceOfJwk, instanceOfJwkKeyType, instanceOfJwkUse, instanceOfKeyEncoding, instanceOfKeyInfo, instanceOfKeyOperations, instanceOfKeyProvider, instanceOfKeyProviderResponse, instanceOfKeyProviderType, instanceOfKeyResolver, instanceOfKeyType, instanceOfKeyVisibility, instanceOfListKeyProvidersResponse, instanceOfListKeysResponse, instanceOfListResolversResponse, instanceOfLookupMode, instanceOfManagedKeyInfo, instanceOfManagedKeyPair, instanceOfMaskGenFunction, instanceOfProviderCapabilities, instanceOfResolvePublicKey, instanceOfResolvedKeyInfo, instanceOfResolver, instanceOfSignInput, instanceOfSignOutput, instanceOfSignature, instanceOfSignatureAlgorithm, instanceOfStoreKey, instanceOfStoreKeyResponse, instanceOfUpdateKeyProvider, instanceOfVerifyRawSignature, instanceOfVerifyRawSignatureResponse, instanceOfVerifySimpleSignature, plugin_schema as schema };
|
package/dist/index.d.ts
CHANGED
|
@@ -3829,7 +3829,7 @@ declare function VerifySimpleSignatureToJSON(json: any): VerifySimpleSignature;
|
|
|
3829
3829
|
declare function VerifySimpleSignatureToJSONTyped(value?: VerifySimpleSignature | null, ignoreDiscriminator?: boolean): any;
|
|
3830
3830
|
|
|
3831
3831
|
interface IKmsRestClient extends IPluginMethodMap {
|
|
3832
|
-
kmsClientGetResolver(args:
|
|
3832
|
+
kmsClientGetResolver(args: KmsClientGetResolverArgs): Promise<Resolver>;
|
|
3833
3833
|
kmsClientListResolvers(args?: KmsClientListResolversArgs): Promise<ListResolversResponse>;
|
|
3834
3834
|
kmsClientResolveKey(args: KmsClientResolveKeyArgs): Promise<ResolvedKeyInfo>;
|
|
3835
3835
|
kmsClientCreateRawSignature(args: KmsClientCreateRawSignatureArgs): Promise<CreateRawSignatureResponse>;
|
|
@@ -3847,68 +3847,44 @@ interface IKmsRestClient extends IPluginMethodMap {
|
|
|
3847
3847
|
kmsClientProviderGetKey(args: KmsClientProviderGetKeyArgs): Promise<GetKeyResponse>;
|
|
3848
3848
|
kmsClientProviderDeleteKey(args: KmsClientProviderDeleteKeyArgs): Promise<boolean>;
|
|
3849
3849
|
}
|
|
3850
|
-
type
|
|
3850
|
+
type BaseArgs = {
|
|
3851
3851
|
baseUrl?: string;
|
|
3852
|
+
tenantId?: string;
|
|
3853
|
+
userId?: string;
|
|
3852
3854
|
};
|
|
3853
|
-
type
|
|
3854
|
-
|
|
3855
|
+
type OptionalProviderContextArgs = BaseArgs & {
|
|
3856
|
+
providerId?: string;
|
|
3857
|
+
};
|
|
3858
|
+
type ProviderContextArgs = BaseArgs & {
|
|
3859
|
+
providerId: string;
|
|
3860
|
+
};
|
|
3861
|
+
type KmsClientListResolversArgs = BaseArgs;
|
|
3862
|
+
type KmsClientGetResolverArgs = BaseArgs & {
|
|
3855
3863
|
resolverId: string;
|
|
3856
3864
|
};
|
|
3857
|
-
type KmsClientResolveKeyArgs = {
|
|
3858
|
-
baseUrl?: string;
|
|
3865
|
+
type KmsClientResolveKeyArgs = BaseArgs & {
|
|
3859
3866
|
resolverId: String;
|
|
3860
3867
|
} & ResolvePublicKey;
|
|
3861
|
-
type KmsClientCreateRawSignatureArgs =
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
type KmsClientIsValidRawSignatureArgs = {
|
|
3865
|
-
baseUrl?: string;
|
|
3866
|
-
} & VerifyRawSignature;
|
|
3867
|
-
type KmsClientGetKeyArgs = {
|
|
3868
|
-
baseUrl?: string;
|
|
3868
|
+
type KmsClientCreateRawSignatureArgs = BaseArgs & CreateRawSignature;
|
|
3869
|
+
type KmsClientIsValidRawSignatureArgs = BaseArgs & VerifyRawSignature;
|
|
3870
|
+
type KmsClientGetKeyArgs = BaseArgs & OptionalProviderContextArgs & {
|
|
3869
3871
|
aliasOrKid: string;
|
|
3870
3872
|
};
|
|
3871
|
-
type KmsClientListKeysArgs =
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
type KmsClientStoreKeyArgs = {
|
|
3876
|
-
baseUrl?: string;
|
|
3877
|
-
} & StoreKey;
|
|
3878
|
-
type KmsClientGenerateKeyArgs = {
|
|
3879
|
-
baseUrl?: string;
|
|
3880
|
-
} & GenerateKeyGlobal;
|
|
3881
|
-
type KmsClientDeleteKeyArgs = {
|
|
3882
|
-
baseUrl?: string;
|
|
3873
|
+
type KmsClientListKeysArgs = BaseArgs & OptionalProviderContextArgs;
|
|
3874
|
+
type KmsClientStoreKeyArgs = BaseArgs & StoreKey;
|
|
3875
|
+
type KmsClientGenerateKeyArgs = BaseArgs & OptionalProviderContextArgs & GenerateKeyGlobal;
|
|
3876
|
+
type KmsClientDeleteKeyArgs = BaseArgs & OptionalProviderContextArgs & {
|
|
3883
3877
|
aliasOrKid: string;
|
|
3884
3878
|
};
|
|
3885
|
-
type KmsClientGetKeyProviderArgs =
|
|
3886
|
-
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
type
|
|
3890
|
-
|
|
3891
|
-
};
|
|
3892
|
-
type KmsClientProviderListKeysArgs = {
|
|
3893
|
-
baseUrl?: string;
|
|
3894
|
-
providerId: string;
|
|
3895
|
-
};
|
|
3896
|
-
type KmsClientProviderStoreKeyArgs = {
|
|
3897
|
-
baseUrl?: string;
|
|
3898
|
-
providerId: string;
|
|
3899
|
-
} & StoreKey;
|
|
3900
|
-
type KmsClientProviderGenerateKeyArgs = {
|
|
3901
|
-
baseUrl?: string;
|
|
3902
|
-
providerId: string;
|
|
3903
|
-
} & GenerateKey;
|
|
3904
|
-
type KmsClientProviderGetKeyArgs = {
|
|
3905
|
-
baseUrl?: string;
|
|
3906
|
-
providerId: string;
|
|
3879
|
+
type KmsClientGetKeyProviderArgs = BaseArgs & ProviderContextArgs;
|
|
3880
|
+
type KmsClientListKeyProvidersArgs = BaseArgs;
|
|
3881
|
+
type KmsClientProviderListKeysArgs = BaseArgs & ProviderContextArgs;
|
|
3882
|
+
type KmsClientProviderStoreKeyArgs = BaseArgs & ProviderContextArgs & StoreKey;
|
|
3883
|
+
type KmsClientProviderGenerateKeyArgs = BaseArgs & ProviderContextArgs & GenerateKey;
|
|
3884
|
+
type KmsClientProviderGetKeyArgs = BaseArgs & ProviderContextArgs & {
|
|
3907
3885
|
aliasOrKid: string;
|
|
3908
3886
|
};
|
|
3909
|
-
type KmsClientProviderDeleteKeyArgs = {
|
|
3910
|
-
baseUrl?: string;
|
|
3911
|
-
providerId: string;
|
|
3887
|
+
type KmsClientProviderDeleteKeyArgs = BaseArgs & ProviderContextArgs & {
|
|
3912
3888
|
aliasOrKid: string;
|
|
3913
3889
|
};
|
|
3914
3890
|
type RestClientAuthenticationOpts = {
|
|
@@ -3970,4 +3946,4 @@ declare class KmsRestClient implements IAgentPlugin {
|
|
|
3970
3946
|
private handleHttpError;
|
|
3971
3947
|
}
|
|
3972
3948
|
|
|
3973
|
-
export { type AwsAssumeRoleCredentials, AwsAssumeRoleCredentialsFromJSON, AwsAssumeRoleCredentialsFromJSONTyped, AwsAssumeRoleCredentialsToJSON, AwsAssumeRoleCredentialsToJSONTyped, type AwsClientConfiguration, AwsClientConfigurationFromJSON, AwsClientConfigurationFromJSONTyped, AwsClientConfigurationToJSON, AwsClientConfigurationToJSONTyped, type AwsKmsSetting, AwsKmsSettingFromJSON, AwsKmsSettingFromJSONTyped, AwsKmsSettingToJSON, AwsKmsSettingToJSONTyped, type AwsStaticCredentials, AwsStaticCredentialsFromJSON, AwsStaticCredentialsFromJSONTyped, AwsStaticCredentialsToJSON, AwsStaticCredentialsToJSONTyped, type AwsWebIdentityTokenCredentials, AwsWebIdentityTokenCredentialsFromJSON, AwsWebIdentityTokenCredentialsFromJSONTyped, AwsWebIdentityTokenCredentialsToJSON, AwsWebIdentityTokenCredentialsToJSONTyped, type AzureClientSecretCredentialOpts, AzureClientSecretCredentialOptsFromJSON, AzureClientSecretCredentialOptsFromJSONTyped, AzureClientSecretCredentialOptsToJSON, AzureClientSecretCredentialOptsToJSONTyped, type AzureCredentialOpts, AzureCredentialOptsFromJSON, AzureCredentialOptsFromJSONTyped, AzureCredentialOptsToJSON, AzureCredentialOptsToJSONTyped, type AzureKeyVaultSetting, AzureKeyVaultSettingFromJSON, AzureKeyVaultSettingFromJSONTyped, AzureKeyVaultSettingToJSON, AzureKeyVaultSettingToJSONTyped, type CoseKey, CoseKeyFromJSON, CoseKeyFromJSONTyped, type CoseKeyPair, CoseKeyPairFromJSON, CoseKeyPairFromJSONTyped, CoseKeyPairToJSON, CoseKeyPairToJSONTyped, CoseKeyToJSON, CoseKeyToJSONTyped, CoseKeyType, CoseKeyTypeFromJSON, CoseKeyTypeFromJSONTyped, CoseKeyTypeToJSON, CoseKeyTypeToJSONTyped, type CreateKeyProvider, CreateKeyProviderFromJSON, CreateKeyProviderFromJSONTyped, CreateKeyProviderToJSON, CreateKeyProviderToJSONTyped, type CreateRawSignature, CreateRawSignatureFromJSON, CreateRawSignatureFromJSONTyped, type CreateRawSignatureResponse, CreateRawSignatureResponseFromJSON, CreateRawSignatureResponseFromJSONTyped, CreateRawSignatureResponseToJSON, CreateRawSignatureResponseToJSONTyped, CreateRawSignatureToJSON, CreateRawSignatureToJSONTyped, type CreateSimpleSignature, CreateSimpleSignatureFromJSON, CreateSimpleSignatureFromJSONTyped, CreateSimpleSignatureToJSON, CreateSimpleSignatureToJSONTyped, CryptoAlg, CryptoAlgFromJSON, CryptoAlgFromJSONTyped, CryptoAlgToJSON, CryptoAlgToJSONTyped, Curve, CurveFromJSON, CurveFromJSONTyped, CurveToJSON, CurveToJSONTyped, DigestAlg, DigestAlgFromJSON, DigestAlgFromJSONTyped, DigestAlgToJSON, DigestAlgToJSONTyped, type ErrorResponse, ErrorResponseFromJSON, ErrorResponseFromJSONTyped, ErrorResponseToJSON, ErrorResponseToJSONTyped, type GenerateKey, GenerateKeyFromJSON, GenerateKeyFromJSONTyped, type GenerateKeyGlobal, GenerateKeyGlobalFromJSON, GenerateKeyGlobalFromJSONTyped, GenerateKeyGlobalToJSON, GenerateKeyGlobalToJSONTyped, type GenerateKeyResponse, GenerateKeyResponseFromJSON, GenerateKeyResponseFromJSONTyped, GenerateKeyResponseToJSON, GenerateKeyResponseToJSONTyped, GenerateKeyToJSON, GenerateKeyToJSONTyped, type GetKeyResponse, GetKeyResponseFromJSON, GetKeyResponseFromJSONTyped, GetKeyResponseToJSON, GetKeyResponseToJSONTyped, type IKmsRestClient, type IRequiredContext, IdentifierMethod, IdentifierMethodFromJSON, IdentifierMethodFromJSONTyped, IdentifierMethodToJSON, IdentifierMethodToJSONTyped, type JoseKeyPair, JoseKeyPairFromJSON, JoseKeyPairFromJSONTyped, JoseKeyPairToJSON, JoseKeyPairToJSONTyped, type Jwk, JwkFromJSON, JwkFromJSONTyped, JwkKeyType, JwkKeyTypeFromJSON, JwkKeyTypeFromJSONTyped, JwkKeyTypeToJSON, JwkKeyTypeToJSONTyped, JwkToJSON, JwkToJSONTyped, JwkUse, JwkUseFromJSON, JwkUseFromJSONTyped, JwkUseToJSON, JwkUseToJSONTyped, KeyEncoding, KeyEncodingFromJSON, KeyEncodingFromJSONTyped, KeyEncodingToJSON, KeyEncodingToJSONTyped, type KeyInfo, KeyInfoFromJSON, KeyInfoFromJSONTyped, KeyInfoToJSON, KeyInfoToJSONTyped, KeyOperations, KeyOperationsFromJSON, KeyOperationsFromJSONTyped, KeyOperationsToJSON, KeyOperationsToJSONTyped, type KeyProvider, KeyProviderFromJSON, KeyProviderFromJSONTyped, type KeyProviderResponse, KeyProviderResponseFromJSON, KeyProviderResponseFromJSONTyped, KeyProviderResponseToJSON, KeyProviderResponseToJSONTyped, KeyProviderToJSON, KeyProviderToJSONTyped, KeyProviderType, KeyProviderTypeFromJSON, KeyProviderTypeFromJSONTyped, KeyProviderTypeToJSON, KeyProviderTypeToJSONTyped, type KeyResolver, KeyResolverFromJSON, KeyResolverFromJSONTyped, KeyResolverToJSON, KeyResolverToJSONTyped, KeyType, KeyTypeFromJSON, KeyTypeFromJSONTyped, KeyTypeToJSON, KeyTypeToJSONTyped, KeyVisibility, KeyVisibilityFromJSON, KeyVisibilityFromJSONTyped, KeyVisibilityToJSON, KeyVisibilityToJSONTyped, type KmsClientCreateRawSignatureArgs, type KmsClientDeleteKeyArgs, type KmsClientGenerateKeyArgs, type KmsClientGetKeyArgs, type KmsClientGetKeyProviderArgs, type KmsClientIsValidRawSignatureArgs, type KmsClientListKeyProvidersArgs, type KmsClientListKeysArgs, type KmsClientListResolversArgs, type KmsClientProviderDeleteKeyArgs, type KmsClientProviderGenerateKeyArgs, type KmsClientProviderGetKeyArgs, type KmsClientProviderListKeysArgs, type KmsClientProviderStoreKeyArgs, type KmsClientResolveKeyArgs, type KmsClientStoreKeyArgs, KmsRestClient, type KmsRestClientArgs, type ListKeyProvidersResponse, ListKeyProvidersResponseFromJSON, ListKeyProvidersResponseFromJSONTyped, ListKeyProvidersResponseToJSON, ListKeyProvidersResponseToJSONTyped, type ListKeysResponse, ListKeysResponseFromJSON, ListKeysResponseFromJSONTyped, ListKeysResponseToJSON, ListKeysResponseToJSONTyped, type ListResolversResponse, ListResolversResponseFromJSON, ListResolversResponseFromJSONTyped, ListResolversResponseToJSON, ListResolversResponseToJSONTyped, LookupMode, LookupModeFromJSON, LookupModeFromJSONTyped, LookupModeToJSON, LookupModeToJSONTyped, type ManagedKeyInfo, ManagedKeyInfoFromJSON, ManagedKeyInfoFromJSONTyped, ManagedKeyInfoToJSON, ManagedKeyInfoToJSONTyped, type ManagedKeyPair, ManagedKeyPairFromJSON, ManagedKeyPairFromJSONTyped, ManagedKeyPairToJSON, ManagedKeyPairToJSONTyped, MaskGenFunction, MaskGenFunctionFromJSON, MaskGenFunctionFromJSONTyped, MaskGenFunctionToJSON, MaskGenFunctionToJSONTyped, type ProviderCapabilities, ProviderCapabilitiesFromJSON, ProviderCapabilitiesFromJSONTyped, ProviderCapabilitiesToJSON, ProviderCapabilitiesToJSONTyped, type ResolvePublicKey, ResolvePublicKeyFromJSON, ResolvePublicKeyFromJSONTyped, ResolvePublicKeyToJSON, ResolvePublicKeyToJSONTyped, type ResolvedKeyInfo, ResolvedKeyInfoFromJSON, ResolvedKeyInfoFromJSONTyped, ResolvedKeyInfoToJSON, ResolvedKeyInfoToJSONTyped, type Resolver, ResolverFromJSON, ResolverFromJSONTyped, ResolverToJSON, ResolverToJSONTyped, type RestClientAuthenticationOpts, type SignInput, SignInputFromJSON, SignInputFromJSONTyped, SignInputModeEnum, SignInputToJSON, SignInputToJSONTyped, type SignOutput, SignOutputFromJSON, SignOutputFromJSONTyped, SignOutputToJSON, SignOutputToJSONTyped, type Signature, SignatureAlgorithm, SignatureAlgorithmFromJSON, SignatureAlgorithmFromJSONTyped, SignatureAlgorithmToJSON, SignatureAlgorithmToJSONTyped, SignatureFromJSON, SignatureFromJSONTyped, SignatureToJSON, SignatureToJSONTyped, type StoreKey, StoreKeyFromJSON, StoreKeyFromJSONTyped, type StoreKeyResponse, StoreKeyResponseFromJSON, StoreKeyResponseFromJSONTyped, StoreKeyResponseToJSON, StoreKeyResponseToJSONTyped, StoreKeyToJSON, StoreKeyToJSONTyped, type UpdateKeyProvider, UpdateKeyProviderFromJSON, UpdateKeyProviderFromJSONTyped, UpdateKeyProviderToJSON, UpdateKeyProviderToJSONTyped, type VerifyRawSignature, VerifyRawSignatureFromJSON, VerifyRawSignatureFromJSONTyped, type VerifyRawSignatureResponse, VerifyRawSignatureResponseFromJSON, VerifyRawSignatureResponseFromJSONTyped, VerifyRawSignatureResponseToJSON, VerifyRawSignatureResponseToJSONTyped, VerifyRawSignatureToJSON, VerifyRawSignatureToJSONTyped, type VerifySimpleSignature, VerifySimpleSignatureFromJSON, VerifySimpleSignatureFromJSONTyped, VerifySimpleSignatureToJSON, VerifySimpleSignatureToJSONTyped, instanceOfAwsAssumeRoleCredentials, instanceOfAwsClientConfiguration, instanceOfAwsKmsSetting, instanceOfAwsStaticCredentials, instanceOfAwsWebIdentityTokenCredentials, instanceOfAzureClientSecretCredentialOpts, instanceOfAzureCredentialOpts, instanceOfAzureKeyVaultSetting, instanceOfCoseKey, instanceOfCoseKeyPair, instanceOfCoseKeyType, instanceOfCreateKeyProvider, instanceOfCreateRawSignature, instanceOfCreateRawSignatureResponse, instanceOfCreateSimpleSignature, instanceOfCryptoAlg, instanceOfCurve, instanceOfDigestAlg, instanceOfErrorResponse, instanceOfGenerateKey, instanceOfGenerateKeyGlobal, instanceOfGenerateKeyResponse, instanceOfGetKeyResponse, instanceOfIdentifierMethod, instanceOfJoseKeyPair, instanceOfJwk, instanceOfJwkKeyType, instanceOfJwkUse, instanceOfKeyEncoding, instanceOfKeyInfo, instanceOfKeyOperations, instanceOfKeyProvider, instanceOfKeyProviderResponse, instanceOfKeyProviderType, instanceOfKeyResolver, instanceOfKeyType, instanceOfKeyVisibility, instanceOfListKeyProvidersResponse, instanceOfListKeysResponse, instanceOfListResolversResponse, instanceOfLookupMode, instanceOfManagedKeyInfo, instanceOfManagedKeyPair, instanceOfMaskGenFunction, instanceOfProviderCapabilities, instanceOfResolvePublicKey, instanceOfResolvedKeyInfo, instanceOfResolver, instanceOfSignInput, instanceOfSignOutput, instanceOfSignature, instanceOfSignatureAlgorithm, instanceOfStoreKey, instanceOfStoreKeyResponse, instanceOfUpdateKeyProvider, instanceOfVerifyRawSignature, instanceOfVerifyRawSignatureResponse, instanceOfVerifySimpleSignature,
|
|
3949
|
+
export { type AwsAssumeRoleCredentials, AwsAssumeRoleCredentialsFromJSON, AwsAssumeRoleCredentialsFromJSONTyped, AwsAssumeRoleCredentialsToJSON, AwsAssumeRoleCredentialsToJSONTyped, type AwsClientConfiguration, AwsClientConfigurationFromJSON, AwsClientConfigurationFromJSONTyped, AwsClientConfigurationToJSON, AwsClientConfigurationToJSONTyped, type AwsKmsSetting, AwsKmsSettingFromJSON, AwsKmsSettingFromJSONTyped, AwsKmsSettingToJSON, AwsKmsSettingToJSONTyped, type AwsStaticCredentials, AwsStaticCredentialsFromJSON, AwsStaticCredentialsFromJSONTyped, AwsStaticCredentialsToJSON, AwsStaticCredentialsToJSONTyped, type AwsWebIdentityTokenCredentials, AwsWebIdentityTokenCredentialsFromJSON, AwsWebIdentityTokenCredentialsFromJSONTyped, AwsWebIdentityTokenCredentialsToJSON, AwsWebIdentityTokenCredentialsToJSONTyped, type AzureClientSecretCredentialOpts, AzureClientSecretCredentialOptsFromJSON, AzureClientSecretCredentialOptsFromJSONTyped, AzureClientSecretCredentialOptsToJSON, AzureClientSecretCredentialOptsToJSONTyped, type AzureCredentialOpts, AzureCredentialOptsFromJSON, AzureCredentialOptsFromJSONTyped, AzureCredentialOptsToJSON, AzureCredentialOptsToJSONTyped, type AzureKeyVaultSetting, AzureKeyVaultSettingFromJSON, AzureKeyVaultSettingFromJSONTyped, AzureKeyVaultSettingToJSON, AzureKeyVaultSettingToJSONTyped, type BaseArgs, type CoseKey, CoseKeyFromJSON, CoseKeyFromJSONTyped, type CoseKeyPair, CoseKeyPairFromJSON, CoseKeyPairFromJSONTyped, CoseKeyPairToJSON, CoseKeyPairToJSONTyped, CoseKeyToJSON, CoseKeyToJSONTyped, CoseKeyType, CoseKeyTypeFromJSON, CoseKeyTypeFromJSONTyped, CoseKeyTypeToJSON, CoseKeyTypeToJSONTyped, type CreateKeyProvider, CreateKeyProviderFromJSON, CreateKeyProviderFromJSONTyped, CreateKeyProviderToJSON, CreateKeyProviderToJSONTyped, type CreateRawSignature, CreateRawSignatureFromJSON, CreateRawSignatureFromJSONTyped, type CreateRawSignatureResponse, CreateRawSignatureResponseFromJSON, CreateRawSignatureResponseFromJSONTyped, CreateRawSignatureResponseToJSON, CreateRawSignatureResponseToJSONTyped, CreateRawSignatureToJSON, CreateRawSignatureToJSONTyped, type CreateSimpleSignature, CreateSimpleSignatureFromJSON, CreateSimpleSignatureFromJSONTyped, CreateSimpleSignatureToJSON, CreateSimpleSignatureToJSONTyped, CryptoAlg, CryptoAlgFromJSON, CryptoAlgFromJSONTyped, CryptoAlgToJSON, CryptoAlgToJSONTyped, Curve, CurveFromJSON, CurveFromJSONTyped, CurveToJSON, CurveToJSONTyped, DigestAlg, DigestAlgFromJSON, DigestAlgFromJSONTyped, DigestAlgToJSON, DigestAlgToJSONTyped, type ErrorResponse, ErrorResponseFromJSON, ErrorResponseFromJSONTyped, ErrorResponseToJSON, ErrorResponseToJSONTyped, type GenerateKey, GenerateKeyFromJSON, GenerateKeyFromJSONTyped, type GenerateKeyGlobal, GenerateKeyGlobalFromJSON, GenerateKeyGlobalFromJSONTyped, GenerateKeyGlobalToJSON, GenerateKeyGlobalToJSONTyped, type GenerateKeyResponse, GenerateKeyResponseFromJSON, GenerateKeyResponseFromJSONTyped, GenerateKeyResponseToJSON, GenerateKeyResponseToJSONTyped, GenerateKeyToJSON, GenerateKeyToJSONTyped, type GetKeyResponse, GetKeyResponseFromJSON, GetKeyResponseFromJSONTyped, GetKeyResponseToJSON, GetKeyResponseToJSONTyped, type IKmsRestClient, type IRequiredContext, IdentifierMethod, IdentifierMethodFromJSON, IdentifierMethodFromJSONTyped, IdentifierMethodToJSON, IdentifierMethodToJSONTyped, type JoseKeyPair, JoseKeyPairFromJSON, JoseKeyPairFromJSONTyped, JoseKeyPairToJSON, JoseKeyPairToJSONTyped, type Jwk, JwkFromJSON, JwkFromJSONTyped, JwkKeyType, JwkKeyTypeFromJSON, JwkKeyTypeFromJSONTyped, JwkKeyTypeToJSON, JwkKeyTypeToJSONTyped, JwkToJSON, JwkToJSONTyped, JwkUse, JwkUseFromJSON, JwkUseFromJSONTyped, JwkUseToJSON, JwkUseToJSONTyped, KeyEncoding, KeyEncodingFromJSON, KeyEncodingFromJSONTyped, KeyEncodingToJSON, KeyEncodingToJSONTyped, type KeyInfo, KeyInfoFromJSON, KeyInfoFromJSONTyped, KeyInfoToJSON, KeyInfoToJSONTyped, KeyOperations, KeyOperationsFromJSON, KeyOperationsFromJSONTyped, KeyOperationsToJSON, KeyOperationsToJSONTyped, type KeyProvider, KeyProviderFromJSON, KeyProviderFromJSONTyped, type KeyProviderResponse, KeyProviderResponseFromJSON, KeyProviderResponseFromJSONTyped, KeyProviderResponseToJSON, KeyProviderResponseToJSONTyped, KeyProviderToJSON, KeyProviderToJSONTyped, KeyProviderType, KeyProviderTypeFromJSON, KeyProviderTypeFromJSONTyped, KeyProviderTypeToJSON, KeyProviderTypeToJSONTyped, type KeyResolver, KeyResolverFromJSON, KeyResolverFromJSONTyped, KeyResolverToJSON, KeyResolverToJSONTyped, KeyType, KeyTypeFromJSON, KeyTypeFromJSONTyped, KeyTypeToJSON, KeyTypeToJSONTyped, KeyVisibility, KeyVisibilityFromJSON, KeyVisibilityFromJSONTyped, KeyVisibilityToJSON, KeyVisibilityToJSONTyped, type KmsClientCreateRawSignatureArgs, type KmsClientDeleteKeyArgs, type KmsClientGenerateKeyArgs, type KmsClientGetKeyArgs, type KmsClientGetKeyProviderArgs, type KmsClientGetResolverArgs, type KmsClientIsValidRawSignatureArgs, type KmsClientListKeyProvidersArgs, type KmsClientListKeysArgs, type KmsClientListResolversArgs, type KmsClientProviderDeleteKeyArgs, type KmsClientProviderGenerateKeyArgs, type KmsClientProviderGetKeyArgs, type KmsClientProviderListKeysArgs, type KmsClientProviderStoreKeyArgs, type KmsClientResolveKeyArgs, type KmsClientStoreKeyArgs, KmsRestClient, type KmsRestClientArgs, type ListKeyProvidersResponse, ListKeyProvidersResponseFromJSON, ListKeyProvidersResponseFromJSONTyped, ListKeyProvidersResponseToJSON, ListKeyProvidersResponseToJSONTyped, type ListKeysResponse, ListKeysResponseFromJSON, ListKeysResponseFromJSONTyped, ListKeysResponseToJSON, ListKeysResponseToJSONTyped, type ListResolversResponse, ListResolversResponseFromJSON, ListResolversResponseFromJSONTyped, ListResolversResponseToJSON, ListResolversResponseToJSONTyped, LookupMode, LookupModeFromJSON, LookupModeFromJSONTyped, LookupModeToJSON, LookupModeToJSONTyped, type ManagedKeyInfo, ManagedKeyInfoFromJSON, ManagedKeyInfoFromJSONTyped, ManagedKeyInfoToJSON, ManagedKeyInfoToJSONTyped, type ManagedKeyPair, ManagedKeyPairFromJSON, ManagedKeyPairFromJSONTyped, ManagedKeyPairToJSON, ManagedKeyPairToJSONTyped, MaskGenFunction, MaskGenFunctionFromJSON, MaskGenFunctionFromJSONTyped, MaskGenFunctionToJSON, MaskGenFunctionToJSONTyped, type OptionalProviderContextArgs, type ProviderCapabilities, ProviderCapabilitiesFromJSON, ProviderCapabilitiesFromJSONTyped, ProviderCapabilitiesToJSON, ProviderCapabilitiesToJSONTyped, type ProviderContextArgs, type ResolvePublicKey, ResolvePublicKeyFromJSON, ResolvePublicKeyFromJSONTyped, ResolvePublicKeyToJSON, ResolvePublicKeyToJSONTyped, type ResolvedKeyInfo, ResolvedKeyInfoFromJSON, ResolvedKeyInfoFromJSONTyped, ResolvedKeyInfoToJSON, ResolvedKeyInfoToJSONTyped, type Resolver, ResolverFromJSON, ResolverFromJSONTyped, ResolverToJSON, ResolverToJSONTyped, type RestClientAuthenticationOpts, type SignInput, SignInputFromJSON, SignInputFromJSONTyped, SignInputModeEnum, SignInputToJSON, SignInputToJSONTyped, type SignOutput, SignOutputFromJSON, SignOutputFromJSONTyped, SignOutputToJSON, SignOutputToJSONTyped, type Signature, SignatureAlgorithm, SignatureAlgorithmFromJSON, SignatureAlgorithmFromJSONTyped, SignatureAlgorithmToJSON, SignatureAlgorithmToJSONTyped, SignatureFromJSON, SignatureFromJSONTyped, SignatureToJSON, SignatureToJSONTyped, type StoreKey, StoreKeyFromJSON, StoreKeyFromJSONTyped, type StoreKeyResponse, StoreKeyResponseFromJSON, StoreKeyResponseFromJSONTyped, StoreKeyResponseToJSON, StoreKeyResponseToJSONTyped, StoreKeyToJSON, StoreKeyToJSONTyped, type UpdateKeyProvider, UpdateKeyProviderFromJSON, UpdateKeyProviderFromJSONTyped, UpdateKeyProviderToJSON, UpdateKeyProviderToJSONTyped, type VerifyRawSignature, VerifyRawSignatureFromJSON, VerifyRawSignatureFromJSONTyped, type VerifyRawSignatureResponse, VerifyRawSignatureResponseFromJSON, VerifyRawSignatureResponseFromJSONTyped, VerifyRawSignatureResponseToJSON, VerifyRawSignatureResponseToJSONTyped, VerifyRawSignatureToJSON, VerifyRawSignatureToJSONTyped, type VerifySimpleSignature, VerifySimpleSignatureFromJSON, VerifySimpleSignatureFromJSONTyped, VerifySimpleSignatureToJSON, VerifySimpleSignatureToJSONTyped, instanceOfAwsAssumeRoleCredentials, instanceOfAwsClientConfiguration, instanceOfAwsKmsSetting, instanceOfAwsStaticCredentials, instanceOfAwsWebIdentityTokenCredentials, instanceOfAzureClientSecretCredentialOpts, instanceOfAzureCredentialOpts, instanceOfAzureKeyVaultSetting, instanceOfCoseKey, instanceOfCoseKeyPair, instanceOfCoseKeyType, instanceOfCreateKeyProvider, instanceOfCreateRawSignature, instanceOfCreateRawSignatureResponse, instanceOfCreateSimpleSignature, instanceOfCryptoAlg, instanceOfCurve, instanceOfDigestAlg, instanceOfErrorResponse, instanceOfGenerateKey, instanceOfGenerateKeyGlobal, instanceOfGenerateKeyResponse, instanceOfGetKeyResponse, instanceOfIdentifierMethod, instanceOfJoseKeyPair, instanceOfJwk, instanceOfJwkKeyType, instanceOfJwkUse, instanceOfKeyEncoding, instanceOfKeyInfo, instanceOfKeyOperations, instanceOfKeyProvider, instanceOfKeyProviderResponse, instanceOfKeyProviderType, instanceOfKeyResolver, instanceOfKeyType, instanceOfKeyVisibility, instanceOfListKeyProvidersResponse, instanceOfListKeysResponse, instanceOfListResolversResponse, instanceOfLookupMode, instanceOfManagedKeyInfo, instanceOfManagedKeyPair, instanceOfMaskGenFunction, instanceOfProviderCapabilities, instanceOfResolvePublicKey, instanceOfResolvedKeyInfo, instanceOfResolver, instanceOfSignInput, instanceOfSignOutput, instanceOfSignature, instanceOfSignatureAlgorithm, instanceOfStoreKey, instanceOfStoreKeyResponse, instanceOfUpdateKeyProvider, instanceOfVerifyRawSignature, instanceOfVerifyRawSignatureResponse, instanceOfVerifySimpleSignature, plugin_schema as schema };
|
package/dist/index.js
CHANGED
|
@@ -3307,7 +3307,11 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3307
3307
|
const baseUrl = this.assertedAgentBaseUrl(args.baseUrl);
|
|
3308
3308
|
const url = _KmsRestClient.urlWithBase(`/resolvers/${args.resolverId}`, baseUrl);
|
|
3309
3309
|
const response = await fetch(url, {
|
|
3310
|
-
method: "GET"
|
|
3310
|
+
method: "GET",
|
|
3311
|
+
headers: await this.createHeaders({
|
|
3312
|
+
tenantId: args.tenantId,
|
|
3313
|
+
userId: args.userId
|
|
3314
|
+
})
|
|
3311
3315
|
});
|
|
3312
3316
|
logger.debug(`get resolver response: ${response}`);
|
|
3313
3317
|
if (!response.ok) {
|
|
@@ -3320,7 +3324,11 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3320
3324
|
const baseUrl = this.assertedAgentBaseUrl(args?.baseUrl);
|
|
3321
3325
|
const url = _KmsRestClient.urlWithBase("/resolvers", baseUrl);
|
|
3322
3326
|
const response = await fetch(url, {
|
|
3323
|
-
method: "GET"
|
|
3327
|
+
method: "GET",
|
|
3328
|
+
headers: await this.createHeaders({
|
|
3329
|
+
tenantId: args?.tenantId,
|
|
3330
|
+
userId: args?.userId
|
|
3331
|
+
})
|
|
3324
3332
|
});
|
|
3325
3333
|
logger.debug(`list resolvers response: ${response}`);
|
|
3326
3334
|
if (!response.ok) {
|
|
@@ -3341,7 +3349,9 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3341
3349
|
const response = await fetch(url, {
|
|
3342
3350
|
method: "POST",
|
|
3343
3351
|
headers: await this.createHeaders({
|
|
3344
|
-
|
|
3352
|
+
contentType: "application/json",
|
|
3353
|
+
tenantId: args.tenantId,
|
|
3354
|
+
userId: args.userId
|
|
3345
3355
|
}),
|
|
3346
3356
|
body: JSON.stringify(ResolvePublicKeyToJSONTyped(body))
|
|
3347
3357
|
});
|
|
@@ -3354,7 +3364,7 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3354
3364
|
/** {@inheritDoc IKmsRestClient.kmsCreateRawSignature} */
|
|
3355
3365
|
async kmsClientCreateRawSignature(args) {
|
|
3356
3366
|
const baseUrl = this.assertedAgentBaseUrl(args.baseUrl);
|
|
3357
|
-
const url = _KmsRestClient.urlWithBase(`/signatures/raw`, baseUrl);
|
|
3367
|
+
const url = _KmsRestClient.urlWithBase(`/signatures/raw/create`, baseUrl);
|
|
3358
3368
|
const body = {
|
|
3359
3369
|
keyInfo: args.keyInfo,
|
|
3360
3370
|
input: args.input
|
|
@@ -3362,7 +3372,9 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3362
3372
|
const response = await fetch(url, {
|
|
3363
3373
|
method: "POST",
|
|
3364
3374
|
headers: await this.createHeaders({
|
|
3365
|
-
|
|
3375
|
+
contentType: "application/json",
|
|
3376
|
+
tenantId: args.tenantId,
|
|
3377
|
+
userId: args.userId
|
|
3366
3378
|
}),
|
|
3367
3379
|
body: JSON.stringify(CreateRawSignatureToJSONTyped(body))
|
|
3368
3380
|
});
|
|
@@ -3384,7 +3396,9 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3384
3396
|
const response = await fetch(url, {
|
|
3385
3397
|
method: "POST",
|
|
3386
3398
|
headers: await this.createHeaders({
|
|
3387
|
-
|
|
3399
|
+
contentType: "application/json",
|
|
3400
|
+
tenantId: args.tenantId,
|
|
3401
|
+
userId: args.userId
|
|
3388
3402
|
}),
|
|
3389
3403
|
body: JSON.stringify(VerifyRawSignatureToJSONTyped(body))
|
|
3390
3404
|
});
|
|
@@ -3399,7 +3413,11 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3399
3413
|
const baseUrl = this.assertedAgentBaseUrl(args.baseUrl);
|
|
3400
3414
|
const url = _KmsRestClient.urlWithBase(`/keys/${args.aliasOrKid}`, baseUrl);
|
|
3401
3415
|
const response = await fetch(url, {
|
|
3402
|
-
method: "GET"
|
|
3416
|
+
method: "GET",
|
|
3417
|
+
headers: await this.createHeaders({
|
|
3418
|
+
tenantId: args.tenantId,
|
|
3419
|
+
userId: args.userId
|
|
3420
|
+
})
|
|
3403
3421
|
});
|
|
3404
3422
|
logger.debug(`get key response: ${response}`);
|
|
3405
3423
|
if (!response.ok) {
|
|
@@ -3416,7 +3434,11 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3416
3434
|
}
|
|
3417
3435
|
});
|
|
3418
3436
|
const response = await fetch(url, {
|
|
3419
|
-
method: "GET"
|
|
3437
|
+
method: "GET",
|
|
3438
|
+
headers: await this.createHeaders({
|
|
3439
|
+
tenantId: args?.tenantId,
|
|
3440
|
+
userId: args?.userId
|
|
3441
|
+
})
|
|
3420
3442
|
});
|
|
3421
3443
|
logger.debug(`list keys response: ${response}`);
|
|
3422
3444
|
if (!response.ok) {
|
|
@@ -3435,7 +3457,9 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3435
3457
|
const response = await fetch(url, {
|
|
3436
3458
|
method: "POST",
|
|
3437
3459
|
headers: await this.createHeaders({
|
|
3438
|
-
|
|
3460
|
+
contentType: "application/json",
|
|
3461
|
+
tenantId: args.tenantId,
|
|
3462
|
+
userId: args.userId
|
|
3439
3463
|
}),
|
|
3440
3464
|
body: JSON.stringify(StoreKeyToJSONTyped(body))
|
|
3441
3465
|
});
|
|
@@ -3458,7 +3482,9 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3458
3482
|
const response = await fetch(url, {
|
|
3459
3483
|
method: "POST",
|
|
3460
3484
|
headers: await this.createHeaders({
|
|
3461
|
-
|
|
3485
|
+
contentType: "application/json",
|
|
3486
|
+
tenantId: args.tenantId,
|
|
3487
|
+
userId: args.userId
|
|
3462
3488
|
}),
|
|
3463
3489
|
body: JSON.stringify(GenerateKeyGlobalToJSONTyped(body))
|
|
3464
3490
|
});
|
|
@@ -3473,7 +3499,11 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3473
3499
|
const baseUrl = this.assertedAgentBaseUrl(args.baseUrl);
|
|
3474
3500
|
const url = _KmsRestClient.urlWithBase(`/keys/${args.aliasOrKid}`, baseUrl);
|
|
3475
3501
|
const response = await fetch(url, {
|
|
3476
|
-
method: "DELETE"
|
|
3502
|
+
method: "DELETE",
|
|
3503
|
+
headers: await this.createHeaders({
|
|
3504
|
+
tenantId: args.tenantId,
|
|
3505
|
+
userId: args.userId
|
|
3506
|
+
})
|
|
3477
3507
|
});
|
|
3478
3508
|
logger.debug(`delete key response: ${response}`);
|
|
3479
3509
|
if (!response.ok) {
|
|
@@ -3486,7 +3516,11 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3486
3516
|
const baseUrl = this.assertedAgentBaseUrl(args.baseUrl);
|
|
3487
3517
|
const url = _KmsRestClient.urlWithBase(`/providers/${args.providerId}`, baseUrl);
|
|
3488
3518
|
const response = await fetch(url, {
|
|
3489
|
-
method: "GET"
|
|
3519
|
+
method: "GET",
|
|
3520
|
+
headers: await this.createHeaders({
|
|
3521
|
+
tenantId: args.tenantId,
|
|
3522
|
+
userId: args.userId
|
|
3523
|
+
})
|
|
3490
3524
|
});
|
|
3491
3525
|
logger.debug(`get provider response: ${response}`);
|
|
3492
3526
|
if (!response.ok) {
|
|
@@ -3499,7 +3533,11 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3499
3533
|
const baseUrl = this.assertedAgentBaseUrl(args?.baseUrl);
|
|
3500
3534
|
const url = _KmsRestClient.urlWithBase("/providers", baseUrl);
|
|
3501
3535
|
const response = await fetch(url, {
|
|
3502
|
-
method: "GET"
|
|
3536
|
+
method: "GET",
|
|
3537
|
+
headers: await this.createHeaders({
|
|
3538
|
+
tenantId: args?.tenantId,
|
|
3539
|
+
userId: args?.userId
|
|
3540
|
+
})
|
|
3503
3541
|
});
|
|
3504
3542
|
logger.debug(`list providers response: ${response}`);
|
|
3505
3543
|
if (!response.ok) {
|
|
@@ -3512,7 +3550,11 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3512
3550
|
const baseUrl = this.assertedAgentBaseUrl(args.baseUrl);
|
|
3513
3551
|
const url = _KmsRestClient.urlWithBase(`/providers/${args.providerId}/keys`, baseUrl);
|
|
3514
3552
|
const response = await fetch(url, {
|
|
3515
|
-
method: "GET"
|
|
3553
|
+
method: "GET",
|
|
3554
|
+
headers: await this.createHeaders({
|
|
3555
|
+
tenantId: args.tenantId,
|
|
3556
|
+
userId: args.userId
|
|
3557
|
+
})
|
|
3516
3558
|
});
|
|
3517
3559
|
logger.debug(`list provider keys response: ${response}`);
|
|
3518
3560
|
if (!response.ok) {
|
|
@@ -3531,7 +3573,9 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3531
3573
|
const response = await fetch(url, {
|
|
3532
3574
|
method: "POST",
|
|
3533
3575
|
headers: await this.createHeaders({
|
|
3534
|
-
|
|
3576
|
+
contentType: "application/json",
|
|
3577
|
+
tenantId: args.tenantId,
|
|
3578
|
+
userId: args.userId
|
|
3535
3579
|
}),
|
|
3536
3580
|
body: JSON.stringify(StoreKeyToJSONTyped(body))
|
|
3537
3581
|
});
|
|
@@ -3554,7 +3598,9 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3554
3598
|
const response = await fetch(url, {
|
|
3555
3599
|
method: "POST",
|
|
3556
3600
|
headers: await this.createHeaders({
|
|
3557
|
-
|
|
3601
|
+
contentType: "application/json",
|
|
3602
|
+
tenantId: args.tenantId,
|
|
3603
|
+
userId: args.userId
|
|
3558
3604
|
}),
|
|
3559
3605
|
body: JSON.stringify(GenerateKeyToJSONTyped(body))
|
|
3560
3606
|
});
|
|
@@ -3569,7 +3615,11 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3569
3615
|
const baseUrl = this.assertedAgentBaseUrl(args.baseUrl);
|
|
3570
3616
|
const url = _KmsRestClient.urlWithBase(`/providers/${args.providerId}/keys/${args.aliasOrKid}`, baseUrl);
|
|
3571
3617
|
const response = await fetch(url, {
|
|
3572
|
-
method: "GET"
|
|
3618
|
+
method: "GET",
|
|
3619
|
+
headers: await this.createHeaders({
|
|
3620
|
+
tenantId: args.tenantId,
|
|
3621
|
+
userId: args.userId
|
|
3622
|
+
})
|
|
3573
3623
|
});
|
|
3574
3624
|
logger.debug(`get provider key response: ${response}`);
|
|
3575
3625
|
if (!response.ok) {
|
|
@@ -3582,7 +3632,11 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3582
3632
|
const baseUrl = this.assertedAgentBaseUrl(args.baseUrl);
|
|
3583
3633
|
const url = _KmsRestClient.urlWithBase(`providers/${args.providerId}/keys/${args.aliasOrKid}`, baseUrl);
|
|
3584
3634
|
const response = await fetch(url, {
|
|
3585
|
-
method: "DELETE"
|
|
3635
|
+
method: "DELETE",
|
|
3636
|
+
headers: await this.createHeaders({
|
|
3637
|
+
tenantId: args.tenantId,
|
|
3638
|
+
userId: args.userId
|
|
3639
|
+
})
|
|
3586
3640
|
});
|
|
3587
3641
|
logger.debug(`delete key response: ${response}`);
|
|
3588
3642
|
if (!response.ok) {
|
|
@@ -3598,9 +3652,17 @@ var KmsRestClient = class _KmsRestClient {
|
|
|
3598
3652
|
}
|
|
3599
3653
|
throw new Error("No base url has been provided");
|
|
3600
3654
|
}
|
|
3601
|
-
async createHeaders(
|
|
3655
|
+
async createHeaders(args) {
|
|
3602
3656
|
const headers = {
|
|
3603
|
-
...
|
|
3657
|
+
...args?.contentType ? {
|
|
3658
|
+
"Content-Type": args.contentType
|
|
3659
|
+
} : {},
|
|
3660
|
+
...args?.tenantId ? {
|
|
3661
|
+
"X-Tenant-ID": args.tenantId
|
|
3662
|
+
} : {},
|
|
3663
|
+
...args?.userId ? {
|
|
3664
|
+
"X-User-ID": args.userId
|
|
3665
|
+
} : {},
|
|
3604
3666
|
Accept: "application/json"
|
|
3605
3667
|
};
|
|
3606
3668
|
if (this.authOpts?.enabled === true) {
|