@nebius/js-sdk - v0.2.54
    Preparing search index...

    Interface SymmetricDecryptRequest

    Represents the nebius.kms.v1.SymmetricDecryptRequest protobuf message.

    interface SymmetricDecryptRequest {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.kms.v1.SymmetricDecryptRequest";
        aadContext: Uint8Array;
        ciphertext: Uint8Array;
        keyId: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

    • [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined

      Represents the nebius.kms.v1.SymmetricDecryptRequest protobuf message.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Represents the nebius.kms.v1.SymmetricDecryptRequest protobuf message.

            Returns unknown

      • undefined
    Index
    "[customJson]"?: () => unknown

    Returns a safe value for JSON logs.

    Type Declaration

      • (): unknown
      • Returns a safe value for JSON logs.

        Returns unknown

    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>

    Preserves protobuf fields that this SDK version does not recognize.

    $type: "nebius.kms.v1.SymmetricDecryptRequest"

    Contains the fully qualified protobuf type name.

    aadContext: Uint8Array

    Additional authenticated data, must be the same as was provided in the corresponding [SymmetricEncryptRequest]. Should be encoded with base64.

    ciphertext: Uint8Array

    Ciphertext to be decrypted. Should be encoded with base64.

    keyId: string

    ID of the symmetric KMS key to use for decryption.