GoogleCloudIdentitytoolkitAdminV2OAuthResponseTypeArgs

data class GoogleCloudIdentitytoolkitAdminV2OAuthResponseTypeArgs(val code: Output<Boolean>? = null, val idToken: Output<Boolean>? = null, val token: Output<Boolean>? = null) : ConvertibleToJava<GoogleCloudIdentitytoolkitAdminV2OAuthResponseTypeArgs>

The response type to request for in the OAuth authorization flow. You can set either id_token or code to true, but not both. Setting both types to be simultaneously true ({code: true, id_token: true}) is not yet supported. See https://openid.net/specs/openid-connect-core-1_0.html#Authentication for a mapping of response type to OAuth 2.0 flow.

Constructors

fun GoogleCloudIdentitytoolkitAdminV2OAuthResponseTypeArgs(code: Output<Boolean>? = null, idToken: Output<Boolean>? = null, token: Output<Boolean>? = null)

Functions

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

Properties

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

If true, authorization code is returned from IdP's authorization endpoint.

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

If true, ID token is returned from IdP's authorization endpoint.

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

Do not use. The token response type is not supported at the moment.