Show / Hide Table of Contents

Class ControlAccessUsingHttpMethodsRule

An object that represents the action of returning a specified response code when the requested HTTP method is not in the list of allowed methods for the listener. The load balancer does not forward a disallowed request to the back end servers. The default response code is 405 Method Not Allowed.
If you set the response code to 405 or leave it blank, the system adds an "allow" response header that contains a list of the allowed methods for the listener. If you set the response code to anything other than 405 (or blank), the system does not add the "allow" response header with a list of allowed methods.
This rule applies only to HTTP listeners. No more than one ControlAccessUsingHttpMethodsRule object can be present in a given listener.

Inheritance
object
Rule
ControlAccessUsingHttpMethodsRule
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LoadbalancerService.Models
Assembly: OCI.DotNetSDK.Loadbalancer.dll
Syntax
public class ControlAccessUsingHttpMethodsRule : Rule

Properties

AllowedMethods

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

The list of HTTP methods allowed for this listener.
By default, you can specify only the standard HTTP methods defined in the HTTP Method Registry. You can also see a list of supported standard HTTP methods in the Load Balancing service documentation at Managing Rule Sets.
Your backend application must be able to handle the methods specified in this list.
The list of HTTP methods is extensible. If you need to configure custom HTTP methods, contact My Oracle Support to remove the restriction for your tenancy.
Example: ["GET", "PUT", "POST", "PROPFIND"]

Remarks

Required

StatusCode

Declaration
[JsonProperty(PropertyName = "statusCode")]
public int? StatusCode { get; set; }
Property Value
Type Description
int?

The HTTP status code to return when the requested HTTP method is not in the list of allowed methods. The associated status line returned with the code is mapped from the standard HTTP specification. The default value is 405 (Method Not Allowed).
Example: 403

In this article
Back to top