Show / Hide Table of Contents

Class AnyOfRouteAuthorizationPolicy

If authentication has been performed, validate whether the request scope (if any) applies to this route.

Inheritance
object
RouteAuthorizationPolicy
AnyOfRouteAuthorizationPolicy
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
public class AnyOfRouteAuthorizationPolicy : RouteAuthorizationPolicy

Properties

AllowedScope

Declaration
[Required(ErrorMessage = "AllowedScope is required.")]
[JsonProperty(PropertyName = "allowedScope")]
public List<string> AllowedScope { get; set; }
Property Value
Type Description
List<string>

A user whose scope includes any of these access ranges is allowed on this route. Access ranges are case-sensitive.

Remarks

Required

In this article
Back to top