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

    Interface GenerateDataKeyResponse

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

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

    Indexable

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

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

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Represents the nebius.kms.v1.GenerateDataKeyResponse 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.GenerateDataKeyResponse"

    Contains the fully qualified protobuf type name.

    dataKeyCiphertext: Uint8Array

    The encrypted data key.

    dataKeyPlaintext: Uint8Array

    Generated data key as plaintext. The field is empty, if the [GenerateDataKeyRequest.skip_plaintext] parameter was set to true.

    keyId: string

    ID of the symmetric KMS key that was used to encrypt the generated data key.