WindowsFunctionAppSlotAuthSettingsGoogleArgs

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

Constructors

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

Functions

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

Properties

Link copied to clipboard
val clientId: Output<String>

The OpenID Connect Client ID for the Google web application.

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

The client secret associated with the Google web application. Cannot be specified with client_secret_setting_name.

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

The app setting name that contains the client_secret value used for Google login. Cannot be specified with client_secret.

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

an oauth_scopes block as detailed below.