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

    Interface SamlSettings

    Represents the nebius.iam.v1.SamlSettings protobuf message.

    interface SamlSettings {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.iam.v1.SamlSettings";
        forceAuthn: boolean;
        idpIssuer: string;
        ssoUrl: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      Represents the nebius.iam.v1.SamlSettings protobuf message.

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

    Contains the fully qualified protobuf type name.

    forceAuthn: boolean

    If true, the SAML AuthnRequest asks the identity provider to authenticate the user instead of reusing an existing IdP session. (See SAML Core 2.0, section 3.4.1, ForceAuthn: https://docs.oasis-open.org/security/saml/v2.0/saml-core-2.0-os.pdf) Limitations: the SAML response does not let verify whether the identity provider honored this request; support depends on the identity provider.

    idpIssuer: string

    The unique identifier of the SAML Identity Provider. It usually matches the entityID from the IdP metadata.

    ssoUrl: string

    Identity Provider’s Single Sign-On endpoint. This is the URL where the user is redirected to start SAML login.