ProfileFastHttp

f5bigip.ltm.ProfileFastHttp Configures a custom profile_fasthttp for use by health checks.

For resources should be named with their “full path”. The full path is the combination of the partition + name of the resource. For example /Common/my-pool.

Example Usage

using Pulumi;
using F5BigIP = Pulumi.F5BigIP;

class MyStack : Stack
{
    public MyStack()
    {
        var sjfasthttpprofile = new F5BigIP.Ltm.ProfileFastHttp("sjfasthttpprofile", new F5BigIP.Ltm.ProfileFastHttpArgs
        {
            ConnpoolMaxreuse = 2,
            ConnpoolMaxsize = 2048,
            ConnpoolMinsize = 0,
            ConnpoolReplenish = "enabled",
            ConnpoolStep = 4,
            ConnpoolidleTimeoutoverride = 0,
            DefaultsFrom = "/Common/fasthttp",
            Forcehttp10response = "disabled",
            IdleTimeout = 300,
            MaxheaderSize = 32768,
            Name = "sjfasthttpprofile",
        });
    }

}

Coming soon!

import pulumi
import pulumi_f5bigip as f5bigip

sjfasthttpprofile = f5bigip.ltm.ProfileFastHttp("sjfasthttpprofile",
    connpool_maxreuse=2,
    connpool_maxsize=2048,
    connpool_minsize=0,
    connpool_replenish="enabled",
    connpool_step=4,
    connpoolidle_timeoutoverride=0,
    defaults_from="/Common/fasthttp",
    forcehttp10response="disabled",
    idle_timeout=300,
    maxheader_size=32768,
    name="sjfasthttpprofile")
import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";

const sjfasthttpprofile = new f5bigip.ltm.ProfileFastHttp("sjfasthttpprofile", {
    connpoolMaxreuse: 2,
    connpoolMaxsize: 2048,
    connpoolMinsize: 0,
    connpoolReplenish: "enabled",
    connpoolStep: 4,
    connpoolidleTimeoutoverride: 0,
    defaultsFrom: "/Common/fasthttp",
    forcehttp10response: "disabled",
    idleTimeout: 300,
    maxheaderSize: 32768,
    name: "sjfasthttpprofile",
});

Create a ProfileFastHttp Resource

def ProfileFastHttp(resource_name, opts=None, connpool_maxreuse=None, connpool_maxsize=None, connpool_minsize=None, connpool_replenish=None, connpool_step=None, connpoolidle_timeoutoverride=None, defaults_from=None, forcehttp10response=None, idle_timeout=None, maxheader_size=None, name=None, __props__=None);
name string
The unique name of the resource.
args ProfileFastHttpArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args ProfileFastHttpArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args ProfileFastHttpArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

ProfileFastHttp Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.

Inputs

The ProfileFastHttp resource accepts the following input properties:

Name string

Name of the profile_fasthttp

ConnpoolMaxreuse int

Specifies the maximum number of times that the system can re-use a current connection. The default value is 0 (zero).

ConnpoolMaxsize int

Specifies the maximum number of connections to a load balancing pool. A setting of 0 specifies that a pool can accept an unlimited number of connections. The default value is 2048.

ConnpoolMinsize int

Specifies the minimum number of connections to a load balancing pool. A setting of 0 specifies that there is no minimum. The default value is 10.

ConnpoolReplenish string

The default value is enabled. When this option is enabled, the system replenishes the number of connections to a load balancing pool to the number of connections that existed when the server closed the connection to the pool. When disabled, the system replenishes the connection that was closed by the server, only when there are fewer connections to the pool than the number of connections set in the connpool-min-size connections option. Also see the connpool-min-size option..

ConnpoolStep int

Specifies the increment in which the system makes additional connections available, when all available connections are in use. The default value is 4.

ConnpoolidleTimeoutoverride int

Specifies the number of seconds after which a server-side connection in a OneConnect pool is eligible for deletion, when the connection has no traffic.The value of this option overrides the idle-timeout value that you specify. The default value is 0 (zero) seconds, which disables the override setting.

DefaultsFrom string

Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.

Forcehttp10response string

Specifies whether to rewrite the HTTP version in the status line of the server to HTTP 1.0 to discourage the client from pipelining or chunking data. The default value is disabled.

IdleTimeout int

Specifies an idle timeout in seconds. This setting specifies the number of seconds that a connection is idle before the connection is eligible for deletion.When you specify an idle timeout for the Fast L4 profile, the value must be greater than the bigdb database variable Pva.Scrub time in msec for it to work properly.The default value is 300 seconds.

MaxheaderSize int

Specifies the maximum amount of HTTP header data that the system buffers before making a load balancing decision. The default setting is 32768.

