InlineLbHttpProfile1

InlineLbHttpProfile1
InlineLbHttpProfile1
JSON Example
{
    "http_redirect_to": "string",
    "http_redirect_to_https": false,
    "idle_timeout": 0,
    "ntlm": false,
    "request_body_size": 0,
    "request_header_size": 0,
    "response_buffering": false,
    "response_header_size": 0,
    "response_timeout": 0,
    "server_keep_alive": false,
    "x_forwarded_for": "string"
}
string
http_redirect_to
Optional

If a website is temporarily down or has moved, incoming requests for that virtual server can be temporarily redirected to a URL

boolean
http_redirect_to_https
Optional

Certain secure applications may want to force communication over SSL, but instead of rejecting non-SSL connections, they may choose to redirect the client automatically to use SSL.

integer As int64 As int64
idle_timeout
Optional
Constraints: minimum: 1 maximum: 5400 default: 15

It is used to specify the HTTP application idle timeout, it means that how long the load balancer will keep the connection idle to wait for the client to send the next keep-alive request. It is not a TCP socket setting.

boolean
ntlm
Optional

NTLM is an authentication protocol that can be used over HTTP. If the flag is set to true, LB will use NTLM challenge/response methodology. This property is deprecated. Please use the property server_keep_alive in order to keep the backend server connection alive for the client connection. When create a new profile, if both ntlm and server_keep_alive are set as different values, ERROR will be reported. When update an existing profile, if either ntlm or server_keep_alive value is changed, both of them are updated with the changed value.

integer As int64 As int64
request_body_size
Optional
Constraints: minimum: 1 maximum: 2147483647

If it is not specified, it means that request body size is unlimited.

integer As int64 As int64
request_header_size
Optional
Constraints: minimum: 1 default: 1024

A request with header equal to or below this size is guaranteed to be processed. A request with header larger than request_header_size will be processed up to 32K bytes on best effort basis.

boolean
response_buffering
Optional

When buffering is disabled, the response is passed to a client synchronously, immediately as it is received. When buffering is enabled, LB receives a response from the backend server as soon as possible, saving it into the buffers.

integer As int64 As int64
response_header_size
Optional
Constraints: minimum: 1 maximum: 65536 default: 4096

A response with header larger than response_header_size will be dropped.

integer As int64 As int64
response_timeout
Optional
Constraints: minimum: 1 maximum: 2147483647 default: 60

If server doesn't send any packet within this time, the connection is closed.

boolean
server_keep_alive
Optional

If server_keep_alive is true, it means the backend connection will keep alive for the client connection. Every client connection is tied 1:1 with the corresponding server-side connection. If server_keep_alive is false, it means the backend connection won't keep alive for the client connection. The default value is false. If server_keep_alive is not specified for API input, its value in API output will be the same with the property ntlm.

string
x_forwarded_for
Optional

When X-Forwareded-For is configured, X-Forwarded-Proto and X-Forwarded-Port information is added automatically. The two additional header information can be also modified or deleted in load balancer rules.

Possible values are : INSERT, REPLACE,