Show / Hide Table of Contents

Class 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",
    });
}

}
Inheritance
System.Object
Resource
CustomResource
ProfileFastHttp
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.F5BigIP.Ltm
Assembly: Pulumi.F5BigIP.dll
Syntax
public class ProfileFastHttp : CustomResource

Constructors

View Source

ProfileFastHttp(String, ProfileFastHttpArgs, CustomResourceOptions)

Create a ProfileFastHttp resource with the given unique name, arguments, and options.

Declaration
public ProfileFastHttp(string name, ProfileFastHttpArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

ProfileFastHttpArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

ConnpoolidleTimeoutoverride

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.

Declaration
public Output<int?> ConnpoolidleTimeoutoverride { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

ConnpoolMaxreuse

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

Declaration
public Output<int?> ConnpoolMaxreuse { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

ConnpoolMaxsize

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.

Declaration
public Output<int?> ConnpoolMaxsize { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

ConnpoolMinsize

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.

Declaration
public Output<int?> ConnpoolMinsize { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

ConnpoolReplenish

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..

Declaration
public Output<string> ConnpoolReplenish { get; }
Property Value
Type Description
Output<System.String>
View Source

ConnpoolStep

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

Declaration
public Output<int?> ConnpoolStep { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

DefaultsFrom

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.

Declaration
public Output<string> DefaultsFrom { get; }
Property Value
Type Description
Output<System.String>
View Source

Forcehttp10response

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.

Declaration
public Output<string> Forcehttp10response { get; }
Property Value
Type Description
Output<System.String>
View Source

IdleTimeout

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.

Declaration
public Output<int?> IdleTimeout { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

MaxheaderSize

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

Declaration
public Output<int?> MaxheaderSize { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

Name

Name of the profile_fasthttp

Declaration
public Output<string> Name { get; }
Property Value
Type Description
Output<System.String>

Methods

View Source

Get(String, Input<String>, ProfileFastHttpState, CustomResourceOptions)

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

Declaration
public static ProfileFastHttp Get(string name, Input<string> id, ProfileFastHttpState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

ProfileFastHttpState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
ProfileFastHttp
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.