Name string

Name of the profile_fasthttp

ConnpoolMaxreuse int

Specifies the maximum number of times that the system can re-use a current connection. The default value is 0 (zero).

ConnpoolMaxsize int

Specifies the maximum number of connections to a load balancing pool. A setting of 0 specifies that a pool can accept an unlimited number of connections. The default value is 2048.

ConnpoolMinsize int

Specifies the minimum number of connections to a load balancing pool. A setting of 0 specifies that there is no minimum. The default value is 10.

ConnpoolReplenish string

The default value is enabled. When this option is enabled, the system replenishes the number of connections to a load balancing pool to the number of connections that existed when the server closed the connection to the pool. When disabled, the system replenishes the connection that was closed by the server, only when there are fewer connections to the pool than the number of connections set in the connpool-min-size connections option. Also see the connpool-min-size option..

ConnpoolStep int

Specifies the increment in which the system makes additional connections available, when all available connections are in use. The default value is 4.

ConnpoolidleTimeoutoverride int

Specifies the number of seconds after which a server-side connection in a OneConnect pool is eligible for deletion, when the connection has no traffic.The value of this option overrides the idle-timeout value that you specify. The default value is 0 (zero) seconds, which disables the override setting.

DefaultsFrom string

Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.

Forcehttp10response string

Specifies whether to rewrite the HTTP version in the status line of the server to HTTP 1.0 to discourage the client from pipelining or chunking data. The default value is disabled.

IdleTimeout int

Specifies an idle timeout in seconds. This setting specifies the number of seconds that a connection is idle before the connection is eligible for deletion.When you specify an idle timeout for the Fast L4 profile, the value must be greater than the bigdb database variable Pva.Scrub time in msec for it to work properly.The default value is 300 seconds.

MaxheaderSize int

Specifies the maximum amount of HTTP header data that the system buffers before making a load balancing decision. The default setting is 32768.

name string

Name of the profile_fasthttp

connpoolMaxreuse number

Specifies the maximum number of times that the system can re-use a current connection. The default value is 0 (zero).

connpoolMaxsize number

Specifies the maximum number of connections to a load balancing pool. A setting of 0 specifies that a pool can accept an unlimited number of connections. The default value is 2048.

connpoolMinsize number

Specifies the minimum number of connections to a load balancing pool. A setting of 0 specifies that there is no minimum. The default value is 10.

connpoolReplenish string

The default value is enabled. When this option is enabled, the system replenishes the number of connections to a load balancing pool to the number of connections that existed when the server closed the connection to the pool. When disabled, the system replenishes the connection that was closed by the server, only when there are fewer connections to the pool than the number of connections set in the connpool-min-size connections option. Also see the connpool-min-size option..

connpoolStep number

Specifies the increment in which the system makes additional connections available, when all available connections are in use. The default value is 4.

connpoolidleTimeoutoverride number

Specifies the number of seconds after which a server-side connection in a OneConnect pool is eligible for deletion, when the connection has no traffic.The value of this option overrides the idle-timeout value that you specify. The default value is 0 (zero) seconds, which disables the override setting.

defaultsFrom string

Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.

forcehttp10response string

Specifies whether to rewrite the HTTP version in the status line of the server to HTTP 1.0 to discourage the client from pipelining or chunking data. The default value is disabled.

idleTimeout number

Specifies an idle timeout in seconds. This setting specifies the number of seconds that a connection is idle before the connection is eligible for deletion.When you specify an idle timeout for the Fast L4 profile, the value must be greater than the bigdb database variable Pva.Scrub time in msec for it to work properly.The default value is 300 seconds.

maxheaderSize number

Specifies the maximum amount of HTTP header data that the system buffers before making a load balancing decision. The default setting is 32768.

name str

Name of the profile_fasthttp

connpool_maxreuse float

Specifies the maximum number of times that the system can re-use a current connection. The default value is 0 (zero).

connpool_maxsize float

Specifies the maximum number of connections to a load balancing pool. A setting of 0 specifies that a pool can accept an unlimited number of connections. The default value is 2048.

connpool_minsize float

Specifies the minimum number of connections to a load balancing pool. A setting of 0 specifies that there is no minimum. The default value is 10.

connpool_replenish str

The default value is enabled. When this option is enabled, the system replenishes the number of connections to a load balancing pool to the number of connections that existed when the server closed the connection to the pool. When disabled, the system replenishes the connection that was closed by the server, only when there are fewer connections to the pool than the number of connections set in the connpool-min-size connections option. Also see the connpool-min-size option..

connpool_step float

Specifies the increment in which the system makes additional connections available, when all available connections are in use. The default value is 4.

connpoolidle_timeoutoverride float

