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

    Interface OidcCredentialsProvider

    The OIDC provider does not have to be a full OIDC provider, but it must expose OIDC discovery metadata at the "/.well-known/openid-configuration" endpoint. The discovery metadata must contain "jwks_uri", which points to the JSON Web Key Set (JWKS). The JWKS contains public keys used to verify JSON Web Tokens (JWTs) issued by the identity provider.

    interface OidcCredentialsProvider {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.iam.v1.OidcCredentialsProvider";
        issuerUrl: string;
        jwkSetJson: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.iam.v1.OidcCredentialsProvider"
    issuerUrl: string

    OIDC-compatible JWT issuer URL.

    jwkSetJson: string

    JSON representation of a JSON Web Key Set (JWKS) with public keys used for JWT signature verification. If set, the token service uses this JWKS to verify token signatures.