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

    Interface Authentication

    interface Authentication {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.audit.v2.Authentication";
        authenticated: boolean;
        authenticationType: AuthenticationType;
        credential?:
            | { $case: "tokenCredential"; tokenCredential: AccessToken }
            | { $case: "staticKeyCredential"; staticKeyCredential: StaticKey };
        federation?: Federation;
        subject?: Subject;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.audit.v2.Authentication"
    authenticated: boolean

    Answers the question whether or not the subject has been successfully authenticated.

    authenticationType: AuthenticationType

    Describes the type of authentication.

    credential?:
        | { $case: "tokenCredential"; tokenCredential: AccessToken }
        | { $case: "staticKeyCredential"; staticKeyCredential: StaticKey }
    federation?: Federation

    Information on the federation within which the subject exists.

    subject?: Subject

    Contains information about the subject of the call.