Specifies the number of seconds after which a server-side connection in a OneConnect pool is eligible for deletion, when the connection has no traffic.The value of this option overrides the idle-timeout value that you specify. The default value is 0 (zero) seconds, which disables the override setting.

defaults_from str

Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.

forcehttp10response str

Specifies whether to rewrite the HTTP version in the status line of the server to HTTP 1.0 to discourage the client from pipelining or chunking data. The default value is disabled.

idle_timeout float

Specifies an idle timeout in seconds. This setting specifies the number of seconds that a connection is idle before the connection is eligible for deletion.When you specify an idle timeout for the Fast L4 profile, the value must be greater than the bigdb database variable Pva.Scrub time in msec for it to work properly.The default value is 300 seconds.

maxheader_size float

Specifies the maximum amount of HTTP header data that the system buffers before making a load balancing decision. The default setting is 32768.

Outputs

All input properties are implicitly available as output properties. Additionally, the ProfileFastHttp resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.

Look up an Existing ProfileFastHttp Resource

Get an existing ProfileFastHttp resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: ProfileFastHttpState, opts?: CustomResourceOptions): ProfileFastHttp
static get(resource_name, id, opts=None, connpool_maxreuse=None, connpool_maxsize=None, connpool_minsize=None, connpool_replenish=None, connpool_step=None, connpoolidle_timeoutoverride=None, defaults_from=None, forcehttp10response=None, idle_timeout=None, maxheader_size=None, name=None, __props__=None);
func GetProfileFastHttp(ctx *Context, name string, id IDInput, state *ProfileFastHttpState, opts ...ResourceOption) (*ProfileFastHttp, error)
public static ProfileFastHttp Get(string name, Input<string> id, ProfileFastHttpState? state, CustomResourceOptions? opts = null)
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.

The following state arguments are supported:

ConnpoolMaxreuse int

Specifies the maximum number of times that the system can re-use a current connection. The default value is 0 (zero).

ConnpoolMaxsize int

Specifies the maximum number of connections to a load balancing pool. A setting of 0 specifies that a pool can accept an unlimited number of connections. The default value is 2048.

ConnpoolMinsize int

Specifies the minimum number of connections to a load balancing pool. A setting of 0 specifies that there is no minimum. The default value is 10.

ConnpoolReplenish string

The default value is enabled. When this option is enabled, the system replenishes the number of connections to a load balancing pool to the number of connections that existed when the server closed the connection to the pool. When disabled, the system replenishes the connection that was closed by the server, only when there are fewer connections to the pool than the number of connections set in the connpool-min-size connections option. Also see the connpool-min-size option..

ConnpoolStep int

Specifies the increment in which the system makes additional connections available, when all available connections are in use. The default value is 4.

ConnpoolidleTimeoutoverride int

Specifies the number of seconds after which a server-side connection in a OneConnect pool is eligible for deletion, when the connection has no traffic.The value of this option overrides the idle-timeout value that you specify. The default value is 0 (zero) seconds, which disables the override setting.

DefaultsFrom string

Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.

Forcehttp10response string

Specifies whether to rewrite the HTTP version in the status line of the server to HTTP 1.0 to discourage the client from pipelining or chunking data. The default value is disabled.

IdleTimeout int

Specifies an idle timeout in seconds. This setting specifies the number of seconds that a connection is idle before the connection is eligible for deletion.When you specify an idle timeout for the Fast L4 profile, the value must be greater than the bigdb database variable Pva.Scrub time in msec for it to work properly.The default value is 300 seconds.

MaxheaderSize int

Specifies the maximum amount of HTTP header data that the system buffers before making a load balancing decision. The default setting is 32768.

Name string

Name of the profile_fasthttp

ConnpoolMaxreuse int

Specifies the maximum number of times that the system can re-use a current connection. The default value is 0 (zero).

ConnpoolMaxsize int

Specifies the maximum number of connections to a load balancing pool. A setting of 0 specifies that a pool can accept an unlimited number of connections. The default value is 2048.

ConnpoolMinsize int

Specifies the minimum number of connections to a load balancing pool. A setting of 0 specifies that there is no minimum. The default value is 10.

ConnpoolReplenish string

The default value is enabled. When this option is enabled, the system replenishes the number of connections to a load balancing pool to the number of connections that existed when the server closed the connection to the pool. When disabled, the system replenishes the connection that was closed by the server, only when there are fewer connections to the pool than the number of connections set in the connpool-min-size connections option. Also see the connpool-min-size option..

ConnpoolStep int

Specifies the increment in which the system makes additional connections available, when all available connections are in use. The default value is 4.

ConnpoolidleTimeoutoverride int

