Linux Function App Auth Settings V2Custom Oidc V2
data class LinuxFunctionAppAuthSettingsV2CustomOidcV2(val authorisationEndpoint: String? = null, val certificationUri: String? = null, val clientCredentialMethod: String? = null, val clientId: String, val clientSecretSettingName: String? = null, val issuerEndpoint: String? = null, val name: String, val nameClaimType: String? = null, val openidConfigurationEndpoint: String, val scopes: List<String>? = null, val tokenEndpoint: String? = null)
Constructors
Link copied to clipboard
constructor(authorisationEndpoint: String? = null, certificationUri: String? = null, clientCredentialMethod: String? = null, clientId: String, clientSecretSettingName: String? = null, issuerEndpoint: String? = null, name: String, nameClaimType: String? = null, openidConfigurationEndpoint: String, scopes: List<String>? = null, tokenEndpoint: String? = null)
Properties
Link copied to clipboard
The endpoint to make the Authorisation Request as supplied by openid_configuration_endpoint
response.
Link copied to clipboard
The endpoint that provides the keys necessary to validate the token as supplied by openid_configuration_endpoint
response.
Link copied to clipboard
The Client Credential Method used.
Link copied to clipboard
The App Setting name that contains the secret for this Custom OIDC Client. This is generated from name
above and suffixed with _PROVIDER_AUTHENTICATION_SECRET
.
Link copied to clipboard
The endpoint that issued the Token as supplied by openid_configuration_endpoint
response.
Link copied to clipboard
The name of the claim that contains the users name.
Link copied to clipboard
The app setting name that contains the client_secret
value used for the Custom OIDC Login.
Link copied to clipboard
The endpoint used to request a Token as supplied by openid_configuration_endpoint
response.