Show / Hide Table of Contents

Class TokenAuthenticationRemoteJWKSValidationPolicy

A set of public keys that is retrieved at run-time from a remote location to verify the JWT signature. The set should only contain JWK-formatted keys.

Inheritance
object
TokenAuthenticationValidationPolicy
TokenAuthenticationRemoteJWKSValidationPolicy
Inherited Members
TokenAuthenticationValidationPolicy.AdditionalValidationPolicy
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApigatewayService.Models
Assembly: OCI.DotNetSDK.Apigateway.dll
Syntax
public class TokenAuthenticationRemoteJWKSValidationPolicy : TokenAuthenticationValidationPolicy

Properties

IsSslVerifyDisabled

Declaration
[JsonProperty(PropertyName = "isSslVerifyDisabled")]
public bool? IsSslVerifyDisabled { get; set; }
Property Value
Type Description
bool?

Defines whether or not to uphold SSL verification.

MaxCacheDurationInHours

Declaration
[JsonProperty(PropertyName = "maxCacheDurationInHours")]
public int? MaxCacheDurationInHours { get; set; }
Property Value
Type Description
int?

The duration for which the JWKS should be cached before it is fetched again.

Uri

Declaration
[Required(ErrorMessage = "Uri is required.")]
[JsonProperty(PropertyName = "uri")]
public string Uri { get; set; }
Property Value
Type Description
string

The uri from which to retrieve the key. It must be accessible without authentication.

Remarks

Required

In this article
Back to top