Show / Hide Table of Contents

Class TokenAuthenticationRemoteDiscoveryValidationPolicy

Instrospect Url based validation retrieved at run-time from a remote location to verify the provided token.

Inheritance
object
TokenAuthenticationValidationPolicy
TokenAuthenticationRemoteDiscoveryValidationPolicy
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 TokenAuthenticationRemoteDiscoveryValidationPolicy : TokenAuthenticationValidationPolicy

Properties

ClientDetails

Declaration
[Required(ErrorMessage = "ClientDetails is required.")]
[JsonProperty(PropertyName = "clientDetails")]
public ClientAppDetails ClientDetails { get; set; }
Property Value
Type Description
ClientAppDetails
Remarks

Required

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 introspect URL response should be cached before it is fetched again.

SourceUriDetails

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

Required

In this article
Back to top