f5bigip.ltm.ProfileOneConnect
Explore with Pulumi AI
f5bigip.ltm.ProfileOneConnect Configures a custom profile_oneconnect 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 test_oneconnect = new f5bigip.ltm.ProfileOneConnect("test-oneconnect", {name: "/Common/test-oneconnect"});
import pulumi
import pulumi_f5bigip as f5bigip
test_oneconnect = f5bigip.ltm.ProfileOneConnect("test-oneconnect", name="/Common/test-oneconnect")
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.NewProfileOneConnect(ctx, "test-oneconnect", <m.ProfileOneConnectArgs{
			Name: pulumi.String("/Common/test-oneconnect"),
		})
		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 test_oneconnect = new F5BigIP.Ltm.ProfileOneConnect("test-oneconnect", new()
    {
        Name = "/Common/test-oneconnect",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.f5bigip.ltm.ProfileOneConnect;
import com.pulumi.f5bigip.ltm.ProfileOneConnectArgs;
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 test_oneconnect = new ProfileOneConnect("test-oneconnect", ProfileOneConnectArgs.builder()
            .name("/Common/test-oneconnect")
            .build());
    }
}
resources:
  test-oneconnect:
    type: f5bigip:ltm:ProfileOneConnect
    properties:
      name: /Common/test-oneconnect
Create ProfileOneConnect Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProfileOneConnect(name: string, args: ProfileOneConnectArgs, opts?: CustomResourceOptions);@overload
def ProfileOneConnect(resource_name: str,
                      args: ProfileOneConnectArgs,
                      opts: Optional[ResourceOptions] = None)
@overload
def ProfileOneConnect(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      name: Optional[str] = None,
                      defaults_from: Optional[str] = None,
                      idle_timeout_override: Optional[str] = None,
                      limit_type: Optional[str] = None,
                      max_age: Optional[int] = None,
                      max_reuse: Optional[int] = None,
                      max_size: Optional[int] = None,
                      partition: Optional[str] = None,
                      share_pools: Optional[str] = None,
                      source_mask: Optional[str] = None)func NewProfileOneConnect(ctx *Context, name string, args ProfileOneConnectArgs, opts ...ResourceOption) (*ProfileOneConnect, error)public ProfileOneConnect(string name, ProfileOneConnectArgs args, CustomResourceOptions? opts = null)
public ProfileOneConnect(String name, ProfileOneConnectArgs args)
public ProfileOneConnect(String name, ProfileOneConnectArgs args, CustomResourceOptions options)
type: f5bigip:ltm:ProfileOneConnect
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 ProfileOneConnectArgs
- 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 ProfileOneConnectArgs
- 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 ProfileOneConnectArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProfileOneConnectArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProfileOneConnectArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var profileOneConnectResource = new F5BigIP.Ltm.ProfileOneConnect("profileOneConnectResource", new()
{
    Name = "string",
    DefaultsFrom = "string",
    IdleTimeoutOverride = "string",
    LimitType = "string",
    MaxAge = 0,
    MaxReuse = 0,
    MaxSize = 0,
    Partition = "string",
    SharePools = "string",
    SourceMask = "string",
});
example, err := ltm.NewProfileOneConnect(ctx, "profileOneConnectResource", <m.ProfileOneConnectArgs{
	Name:                pulumi.String("string"),
	DefaultsFrom:        pulumi.String("string"),
	IdleTimeoutOverride: pulumi.String("string"),
	LimitType:           pulumi.String("string"),
	MaxAge:              pulumi.Int(0),
	MaxReuse:            pulumi.Int(0),
	MaxSize:             pulumi.Int(0),
	Partition:           pulumi.String("string"),
	SharePools:          pulumi.String("string"),
	SourceMask:          pulumi.String("string"),
})
var profileOneConnectResource = new ProfileOneConnect("profileOneConnectResource", ProfileOneConnectArgs.builder()
    .name("string")
    .defaultsFrom("string")
    .idleTimeoutOverride("string")
    .limitType("string")
    .maxAge(0)
    .maxReuse(0)
    .maxSize(0)
    .partition("string")
    .sharePools("string")
    .sourceMask("string")
    .build());
