BaseAuthProviderConfig interface

基本驗證提供者設定介面。

簽名:

export interface BaseAuthProviderConfig 

屬性

屬性 類型 說明
「displayName」 字串 目前設定的易記顯示名稱。這個名稱也會做為 Cloud 控制台中的提供者標籤。
已啟用 布林值 是否啟用或停用提供者設定。使用者無法透過已停用的提供者登入。
providerId 字串 開發人員定義的提供者 ID。如果是 SAML 供應商,這個值一律會以 saml. 開頭。對於 OIDC 提供者,一律加上 oidc. 前置字元。

BaseAuthProviderConfig.displayName

目前設定的易記顯示名稱。這個名稱也會做為 Cloud 控制台中的提供者標籤。

簽名:

displayName?: string;

BaseAuthProviderConfig.enabled

是否啟用或停用提供者設定。使用者無法透過已停用的提供者登入。

簽名:

enabled: boolean;

BaseAuthProviderConfig.providerId

開發人員定義的提供者 ID。如果是 SAML 供應商,這個值一律會加上 saml. 前置字元。對於 OIDC 提供者,一律加上 oidc. 前置字元。

簽名:

providerId: string;