Class EventStreamCloudEventConnectionUpdatedObject1OptionsOidcMetadata
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
OpenID Connect Provider Metadata as per https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
[Serializable]
public record EventStreamCloudEventConnectionUpdatedObject1OptionsOidcMetadata : IJsonOnDeserialized, IEquatable<EventStreamCloudEventConnectionUpdatedObject1OptionsOidcMetadata>
- Inheritance
-
EventStreamCloudEventConnectionUpdatedObject1OptionsOidcMetadata
- Implements
- Inherited Members
- Extension Methods
Properties
AcrValuesSupported
A list of the Authentication Context Class References that this OP supports
[JsonPropertyName("acr_values_supported")]
public IEnumerable<string>? AcrValuesSupported { get; set; }
Property Value
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
AuthorizationEndpoint
URL of the identity provider's OAuth 2.0 authorization endpoint where users are redirected for authentication. Must be a valid HTTPS URL. This endpoint initiates the OAuth 2.0 authorization code flow.
[JsonPropertyName("authorization_endpoint")]
public required string AuthorizationEndpoint { get; set; }
Property Value
ClaimTypesSupported
JSON array containing a list of the Claim Types that the OpenID Provider supports. These Claim Types are described in Section 5.6 of OpenID Connect Core 1.0 [OpenID.Core]. If omitted, the implementation supports only normal Claims.
[JsonPropertyName("claim_types_supported")]
public IEnumerable<string>? ClaimTypesSupported { get; set; }
Property Value
ClaimsLocalesSupported
Languages and scripts supported for values in Claims being returned, represented as a JSON array of BCP47 [RFC5646] language tag values. Not all languages and scripts are necessarily supported for all Claim values.
[JsonPropertyName("claims_locales_supported")]
public IEnumerable<string>? ClaimsLocalesSupported { get; set; }
Property Value
ClaimsParameterSupported
Boolean value specifying whether the OP supports use of the claims parameter, with true indicating support. If omitted, the default value is false.
[JsonPropertyName("claims_parameter_supported")]
public bool? ClaimsParameterSupported { get; set; }
Property Value
- bool?
ClaimsSupported
JSON array containing a list of the Claim Names of the Claims that the OpenID Provider MAY be able to supply values for. Note that for privacy or other reasons, this might not be an exhaustive list.
[JsonPropertyName("claims_supported")]
public IEnumerable<string>? ClaimsSupported { get; set; }
Property Value
DisplayValuesSupported
JSON array containing a list of the JWS signing algorithms (alg values) supported by the Token Endpoint for the signature on the JWT [JWT] used to authenticate the Client at the Token Endpoint for the private_key_jwt and client_secret_jwt authentication methods. Servers SHOULD support RS256. The value none MUST NOT be used.
[JsonPropertyName("display_values_supported")]
public IEnumerable<string>? DisplayValuesSupported { get; set; }
Property Value
DpopSigningAlgValuesSupported
JSON array containing a list of the JWS signing algorithms (alg values) supported for DPoP proof JWT signing.
[JsonPropertyName("dpop_signing_alg_values_supported")]
public IEnumerable<string>? DpopSigningAlgValuesSupported { get; set; }
Property Value
EndSessionEndpoint
URL of the identity provider's logout/end session endpoint. When configured as a static URL, users are redirected here after logging out from Auth0. Must use HTTPS scheme.
[JsonPropertyName("end_session_endpoint")]
public string? EndSessionEndpoint { get; set; }
Property Value
GrantTypesSupported
A list of the OAuth 2.0 Grant Type values that this OP supports. Dynamic OpenID Providers MUST support the authorization_code and implicit Grant Type values and MAY support other Grant Types. If omitted, the default value is ["authorization_code", "implicit"].
[JsonPropertyName("grant_types_supported")]
public IEnumerable<string>? GrantTypesSupported { get; set; }
Property Value
IdTokenEncryptionAlgValuesSupported
JSON array containing a list of the JWE encryption algorithms (alg values) supported by the OP for the ID Token to encode the Claims in a JWT
[JsonPropertyName("id_token_encryption_alg_values_supported")]
public IEnumerable<string>? IdTokenEncryptionAlgValuesSupported { get; set; }
Property Value
IdTokenEncryptionEncValuesSupported
JSON array containing a list of the JWE encryption algorithms (enc values) supported by the OP for the ID Token to encode the Claims in a JWT [JWT].
[JsonPropertyName("id_token_encryption_enc_values_supported")]
public IEnumerable<string>? IdTokenEncryptionEncValuesSupported { get; set; }
Property Value
IdTokenSigningAlgValuesSupported
A list of the JWS signing algorithms (alg values) supported by the OP for the ID Token to encode the Claims in a JWT. The algorithm RS256 MUST be included. The value none MAY be supported, but MUST NOT be used unless the Response Type used returns no ID Token from the Authorization Endpoint (such as when using the Authorization Code Flow). https://datatracker.ietf.org/doc/html/rfc7518
[JsonPropertyName("id_token_signing_alg_values_supported")]
public IEnumerable<string> IdTokenSigningAlgValuesSupported { get; set; }
Property Value
Issuer
The identity provider's unique issuer identifier URL (e.g., https://accounts.google.com). Must match the 'iss' claim in ID tokens from the identity provider.
[JsonPropertyName("issuer")]
public required string Issuer { get; set; }
Property Value
JwksUri
URL of the identity provider's JSON Web Key Set (JWKS) endpoint containing public keys for signature verification. Auth0 retrieves these keys to validate ID token signatures.
[JsonPropertyName("jwks_uri")]
public required string JwksUri { get; set; }
Property Value
OpPolicyUri
URL that the OpenID Provider provides to the person registering the Client to read about the OPs requirements on how the Relying Party can use the data provided by the OP. The registration process SHOULD display this URL to the person registering the Client if it is given.
[JsonPropertyName("op_policy_uri")]
public string? OpPolicyUri { get; set; }
Property Value
OpTosUri
URL that the OpenID Provider provides to the person registering the Client to read about OpenID Providers terms of service. The registration process SHOULD display this URL to the person registering the Client if it is given.
[JsonPropertyName("op_tos_uri")]
public string? OpTosUri { get; set; }
Property Value
RegistrationEndpoint
URL of the OPs Dynamic Client Registration Endpoint. RECOMMENDED but not REQUIRED. https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
[JsonPropertyName("registration_endpoint")]
public string? RegistrationEndpoint { get; set; }
Property Value
RequestObjectEncryptionAlgValuesSupported
JSON array containing a list of the JWE encryption algorithms (alg values) supported by the OP for Request Objects. These algorithms are used both when the Request Object is passed by value and when it is passed by reference.
[JsonPropertyName("request_object_encryption_alg_values_supported")]
public IEnumerable<string>? RequestObjectEncryptionAlgValuesSupported { get; set; }
Property Value
RequestObjectEncryptionEncValuesSupported
JSON array containing a list of the JWE encryption algorithms (enc values) supported by the OP for Request Objects. These algorithms are used both when the Request Object is passed by value and when it is passed by reference.
[JsonPropertyName("request_object_encryption_enc_values_supported")]
public IEnumerable<string>? RequestObjectEncryptionEncValuesSupported { get; set; }
Property Value
RequestObjectSigningAlgValuesSupported
JSON array containing a list of the JWS signing algorithms (alg values) supported by the OP for Request Objects, which are described in Section 6.1 of OpenID Connect Core 1.0 [OpenID.Core]. These algorithms are used both when the Request Object is passed by value (using the request parameter) and when it is passed by reference (using the request_uri parameter). Servers SHOULD support none and RS256.
[JsonPropertyName("request_object_signing_alg_values_supported")]
public IEnumerable<string>? RequestObjectSigningAlgValuesSupported { get; set; }
Property Value
RequestParameterSupported
Boolean value specifying whether the OP supports use of the request parameter, with true indicating support. If omitted, the default value is false.
[JsonPropertyName("request_parameter_supported")]
public bool? RequestParameterSupported { get; set; }
Property Value
- bool?
RequestUriParameterSupported
Boolean value specifying whether the OP supports use of the request_uri parameter, with true indicating support. If omitted, the default value is false.
[JsonPropertyName("request_uri_parameter_supported")]
public bool? RequestUriParameterSupported { get; set; }
Property Value
- bool?
RequireRequestUriRegistration
Boolean value specifying whether the OP requires use of the request_uri parameter. If omitted, the default value is false.
[JsonPropertyName("require_request_uri_registration")]
public bool? RequireRequestUriRegistration { get; set; }
Property Value
- bool?
ResponseModesSupported
A list of the OAuth 2.0 response_mode values that this OP supports. If omitted, the default for Dynamic OpenID Providers is ["query", "fragment"]
[JsonPropertyName("response_modes_supported")]
public IEnumerable<string>? ResponseModesSupported { get; set; }
Property Value
ResponseTypesSupported
A list of the OAuth 2.0 response_type values that this OP supports. Dynamic OpenID Providers MUST support the code, id_token, and the token id_token Response Type values
[JsonPropertyName("response_types_supported")]
public IEnumerable<string>? ResponseTypesSupported { get; set; }
Property Value
ScopesSupported
A list of the OAuth 2.0 [RFC6749] scope values that this server supports. The server MUST support the openid scope value. Servers MAY choose not to advertise some supported scope values even when this parameter is used, although those defined in [OpenID.Core] SHOULD be listed, if supported. RECOMMENDED but not REQUIRED
[JsonPropertyName("scopes_supported")]
public IEnumerable<string>? ScopesSupported { get; set; }
Property Value
ServiceDocumentation
URL of a page containing human-readable information that developers might want or need to know when using the OpenID Provider. In particular, if the OpenID Provider does not support Dynamic Client Registration, then information on how to register Clients needs to be provided in this documentation.
[JsonPropertyName("service_documentation")]
public string? ServiceDocumentation { get; set; }
Property Value
SubjectTypesSupported
A list of the Subject Identifier types that this OP supports. Valid types include pairwise and public
[JsonPropertyName("subject_types_supported")]
public IEnumerable<string>? SubjectTypesSupported { get; set; }
Property Value
TokenEndpoint
URL of the identity provider's OAuth 2.0 token endpoint where authorization codes are exchanged for access tokens. Must be a valid HTTPS URL. Required for authorization code flow but optional for implicit flow.
[JsonPropertyName("token_endpoint")]
public string? TokenEndpoint { get; set; }
Property Value
TokenEndpointAuthMethodsSupported
JSON array containing a list of Client Authentication methods supported by this Token Endpoint. The options are client_secret_post, client_secret_basic, client_secret_jwt, and private_key_jwt, as described in Section 9 of OpenID Connect Core 1.0 [OpenID.Core]. Other authentication methods MAY be defined by extensions. If omitted, the default is client_secret_basic -- the HTTP Basic Authentication Scheme specified in Section 2.3.1 of OAuth 2.0 [RFC6749].
[JsonPropertyName("token_endpoint_auth_methods_supported")]
public IEnumerable<string>? TokenEndpointAuthMethodsSupported { get; set; }
Property Value
TokenEndpointAuthSigningAlgValuesSupported
JSON array containing a list of the JWS signing algorithms (alg values) supported by the Token Endpoint for the signature on the JWT [JWT] used to authenticate the Client at the Token Endpoint for the private_key_jwt and client_secret_jwt authentication methods. Servers SHOULD support RS256. The value none MUST NOT be used.
[JsonPropertyName("token_endpoint_auth_signing_alg_values_supported")]
public IEnumerable<string>? TokenEndpointAuthSigningAlgValuesSupported { get; set; }
Property Value
UiLocalesSupported
Languages and scripts supported for the user interface, represented as a JSON array of BCP47 [RFC5646] language tag values.
[JsonPropertyName("ui_locales_supported")]
public IEnumerable<string>? UiLocalesSupported { get; set; }
Property Value
UserinfoEncryptionAlgValuesSupported
JSON array containing a list of the JWE [JWE] encryption algorithms (alg values) [JWA] supported by the UserInfo Endpoint to encode the Claims in a JWT [JWT].
[JsonPropertyName("userinfo_encryption_alg_values_supported")]
public IEnumerable<string>? UserinfoEncryptionAlgValuesSupported { get; set; }
Property Value
UserinfoEncryptionEncValuesSupported
JSON array containing a list of the JWE encryption algorithms (enc values) [JWA] supported by the UserInfo Endpoint to encode the Claims in a JWT [JWT].
[JsonPropertyName("userinfo_encryption_enc_values_supported")]
public IEnumerable<string>? UserinfoEncryptionEncValuesSupported { get; set; }
Property Value
UserinfoEndpoint
Optional URL of the identity provider's UserInfo endpoint. When configured with attribute mapping, Auth0 calls this endpoint to retrieve additional user profile claims using the access token.
[JsonPropertyName("userinfo_endpoint")]
public string? UserinfoEndpoint { get; set; }
Property Value
UserinfoSigningAlgValuesSupported
JSON array containing a list of the JWS [JWS] signing algorithms (alg values) [JWA] supported by the UserInfo Endpoint to encode the Claims in a JWT [JWT]. The value none MAY be included.
[JsonPropertyName("userinfo_signing_alg_values_supported")]
public IEnumerable<string>? UserinfoSigningAlgValuesSupported { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.