f5bigip.FastUdpApp
Explore with Pulumi AI
f5bigip.FastUdpApp
This resource will create and manage FAST UDP applications on BIG-IP from provided JSON declaration.
Create FastUdpApp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FastUdpApp(name: string, args: FastUdpAppArgs, opts?: CustomResourceOptions);
@overload
def FastUdpApp(resource_name: str,
args: FastUdpAppArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FastUdpApp(resource_name: str,
opts: Optional[ResourceOptions] = None,
application: Optional[str] = None,
tenant: Optional[str] = None,
persistence_profile: Optional[str] = None,
persistence_type: Optional[str] = None,
existing_profile: Optional[str] = None,
existing_snat_pool: Optional[str] = None,
fallback_persistence: Optional[str] = None,
irules: Optional[Sequence[str]] = None,
load_balancing_mode: Optional[str] = None,
monitor: Optional[FastUdpAppMonitorArgs] = None,
existing_monitor: Optional[str] = None,
existing_pool: Optional[str] = None,
pool_members: Optional[Sequence[FastUdpAppPoolMemberArgs]] = None,
security_log_profiles: Optional[Sequence[str]] = None,
slow_ramp_time: Optional[int] = None,
snat_pool_addresses: Optional[Sequence[str]] = None,
enable_fastl4: Optional[bool] = None,
virtual_server: Optional[FastUdpAppVirtualServerArgs] = None,
vlans_alloweds: Optional[Sequence[str]] = None,
vlans_rejecteds: Optional[Sequence[str]] = None)
func NewFastUdpApp(ctx *Context, name string, args FastUdpAppArgs, opts ...ResourceOption) (*FastUdpApp, error)
public FastUdpApp(string name, FastUdpAppArgs args, CustomResourceOptions? opts = null)
public FastUdpApp(String name, FastUdpAppArgs args)
public FastUdpApp(String name, FastUdpAppArgs args, CustomResourceOptions options)
type: f5bigip:FastUdpApp
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 FastUdpAppArgs
- 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 FastUdpAppArgs
- 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 FastUdpAppArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FastUdpAppArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FastUdpAppArgs
- 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 fastUdpAppResource = new F5BigIP.FastUdpApp("fastUdpAppResource", new()
{
Application = "string",
Tenant = "string",
PersistenceProfile = "string",
PersistenceType = "string",
ExistingProfile = "string",
ExistingSnatPool = "string",
FallbackPersistence = "string",
Irules = new[]
{
"string",
},
LoadBalancingMode = "string",
Monitor = new F5BigIP.Inputs.FastUdpAppMonitorArgs
{
ExpectedResponse = "string",
Interval = 0,
SendString = "string",
},
ExistingMonitor = "string",
ExistingPool = "string",
PoolMembers = new[]
{
new F5BigIP.Inputs.FastUdpAppPoolMemberArgs
{
Addresses = new[]
{
"string",
},
ConnectionLimit = 0,
Port = 0,
PriorityGroup = 0,
ShareNodes = false,
},
},
SecurityLogProfiles = new[]
{
"string",
},
SlowRampTime = 0,
SnatPoolAddresses = new[]
{
"string",
},
EnableFastl4 = false,
VirtualServer = new F5BigIP.Inputs.FastUdpAppVirtualServerArgs
{
Ip = "string",
Port = 0,
},
VlansAlloweds = new[]
{
"string",
},
VlansRejecteds = new[]
{
"string",
},
});
example, err := f5bigip.NewFastUdpApp(ctx, "fastUdpAppResource", &f5bigip.FastUdpAppArgs{
Application: pulumi.String("string"),
Tenant: pulumi.String("string"),
PersistenceProfile: pulumi.String("string"),
PersistenceType: pulumi.String("string"),
ExistingProfile: pulumi.String("string"),
ExistingSnatPool: pulumi.String("string"),
FallbackPersistence: pulumi.String("string"),
Irules: pulumi.StringArray{
pulumi.String("string"),
},
LoadBalancingMode: pulumi.String("string"),
Monitor: &f5bigip.FastUdpAppMonitorArgs{
ExpectedResponse: pulumi.String("string"),
Interval: pulumi.Int(0),
SendString: pulumi.String("string"),
},
ExistingMonitor: pulumi.String("string"),
ExistingPool: pulumi.String("string"),
PoolMembers: f5bigip.FastUdpAppPoolMemberArray{
&f5bigip.FastUdpAppPoolMemberArgs{
Addresses: pulumi.StringArray{
pulumi.String("string"),
},
ConnectionLimit: pulumi.Int(0),
Port: pulumi.Int(0),
PriorityGroup: pulumi.Int(0),
ShareNodes: pulumi.Bool(false),
},
},
SecurityLogProfiles: pulumi.StringArray{
pulumi.String("string"),
},
SlowRampTime: pulumi.Int(0),
SnatPoolAddresses: pulumi.StringArray{
pulumi.String("string"),
},
EnableFastl4: pulumi.Bool(false),
VirtualServer: &f5bigip.FastUdpAppVirtualServerArgs{
Ip: pulumi.String("string"),
Port: pulumi.Int(0),
},
VlansAlloweds: pulumi.StringArray{
pulumi.String("string"),
},
VlansRejecteds: pulumi.StringArray{
pulumi.String("string"),
},
})
var fastUdpAppResource = new FastUdpApp("fastUdpAppResource", FastUdpAppArgs.builder()
.application("string")
.tenant("string")
.persistenceProfile("string")
.persistenceType("string")
.existingProfile("string")
.existingSnatPool("string")
.fallbackPersistence("string")
.irules("string")
.loadBalancingMode("string")
.monitor(FastUdpAppMonitorArgs.builder()
.expectedResponse("string")
.interval(0)
.sendString("string")
.build())
.existingMonitor("string")
.existingPool("string")
.poolMembers(FastUdpAppPoolMemberArgs.builder()
.addresses("string")
.connectionLimit(0)
.port(0)
.priorityGroup(0)
.shareNodes(false)
.build())
.securityLogProfiles("string")
.slowRampTime(0)
.snatPoolAddresses("string")
.enableFastl4(false)
.virtualServer(FastUdpAppVirtualServerArgs.builder()
.ip("string")
.port(0)
.build())
.vlansAlloweds("string")
.vlansRejecteds("string")
.build());
fast_udp_app_resource = f5bigip.FastUdpApp("fastUdpAppResource",
application="string",
tenant="string",
persistence_profile="string",
persistence_type="string",
existing_profile="string",
existing_snat_pool="string",
fallback_persistence="string",
irules=["string"],
load_balancing_mode="string",
monitor={
"expected_response": "string",
"interval": 0,
"send_string": "string",
},
existing_monitor="string",
existing_pool="string",
pool_members=[{
"addresses": ["string"],
"connection_limit": 0,
"port": 0,
"priority_group": 0,
"share_nodes": False,
}],
security_log_profiles=["string"],
slow_ramp_time=0,
snat_pool_addresses=["string"],
enable_fastl4=False,
virtual_server={
"ip": "string",
"port": 0,
},
vlans_alloweds=["string"],
vlans_rejecteds=["string"])
const fastUdpAppResource = new f5bigip.FastUdpApp("fastUdpAppResource", {
application: "string",
tenant: "string",
persistenceProfile: "string",
persistenceType: "string",
existingProfile: "string",
existingSnatPool: "string",
fallbackPersistence: "string",
irules: ["string"],
loadBalancingMode: "string",
monitor: {
expectedResponse: "string",
interval: 0,
sendString: "string",
},
existingMonitor: "string",
existingPool: "string",
poolMembers: [{
addresses: ["string"],
connectionLimit: 0,
port: 0,
priorityGroup: 0,
shareNodes: false,
}],
securityLogProfiles: ["string"],
slowRampTime: 0,
snatPoolAddresses: ["string"],
enableFastl4: false,
virtualServer: {
ip: "string",
port: 0,
},
vlansAlloweds: ["string"],
vlansRejecteds: ["string"],
});
type: f5bigip:FastUdpApp
properties:
application: string
enableFastl4: false
existingMonitor: string
existingPool: string
existingProfile: string
existingSnatPool: string
fallbackPersistence: string
irules:
- string
loadBalancingMode: string
monitor:
expectedResponse: string
interval: 0
sendString: string
persistenceProfile: string
persistenceType: string
poolMembers:
- addresses:
- string
connectionLimit: 0
port: 0
priorityGroup: 0
shareNodes: false
securityLogProfiles:
- string
slowRampTime: 0
snatPoolAddresses:
- string
tenant: string
virtualServer:
ip: string
port: 0
vlansAlloweds:
- string
vlansRejecteds:
- string
FastUdpApp 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 FastUdpApp resource accepts the following input properties:
- Application string
- Name of the FAST UDP application.
- Tenant string
- Name of the FAST UDP application tenant.
- Enable
Fastl4 bool - Enables use of FastL4 profiles.
- Existing
Monitor string - Name of an existing BIG-IP UDP pool monitor. Monitors are used to determine the health of the application on each server.
- Existing
Pool string - Name of an existing BIG-IP pool.
- Existing
Profile string - Name of an existing BIG-IP FastL4 or UDP profile.
- Existing
Snat stringPool - Name of an existing BIG-IP SNAT pool.
- Fallback
Persistence string - Type of fallback persistence record to be created for each new client connection.
- Irules List<string>
- Irules to attach to Virtual Server.
- Load
Balancing stringMode - 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.
F5Big IP. Inputs. Fast Udp App Monitor monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- Persistence
Profile string - Name of an existing BIG-IP persistence profile to be used.
- Persistence
Type string - Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
- Pool
Members List<Pulumi.F5Big IP. Inputs. Fast Udp App Pool Member> pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- Security
Log List<string>Profiles - Existing security log profiles to enable.
- Slow
Ramp intTime - Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- Snat
Pool List<string>Addresses - List of address to be used for FAST-Generated SNAT Pool.
- Virtual
Server Pulumi.F5Big IP. Inputs. Fast Udp App Virtual Server virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- Vlans
Alloweds List<string> - Names of existing VLANs to allow.
- Vlans
Rejecteds List<string> - Names of existing VLANs to reject.
- Application string
- Name of the FAST UDP application.
- Tenant string
- Name of the FAST UDP application tenant.
- Enable
Fastl4 bool - Enables use of FastL4 profiles.
- Existing
Monitor string - Name of an existing BIG-IP UDP pool monitor. Monitors are used to determine the health of the application on each server.
- Existing
Pool string - Name of an existing BIG-IP pool.
- Existing
Profile string - Name of an existing BIG-IP FastL4 or UDP profile.
- Existing
Snat stringPool - Name of an existing BIG-IP SNAT pool.
- Fallback
Persistence string - Type of fallback persistence record to be created for each new client connection.
- Irules []string
- Irules to attach to Virtual Server.
- Load
Balancing stringMode - 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
Fast
Udp App Monitor Args monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- Persistence
Profile string - Name of an existing BIG-IP persistence profile to be used.
- Persistence
Type string - Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
- Pool
Members []FastUdp App Pool Member Args pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- Security
Log []stringProfiles - Existing security log profiles to enable.
- Slow
Ramp intTime - Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- Snat
Pool []stringAddresses - List of address to be used for FAST-Generated SNAT Pool.
- Virtual
Server FastUdp App Virtual Server Args virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- Vlans
Alloweds []string - Names of existing VLANs to allow.
- Vlans
Rejecteds []string - Names of existing VLANs to reject.
- application String
- Name of the FAST UDP application.
- tenant String
- Name of the FAST UDP application tenant.
- enable
Fastl4 Boolean - Enables use of FastL4 profiles.
- existing
Monitor String - Name of an existing BIG-IP UDP pool monitor. Monitors are used to determine the health of the application on each server.
- existing
Pool String - Name of an existing BIG-IP pool.
- existing
Profile String - Name of an existing BIG-IP FastL4 or UDP profile.
- existing
Snat StringPool - Name of an existing BIG-IP SNAT pool.
- fallback
Persistence String - Type of fallback persistence record to be created for each new client connection.
- irules List<String>
- Irules to attach to Virtual Server.
- load
Balancing StringMode - 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
Fast
Udp App Monitor monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- persistence
Profile String - Name of an existing BIG-IP persistence profile to be used.
- persistence
Type String - Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
- pool
Members List<FastUdp App Pool Member> pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- security
Log List<String>Profiles - Existing security log profiles to enable.
- slow
Ramp IntegerTime - Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- snat
Pool List<String>Addresses - List of address to be used for FAST-Generated SNAT Pool.
- virtual
Server FastUdp App Virtual Server virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- vlans
Alloweds List<String> - Names of existing VLANs to allow.
- vlans
Rejecteds List<String> - Names of existing VLANs to reject.
- application string
- Name of the FAST UDP application.
- tenant string
- Name of the FAST UDP application tenant.
- enable
Fastl4 boolean - Enables use of FastL4 profiles.
- existing
Monitor string - Name of an existing BIG-IP UDP pool monitor. Monitors are used to determine the health of the application on each server.
- existing
Pool string - Name of an existing BIG-IP pool.
- existing
Profile string - Name of an existing BIG-IP FastL4 or UDP profile.
- existing
Snat stringPool - Name of an existing BIG-IP SNAT pool.
- fallback
Persistence string - Type of fallback persistence record to be created for each new client connection.
- irules string[]
- Irules to attach to Virtual Server.
- load
Balancing stringMode - 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
Fast
Udp App Monitor monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- persistence
Profile string - Name of an existing BIG-IP persistence profile to be used.
- persistence
Type string - Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
- pool
Members FastUdp App Pool Member[] pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- security
Log string[]Profiles - Existing security log profiles to enable.
- slow
Ramp numberTime - Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- snat
Pool string[]Addresses - List of address to be used for FAST-Generated SNAT Pool.
- virtual
Server FastUdp App Virtual Server virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- vlans
Alloweds string[] - Names of existing VLANs to allow.
- vlans
Rejecteds string[] - Names of existing VLANs to reject.
- application str
- Name of the FAST UDP application.
- tenant str
- Name of the FAST UDP application tenant.
- enable_
fastl4 bool - Enables use of FastL4 profiles.
- existing_
monitor str - Name of an existing BIG-IP UDP 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_
profile str - Name of an existing BIG-IP FastL4 or UDP profile.
- existing_
snat_ strpool - Name of an existing BIG-IP SNAT pool.
- fallback_
persistence str - Type of fallback persistence record to be created for each new client connection.
- irules Sequence[str]
- Irules to attach to Virtual Server.
- load_
balancing_ strmode - 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
Fast
Udp App Monitor Args 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[FastUdp App Pool Member Args] pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- security_
log_ Sequence[str]profiles - Existing security log profiles to enable.
- slow_
ramp_ inttime - Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- snat_
pool_ Sequence[str]addresses - List of address to be used for FAST-Generated SNAT Pool.
- virtual_
server FastUdp App Virtual Server Args virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- vlans_
alloweds Sequence[str] - Names of existing VLANs to allow.
- vlans_
rejecteds Sequence[str] - Names of existing VLANs to reject.
- application String
- Name of the FAST UDP application.
- tenant String
- Name of the FAST UDP application tenant.
- enable
Fastl4 Boolean - Enables use of FastL4 profiles.
- existing
Monitor String - Name of an existing BIG-IP UDP pool monitor. Monitors are used to determine the health of the application on each server.
- existing
Pool String - Name of an existing BIG-IP pool.
- existing
Profile String - Name of an existing BIG-IP FastL4 or UDP profile.
- existing
Snat StringPool - Name of an existing BIG-IP SNAT pool.
- fallback
Persistence String - Type of fallback persistence record to be created for each new client connection.
- irules List<String>
- Irules to attach to Virtual Server.
- load
Balancing StringMode - 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.- persistence
Profile String - Name of an existing BIG-IP persistence profile to be used.
- persistence
Type String - Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
- pool
Members List<Property Map> pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- security
Log List<String>Profiles - Existing security log profiles to enable.
- slow
Ramp NumberTime - Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- snat
Pool List<String>Addresses - List of address to be used for FAST-Generated SNAT Pool.
- virtual
Server Property Map virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- vlans
Alloweds List<String> - Names of existing VLANs to allow.
- vlans
Rejecteds List<String> - Names of existing VLANs to reject.
Outputs
All input properties are implicitly available as output properties. Additionally, the FastUdpApp resource produces the following output properties:
- Fast
Udp stringJson - Json payload for FAST UDP application.
- Id string
- The provider-assigned unique ID for this managed resource.
- Fast
Udp stringJson - Json payload for FAST UDP application.
- Id string
- The provider-assigned unique ID for this managed resource.
- fast
Udp StringJson - Json payload for FAST UDP application.
- id String
- The provider-assigned unique ID for this managed resource.
- fast
Udp stringJson - Json payload for FAST UDP application.
- id string
- The provider-assigned unique ID for this managed resource.
- fast_
udp_ strjson - Json payload for FAST UDP application.
- id str
- The provider-assigned unique ID for this managed resource.
- fast
Udp StringJson - Json payload for FAST UDP application.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing FastUdpApp Resource
Get an existing FastUdpApp 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?: FastUdpAppState, opts?: CustomResourceOptions): FastUdpApp
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application: Optional[str] = None,
enable_fastl4: Optional[bool] = None,
existing_monitor: Optional[str] = None,
existing_pool: Optional[str] = None,
existing_profile: Optional[str] = None,
existing_snat_pool: Optional[str] = None,
fallback_persistence: Optional[str] = None,
fast_udp_json: Optional[str] = None,
irules: Optional[Sequence[str]] = None,
load_balancing_mode: Optional[str] = None,
monitor: Optional[FastUdpAppMonitorArgs] = None,
persistence_profile: Optional[str] = None,
persistence_type: Optional[str] = None,
pool_members: Optional[Sequence[FastUdpAppPoolMemberArgs]] = None,
security_log_profiles: Optional[Sequence[str]] = None,
slow_ramp_time: Optional[int] = None,
snat_pool_addresses: Optional[Sequence[str]] = None,
tenant: Optional[str] = None,
virtual_server: Optional[FastUdpAppVirtualServerArgs] = None,
vlans_alloweds: Optional[Sequence[str]] = None,
vlans_rejecteds: Optional[Sequence[str]] = None) -> FastUdpApp
func GetFastUdpApp(ctx *Context, name string, id IDInput, state *FastUdpAppState, opts ...ResourceOption) (*FastUdpApp, error)
public static FastUdpApp Get(string name, Input<string> id, FastUdpAppState? state, CustomResourceOptions? opts = null)
public static FastUdpApp get(String name, Output<String> id, FastUdpAppState 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.
- Application string
- Name of the FAST UDP application.
- Enable
Fastl4 bool - Enables use of FastL4 profiles.
- Existing
Monitor string - Name of an existing BIG-IP UDP pool monitor. Monitors are used to determine the health of the application on each server.
- Existing
Pool string - Name of an existing BIG-IP pool.
- Existing
Profile string - Name of an existing BIG-IP FastL4 or UDP profile.
- Existing
Snat stringPool - Name of an existing BIG-IP SNAT pool.
- Fallback
Persistence string - Type of fallback persistence record to be created for each new client connection.
- Fast
Udp stringJson - Json payload for FAST UDP application.
- Irules List<string>
- Irules to attach to Virtual Server.
- Load
Balancing stringMode - 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.
F5Big IP. Inputs. Fast Udp App Monitor monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- Persistence
Profile string - Name of an existing BIG-IP persistence profile to be used.
- Persistence
Type string - Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
- Pool
Members List<Pulumi.F5Big IP. Inputs. Fast Udp App Pool Member> pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- Security
Log List<string>Profiles - Existing security log profiles to enable.
- Slow
Ramp intTime - Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- Snat
Pool List<string>Addresses - List of address to be used for FAST-Generated SNAT Pool.
- Tenant string
- Name of the FAST UDP application tenant.
- Virtual
Server Pulumi.F5Big IP. Inputs. Fast Udp App Virtual Server virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- Vlans
Alloweds List<string> - Names of existing VLANs to allow.
- Vlans
Rejecteds List<string> - Names of existing VLANs to reject.
- Application string
- Name of the FAST UDP application.
- Enable
Fastl4 bool - Enables use of FastL4 profiles.
- Existing
Monitor string - Name of an existing BIG-IP UDP pool monitor. Monitors are used to determine the health of the application on each server.
- Existing
Pool string - Name of an existing BIG-IP pool.
- Existing
Profile string - Name of an existing BIG-IP FastL4 or UDP profile.
- Existing
Snat stringPool - Name of an existing BIG-IP SNAT pool.
- Fallback
Persistence string - Type of fallback persistence record to be created for each new client connection.
- Fast
Udp stringJson - Json payload for FAST UDP application.
- Irules []string
- Irules to attach to Virtual Server.
- Load
Balancing stringMode - 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
Fast
Udp App Monitor Args monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- Persistence
Profile string - Name of an existing BIG-IP persistence profile to be used.
- Persistence
Type string - Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
- Pool
Members []FastUdp App Pool Member Args pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- Security
Log []stringProfiles - Existing security log profiles to enable.
- Slow
Ramp intTime - Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- Snat
Pool []stringAddresses - List of address to be used for FAST-Generated SNAT Pool.
- Tenant string
- Name of the FAST UDP application tenant.
- Virtual
Server FastUdp App Virtual Server Args virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- Vlans
Alloweds []string - Names of existing VLANs to allow.
- Vlans
Rejecteds []string - Names of existing VLANs to reject.
- application String
- Name of the FAST UDP application.
- enable
Fastl4 Boolean - Enables use of FastL4 profiles.
- existing
Monitor String - Name of an existing BIG-IP UDP pool monitor. Monitors are used to determine the health of the application on each server.
- existing
Pool String - Name of an existing BIG-IP pool.
- existing
Profile String - Name of an existing BIG-IP FastL4 or UDP profile.
- existing
Snat StringPool - Name of an existing BIG-IP SNAT pool.
- fallback
Persistence String - Type of fallback persistence record to be created for each new client connection.
- fast
Udp StringJson - Json payload for FAST UDP application.
- irules List<String>
- Irules to attach to Virtual Server.
- load
Balancing StringMode - 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
Fast
Udp App Monitor monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- persistence
Profile String - Name of an existing BIG-IP persistence profile to be used.
- persistence
Type String - Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
- pool
Members List<FastUdp App Pool Member> pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- security
Log List<String>Profiles - Existing security log profiles to enable.
- slow
Ramp IntegerTime - Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- snat
Pool List<String>Addresses - List of address to be used for FAST-Generated SNAT Pool.
- tenant String
- Name of the FAST UDP application tenant.
- virtual
Server FastUdp App Virtual Server virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- vlans
Alloweds List<String> - Names of existing VLANs to allow.
- vlans
Rejecteds List<String> - Names of existing VLANs to reject.
- application string
- Name of the FAST UDP application.
- enable
Fastl4 boolean - Enables use of FastL4 profiles.
- existing
Monitor string - Name of an existing BIG-IP UDP pool monitor. Monitors are used to determine the health of the application on each server.
- existing
Pool string - Name of an existing BIG-IP pool.
- existing
Profile string - Name of an existing BIG-IP FastL4 or UDP profile.
- existing
Snat stringPool - Name of an existing BIG-IP SNAT pool.
- fallback
Persistence string - Type of fallback persistence record to be created for each new client connection.
- fast
Udp stringJson - Json payload for FAST UDP application.
- irules string[]
- Irules to attach to Virtual Server.
- load
Balancing stringMode - 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
Fast
Udp App Monitor monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- persistence
Profile string - Name of an existing BIG-IP persistence profile to be used.
- persistence
Type string - Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
- pool
Members FastUdp App Pool Member[] pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- security
Log string[]Profiles - Existing security log profiles to enable.
- slow
Ramp numberTime - Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- snat
Pool string[]Addresses - List of address to be used for FAST-Generated SNAT Pool.
- tenant string
- Name of the FAST UDP application tenant.
- virtual
Server FastUdp App Virtual Server virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- vlans
Alloweds string[] - Names of existing VLANs to allow.
- vlans
Rejecteds string[] - Names of existing VLANs to reject.
- application str
- Name of the FAST UDP application.
- enable_
fastl4 bool - Enables use of FastL4 profiles.
- existing_
monitor str - Name of an existing BIG-IP UDP 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_
profile str - Name of an existing BIG-IP FastL4 or UDP profile.
- existing_
snat_ strpool - 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_
udp_ strjson - Json payload for FAST UDP application.
- irules Sequence[str]
- Irules to attach to Virtual Server.
- load_
balancing_ strmode - 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
Fast
Udp App Monitor Args 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[FastUdp App Pool Member Args] pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- security_
log_ Sequence[str]profiles - Existing security log profiles to enable.
- slow_
ramp_ inttime - Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- snat_
pool_ Sequence[str]addresses - List of address to be used for FAST-Generated SNAT Pool.
- tenant str
- Name of the FAST UDP application tenant.
- virtual_
server FastUdp App Virtual Server Args virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- vlans_
alloweds Sequence[str] - Names of existing VLANs to allow.
- vlans_
rejecteds Sequence[str] - Names of existing VLANs to reject.
- application String
- Name of the FAST UDP application.
- enable
Fastl4 Boolean - Enables use of FastL4 profiles.
- existing
Monitor String - Name of an existing BIG-IP UDP pool monitor. Monitors are used to determine the health of the application on each server.
- existing
Pool String - Name of an existing BIG-IP pool.
- existing
Profile String - Name of an existing BIG-IP FastL4 or UDP profile.
- existing
Snat StringPool - Name of an existing BIG-IP SNAT pool.
- fallback
Persistence String - Type of fallback persistence record to be created for each new client connection.
- fast
Udp StringJson - Json payload for FAST UDP application.
- irules List<String>
- Irules to attach to Virtual Server.
- load
Balancing StringMode - 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.- persistence
Profile String - Name of an existing BIG-IP persistence profile to be used.
- persistence
Type String - Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
- pool
Members List<Property Map> pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- security
Log List<String>Profiles - Existing security log profiles to enable.
- slow
Ramp NumberTime - Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- snat
Pool List<String>Addresses - List of address to be used for FAST-Generated SNAT Pool.
- tenant String
- Name of the FAST UDP application tenant.
- virtual
Server Property Map virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- vlans
Alloweds List<String> - Names of existing VLANs to allow.
- vlans
Rejecteds List<String> - Names of existing VLANs to reject.
Supporting Types
FastUdpAppMonitor, FastUdpAppMonitorArgs
- Expected
Response string - The presence of this optional string is required in the response, if specified it confirms availability.
- Interval int
- Set the time between health checks,in seconds for FAST-Generated Pool Monitor.
- Send
String string - Optional data to be sent during each health check.
- Expected
Response string - The presence of this optional string is required in the response, if specified it confirms availability.
- Interval int
- Set the time between health checks,in seconds for FAST-Generated Pool Monitor.
- Send
String string - Optional data to be sent during each health check.
- expected
Response String - The presence of this optional string is required in the response, if specified it confirms availability.
- interval Integer
- Set the time between health checks,in seconds for FAST-Generated Pool Monitor.
- send
String String - Optional data to be sent during each health check.
- expected
Response string - The presence of this optional string is required in the response, if specified it confirms availability.
- interval number
- Set the time between health checks,in seconds for FAST-Generated Pool Monitor.
- send
String string - Optional data to be sent during each health check.
- expected_
response str - The presence of this optional string is required in the response, if specified it confirms availability.
- interval int
- Set the time between health checks,in seconds for FAST-Generated Pool Monitor.
- send_
string str - Optional data to be sent during each health check.
- expected
Response String - The presence of this optional string is required in the response, if specified it confirms availability.
- interval Number
- Set the time between health checks,in seconds for FAST-Generated Pool Monitor.
- send
String String - Optional data to be sent during each health check.
FastUdpAppPoolMember, FastUdpAppPoolMemberArgs
- Addresses List<string>
- 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.
- bool
- shareNodes value to be used for FAST-Generated Pool.
- Addresses []string
- 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.
- bool
- shareNodes value to be used for FAST-Generated Pool.
- addresses List<String>
- List of server address to be used for FAST-Generated Pool.
- connection
Limit Integer - connectionLimit value to be used for FAST-Generated Pool.
- port Integer
- port number of serviceport to be used for FAST-Generated Pool.
- priority
Group Integer - priorityGroup value to be used for FAST-Generated Pool.
- Boolean
- shareNodes value to be used for FAST-Generated Pool.
- addresses string[]
- List of server address to be used for FAST-Generated Pool.
- connection
Limit number - connectionLimit value to be used for FAST-Generated Pool.
- port number
- port number of serviceport to be used for FAST-Generated Pool.
- priority
Group number - priorityGroup value to be used for FAST-Generated Pool.
- 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.
- bool
- shareNodes value to be used for FAST-Generated Pool.
- addresses List<String>
- List of server address to be used for FAST-Generated Pool.
- connection
Limit Number - connectionLimit value to be used for FAST-Generated Pool.
- port Number
- port number of serviceport to be used for FAST-Generated Pool.
- priority
Group Number - priorityGroup value to be used for FAST-Generated Pool.
- Boolean
- shareNodes value to be used for FAST-Generated Pool.
FastUdpAppVirtualServer, FastUdpAppVirtualServerArgs
Package Details
- Repository
- f5 BIG-IP pulumi/pulumi-f5bigip
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
bigip
Terraform Provider.