FunctionAppAuthSettingsActiveDirectory

data class FunctionAppAuthSettingsActiveDirectory(val allowedAudiences: List<String>? = null, val clientId: String, val clientSecret: String? = null)

Constructors

Link copied to clipboard
constructor(allowedAudiences: List<String>? = null, clientId: String, clientSecret: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Allowed audience values to consider when validating JWTs issued by Azure Active Directory.

Link copied to clipboard

The Client ID of this relying party application. Enables OpenIDConnection authentication with Azure Active Directory.

Link copied to clipboard
val clientSecret: String? = null

The Client Secret of this relying party application. If no secret is provided, implicit flow will be used.