Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 1.6 KB

OIDCAccessRules.md

File metadata and controls

20 lines (16 loc) · 1.6 KB

akeyless.Model.OIDCAccessRules

OIDCAccessRules contains access rules specific to Open Id Connect authentication method.

Properties

Name Type Description Notes
AllowedRedirectURIs List<string> Allowed redirect URIs after the authentication [optional]
Audience string Audience claim to be used as part of the authentication flow. In case set, it must match the one configured on the Identity Provider's Application [optional]
BoundClaims List<OIDCCustomClaim> The claims that login is restricted to. [optional]
ClientId string Client ID [optional]
ClientSecret string Client Secret [optional]
IsInternal bool IsInternal indicates whether this is an internal Auth Method where the client has no control over it, or it was created by the client e.g - Sign In with Google will create an OIDC Auth Method with IsInternal=true [optional]
Issuer string Issuer URL [optional]
RequiredScopes List<string> A list of required scopes to request from the oidc provider, and to check on the token [optional]
RequiredScopesPrefix string A prefix to add to the required scopes (for example, azures' Application ID URI) [optional]
UniqueIdentifier string A unique identifier to distinguish different users [optional]

[Back to Model list] [Back to API list] [Back to README]