GetOidcOpenidConfigResult

data class GetOidcOpenidConfigResult(val authorizationEndpoint: String, val grantTypesSupporteds: List<String>, val id: String, val idTokenSigningAlgValuesSupporteds: List<String>, val issuer: String, val jwksUri: String, val name: String, val namespace: String? = null, val requestUriParameterSupported: Boolean, val responseTypesSupporteds: List<String>, val scopesSupporteds: List<String>, val subjectTypesSupporteds: List<String>, val tokenEndpoint: String, val tokenEndpointAuthMethodsSupporteds: List<String>, val userinfoEndpoint: String)

A collection of values returned by getOidcOpenidConfig.

Constructors

Link copied to clipboard
constructor(authorizationEndpoint: String, grantTypesSupporteds: List<String>, id: String, idTokenSigningAlgValuesSupporteds: List<String>, issuer: String, jwksUri: String, name: String, namespace: String? = null, requestUriParameterSupported: Boolean, responseTypesSupporteds: List<String>, scopesSupporteds: List<String>, subjectTypesSupporteds: List<String>, tokenEndpoint: String, tokenEndpointAuthMethodsSupporteds: List<String>, userinfoEndpoint: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The Authorization Endpoint for the provider.

Link copied to clipboard

The grant types supported by the provider.

Link copied to clipboard
val id: String

The provider-assigned unique ID for this managed resource.

Link copied to clipboard

The signing algorithms supported by the provider.

Link copied to clipboard

The URL of the issuer for the provider.

Link copied to clipboard

The well known keys URI for the provider.

Link copied to clipboard
Link copied to clipboard
val namespace: String? = null
Link copied to clipboard

Specifies whether Request URI Parameter is supported by the provider.

Link copied to clipboard

The response types supported by the provider.

Link copied to clipboard

The scopes supported by the provider.

Link copied to clipboard

The subject types supported by the provider.

Link copied to clipboard

The Token Endpoint for the provider.

Link copied to clipboard

The token endpoint auth methods supported by the provider.

Link copied to clipboard

The User Info Endpoint for the provider