Specifies the number of seconds after which a server-side connection in a OneConnect pool is eligible for deletion, when the connection has no traffic.The value of this option overrides the idle-timeout value that you specify. The default value is 0 (zero) seconds, which disables the override setting.

DefaultsFrom string

Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.

Forcehttp10response string

Specifies whether to rewrite the HTTP version in the status line of the server to HTTP 1.0 to discourage the client from pipelining or chunking data. The default value is disabled.

IdleTimeout int

Specifies an idle timeout in seconds. This setting specifies the number of seconds that a connection is idle before the connection is eligible for deletion.When you specify an idle timeout for the Fast L4 profile, the value must be greater than the bigdb database variable Pva.Scrub time in msec for it to work properly.The default value is 300 seconds.

MaxheaderSize int

Specifies the maximum amount of HTTP header data that the system buffers before making a load balancing decision. The default setting is 32768.

Name string

Name of the profile_fasthttp

connpoolMaxreuse number

Specifies the maximum number of times that the system can re-use a current connection. The default value is 0 (zero).

connpoolMaxsize number

Specifies the maximum number of connections to a load balancing pool. A setting of 0 specifies that a pool can accept an unlimited number of connections. The default value is 2048.

connpoolMinsize number

Specifies the minimum number of connections to a load balancing pool. A setting of 0 specifies that there is no minimum. The default value is 10.

connpoolReplenish string

The default value is enabled. When this option is enabled, the system replenishes the number of connections to a load balancing pool to the number of connections that existed when the server closed the connection to the pool. When disabled, the system replenishes the connection that was closed by the server, only when there are fewer connections to the pool than the number of connections set in the connpool-min-size connections option. Also see the connpool-min-size option..

connpoolStep number

Specifies the increment in which the system makes additional connections available, when all available connections are in use. The default value is 4.

connpoolidleTimeoutoverride number

Specifies the number of seconds after which a server-side connection in a OneConnect pool is eligible for deletion, when the connection has no traffic.The value of this option overrides the idle-timeout value that you specify. The default value is 0 (zero) seconds, which disables the override setting.

defaultsFrom string

Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.

forcehttp10response string

Specifies whether to rewrite the HTTP version in the status line of the server to HTTP 1.0 to discourage the client from pipelining or chunking data. The default value is disabled.

idleTimeout number

Specifies an idle timeout in seconds. This setting specifies the number of seconds that a connection is idle before the connection is eligible for deletion.When you specify an idle timeout for the Fast L4 profile, the value must be greater than the bigdb database variable Pva.Scrub time in msec for it to work properly.The default value is 300 seconds.

maxheaderSize number

Specifies the maximum amount of HTTP header data that the system buffers before making a load balancing decision. The default setting is 32768.

name string

Name of the profile_fasthttp

connpool_maxreuse float

Specifies the maximum number of times that the system can re-use a current connection. The default value is 0 (zero).

connpool_maxsize float

Specifies the maximum number of connections to a load balancing pool. A setting of 0 specifies that a pool can accept an unlimited number of connections. The default value is 2048.

connpool_minsize float

Specifies the minimum number of connections to a load balancing pool. A setting of 0 specifies that there is no minimum. The default value is 10.

connpool_replenish str

The default value is enabled. When this option is enabled, the system replenishes the number of connections to a load balancing pool to the number of connections that existed when the server closed the connection to the pool. When disabled, the system replenishes the connection that was closed by the server, only when there are fewer connections to the pool than the number of connections set in the connpool-min-size connections option. Also see the connpool-min-size option..

connpool_step float

Specifies the increment in which the system makes additional connections available, when all available connections are in use. The default value is 4.

connpoolidle_timeoutoverride float

Specifies the number of seconds after which a server-side connection in a OneConnect pool is eligible for deletion, when the connection has no traffic.The value of this option overrides the idle-timeout value that you specify. The default value is 0 (zero) seconds, which disables the override setting.

defaults_from str

Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.

forcehttp10response str

Specifies whether to rewrite the HTTP version in the status line of the server to HTTP 1.0 to discourage the client from pipelining or chunking data. The default value is disabled.

idle_timeout float

Specifies an idle timeout in seconds. This setting specifies the number of seconds that a connection is idle before the connection is eligible for deletion.When you specify an idle timeout for the Fast L4 profile, the value must be greater than the bigdb database variable Pva.Scrub time in msec for it to work properly.The default value is 300 seconds.

maxheader_size float

Specifies the maximum amount of HTTP header data that the system buffers before making a load balancing decision. The default setting is 32768.

name str

Name of the profile_fasthttp

Package Details

Repository
https://github.com/pulumi/pulumi-f5bigip
License
Apache-2.0
Notes
This Pulumi package is based on the bigip Terraform Provider.