WindowsFunctionAppSlotAuthSettingsActiveDirectoryArgs

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

Constructors

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

Functions

Link copied to clipboard
open override fun toJava(): WindowsFunctionAppSlotAuthSettingsActiveDirectoryArgs

Properties

Link copied to clipboard
val allowedAudiences: Output<List<String>>? = null

an allowed_audiences block as detailed below.

Link copied to clipboard
val clientId: Output<String>

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

Link copied to clipboard
val clientSecret: Output<String>? = null

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

Link copied to clipboard
val clientSecretSettingName: Output<String>? = null

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