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
new ProfileFastHttp(name: string, args: ProfileFastHttpArgs, opts?: CustomResourceOptions);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);func NewProfileFastHttp(ctx *Context, name string, args ProfileFastHttpArgs, opts ...ResourceOption) (*ProfileFastHttp, error)public ProfileFastHttp(string name, ProfileFastHttpArgs args, CustomResourceOptions? opts = null)- 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
- Connpool
Maxreuse int Specifies the maximum number of times that the system can re-use a current connection. The default value is 0 (zero).
- Connpool
Maxsize 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.
- Connpool
Minsize 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.
- Connpool
Replenish 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..
- Connpool
Step int 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 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.
- Defaults
From 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.
- Idle
Timeout 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.
- Maxheader
Size 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
- Connpool
Maxreuse int Specifies the maximum number of times that the system can re-use a current connection. The default value is 0 (zero).
- Connpool
Maxsize 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.
- Connpool
Minsize 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.
- Connpool
Replenish 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..
- Connpool
Step int 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 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.
- Defaults
From 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.
- Idle
Timeout 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.
- Maxheader
Size 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
- connpool
Maxreuse number Specifies the maximum number of times that the system can re-use a current connection. The default value is 0 (zero).
- connpool
Maxsize 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.
- connpool
Minsize 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.
- connpool
Replenish 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..
- connpool
Step number 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 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.
- defaults
From 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.
- idle
Timeout 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.
- maxheader
Size 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:
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): ProfileFastHttpstatic 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:
- Connpool
Maxreuse int Specifies the maximum number of times that the system can re-use a current connection. The default value is 0 (zero).
- Connpool
Maxsize 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.
- Connpool
Minsize 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.
- Connpool
Replenish 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..
- Connpool
Step int 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 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.
- Defaults
From 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.
- Idle
Timeout 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.
- Maxheader
Size 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
- Connpool
Maxreuse int Specifies the maximum number of times that the system can re-use a current connection. The default value is 0 (zero).
- Connpool
Maxsize 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.
- Connpool
Minsize 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.
- Connpool
Replenish 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..
- Connpool
Step int 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 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.
- Defaults
From 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.
- Idle
Timeout 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.
- Maxheader
Size 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
- connpool
Maxreuse number Specifies the maximum number of times that the system can re-use a current connection. The default value is 0 (zero).
- connpool
Maxsize 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.
- connpool
Minsize 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.
- connpool
Replenish 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..
- connpool
Step number 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 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.
- defaults
From 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.
- idle
Timeout 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.
- maxheader
Size 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
bigipTerraform Provider.