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
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
. - Defaults
From string - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- Idle
Timeout 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
- Limit
Type string - 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 string
- Displays the administrative partition within which this profile resides
- string
- Specify if you want to share the pool, default value is
disabled
. - Source
Mask 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
. - Defaults
From string - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- Idle
Timeout 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
- Limit
Type string - 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 string
- Displays the administrative partition within which this profile resides
- string
- Specify if you want to share the pool, default value is
disabled
. - Source
Mask 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
. - defaults
From String - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- idle
Timeout 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
- limit
Type String - Controls how connection limits are enforced in conjunction with OneConnect. The default is
None
. Supported Values:[None,idle,strict]
- max
Age 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
. - max
Reuse Integer - Specifies the maximum number of times that a server-side connection can be reused. The default value is
1000
. - max
Size 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
. - source
Mask 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
. - defaults
From string - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- idle
Timeout 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
- limit
Type string - Controls how connection limits are enforced in conjunction with OneConnect. The default is
None
. Supported Values:[None,idle,strict]
- max
Age 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
. - max
Reuse number - Specifies the maximum number of times that a server-side connection can be reused. The default value is
1000
. - max
Size 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
. - source
Mask 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
. - defaults
From String - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- idle
Timeout 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
- limit
Type String - Controls how connection limits are enforced in conjunction with OneConnect. The default is
None
. Supported Values:[None,idle,strict]
- max
Age 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
. - max
Reuse Number - Specifies the maximum number of times that a server-side connection can be reused. The default value is
1000
. - max
Size 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
. - source
Mask 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) -> ProfileOneConnect
func 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)
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.
- Defaults
From string - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- Idle
Timeout 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
- Limit
Type string - 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 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
. - Source
Mask 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 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.
- Idle
Timeout 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
- Limit
Type string - 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 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
. - Source
Mask 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 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.
- idle
Timeout 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
- limit
Type String - Controls how connection limits are enforced in conjunction with OneConnect. The default is
None
. Supported Values:[None,idle,strict]
- max
Age 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
. - max
Reuse Integer - Specifies the maximum number of times that a server-side connection can be reused. The default value is
1000
. - max
Size 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
. - source
Mask 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 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.
- idle
Timeout 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
- limit
Type string - Controls how connection limits are enforced in conjunction with OneConnect. The default is
None
. Supported Values:[None,idle,strict]
- max
Age 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
. - max
Reuse number - Specifies the maximum number of times that a server-side connection can be reused. The default value is
1000
. - max
Size 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
. - source
Mask 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.
- defaults
From String - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- idle
Timeout 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
- limit
Type String - Controls how connection limits are enforced in conjunction with OneConnect. The default is
None
. Supported Values:[None,idle,strict]
- max
Age 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
. - max
Reuse Number - Specifies the maximum number of times that a server-side connection can be reused. The default value is
1000
. - max
Size 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
. - source
Mask 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
bigip
Terraform Provider.