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

    Interface AsymmetricGetPublicKeyResponse

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

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.kms.v1.AsymmetricGetPublicKeyResponse"
    keyId: string

    ID of the asymmetric KMS key whose public key was returned.

    publicKey: string

    Public key value. The value is a PEM-encoded X.509 public key, also known as SubjectPublicKeyInfo (SPKI), as defined in RFC 5280.