LinuxWebAppAuthSettingsGithubArgs

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

Constructors

Link copied to clipboard
constructor(clientId: Output<String>, clientSecret: Output<String>? = null, clientSecretSettingName: Output<String>? = null, oauthScopes: Output<List<String>>? = null)

Properties

Link copied to clipboard
val clientId: Output<String>

The ID of the GitHub app used for login.

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

The Client Secret of the GitHub app used for GitHub login. 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 GitHub login. Cannot be specified with client_secret.

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

Specifies a list of OAuth 2.0 scopes that will be requested as part of GitHub login authentication.

Functions

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