LinuxFunctionAppAuthSettingsActiveDirectory

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

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Specifies a list of Allowed audience values to consider when validating JWTs issued by Azure Active Directory.

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.