ConnectionAuthConfigOauth2AuthCodeFlowArgs

data class ConnectionAuthConfigOauth2AuthCodeFlowArgs(val authUri: Output<String>? = null, val clientId: Output<String>? = null, val clientSecret: Output<ConnectionAuthConfigOauth2AuthCodeFlowClientSecretArgs>? = null, val enablePkce: Output<Boolean>? = null, val scopes: Output<List<String>>? = null) : ConvertibleToJava<ConnectionAuthConfigOauth2AuthCodeFlowArgs>

Constructors

fun ConnectionAuthConfigOauth2AuthCodeFlowArgs(authUri: Output<String>? = null, clientId: Output<String>? = null, clientSecret: Output<ConnectionAuthConfigOauth2AuthCodeFlowClientSecretArgs>? = null, enablePkce: Output<Boolean>? = null, scopes: Output<List<String>>? = null)

Functions

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

Properties

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

Auth URL for Authorization Code Flow.

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

Secret version of Password for Authentication.

Link copied to clipboard

Secret version reference containing the client secret. Structure is documented below.

Link copied to clipboard
val enablePkce: Output<Boolean>? = null

Whether to enable PKCE when the user performs the auth code flow.

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

Scopes the connection will request when the user performs the auth code flow.