Oauth Idp Config Args
data class OauthIdpConfigArgs(val clientId: Output<String>? = null, val clientSecret: Output<String>? = null, val displayName: Output<String>? = null, val enabled: Output<Boolean>? = null, val issuer: Output<String>? = null, val name: Output<String>? = null, val oauthIdpConfigId: Output<String>? = null, val project: Output<String>? = null, val responseType: Output<GoogleCloudIdentitytoolkitAdminV2OAuthResponseTypeArgs>? = null, val tenantId: Output<String>? = null) : ConvertibleToJava<OauthIdpConfigArgs>
Create an Oidc Idp configuration for an Identity Toolkit project.
Constructors
Link copied to clipboard
constructor(clientId: Output<String>? = null, clientSecret: Output<String>? = null, displayName: Output<String>? = null, enabled: Output<Boolean>? = null, issuer: Output<String>? = null, name: Output<String>? = null, oauthIdpConfigId: Output<String>? = null, project: Output<String>? = null, responseType: Output<GoogleCloudIdentitytoolkitAdminV2OAuthResponseTypeArgs>? = null, tenantId: Output<String>? = null)
Properties
Link copied to clipboard
The client secret of the OAuth client, to enable OIDC code flow.
Link copied to clipboard
The config's display name set by developers.
Link copied to clipboard
The id to use for this config.
Link copied to clipboard
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.