Show / Hide Table of Contents

Class UsagePlansPolicy

Usage plan policies for this deployment

Inheritance
object
UsagePlansPolicy
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 UsagePlansPolicy

Properties

TokenLocations

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

A list of context variables specifying where API tokens may be located in a request. Example locations:

  • "request.headers[token]"
  • "request.query[token]"
  • "request.auth[Token]"
  • "request.path[TOKEN]"
Remarks

Required

In this article
Back to top