WindowsFunctionAppSlotAuthSettingsActiveDirectory

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

Constructors

fun WindowsFunctionAppSlotAuthSettingsActiveDirectory(allowedAudiences: List<String>? = null, clientId: String, clientSecret: String? = null, clientSecretSettingName: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

an allowed_audiences block as detailed below.

Link copied to clipboard

The ID of the Client to use to authenticate with Azure Active Directory.

Link copied to clipboard
val clientSecret: String? = null

The Client Secret for the Client ID. Cannot be used with client_secret_setting_name.

Link copied to clipboard

The App Setting name that contains the client secret of the Client. Cannot be used with client_secret.