Show / Hide Table of Contents

Class AuthenticationPolicy

Information on how to authenticate incoming requests.

Inheritance
object
AuthenticationPolicy
CustomAuthenticationPolicy
JwtAuthenticationPolicy
TokenAuthenticationPolicy
Inherited Members
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
[JsonConverter(typeof(AuthenticationPolicyModelConverter))]
public class AuthenticationPolicy

Properties

IsAnonymousAccessAllowed

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

Whether an unauthenticated user may access the API. Must be "true" to enable ANONYMOUS route authorization.

In this article
Back to top