Show / Hide Table of Contents

Class ApiSpecificationRequestPolicies

Global behavior applied to all requests received by the API.

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

Properties

Authentication

Declaration
[JsonProperty(PropertyName = "authentication")]
public AuthenticationPolicy Authentication { get; set; }
Property Value
Type Description
AuthenticationPolicy

Cors

Declaration
[JsonProperty(PropertyName = "cors")]
public CorsPolicy Cors { get; set; }
Property Value
Type Description
CorsPolicy

DynamicAuthentication

Declaration
[JsonProperty(PropertyName = "dynamicAuthentication")]
public DynamicAuthenticationPolicy DynamicAuthentication { get; set; }
Property Value
Type Description
DynamicAuthenticationPolicy

MutualTls

Declaration
[JsonProperty(PropertyName = "mutualTls")]
public MutualTlsDetails MutualTls { get; set; }
Property Value
Type Description
MutualTlsDetails

RateLimiting

Declaration
[JsonProperty(PropertyName = "rateLimiting")]
public RateLimitingPolicy RateLimiting { get; set; }
Property Value
Type Description
RateLimitingPolicy

UsagePlans

Declaration
[JsonProperty(PropertyName = "usagePlans")]
public UsagePlansPolicy UsagePlans { get; set; }
Property Value
Type Description
UsagePlansPolicy
In this article
Back to top