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

f5bigip.FastTcpApp

Explore with Pulumi AI

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

    f5bigip.FastTcpApp This resource will create and manage FAST TCP applications on BIG-IP from provided JSON declaration.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as f5bigip from "@pulumi/f5bigip";
    
    const fast_tcp_app = new f5bigip.FastTcpApp("fast-tcp-app", {
        application: "tcp_app_2",
        poolMembers: [{
            addresses: [
                "10.11.34.65",
                "56.43.23.76",
            ],
            connectionLimit: 4,
            port: 443,
            priorityGroup: 1,
            shareNodes: true,
        }],
        tenant: "tcp_app_tenant",
        virtualServer: {
            ip: "11.12.16.30",
            port: 443,
        },
    });
    
    import pulumi
    import pulumi_f5bigip as f5bigip
    
    fast_tcp_app = f5bigip.FastTcpApp("fast-tcp-app",
        application="tcp_app_2",
        pool_members=[f5bigip.FastTcpAppPoolMemberArgs(
            addresses=[
                "10.11.34.65",
                "56.43.23.76",
            ],
            connection_limit=4,
            port=443,
            priority_group=1,
            share_nodes=True,
        )],
        tenant="tcp_app_tenant",
        virtual_server=f5bigip.FastTcpAppVirtualServerArgs(
            ip="11.12.16.30",
            port=443,
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-f5bigip/sdk/v3/go/f5bigip"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := f5bigip.NewFastTcpApp(ctx, "fast-tcp-app", &f5bigip.FastTcpAppArgs{
    			Application: pulumi.String("tcp_app_2"),
    			PoolMembers: f5bigip.FastTcpAppPoolMemberArray{
    				&f5bigip.FastTcpAppPoolMemberArgs{
    					Addresses: pulumi.StringArray{
    						pulumi.String("10.11.34.65"),
    						pulumi.String("56.43.23.76"),
    					},
    					ConnectionLimit: pulumi.Int(4),
    					Port:            pulumi.Int(443),
    					PriorityGroup:   pulumi.Int(1),
    					ShareNodes:      pulumi.Bool(true),
    				},
    			},
    			Tenant: pulumi.String("tcp_app_tenant"),
    			VirtualServer: &f5bigip.FastTcpAppVirtualServerArgs{
    				Ip:   pulumi.String("11.12.16.30"),
    				Port: pulumi.Int(443),
    			},
    		})
    		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 fast_tcp_app = new F5BigIP.FastTcpApp("fast-tcp-app", new()
        {
            Application = "tcp_app_2",
            PoolMembers = new[]
            {
                new F5BigIP.Inputs.FastTcpAppPoolMemberArgs
                {
                    Addresses = new[]
                    {
                        "10.11.34.65",
                        "56.43.23.76",
                    },
                    ConnectionLimit = 4,
                    Port = 443,
                    PriorityGroup = 1,
                    ShareNodes = true,
                },
            },
            Tenant = "tcp_app_tenant",
            VirtualServer = new F5BigIP.Inputs.FastTcpAppVirtualServerArgs
            {
                Ip = "11.12.16.30",
                Port = 443,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.f5bigip.FastTcpApp;
    import com.pulumi.f5bigip.FastTcpAppArgs;
    import com.pulumi.f5bigip.inputs.FastTcpAppPoolMemberArgs;
    import com.pulumi.f5bigip.inputs.FastTcpAppVirtualServerArgs;
    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 fast_tcp_app = new FastTcpApp("fast-tcp-app", FastTcpAppArgs.builder()        
                .application("tcp_app_2")
                .poolMembers(FastTcpAppPoolMemberArgs.builder()
                    .addresses(                
                        "10.11.34.65",
                        "56.43.23.76")
                    .connectionLimit(4)
                    .port(443)
                    .priorityGroup(1)
                    .shareNodes(true)
                    .build())
                .tenant("tcp_app_tenant")
                .virtualServer(FastTcpAppVirtualServerArgs.builder()
                    .ip("11.12.16.30")
                    .port(443)
                    .build())
                .build());
    
        }
    }
    
    resources:
      fast-tcp-app:
        type: f5bigip:FastTcpApp
        properties:
          application: tcp_app_2
          poolMembers:
            - addresses:
                - 10.11.34.65
                - 56.43.23.76
              connectionLimit: 4
              port: 443
              priorityGroup: 1
              shareNodes: true
          tenant: tcp_app_tenant
          virtualServer:
            ip: 11.12.16.30
            port: 443
    

    Create FastTcpApp Resource

    new FastTcpApp(name: string, args: FastTcpAppArgs, opts?: CustomResourceOptions);
    @overload
    def FastTcpApp(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   application: Optional[str] = None,
                   existing_monitor: Optional[str] = None,
                   existing_pool: Optional[str] = None,
                   existing_snat_pool: Optional[str] = None,
                   fallback_persistence: Optional[str] = None,
                   load_balancing_mode: Optional[str] = None,
                   monitor: Optional[FastTcpAppMonitorArgs] = None,
                   persistence_profile: Optional[str] = None,
                   persistence_type: Optional[str] = None,
                   pool_members: Optional[Sequence[FastTcpAppPoolMemberArgs]] = None,
                   slow_ramp_time: Optional[int] = None,
                   snat_pool_addresses: Optional[Sequence[str]] = None,
                   tenant: Optional[str] = None,
                   virtual_server: Optional[FastTcpAppVirtualServerArgs] = None)
    @overload
    def FastTcpApp(resource_name: str,
                   args: FastTcpAppArgs,
                   opts: Optional[ResourceOptions] = None)
    func NewFastTcpApp(ctx *Context, name string, args FastTcpAppArgs, opts ...ResourceOption) (*FastTcpApp, error)
    public FastTcpApp(string name, FastTcpAppArgs args, CustomResourceOptions? opts = null)
    public FastTcpApp(String name, FastTcpAppArgs args)
    public FastTcpApp(String name, FastTcpAppArgs args, CustomResourceOptions options)
    
    type: f5bigip:FastTcpApp
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args FastTcpAppArgs
    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 FastTcpAppArgs
    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 FastTcpAppArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FastTcpAppArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FastTcpAppArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    FastTcpApp 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 FastTcpApp resource accepts the following input properties:

    Application string
    Name of the FAST TCP application.
    Tenant string
    Name of the FAST TCP application tenant.
    ExistingMonitor string
    Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
    ExistingPool string
    Name of an existing BIG-IP pool.
    ExistingSnatPool string
    Name of an existing BIG-IP SNAT pool.
    FallbackPersistence string
    Type of fallback persistence record to be created for each new client connection.
    LoadBalancingMode string
    A load balancing method is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method
    Monitor Pulumi.F5BigIP.Inputs.FastTcpAppMonitor
    monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
    PersistenceProfile string
    Name of an existing BIG-IP persistence profile to be used.
    PersistenceType string
    Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
    PoolMembers List<Pulumi.F5BigIP.Inputs.FastTcpAppPoolMember>
    pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
    SlowRampTime int
    Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
    SnatPoolAddresses List<string>
    List of address to be used for FAST-Generated SNAT Pool.
    VirtualServer Pulumi.F5BigIP.Inputs.FastTcpAppVirtualServer
    virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
    Application string
    Name of the FAST TCP application.
    Tenant string
    Name of the FAST TCP application tenant.
    ExistingMonitor string
    Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
    ExistingPool string
    Name of an existing BIG-IP pool.
    ExistingSnatPool string
    Name of an existing BIG-IP SNAT pool.
    FallbackPersistence string
    Type of fallback persistence record to be created for each new client connection.
    LoadBalancingMode string
    A load balancing method is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method
    Monitor FastTcpAppMonitorArgs
    monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
    PersistenceProfile string
    Name of an existing BIG-IP persistence profile to be used.
    PersistenceType string
    Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
    PoolMembers []FastTcpAppPoolMemberArgs
    pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
    SlowRampTime int
    Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
    SnatPoolAddresses []string
    List of address to be used for FAST-Generated SNAT Pool.
    VirtualServer FastTcpAppVirtualServerArgs
    virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
    application String
    Name of the FAST TCP application.
    tenant String
    Name of the FAST TCP application tenant.
    existingMonitor String
    Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
    existingPool String
    Name of an existing BIG-IP pool.
    existingSnatPool String
    Name of an existing BIG-IP SNAT pool.
    fallbackPersistence String
    Type of fallback persistence record to be created for each new client connection.
    loadBalancingMode String
    A load balancing method is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method
    monitor FastTcpAppMonitor
    monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
    persistenceProfile String
    Name of an existing BIG-IP persistence profile to be used.
    persistenceType String
    Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
    poolMembers List<FastTcpAppPoolMember>
    pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
    slowRampTime Integer
    Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
    snatPoolAddresses List<String>
    List of address to be used for FAST-Generated SNAT Pool.
    virtualServer FastTcpAppVirtualServer
    virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
    application string
    Name of the FAST TCP application.
    tenant string
    Name of the FAST TCP application tenant.
    existingMonitor string
    Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
    existingPool string
    Name of an existing BIG-IP pool.
    existingSnatPool string
    Name of an existing BIG-IP SNAT pool.
    fallbackPersistence string
    Type of fallback persistence record to be created for each new client connection.
    loadBalancingMode string
    A load balancing method is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method
    monitor FastTcpAppMonitor
    monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
    persistenceProfile string
    Name of an existing BIG-IP persistence profile to be used.
    persistenceType string
    Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
    poolMembers FastTcpAppPoolMember[]
    pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
    slowRampTime number
    Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
    snatPoolAddresses string[]
    List of address to be used for FAST-Generated SNAT Pool.
    virtualServer FastTcpAppVirtualServer
    virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
    application str
    Name of the FAST TCP application.
    tenant str
    Name of the FAST TCP application tenant.
    existing_monitor str
    Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
    existing_pool str
    Name of an existing BIG-IP pool.
    existing_snat_pool str
    Name of an existing BIG-IP SNAT pool.
    fallback_persistence str
    Type of fallback persistence record to be created for each new client connection.
    load_balancing_mode str
    A load balancing method is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method
    monitor FastTcpAppMonitorArgs
    monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
    persistence_profile str
    Name of an existing BIG-IP persistence profile to be used.
    persistence_type str
    Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
    pool_members Sequence[FastTcpAppPoolMemberArgs]
    pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
    slow_ramp_time int
    Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
    snat_pool_addresses Sequence[str]
    List of address to be used for FAST-Generated SNAT Pool.
    virtual_server FastTcpAppVirtualServerArgs
    virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
    application String
    Name of the FAST TCP application.
    tenant String
    Name of the FAST TCP application tenant.
    existingMonitor String
    Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
    existingPool String
    Name of an existing BIG-IP pool.
    existingSnatPool String
    Name of an existing BIG-IP SNAT pool.
    fallbackPersistence String
    Type of fallback persistence record to be created for each new client connection.
    loadBalancingMode String
    A load balancing method is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method
    monitor Property Map
    monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
    persistenceProfile String
    Name of an existing BIG-IP persistence profile to be used.
    persistenceType String
    Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
    poolMembers List<Property Map>
    pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
    slowRampTime Number
    Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
    snatPoolAddresses List<String>
    List of address to be used for FAST-Generated SNAT Pool.
    virtualServer Property Map
    virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.

    Outputs

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

    FastTcpJson string
    Json payload for FAST TCP application.
    Id string
    The provider-assigned unique ID for this managed resource.
    FastTcpJson string
    Json payload for FAST TCP application.
    Id string
    The provider-assigned unique ID for this managed resource.
    fastTcpJson String
    Json payload for FAST TCP application.
    id String
    The provider-assigned unique ID for this managed resource.
    fastTcpJson string
    Json payload for FAST TCP application.
    id string
    The provider-assigned unique ID for this managed resource.
    fast_tcp_json str
    Json payload for FAST TCP application.
    id str
    The provider-assigned unique ID for this managed resource.
    fastTcpJson String
    Json payload for FAST TCP application.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing FastTcpApp Resource

    Get an existing FastTcpApp 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?: FastTcpAppState, opts?: CustomResourceOptions): FastTcpApp
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            application: Optional[str] = None,
            existing_monitor: Optional[str] = None,
            existing_pool: Optional[str] = None,
            existing_snat_pool: Optional[str] = None,
            fallback_persistence: Optional[str] = None,
            fast_tcp_json: Optional[str] = None,
            load_balancing_mode: Optional[str] = None,
            monitor: Optional[FastTcpAppMonitorArgs] = None,
            persistence_profile: Optional[str] = None,
            persistence_type: Optional[str] = None,
            pool_members: Optional[Sequence[FastTcpAppPoolMemberArgs]] = None,
            slow_ramp_time: Optional[int] = None,
            snat_pool_addresses: Optional[Sequence[str]] = None,
            tenant: Optional[str] = None,
            virtual_server: Optional[FastTcpAppVirtualServerArgs] = None) -> FastTcpApp
    func GetFastTcpApp(ctx *Context, name string, id IDInput, state *FastTcpAppState, opts ...ResourceOption) (*FastTcpApp, error)
    public static FastTcpApp Get(string name, Input<string> id, FastTcpAppState? state, CustomResourceOptions? opts = null)
    public static FastTcpApp get(String name, Output<String> id, FastTcpAppState 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:
    Application string
    Name of the FAST TCP application.
    ExistingMonitor string
    Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
    ExistingPool string
    Name of an existing BIG-IP pool.
    ExistingSnatPool string
    Name of an existing BIG-IP SNAT pool.
    FallbackPersistence string
    Type of fallback persistence record to be created for each new client connection.
    FastTcpJson string
    Json payload for FAST TCP application.
    LoadBalancingMode string
    A load balancing method is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method
    Monitor Pulumi.F5BigIP.Inputs.FastTcpAppMonitor
    monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
    PersistenceProfile string
    Name of an existing BIG-IP persistence profile to be used.
    PersistenceType string
    Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
    PoolMembers List<Pulumi.F5BigIP.Inputs.FastTcpAppPoolMember>
    pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
    SlowRampTime int
    Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
    SnatPoolAddresses List<string>
    List of address to be used for FAST-Generated SNAT Pool.
    Tenant string
    Name of the FAST TCP application tenant.
    VirtualServer Pulumi.F5BigIP.Inputs.FastTcpAppVirtualServer
    virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
    Application string
    Name of the FAST TCP application.
    ExistingMonitor string
    Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
    ExistingPool string
    Name of an existing BIG-IP pool.
    ExistingSnatPool string
    Name of an existing BIG-IP SNAT pool.
    FallbackPersistence string
    Type of fallback persistence record to be created for each new client connection.
    FastTcpJson string
    Json payload for FAST TCP application.
    LoadBalancingMode string
    A load balancing method is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method
    Monitor FastTcpAppMonitorArgs
    monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
    PersistenceProfile string
    Name of an existing BIG-IP persistence profile to be used.
    PersistenceType string
    Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
    PoolMembers []FastTcpAppPoolMemberArgs
    pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
    SlowRampTime int
    Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
    SnatPoolAddresses []string
    List of address to be used for FAST-Generated SNAT Pool.
    Tenant string
    Name of the FAST TCP application tenant.
    VirtualServer FastTcpAppVirtualServerArgs
    virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
    application String
    Name of the FAST TCP application.
    existingMonitor String
    Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
    existingPool String
    Name of an existing BIG-IP pool.
    existingSnatPool String
    Name of an existing BIG-IP SNAT pool.
    fallbackPersistence String
    Type of fallback persistence record to be created for each new client connection.
    fastTcpJson String
    Json payload for FAST TCP application.
    loadBalancingMode String
    A load balancing method is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method
    monitor FastTcpAppMonitor
    monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
    persistenceProfile String
    Name of an existing BIG-IP persistence profile to be used.
    persistenceType String
    Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
    poolMembers List<FastTcpAppPoolMember>
    pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
    slowRampTime Integer
    Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
    snatPoolAddresses List<String>
    List of address to be used for FAST-Generated SNAT Pool.
    tenant String
    Name of the FAST TCP application tenant.
    virtualServer FastTcpAppVirtualServer
    virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
    application string
    Name of the FAST TCP application.
    existingMonitor string
    Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
    existingPool string
    Name of an existing BIG-IP pool.
    existingSnatPool string
    Name of an existing BIG-IP SNAT pool.
    fallbackPersistence string
    Type of fallback persistence record to be created for each new client connection.
    fastTcpJson string
    Json payload for FAST TCP application.
    loadBalancingMode string
    A load balancing method is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method
    monitor FastTcpAppMonitor
    monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
    persistenceProfile string
    Name of an existing BIG-IP persistence profile to be used.
    persistenceType string
    Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
    poolMembers FastTcpAppPoolMember[]
    pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
    slowRampTime number
    Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
    snatPoolAddresses string[]
    List of address to be used for FAST-Generated SNAT Pool.
    tenant string
    Name of the FAST TCP application tenant.
    virtualServer FastTcpAppVirtualServer
    virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
    application str
    Name of the FAST TCP application.
    existing_monitor str
    Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
    existing_pool str
    Name of an existing BIG-IP pool.
    existing_snat_pool str
    Name of an existing BIG-IP SNAT pool.
    fallback_persistence str
    Type of fallback persistence record to be created for each new client connection.
    fast_tcp_json str
    Json payload for FAST TCP application.
    load_balancing_mode str
    A load balancing method is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method
    monitor FastTcpAppMonitorArgs
    monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
    persistence_profile str
    Name of an existing BIG-IP persistence profile to be used.
    persistence_type str
    Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
    pool_members Sequence[FastTcpAppPoolMemberArgs]
    pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
    slow_ramp_time int
    Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
    snat_pool_addresses Sequence[str]
    List of address to be used for FAST-Generated SNAT Pool.
    tenant str
    Name of the FAST TCP application tenant.
    virtual_server FastTcpAppVirtualServerArgs
    virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
    application String
    Name of the FAST TCP application.
    existingMonitor String
    Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
    existingPool String
    Name of an existing BIG-IP pool.
    existingSnatPool String
    Name of an existing BIG-IP SNAT pool.
    fallbackPersistence String
    Type of fallback persistence record to be created for each new client connection.
    fastTcpJson String
    Json payload for FAST TCP application.
    loadBalancingMode String
    A load balancing method is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method
    monitor Property Map
    monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
    persistenceProfile String
    Name of an existing BIG-IP persistence profile to be used.
    persistenceType String
    Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
    poolMembers List<Property Map>
    pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
    slowRampTime Number
    Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
    snatPoolAddresses List<String>
    List of address to be used for FAST-Generated SNAT Pool.
    tenant String
    Name of the FAST TCP application tenant.
    virtualServer Property Map
    virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.

    Supporting Types

    FastTcpAppMonitor, FastTcpAppMonitorArgs

    Interval int
    Set the time between health checks,in seconds for FAST-Generated Pool Monitor.
    Interval int
    Set the time between health checks,in seconds for FAST-Generated Pool Monitor.
    interval Integer
    Set the time between health checks,in seconds for FAST-Generated Pool Monitor.
    interval number
    Set the time between health checks,in seconds for FAST-Generated Pool Monitor.
    interval int
    Set the time between health checks,in seconds for FAST-Generated Pool Monitor.
    interval Number
    Set the time between health checks,in seconds for FAST-Generated Pool Monitor.

    FastTcpAppPoolMember, FastTcpAppPoolMemberArgs

    Addresses List<string>
    List of server address to be used for FAST-Generated Pool.
    ConnectionLimit int
    connectionLimit value to be used for FAST-Generated Pool.
    Port int
    port number of serviceport to be used for FAST-Generated Pool.
    PriorityGroup int
    priorityGroup value to be used for FAST-Generated Pool.
    ShareNodes bool
    shareNodes value to be used for FAST-Generated Pool.
    Addresses []string
    List of server address to be used for FAST-Generated Pool.
    ConnectionLimit int
    connectionLimit value to be used for FAST-Generated Pool.
    Port int
    port number of serviceport to be used for FAST-Generated Pool.
    PriorityGroup int
    priorityGroup value to be used for FAST-Generated Pool.
    ShareNodes bool
    shareNodes value to be used for FAST-Generated Pool.
    addresses List<String>
    List of server address to be used for FAST-Generated Pool.
    connectionLimit Integer
    connectionLimit value to be used for FAST-Generated Pool.
    port Integer
    port number of serviceport to be used for FAST-Generated Pool.
    priorityGroup Integer
    priorityGroup value to be used for FAST-Generated Pool.
    shareNodes Boolean
    shareNodes value to be used for FAST-Generated Pool.
    addresses string[]
    List of server address to be used for FAST-Generated Pool.
    connectionLimit number
    connectionLimit value to be used for FAST-Generated Pool.
    port number
    port number of serviceport to be used for FAST-Generated Pool.
    priorityGroup number
    priorityGroup value to be used for FAST-Generated Pool.
    shareNodes boolean
    shareNodes value to be used for FAST-Generated Pool.
    addresses Sequence[str]
    List of server address to be used for FAST-Generated Pool.
    connection_limit int
    connectionLimit value to be used for FAST-Generated Pool.
    port int
    port number of serviceport to be used for FAST-Generated Pool.
    priority_group int
    priorityGroup value to be used for FAST-Generated Pool.
    share_nodes bool
    shareNodes value to be used for FAST-Generated Pool.
    addresses List<String>
    List of server address to be used for FAST-Generated Pool.
    connectionLimit Number
    connectionLimit value to be used for FAST-Generated Pool.
    port Number
    port number of serviceport to be used for FAST-Generated Pool.
    priorityGroup Number
    priorityGroup value to be used for FAST-Generated Pool.
    shareNodes Boolean
    shareNodes value to be used for FAST-Generated Pool.

    FastTcpAppVirtualServer, FastTcpAppVirtualServerArgs

    Ip string
    IP4/IPv6 address to be used for virtual server ex: 10.1.1.1
    Port int
    Port number to used for accessing virtual server/application
    Ip string
    IP4/IPv6 address to be used for virtual server ex: 10.1.1.1
    Port int
    Port number to used for accessing virtual server/application
    ip String
    IP4/IPv6 address to be used for virtual server ex: 10.1.1.1
    port Integer
    Port number to used for accessing virtual server/application
    ip string
    IP4/IPv6 address to be used for virtual server ex: 10.1.1.1
    port number
    Port number to used for accessing virtual server/application
    ip str
    IP4/IPv6 address to be used for virtual server ex: 10.1.1.1
    port int
    Port number to used for accessing virtual server/application
    ip String
    IP4/IPv6 address to be used for virtual server ex: 10.1.1.1
    port Number
    Port number to used for accessing virtual server/application

    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