OidcInfo

OidcInfo
OidcInfo

Represents Identity management configuration when the provider is based on OIDC

JSON Example
{
    "clientId": "string",
    "discoveryEndpoint": "string",
    "authEndpoint": "string",
    "authMethod": "One among: CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, CLIENT_SECRET_JWT, PRIVATE_KEY_JWT",
    "logoutEndpoint": "string",
    "issuer": "string",
    "publicKeyUri": "string",
    "tokenEndpoint": "string"
}
string
clientId
Read-Only

Client identifier to connect to the Identity Provider

string
discoveryEndpoint
Read-Only

Endpoint to retrieve the Identity Provider metadata

string
authEndpoint
Read-Only

Authentication endpoint of the Identity Provider

string
authMethod
Read-Only

Authentication method used by the Identity Provider

string
logoutEndpoint
Read-Only

The endpoint to use for terminating the user's session at the Identity Provider

string
issuer
Read-Only

The Identity Provider namespace. It is used to validate the issuer in the acquired OAuth2 token

string
publicKeyUri
Read-Only

Endpoint to retrieve the Identity Provider public key for validation

string
tokenEndpoint
Read-Only

Token endpoint of the Identity Provider