WindowsFunctionAppAuthSettingsActiveDirectoryArgs

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

Constructors

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

Properties

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

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

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.

Functions

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