profile_one_connect_resource = f5bigip.ltm.ProfileOneConnect("profileOneConnectResource",
    name="string",
    defaults_from="string",
    idle_timeout_override="string",
    limit_type="string",
    max_age=0,
    max_reuse=0,
    max_size=0,
    partition="string",
    share_pools="string",
    source_mask="string")
const profileOneConnectResource = new f5bigip.ltm.ProfileOneConnect("profileOneConnectResource", {
    name: "string",
    defaultsFrom: "string",
    idleTimeoutOverride: "string",
    limitType: "string",
    maxAge: 0,
    maxReuse: 0,
    maxSize: 0,
    partition: "string",
    sharePools: "string",
    sourceMask: "string",
});
type: f5bigip:ltm:ProfileOneConnect
properties:
    defaultsFrom: string
    idleTimeoutOverride: string
    limitType: string
    maxAge: 0
    maxReuse: 0
    maxSize: 0
    name: string
    partition: string
    sharePools: string
    sourceMask: string
ProfileOneConnect Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ProfileOneConnect resource accepts the following input properties:
- Name string
- Name of Profile should be full path.The full path is the combination of the partition + profile_name,For example/Common/test-oneconnect-profile.
- 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.
- IdleTimeout stringOverride 
- Specifies the number of seconds that a connection is idle before the connection flow is eligible for deletion. Possible values are disabled,indefinite, or a numeric value that you specify. The default value isdisabled
- LimitType string
- Controls how connection limits are enforced in conjunction with OneConnect. The default is None. Supported Values:[None,idle,strict]
- MaxAge int
- Specifies the maximum age in number of seconds allowed for a connection in the connection reuse pool. For any connection with an age higher than this value, the system removes that connection from the reuse pool. The default value is 86400.
- MaxReuse int
- Specifies the maximum number of times that a server-side connection can be reused. The default value is 1000.
- MaxSize int
- Specifies the maximum number of connections that the system holds in the connection reuse pool. If the pool is already full, then the server-side connection closes after the response is completed. The default value is 10000.
- Partition string
- Displays the administrative partition within which this profile resides
- string
- Specify if you want to share the pool, default value is disabled.
- SourceMask string
- Specifies a source IP mask. The default value is 0.0.0.0. The system applies the value of this option to the source address to determine its eligibility for reuse. A mask of 0.0.0.0 causes the system to share reused connections across all clients. A host mask (all 1's in binary), causes the system to share only those reused connections originating from the same client IP address.
- Name string
- Name of Profile should be full path.The full path is the combination of the partition + profile_name,For example/Common/test-oneconnect-profile.
- 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.
- IdleTimeout stringOverride 
- Specifies the number of seconds that a connection is idle before the connection flow is eligible for deletion. Possible values are disabled,indefinite, or a numeric value that you specify. The default value isdisabled
- LimitType string
- Controls how connection limits are enforced in conjunction with OneConnect. The default is None. Supported Values:[None,idle,strict]
- MaxAge int
- Specifies the maximum age in number of seconds allowed for a connection in the connection reuse pool. For any connection with an age higher than this value, the system removes that connection from the reuse pool. The default value is 86400.
- MaxReuse int
- Specifies the maximum number of times that a server-side connection can be reused. The default value is 1000.
- MaxSize int
- Specifies the maximum number of connections that the system holds in the connection reuse pool. If the pool is already full, then the server-side connection closes after the response is completed. The default value is 10000.
- Partition string
- Displays the administrative partition within which this profile resides
- string
- Specify if you want to share the pool, default value is disabled.
- SourceMask string
- Specifies a source IP mask. The default value is 0.0.0.0. The system applies the value of this option to the source address to determine its eligibility for reuse. A mask of 0.0.0.0 causes the system to share reused connections across all clients. A host mask (all 1's in binary), causes the system to share only those reused connections originating from the same client IP address.
- name String
- Name of Profile should be full path.The full path is the combination of the partition + profile_name,For example/Common/test-oneconnect-profile.
- 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.
- idleTimeout StringOverride 
- Specifies the number of seconds that a connection is idle before the connection flow is eligible for deletion. Possible values are disabled,indefinite, or a numeric value that you specify. The default value isdisabled
- limitType String
- Controls how connection limits are enforced in conjunction with OneConnect. The default is None. Supported Values:[None,idle,strict]
- maxAge Integer
- Specifies the maximum age in number of seconds allowed for a connection in the connection reuse pool. For any connection with an age higher than this value, the system removes that connection from the reuse pool. The default value is 86400.
- maxReuse Integer
- Specifies the maximum number of times that a server-side connection can be reused. The default value is 1000.
- maxSize Integer
- Specifies the maximum number of connections that the system holds in the connection reuse pool. If the pool is already full, then the server-side connection closes after the response is completed. The default value is 10000.
- partition String
- Displays the administrative partition within which this profile resides
- String
- Specify if you want to share the pool, default value is disabled.
- sourceMask String
- Specifies a source IP mask. The default value is 0.0.0.0. The system applies the value of this option to the source address to determine its eligibility for reuse. A mask of 0.0.0.0 causes the system to share reused connections across all clients. A host mask (all 1's in binary), causes the system to share only those reused connections originating from the same client IP address.
- name string
- Name of Profile should be full path.The full path is the combination of the partition + profile_name,For example/Common/test-oneconnect-profile.
- 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.
- idleTimeout stringOverride 
- Specifies the number of seconds that a connection is idle before the connection flow is eligible for deletion. Possible values are disabled,indefinite, or a numeric value that you specify. The default value isdisabled
- limitType string
- Controls how connection limits are enforced in conjunction with OneConnect. The default is None. Supported Values:[None,idle,strict]
- maxAge number
- Specifies the maximum age in number of seconds allowed for a connection in the connection reuse pool. For any connection with an age higher than this value, the system removes that connection from the reuse pool. The default value is 86400.
- maxReuse number
- Specifies the maximum number of times that a server-side connection can be reused. The default value is 1000.
- maxSize number
- Specifies the maximum number of connections that the system holds in the connection reuse pool. If the pool is already full, then the server-side connection closes after the response is completed. The default value is 10000.
- partition string
- Displays the administrative partition within which this profile resides
- string
- Specify if you want to share the pool, default value is disabled.
- sourceMask string
- Specifies a source IP mask. The default value is 0.0.0.0. The system applies the value of this option to the source address to determine its eligibility for reuse. A mask of 0.0.0.0 causes the system to share reused connections across all clients. A host mask (all 1's in binary), causes the system to share only those reused connections originating from the same client IP address.
- name str
- Name of Profile should be full path.The full path is the combination of the partition + profile_name,For example/Common/test-oneconnect-profile.
- 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.
- idle_timeout_ stroverride 
- Specifies the number of seconds that a connection is idle before the connection flow is eligible for deletion. Possible values are disabled,indefinite, or a numeric value that you specify. The default value isdisabled
- limit_type str
- Controls how connection limits are enforced in conjunction with OneConnect. The default is None. Supported Values:[None,idle,strict]
- max_age int
- Specifies the maximum age in number of seconds allowed for a connection in the connection reuse pool. For any connection with an age higher than this value, the system removes that connection from the reuse pool. The default value is 86400.
- max_reuse int
- Specifies the maximum number of times that a server-side connection can be reused. The default value is 1000.
- max_size int
- Specifies the maximum number of connections that the system holds in the connection reuse pool. If the pool is already full, then the server-side connection closes after the response is completed. The default value is 10000.
- partition str
- Displays the administrative partition within which this profile resides
- str
- Specify if you want to share the pool, default value is disabled.
- source_mask str
- Specifies a source IP mask. The default value is 0.0.0.0. The system applies the value of this option to the source address to determine its eligibility for reuse. A mask of 0.0.0.0 causes the system to share reused connections across all clients. A host mask (all 1's in binary), causes the system to share only those reused connections originating from the same client IP address.
- name String
- Name of Profile should be full path.The full path is the combination of the partition + profile_name,For example/Common/test-oneconnect-profile.
- 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.
- idleTimeout StringOverride 
- Specifies the number of seconds that a connection is idle before the connection flow is eligible for deletion. Possible values are disabled,indefinite, or a numeric value that you specify. The default value isdisabled
- limitType String
- Controls how connection limits are enforced in conjunction with OneConnect. The default is None. Supported Values:[None,idle,strict]
- maxAge Number
- Specifies the maximum age in number of seconds allowed for a connection in the connection reuse pool. For any connection with an age higher than this value, the system removes that connection from the reuse pool. The default value is 86400.
- maxReuse Number
- Specifies the maximum number of times that a server-side connection can be reused. The default value is 1000.
- maxSize Number
- Specifies the maximum number of connections that the system holds in the connection reuse pool. If the pool is already full, then the server-side connection closes after the response is completed. The default value is 10000.
- partition String
- Displays the administrative partition within which this profile resides
- String
- Specify if you want to share the pool, default value is disabled.
- sourceMask String
- Specifies a source IP mask. The default value is 0.0.0.0. The system applies the value of this option to the source address to determine its eligibility for reuse. A mask of 0.0.0.0 causes the system to share reused connections across all clients. A host mask (all 1's in binary), causes the system to share only those reused connections originating from the same client IP address.
Outputs
All input properties are implicitly available as output properties. Additionally, the ProfileOneConnect 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 ProfileOneConnect Resource
Get an existing ProfileOneConnect 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?: ProfileOneConnectState, opts?: CustomResourceOptions): ProfileOneConnect@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        defaults_from: Optional[str] = None,
        idle_timeout_override: Optional[str] = None,
        limit_type: Optional[str] = None,
        max_age: Optional[int] = None,
        max_reuse: Optional[int] = None,
        max_size: Optional[int] = None,
        name: Optional[str] = None,
        partition: Optional[str] = None,
        share_pools: Optional[str] = None,
        source_mask: Optional[str] = None) -> ProfileOneConnectfunc GetProfileOneConnect(ctx *Context, name string, id IDInput, state *ProfileOneConnectState, opts ...ResourceOption) (*ProfileOneConnect, error)public static ProfileOneConnect Get(string name, Input<string> id, ProfileOneConnectState? state, CustomResourceOptions? opts = null)public static ProfileOneConnect get(String name, Output<String> id, ProfileOneConnectState state, CustomResourceOptions options)resources:  _:    type: f5bigip:ltm:ProfileOneConnect    get:      id: ${id}- 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.
- 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.
- IdleTimeout stringOverride 
- Specifies the number of seconds that a connection is idle before the connection flow is eligible for deletion. Possible values are disabled,indefinite, or a numeric value that you specify. The default value isdisabled
- LimitType string
- Controls how connection limits are enforced in conjunction with OneConnect. The default is None. Supported Values:[None,idle,strict]
- MaxAge int
- Specifies the maximum age in number of seconds allowed for a connection in the connection reuse pool. For any connection with an age higher than this value, the system removes that connection from the reuse pool. The default value is 86400.
- MaxReuse int
- Specifies the maximum number of times that a server-side connection can be reused. The default value is 1000.
- MaxSize int
- Specifies the maximum number of connections that the system holds in the connection reuse pool. If the pool is already full, then the server-side connection closes after the response is completed. The default value is 10000.
- Name string
- Name of Profile should be full path.The full path is the combination of the partition + profile_name,For example/Common/test-oneconnect-profile.
- Partition string
- Displays the administrative partition within which this profile resides
- string
- Specify if you want to share the pool, default value is disabled.
- SourceMask string
- Specifies a source IP mask. The default value is 0.0.0.0. The system applies the value of this option to the source address to determine its eligibility for reuse. A mask of 0.0.0.0 causes the system to share reused connections across all clients. A host mask (all 1's in binary), causes the system to share only those reused connections originating from the same client IP address.
- 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.
- IdleTimeout stringOverride 
- Specifies the number of seconds that a connection is idle before the connection flow is eligible for deletion. Possible values are disabled,indefinite, or a numeric value that you specify. The default value isdisabled
- LimitType string
- Controls how connection limits are enforced in conjunction with OneConnect. The default is None. Supported Values:[None,idle,strict]
- MaxAge int
- Specifies the maximum age in number of seconds allowed for a connection in the connection reuse pool. For any connection with an age higher than this value, the system removes that connection from the reuse pool. The default value is 86400.
- MaxReuse int
- Specifies the maximum number of times that a server-side connection can be reused. The default value is 1000.
- MaxSize int
- Specifies the maximum number of connections that the system holds in the connection reuse pool. If the pool is already full, then the server-side connection closes after the response is completed. The default value is 10000.
- Name string
- Name of Profile should be full path.The full path is the combination of the partition + profile_name,For example/Common/test-oneconnect-profile.
- Partition string
- Displays the administrative partition within which this profile resides
- string
- Specify if you want to share the pool, default value is disabled.
- SourceMask string
- Specifies a source IP mask. The default value is 0.0.0.0. The system applies the value of this option to the source address to determine its eligibility for reuse. A mask of 0.0.0.0 causes the system to share reused connections across all clients. A host mask (all 1's in binary), causes the system to share only those reused connections originating from the same client IP address.
- 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.
- idleTimeout StringOverride 
- Specifies the number of seconds that a connection is idle before the connection flow is eligible for deletion. Possible values are disabled,indefinite, or a numeric value that you specify. The default value isdisabled
- limitType String
- Controls how connection limits are enforced in conjunction with OneConnect. The default is None. Supported Values:[None,idle,strict]
- maxAge Integer
- Specifies the maximum age in number of seconds allowed for a connection in the connection reuse pool. For any connection with an age higher than this value, the system removes that connection from the reuse pool. The default value is 86400.
- maxReuse Integer
- Specifies the maximum number of times that a server-side connection can be reused. The default value is 1000.
- maxSize Integer
- Specifies the maximum number of connections that the system holds in the connection reuse pool. If the pool is already full, then the server-side connection closes after the response is completed. The default value is 10000.
- name String
- Name of Profile should be full path.The full path is the combination of the partition + profile_name,For example/Common/test-oneconnect-profile.
- partition String
- Displays the administrative partition within which this profile resides
- String
- Specify if you want to share the pool, default value is disabled.
- sourceMask String
- Specifies a source IP mask. The default value is 0.0.0.0. The system applies the value of this option to the source address to determine its eligibility for reuse. A mask of 0.0.0.0 causes the system to share reused connections across all clients. A host mask (all 1's in binary), causes the system to share only those reused connections originating from the same client IP address.
- 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.
- idleTimeout stringOverride 
- Specifies the number of seconds that a connection is idle before the connection flow is eligible for deletion. Possible values are disabled,indefinite, or a numeric value that you specify. The default value isdisabled
- limitType string
- Controls how connection limits are enforced in conjunction with OneConnect. The default is None. Supported Values:[None,idle,strict]
- maxAge number
- Specifies the maximum age in number of seconds allowed for a connection in the connection reuse pool. For any connection with an age higher than this value, the system removes that connection from the reuse pool. The default value is 86400.
- maxReuse number
- Specifies the maximum number of times that a server-side connection can be reused. The default value is 1000.
- maxSize number
- Specifies the maximum number of connections that the system holds in the connection reuse pool. If the pool is already full, then the server-side connection closes after the response is completed. The default value is 10000.
- name string
- Name of Profile should be full path.The full path is the combination of the partition + profile_name,For example/Common/test-oneconnect-profile.
- partition string
- Displays the administrative partition within which this profile resides
- string
- Specify if you want to share the pool, default value is disabled.
- sourceMask string
- Specifies a source IP mask. The default value is 0.0.0.0. The system applies the value of this option to the source address to determine its eligibility for reuse. A mask of 0.0.0.0 causes the system to share reused connections across all clients. A host mask (all 1's in binary), causes the system to share only those reused connections originating from the same client IP address.
- 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.
- idle_timeout_ stroverride 
- Specifies the number of seconds that a connection is idle before the connection flow is eligible for deletion. Possible values are disabled,indefinite, or a numeric value that you specify. The default value isdisabled
- limit_type str
- Controls how connection limits are enforced in conjunction with OneConnect. The default is None. Supported Values:[None,idle,strict]
- max_age int
- Specifies the maximum age in number of seconds allowed for a connection in the connection reuse pool. For any connection with an age higher than this value, the system removes that connection from the reuse pool. The default value is 86400.
- max_reuse int
- Specifies the maximum number of times that a server-side connection can be reused. The default value is 1000.
- max_size int
- Specifies the maximum number of connections that the system holds in the connection reuse pool. If the pool is already full, then the server-side connection closes after the response is completed. The default value is 10000.
- name str
- Name of Profile should be full path.The full path is the combination of the partition + profile_name,For example/Common/test-oneconnect-profile.
- partition str
- Displays the administrative partition within which this profile resides
- str
- Specify if you want to share the pool, default value is disabled.
- source_mask str
- Specifies a source IP mask. The default value is 0.0.0.0. The system applies the value of this option to the source address to determine its eligibility for reuse. A mask of 0.0.0.0 causes the system to share reused connections across all clients. A host mask (all 1's in binary), causes the system to share only those reused connections originating from the same client IP address.
- 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.
- idleTimeout StringOverride 
- Specifies the number of seconds that a connection is idle before the connection flow is eligible for deletion. Possible values are disabled,indefinite, or a numeric value that you specify. The default value isdisabled
- limitType String
- Controls how connection limits are enforced in conjunction with OneConnect. The default is None. Supported Values:[None,idle,strict]
- maxAge Number
- Specifies the maximum age in number of seconds allowed for a connection in the connection reuse pool. For any connection with an age higher than this value, the system removes that connection from the reuse pool. The default value is 86400.
- maxReuse Number
- Specifies the maximum number of times that a server-side connection can be reused. The default value is 1000.
- maxSize Number
- Specifies the maximum number of connections that the system holds in the connection reuse pool. If the pool is already full, then the server-side connection closes after the response is completed. The default value is 10000.
- name String
- Name of Profile should be full path.The full path is the combination of the partition + profile_name,For example/Common/test-oneconnect-profile.
- partition String
- Displays the administrative partition within which this profile resides
- String
- Specify if you want to share the pool, default value is disabled.
- sourceMask String
- Specifies a source IP mask. The default value is 0.0.0.0. The system applies the value of this option to the source address to determine its eligibility for reuse. A mask of 0.0.0.0 causes the system to share reused connections across all clients. A host mask (all 1's in binary), causes the system to share only those reused connections originating from the same client IP address.
Import
BIG-IP LTM oneconnect profiles can be imported using the name , e.g.
$ pulumi import f5bigip:ltm/profileOneConnect:ProfileOneConnect test-oneconnect /Common/test-oneconnect
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 bigipTerraform Provider.