1. Packages
  2. F5 BIG-IP
  3. API Docs
  4. ltm
  5. ProfileTcp
f5 BIG-IP v3.17.0 published on Thursday, Mar 28, 2024 by Pulumi

f5bigip.ltm.ProfileTcp

Explore with Pulumi AI

f5bigip logo
f5 BIG-IP v3.17.0 published on Thursday, Mar 28, 2024 by Pulumi

    f5bigip.ltm.ProfileTcp Configures a custom TCP LTM Profile for use by health checks.

    Resources should be named with their full path. The full path is the combination of the partition + name (example: /Common/my-pool ) or partition + directory + name of the resource (example: /Common/test/my-pool )

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as f5bigip from "@pulumi/f5bigip";
    
    const sanjose_tcp_lan_profile = new f5bigip.ltm.ProfileTcp("sanjose-tcp-lan-profile", {
        closeWaitTimeout: 5,
        deferredAccept: "enabled",
        fastOpen: "enabled",
        finwait2timeout: 5,
        finwaitTimeout: 300,
        idleTimeout: 200,
        keepaliveInterval: 1700,
        name: "/Common/sanjose-tcp-lan-profile",
    });
    
    import pulumi
    import pulumi_f5bigip as f5bigip
    
    sanjose_tcp_lan_profile = f5bigip.ltm.ProfileTcp("sanjose-tcp-lan-profile",
        close_wait_timeout=5,
        deferred_accept="enabled",
        fast_open="enabled",
        finwait2timeout=5,
        finwait_timeout=300,
        idle_timeout=200,
        keepalive_interval=1700,
        name="/Common/sanjose-tcp-lan-profile")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-f5bigip/sdk/v3/go/f5bigip/ltm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ltm.NewProfileTcp(ctx, "sanjose-tcp-lan-profile", &ltm.ProfileTcpArgs{
    			CloseWaitTimeout:  pulumi.Int(5),
    			DeferredAccept:    pulumi.String("enabled"),
    			FastOpen:          pulumi.String("enabled"),
    			Finwait2timeout:   pulumi.Int(5),
    			FinwaitTimeout:    pulumi.Int(300),
    			IdleTimeout:       pulumi.Int(200),
    			KeepaliveInterval: pulumi.Int(1700),
    			Name:              pulumi.String("/Common/sanjose-tcp-lan-profile"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using F5BigIP = Pulumi.F5BigIP;
    
    return await Deployment.RunAsync(() => 
    {
        var sanjose_tcp_lan_profile = new F5BigIP.Ltm.ProfileTcp("sanjose-tcp-lan-profile", new()
        {
            CloseWaitTimeout = 5,
            DeferredAccept = "enabled",
            FastOpen = "enabled",
            Finwait2timeout = 5,
            FinwaitTimeout = 300,
            IdleTimeout = 200,
            KeepaliveInterval = 1700,
            Name = "/Common/sanjose-tcp-lan-profile",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.f5bigip.ltm.ProfileTcp;
    import com.pulumi.f5bigip.ltm.ProfileTcpArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var sanjose_tcp_lan_profile = new ProfileTcp("sanjose-tcp-lan-profile", ProfileTcpArgs.builder()        
                .closeWaitTimeout(5)
                .deferredAccept("enabled")
                .fastOpen("enabled")
                .finwait2timeout(5)
                .finwaitTimeout(300)
                .idleTimeout(200)
                .keepaliveInterval(1700)
                .name("/Common/sanjose-tcp-lan-profile")
                .build());
    
        }
    }
    
    resources:
      sanjose-tcp-lan-profile:
        type: f5bigip:ltm:ProfileTcp
        properties:
          closeWaitTimeout: 5
          deferredAccept: enabled
          fastOpen: enabled
          finwait2timeout: 5
          finwaitTimeout: 300
          idleTimeout: 200
          keepaliveInterval: 1700
          name: /Common/sanjose-tcp-lan-profile
    

    Create ProfileTcp Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ProfileTcp(name: string, args: ProfileTcpArgs, opts?: CustomResourceOptions);
    @overload
    def ProfileTcp(resource_name: str,
                   args: ProfileTcpArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def ProfileTcp(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   name: Optional[str] = None,
                   initial_congestion_windowsize: Optional[int] = None,
                   early_retransmit: Optional[str] = None,
                   keepalive_interval: Optional[int] = None,
                   congestion_control: Optional[str] = None,
                   nagle: Optional[str] = None,
                   fast_open: Optional[str] = None,
                   finwait2timeout: Optional[int] = None,
                   finwait_timeout: Optional[int] = None,
                   idle_timeout: Optional[int] = None,
                   close_wait_timeout: Optional[int] = None,
                   deferred_accept: Optional[str] = None,
                   defaults_from: Optional[str] = None,
                   delayed_acks: Optional[str] = None,
                   partition: Optional[str] = None,
                   proxybuffer_high: Optional[int] = None,
                   receive_windowsize: Optional[int] = None,
                   send_buffersize: Optional[int] = None,
                   tailloss_probe: Optional[str] = None,
                   timewait_recycle: Optional[str] = None,
                   verified_accept: Optional[str] = None,
                   zerowindow_timeout: Optional[int] = None)
    func NewProfileTcp(ctx *Context, name string, args ProfileTcpArgs, opts ...ResourceOption) (*ProfileTcp, error)
    public ProfileTcp(string name, ProfileTcpArgs args, CustomResourceOptions? opts = null)
    public ProfileTcp(String name, ProfileTcpArgs args)
    public ProfileTcp(String name, ProfileTcpArgs args, CustomResourceOptions options)
    
    type: f5bigip:ltm:ProfileTcp
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ProfileTcpArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ProfileTcpArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ProfileTcpArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProfileTcpArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProfileTcpArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var profileTcpResource = new F5BigIP.Ltm.ProfileTcp("profileTcpResource", new()
    {
        Name = "string",
        InitialCongestionWindowsize = 0,
        EarlyRetransmit = "string",
        KeepaliveInterval = 0,
        CongestionControl = "string",
        Nagle = "string",
        FastOpen = "string",
        Finwait2timeout = 0,
        FinwaitTimeout = 0,
        IdleTimeout = 0,
        CloseWaitTimeout = 0,
        DeferredAccept = "string",
        DefaultsFrom = "string",
        DelayedAcks = "string",
        Partition = "string",
        ProxybufferHigh = 0,
        ReceiveWindowsize = 0,
        SendBuffersize = 0,
        TaillossProbe = "string",
        TimewaitRecycle = "string",
        VerifiedAccept = "string",
        ZerowindowTimeout = 0,
    });
    
    example, err := ltm.NewProfileTcp(ctx, "profileTcpResource", &ltm.ProfileTcpArgs{
    	Name:                        pulumi.String("string"),
    	InitialCongestionWindowsize: pulumi.Int(0),
    	EarlyRetransmit:             pulumi.String("string"),
    	KeepaliveInterval:           pulumi.Int(0),
    	CongestionControl:           pulumi.String("string"),
    	Nagle:                       pulumi.String("string"),
    	FastOpen:                    pulumi.String("string"),
    	Finwait2timeout:             pulumi.Int(0),
    	FinwaitTimeout:              pulumi.Int(0),
    	IdleTimeout:                 pulumi.Int(0),
    	CloseWaitTimeout:            pulumi.Int(0),
    	DeferredAccept:              pulumi.String("string"),
    	DefaultsFrom:                pulumi.String("string"),
    	DelayedAcks:                 pulumi.String("string"),
    	Partition:                   pulumi.String("string"),
    	ProxybufferHigh:             pulumi.Int(0),
    	ReceiveWindowsize:           pulumi.Int(0),
    	SendBuffersize:              pulumi.Int(0),
    	TaillossProbe:               pulumi.String("string"),
    	TimewaitRecycle:             pulumi.String("string"),
    	VerifiedAccept:              pulumi.String("string"),
    	ZerowindowTimeout:           pulumi.Int(0),
    })
    
    var profileTcpResource = new ProfileTcp("profileTcpResource", ProfileTcpArgs.builder()        
        .name("string")
        .initialCongestionWindowsize(0)
        .earlyRetransmit("string")
        .keepaliveInterval(0)
        .congestionControl("string")
        .nagle("string")
        .fastOpen("string")
        .finwait2timeout(0)
        .finwaitTimeout(0)
        .idleTimeout(0)
        .closeWaitTimeout(0)
        .deferredAccept("string")
        .defaultsFrom("string")
        .delayedAcks("string")
        .partition("string")
        .proxybufferHigh(0)
        .receiveWindowsize(0)
        .sendBuffersize(0)
        .taillossProbe("string")
        .timewaitRecycle("string")
        .verifiedAccept("string")
        .zerowindowTimeout(0)
        .build());
    
    profile_tcp_resource = f5bigip.ltm.ProfileTcp("profileTcpResource",
        name="string",
        initial_congestion_windowsize=0,
        early_retransmit="string",
        keepalive_interval=0,
        congestion_control="string",
        nagle="string",
        fast_open="string",
        finwait2timeout=0,
        finwait_timeout=0,
        idle_timeout=0,
        close_wait_timeout=0,
        deferred_accept="string",
        defaults_from="string",
        delayed_acks="string",
        partition="string",
        proxybuffer_high=0,
        receive_windowsize=0,
        send_buffersize=0,
        tailloss_probe="string",
        timewait_recycle="string",
        verified_accept="string",
        zerowindow_timeout=0)
    
    const profileTcpResource = new f5bigip.ltm.ProfileTcp("profileTcpResource", {
        name: "string",
        initialCongestionWindowsize: 0,
        earlyRetransmit: "string",
        keepaliveInterval: 0,
        congestionControl: "string",
        nagle: "string",
        fastOpen: "string",
        finwait2timeout: 0,
        finwaitTimeout: 0,
        idleTimeout: 0,
        closeWaitTimeout: 0,
        deferredAccept: "string",
        defaultsFrom: "string",
        delayedAcks: "string",
        partition: "string",
        proxybufferHigh: 0,
        receiveWindowsize: 0,
        sendBuffersize: 0,
        taillossProbe: "string",
        timewaitRecycle: "string",
        verifiedAccept: "string",
        zerowindowTimeout: 0,
    });
    
    type: f5bigip:ltm:ProfileTcp
    properties:
        closeWaitTimeout: 0
        congestionControl: string
        defaultsFrom: string
        deferredAccept: string
        delayedAcks: string
        earlyRetransmit: string
        fastOpen: string
        finwait2timeout: 0
        finwaitTimeout: 0
        idleTimeout: 0
        initialCongestionWindowsize: 0
        keepaliveInterval: 0
        nagle: string
        name: string
        partition: string
        proxybufferHigh: 0
        receiveWindowsize: 0
        sendBuffersize: 0
        taillossProbe: string
        timewaitRecycle: string
        verifiedAccept: string
        zerowindowTimeout: 0
    

    ProfileTcp Resource Properties

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

    Inputs

    The ProfileTcp resource accepts the following input properties:

    Name string
    Name of the LTM TCP Profile,name should be full path. The full path is the combination of the partition + name (example: /Common/my-pool ) or partition + directory + name of the resource (example: /Common/test/my-pool )
    CloseWaitTimeout int
    Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
    CongestionControl string
    Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
    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.
    DeferredAccept string
    Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
    DelayedAcks string
    Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
    EarlyRetransmit string
    Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
    FastOpen string
    When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is enabled. If fast_open set to enabled, argument verified_accept can't be set to enabled.
    Finwait2timeout int
    Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
    FinwaitTimeout int
    Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
    IdleTimeout int
    Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
    InitialCongestionWindowsize int
    Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
    KeepaliveInterval int
    Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
    Nagle string
    Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
    Partition string
    name of partition
    ProxybufferHigh int
    Specifies the proxy buffer level, in bytes, at which the receive window is closed.
    ReceiveWindowsize int
    Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
    SendBuffersize int
    Specifies the SEND window size. The default is 131072 bytes.
    TaillossProbe string
    Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
    TimewaitRecycle string
    Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
    VerifiedAccept string
    Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is disabled.
    ZerowindowTimeout int
    Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
    Name string
    Name of the LTM TCP Profile,name should be full path. The full path is the combination of the partition + name (example: /Common/my-pool ) or partition + directory + name of the resource (example: /Common/test/my-pool )
    CloseWaitTimeout int
    Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
    CongestionControl string
    Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
    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.
    DeferredAccept string
    Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
    DelayedAcks string
    Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
    EarlyRetransmit string
    Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
    FastOpen string
    When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is enabled. If fast_open set to enabled, argument verified_accept can't be set to enabled.
    Finwait2timeout int
    Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
    FinwaitTimeout int
    Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
    IdleTimeout int
    Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
    InitialCongestionWindowsize int
    Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
    KeepaliveInterval int
    Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
    Nagle string
    Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
    Partition string
    name of partition
    ProxybufferHigh int
    Specifies the proxy buffer level, in bytes, at which the receive window is closed.
    ReceiveWindowsize int
    Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
    SendBuffersize int
    Specifies the SEND window size. The default is 131072 bytes.
    TaillossProbe string
    Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
    TimewaitRecycle string
    Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
    VerifiedAccept string
    Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is disabled.
    ZerowindowTimeout int
    Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
    name String
    Name of the LTM TCP Profile,name should be full path. The full path is the combination of the partition + name (example: /Common/my-pool ) or partition + directory + name of the resource (example: /Common/test/my-pool )
    closeWaitTimeout Integer
    Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
    congestionControl String
    Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
    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.
    deferredAccept String
    Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
    delayedAcks String
    Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
    earlyRetransmit String
    Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
    fastOpen String
    When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is enabled. If fast_open set to enabled, argument verified_accept can't be set to enabled.
    finwait2timeout Integer
    Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
    finwaitTimeout Integer
    Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
    idleTimeout Integer
    Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
    initialCongestionWindowsize Integer
    Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
    keepaliveInterval Integer
    Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
    nagle String
    Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
    partition String
    name of partition
    proxybufferHigh Integer
    Specifies the proxy buffer level, in bytes, at which the receive window is closed.
    receiveWindowsize Integer
    Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
    sendBuffersize Integer
    Specifies the SEND window size. The default is 131072 bytes.
    taillossProbe String
    Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
    timewaitRecycle String
    Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
    verifiedAccept String
    Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is disabled.
    zerowindowTimeout Integer
    Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
    name string
    Name of the LTM TCP Profile,name should be full path. The full path is the combination of the partition + name (example: /Common/my-pool ) or partition + directory + name of the resource (example: /Common/test/my-pool )
    closeWaitTimeout number
    Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
    congestionControl string
    Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
    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.
    deferredAccept string
    Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
    delayedAcks string
    Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
    earlyRetransmit string
    Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
    fastOpen string
    When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is enabled. If fast_open set to enabled, argument verified_accept can't be set to enabled.
    finwait2timeout number
    Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
    finwaitTimeout number
    Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
    idleTimeout number
    Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
    initialCongestionWindowsize number
    Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
    keepaliveInterval number
    Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
    nagle string
    Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
    partition string
    name of partition
    proxybufferHigh number
    Specifies the proxy buffer level, in bytes, at which the receive window is closed.
    receiveWindowsize number
    Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
    sendBuffersize number
    Specifies the SEND window size. The default is 131072 bytes.
    taillossProbe string
    Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
    timewaitRecycle string
    Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
    verifiedAccept string
    Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is disabled.
    zerowindowTimeout number
    Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
    name str
    Name of the LTM TCP Profile,name should be full path. The full path is the combination of the partition + name (example: /Common/my-pool ) or partition + directory + name of the resource (example: /Common/test/my-pool )
    close_wait_timeout int
    Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
    congestion_control str
    Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
    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.
    deferred_accept str
    Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
    delayed_acks str
    Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
    early_retransmit str
    Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
    fast_open str
    When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is enabled. If fast_open set to enabled, argument verified_accept can't be set to enabled.
    finwait2timeout int
    Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
    finwait_timeout int
    Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
    idle_timeout int
    Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
    initial_congestion_windowsize int
    Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
    keepalive_interval int
    Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
    nagle str
    Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
    partition str
    name of partition
    proxybuffer_high int
    Specifies the proxy buffer level, in bytes, at which the receive window is closed.
    receive_windowsize int
    Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
    send_buffersize int
    Specifies the SEND window size. The default is 131072 bytes.
    tailloss_probe str
    Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
    timewait_recycle str
    Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
    verified_accept str
    Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is disabled.
    zerowindow_timeout int
    Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
    name String
    Name of the LTM TCP Profile,name should be full path. The full path is the combination of the partition + name (example: /Common/my-pool ) or partition + directory + name of the resource (example: /Common/test/my-pool )
    closeWaitTimeout Number
    Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
    congestionControl String
    Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
    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.
    deferredAccept String
    Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
    delayedAcks String
    Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
    earlyRetransmit String
    Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
    fastOpen String
    When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is enabled. If fast_open set to enabled, argument verified_accept can't be set to enabled.
    finwait2timeout Number
    Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
    finwaitTimeout Number
    Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
    idleTimeout Number
    Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
    initialCongestionWindowsize Number
    Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
    keepaliveInterval Number
    Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
    nagle String
    Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
    partition String
    name of partition
    proxybufferHigh Number
    Specifies the proxy buffer level, in bytes, at which the receive window is closed.
    receiveWindowsize Number
    Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
    sendBuffersize Number
    Specifies the SEND window size. The default is 131072 bytes.
    taillossProbe String
    Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
    timewaitRecycle String
    Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
    verifiedAccept String
    Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is disabled.
    zerowindowTimeout Number
    Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ProfileTcp 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 string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ProfileTcp Resource

    Get an existing ProfileTcp 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?: ProfileTcpState, opts?: CustomResourceOptions): ProfileTcp
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            close_wait_timeout: Optional[int] = None,
            congestion_control: Optional[str] = None,
            defaults_from: Optional[str] = None,
            deferred_accept: Optional[str] = None,
            delayed_acks: Optional[str] = None,
            early_retransmit: Optional[str] = None,
            fast_open: Optional[str] = None,
            finwait2timeout: Optional[int] = None,
            finwait_timeout: Optional[int] = None,
            idle_timeout: Optional[int] = None,
            initial_congestion_windowsize: Optional[int] = None,
            keepalive_interval: Optional[int] = None,
            nagle: Optional[str] = None,
            name: Optional[str] = None,
            partition: Optional[str] = None,
            proxybuffer_high: Optional[int] = None,
            receive_windowsize: Optional[int] = None,
            send_buffersize: Optional[int] = None,
            tailloss_probe: Optional[str] = None,
            timewait_recycle: Optional[str] = None,
            verified_accept: Optional[str] = None,
            zerowindow_timeout: Optional[int] = None) -> ProfileTcp
    func GetProfileTcp(ctx *Context, name string, id IDInput, state *ProfileTcpState, opts ...ResourceOption) (*ProfileTcp, error)
    public static ProfileTcp Get(string name, Input<string> id, ProfileTcpState? state, CustomResourceOptions? opts = null)
    public static ProfileTcp get(String name, Output<String> id, ProfileTcpState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    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:
    CloseWaitTimeout int
    Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
    CongestionControl string
    Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
    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.
    DeferredAccept string
    Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
    DelayedAcks string
    Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
    EarlyRetransmit string
    Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
    FastOpen string
    When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is enabled. If fast_open set to enabled, argument verified_accept can't be set to enabled.
    Finwait2timeout int
    Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
    FinwaitTimeout int
    Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
    IdleTimeout int
    Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
    InitialCongestionWindowsize int
    Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
    KeepaliveInterval int
    Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
    Nagle string
    Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
    Name string
    Name of the LTM TCP Profile,name should be full path. The full path is the combination of the partition + name (example: /Common/my-pool ) or partition + directory + name of the resource (example: /Common/test/my-pool )
    Partition string
    name of partition
    ProxybufferHigh int
    Specifies the proxy buffer level, in bytes, at which the receive window is closed.
    ReceiveWindowsize int
    Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
    SendBuffersize int
    Specifies the SEND window size. The default is 131072 bytes.
    TaillossProbe string
    Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
    TimewaitRecycle string
    Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
    VerifiedAccept string
    Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is disabled.
    ZerowindowTimeout int
    Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
    CloseWaitTimeout int
    Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
    CongestionControl string
    Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
    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.
    DeferredAccept string
    Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
    DelayedAcks string
    Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
    EarlyRetransmit string
    Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
    FastOpen string
    When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is enabled. If fast_open set to enabled, argument verified_accept can't be set to enabled.
    Finwait2timeout int
    Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
    FinwaitTimeout int
    Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
    IdleTimeout int
    Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
    InitialCongestionWindowsize int
    Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
    KeepaliveInterval int
    Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
    Nagle string
    Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
    Name string
    Name of the LTM TCP Profile,name should be full path. The full path is the combination of the partition + name (example: /Common/my-pool ) or partition + directory + name of the resource (example: /Common/test/my-pool )
    Partition string
    name of partition
    ProxybufferHigh int
    Specifies the proxy buffer level, in bytes, at which the receive window is closed.
    ReceiveWindowsize int
    Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
    SendBuffersize int
    Specifies the SEND window size. The default is 131072 bytes.
    TaillossProbe string
    Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
    TimewaitRecycle string
    Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
    VerifiedAccept string
    Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is disabled.
    ZerowindowTimeout int
    Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
    closeWaitTimeout Integer
    Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
    congestionControl String
    Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
    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.
    deferredAccept String
    Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
    delayedAcks String
    Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
    earlyRetransmit String
    Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
    fastOpen String
    When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is enabled. If fast_open set to enabled, argument verified_accept can't be set to enabled.
    finwait2timeout Integer
    Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
    finwaitTimeout Integer
    Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
    idleTimeout Integer
    Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
    initialCongestionWindowsize Integer
    Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
    keepaliveInterval Integer
    Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
    nagle String
    Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
    name String
    Name of the LTM TCP Profile,name should be full path. The full path is the combination of the partition + name (example: /Common/my-pool ) or partition + directory + name of the resource (example: /Common/test/my-pool )
    partition String
    name of partition
    proxybufferHigh Integer
    Specifies the proxy buffer level, in bytes, at which the receive window is closed.
    receiveWindowsize Integer
    Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
    sendBuffersize Integer
    Specifies the SEND window size. The default is 131072 bytes.
    taillossProbe String
    Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
    timewaitRecycle String
    Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
    verifiedAccept String
    Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is disabled.
    zerowindowTimeout Integer
    Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
    closeWaitTimeout number
    Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
    congestionControl string
    Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
    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.
    deferredAccept string
    Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
    delayedAcks string
    Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
    earlyRetransmit string
    Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
    fastOpen string
    When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is enabled. If fast_open set to enabled, argument verified_accept can't be set to enabled.
    finwait2timeout number
    Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
    finwaitTimeout number
    Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
    idleTimeout number
    Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
    initialCongestionWindowsize number
    Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
    keepaliveInterval number
    Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
    nagle string
    Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
    name string
    Name of the LTM TCP Profile,name should be full path. The full path is the combination of the partition + name (example: /Common/my-pool ) or partition + directory + name of the resource (example: /Common/test/my-pool )
    partition string
    name of partition
    proxybufferHigh number
    Specifies the proxy buffer level, in bytes, at which the receive window is closed.
    receiveWindowsize number
    Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
    sendBuffersize number
    Specifies the SEND window size. The default is 131072 bytes.
    taillossProbe string
    Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
    timewaitRecycle string
    Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
    verifiedAccept string
    Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is disabled.
    zerowindowTimeout number
    Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
    close_wait_timeout int
    Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
    congestion_control str
    Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
    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.
    deferred_accept str
    Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
    delayed_acks str
    Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
    early_retransmit str
    Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
    fast_open str
    When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is enabled. If fast_open set to enabled, argument verified_accept can't be set to enabled.
    finwait2timeout int
    Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
    finwait_timeout int
    Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
    idle_timeout int
    Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
    initial_congestion_windowsize int
    Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
    keepalive_interval int
    Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
    nagle str
    Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
    name str
    Name of the LTM TCP Profile,name should be full path. The full path is the combination of the partition + name (example: /Common/my-pool ) or partition + directory + name of the resource (example: /Common/test/my-pool )
    partition str
    name of partition
    proxybuffer_high int
    Specifies the proxy buffer level, in bytes, at which the receive window is closed.
    receive_windowsize int
    Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
    send_buffersize int
    Specifies the SEND window size. The default is 131072 bytes.
    tailloss_probe str
    Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
    timewait_recycle str
    Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
    verified_accept str
    Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is disabled.
    zerowindow_timeout int
    Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
    closeWaitTimeout Number
    Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
    congestionControl String
    Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
    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.
    deferredAccept String
    Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
    delayedAcks String
    Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
    earlyRetransmit String
    Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
    fastOpen String
    When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is enabled. If fast_open set to enabled, argument verified_accept can't be set to enabled.
    finwait2timeout Number
    Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
    finwaitTimeout Number
    Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
    idleTimeout Number
    Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
    initialCongestionWindowsize Number
    Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
    keepaliveInterval Number
    Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
    nagle String
    Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
    name String
    Name of the LTM TCP Profile,name should be full path. The full path is the combination of the partition + name (example: /Common/my-pool ) or partition + directory + name of the resource (example: /Common/test/my-pool )
    partition String
    name of partition
    proxybufferHigh Number
    Specifies the proxy buffer level, in bytes, at which the receive window is closed.
    receiveWindowsize Number
    Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
    sendBuffersize Number
    Specifies the SEND window size. The default is 131072 bytes.
    taillossProbe String
    Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
    timewaitRecycle String
    Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
    verifiedAccept String
    Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is disabled.
    zerowindowTimeout Number
    Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.

    Import

    ing

    An existing tcp profile can be imported into this resource by supplying tcp profile Name in full path as id. An example is below:

    $ terraform import bigip_ltm_profile_tcp.tcp-lan-profile-import /Common/test-tcp-lan-profile
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    f5 BIG-IP pulumi/pulumi-f5bigip
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the bigip Terraform Provider.
    f5bigip logo
    f5 BIG-IP v3.17.0 published on Thursday, Mar 28, 2024 by Pulumi