f5bigip.ltm.VirtualServer
Explore with Pulumi AI
f5bigip.ltm.VirtualServer
Configures Virtual Server
For resources should be named with their full path
. The full path is the combination of the partition + name
of the resource (example: /Common/test-virtualserver
) or partition + directory + name
of the resource (example: /Common/test/test-virtualserver
).
When including directory in fullpath
we have to make sure it is created in the given partition before using it.
Create VirtualServer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VirtualServer(name: string, args: VirtualServerArgs, opts?: CustomResourceOptions);
@overload
def VirtualServer(resource_name: str,
args: VirtualServerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VirtualServer(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
port: Optional[int] = None,
vlans_enabled: Optional[bool] = None,
pool: Optional[str] = None,
fallback_persistence_profile: Optional[str] = None,
firewall_enforced_policy: Optional[str] = None,
ip_protocol: Optional[str] = None,
irules: Optional[Sequence[str]] = None,
mask: Optional[str] = None,
default_persistence_profile: Optional[str] = None,
per_flow_request_access_policy: Optional[str] = None,
persistence_profiles: Optional[Sequence[str]] = None,
policies: Optional[Sequence[str]] = None,
destination: Optional[str] = None,
description: Optional[str] = None,
state: Optional[str] = None,
security_log_profiles: Optional[Sequence[str]] = None,
server_profiles: Optional[Sequence[str]] = None,
snatpool: Optional[str] = None,
source: Optional[str] = None,
source_address_translation: Optional[str] = None,
source_port: Optional[str] = None,
profiles: Optional[Sequence[str]] = None,
trafficmatching_criteria: Optional[str] = None,
translate_address: Optional[str] = None,
translate_port: Optional[str] = None,
vlans: Optional[Sequence[str]] = None,
client_profiles: Optional[Sequence[str]] = None)
func NewVirtualServer(ctx *Context, name string, args VirtualServerArgs, opts ...ResourceOption) (*VirtualServer, error)
public VirtualServer(string name, VirtualServerArgs args, CustomResourceOptions? opts = null)
public VirtualServer(String name, VirtualServerArgs args)
public VirtualServer(String name, VirtualServerArgs args, CustomResourceOptions options)
type: f5bigip:ltm:VirtualServer
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 VirtualServerArgs
- 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 VirtualServerArgs
- 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 VirtualServerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VirtualServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VirtualServerArgs
- 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 virtualServerResource = new F5BigIP.Ltm.VirtualServer("virtualServerResource", new()
{
Name = "string",
Port = 0,
VlansEnabled = false,
Pool = "string",
FallbackPersistenceProfile = "string",
FirewallEnforcedPolicy = "string",
IpProtocol = "string",
Irules = new[]
{
"string",
},
Mask = "string",
DefaultPersistenceProfile = "string",
PerFlowRequestAccessPolicy = "string",
PersistenceProfiles = new[]
{
"string",
},
Policies = new[]
{
"string",
},
Destination = "string",
Description = "string",
State = "string",
SecurityLogProfiles = new[]
{
"string",
},
ServerProfiles = new[]
{
"string",
},
Snatpool = "string",
Source = "string",
SourceAddressTranslation = "string",
SourcePort = "string",
Profiles = new[]
{
"string",
},
TrafficmatchingCriteria = "string",
TranslateAddress = "string",
TranslatePort = "string",
Vlans = new[]
{
"string",
},
ClientProfiles = new[]
{
"string",
},
});
example, err := ltm.NewVirtualServer(ctx, "virtualServerResource", <m.VirtualServerArgs{
Name: pulumi.String("string"),
Port: pulumi.Int(0),
VlansEnabled: pulumi.Bool(false),
Pool: pulumi.String("string"),
FallbackPersistenceProfile: pulumi.String("string"),
FirewallEnforcedPolicy: pulumi.String("string"),
IpProtocol: pulumi.String("string"),
Irules: pulumi.StringArray{
pulumi.String("string"),
},
Mask: pulumi.String("string"),
DefaultPersistenceProfile: pulumi.String("string"),
PerFlowRequestAccessPolicy: pulumi.String("string"),
PersistenceProfiles: pulumi.StringArray{
pulumi.String("string"),
},
Policies: pulumi.StringArray{
pulumi.String("string"),
},
Destination: pulumi.String("string"),
Description: pulumi.String("string"),
State: pulumi.String("string"),
SecurityLogProfiles: pulumi.StringArray{
pulumi.String("string"),
},
ServerProfiles: pulumi.StringArray{
pulumi.String("string"),
},
Snatpool: pulumi.String("string"),
Source: pulumi.String("string"),
SourceAddressTranslation: pulumi.String("string"),
SourcePort: pulumi.String("string"),
Profiles: pulumi.StringArray{
pulumi.String("string"),
},
TrafficmatchingCriteria: pulumi.String("string"),
TranslateAddress: pulumi.String("string"),
TranslatePort: pulumi.String("string"),
Vlans: pulumi.StringArray{
pulumi.String("string"),
},
ClientProfiles: pulumi.StringArray{
pulumi.String("string"),
},
})
var virtualServerResource = new VirtualServer("virtualServerResource", VirtualServerArgs.builder()
.name("string")
.port(0)
.vlansEnabled(false)
.pool("string")
.fallbackPersistenceProfile("string")
.firewallEnforcedPolicy("string")
.ipProtocol("string")
.irules("string")
.mask("string")
.defaultPersistenceProfile("string")
.perFlowRequestAccessPolicy("string")
.persistenceProfiles("string")
.policies("string")
.destination("string")
.description("string")
.state("string")
.securityLogProfiles("string")
.serverProfiles("string")
.snatpool("string")
.source("string")
.sourceAddressTranslation("string")
.sourcePort("string")
.profiles("string")
.trafficmatchingCriteria("string")
.translateAddress("string")
.translatePort("string")
.vlans("string")
.clientProfiles("string")
.build());
virtual_server_resource = f5bigip.ltm.VirtualServer("virtualServerResource",
name="string",
port=0,
vlans_enabled=False,
pool="string",
fallback_persistence_profile="string",
firewall_enforced_policy="string",
ip_protocol="string",
irules=["string"],
mask="string",
default_persistence_profile="string",
per_flow_request_access_policy="string",
persistence_profiles=["string"],
policies=["string"],
destination="string",
description="string",
state="string",
security_log_profiles=["string"],
server_profiles=["string"],
snatpool="string",
source="string",
source_address_translation="string",
source_port="string",
profiles=["string"],
trafficmatching_criteria="string",
translate_address="string",
translate_port="string",
vlans=["string"],
client_profiles=["string"])
const virtualServerResource = new f5bigip.ltm.VirtualServer("virtualServerResource", {
name: "string",
port: 0,
vlansEnabled: false,
pool: "string",
fallbackPersistenceProfile: "string",
firewallEnforcedPolicy: "string",
ipProtocol: "string",
irules: ["string"],
mask: "string",
defaultPersistenceProfile: "string",
perFlowRequestAccessPolicy: "string",
persistenceProfiles: ["string"],
policies: ["string"],
destination: "string",
description: "string",
state: "string",
securityLogProfiles: ["string"],
serverProfiles: ["string"],
snatpool: "string",
source: "string",
sourceAddressTranslation: "string",
sourcePort: "string",
profiles: ["string"],
trafficmatchingCriteria: "string",
translateAddress: "string",
translatePort: "string",
vlans: ["string"],
clientProfiles: ["string"],
});
type: f5bigip:ltm:VirtualServer
properties:
clientProfiles:
- string
defaultPersistenceProfile: string
description: string
destination: string
fallbackPersistenceProfile: string
firewallEnforcedPolicy: string
ipProtocol: string
irules:
- string
mask: string
name: string
perFlowRequestAccessPolicy: string
persistenceProfiles:
- string
policies:
- string
pool: string
port: 0
profiles:
- string
securityLogProfiles:
- string
serverProfiles:
- string
snatpool: string
source: string
sourceAddressTranslation: string
sourcePort: string
state: string
trafficmatchingCriteria: string
translateAddress: string
translatePort: string
vlans:
- string
vlansEnabled: false
VirtualServer 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 VirtualServer resource accepts the following input properties:
- Name string
- Name of the virtual server
- Client
Profiles List<string> - List of client context profiles associated on the virtual server. Not mutually exclusive with profiles and server_profiles
- Default
Persistence stringProfile - Description string
- Description of Virtual server
- Destination string
- Destination IP
- Fallback
Persistence stringProfile - Specifies a fallback persistence profile for the Virtual Server to use when the default persistence profile is not available.
- Firewall
Enforced stringPolicy - Applies the specified AFM policy to the virtual in an enforcing way,when creating a new virtual, if this parameter is not specified, the enforced is disabled.This should be in full path ex:
/Common/afm-test-policy
. - Ip
Protocol string - Specifies a network protocol name you want the system to use to direct traffic on this virtual server. The default is
tcp
. valid options are [any
,udp
,tcp
] - Irules List<string>
- The iRules list you want run on this virtual server. iRules help automate the intercepting, processing, and routing of application traffic.
- Mask string
- Mask can either be in CIDR notation or decimal, i.e.: 24 or 255.255.255.0. A CIDR mask of 0 is the same as 0.0.0.0
- Per
Flow stringRequest Access Policy - Persistence
Profiles List<string> - List of persistence profiles associated with the Virtual Server.
- Policies List<string>
- Specifies the policies for the virtual server.
- Pool string
- Default pool name
- Port int
- Listen port for the virtual server
- Profiles List<string>
- List of profiles associated both client and server contexts on the virtual server. This includes protocol, ssl, http, etc.
- Security
Log List<string>Profiles - Specifies the log profile applied to the virtual server.
- Server
Profiles List<string> - List of server context profiles associated on the virtual server. Not mutually exclusive with profiles and client_profiles
- Snatpool string
- Specifies the name of an existing SNAT pool that you want the virtual server to use to implement selective and intelligent SNATs.
- Source string
- Specifies an IP address or network from which the virtual server will accept traffic.
- Source
Address stringTranslation - Can be either omitted for
none
or the valuesautomap
options : [snat
,automap
,none
]. - Source
Port string - Specifies whether the system preserves the source port of the connection. The default is
preserve
. - State string
- Specifies whether the virtual server and its resources are available for load balancing. The default is Enabled
- Trafficmatching
Criteria string - Specifies destination traffic matching information to which the virtual server sends traffic
- Translate
Address string - Enables or disables address translation for the virtual server. Turn address translation off for a virtual server if you want to use the virtual server to load balance connections to any address. This option is useful when the system is load balancing devices that have the same IP address.
- Translate
Port string - Enables or disables port translation. Turn port translation off for a virtual server if you want to use the virtual server to load balance connections to any service
- Vlans List<string>
- The virtual server is enabled/disabled on this set of VLANs,enable/disabled will be desided by attribute
vlan_enabled
- Vlans
Enabled bool - Enables the virtual server on the VLANs specified by the
vlans
option. By default it isfalse
i.e vlanDisabled on specified vlans, if we want enable virtual server on VLANs specified byvlans
, mark this attribute totrue
.
- Name string
- Name of the virtual server
- Client
Profiles []string - List of client context profiles associated on the virtual server. Not mutually exclusive with profiles and server_profiles
- Default
Persistence stringProfile - Description string
- Description of Virtual server
- Destination string
- Destination IP
- Fallback
Persistence stringProfile - Specifies a fallback persistence profile for the Virtual Server to use when the default persistence profile is not available.
- Firewall
Enforced stringPolicy - Applies the specified AFM policy to the virtual in an enforcing way,when creating a new virtual, if this parameter is not specified, the enforced is disabled.This should be in full path ex:
/Common/afm-test-policy
. - Ip
Protocol string - Specifies a network protocol name you want the system to use to direct traffic on this virtual server. The default is
tcp
. valid options are [any
,udp
,tcp
] - Irules []string
- The iRules list you want run on this virtual server. iRules help automate the intercepting, processing, and routing of application traffic.
- Mask string
- Mask can either be in CIDR notation or decimal, i.e.: 24 or 255.255.255.0. A CIDR mask of 0 is the same as 0.0.0.0
- Per
Flow stringRequest Access Policy - Persistence
Profiles []string - List of persistence profiles associated with the Virtual Server.
- Policies []string
- Specifies the policies for the virtual server.
- Pool string
- Default pool name
- Port int
- Listen port for the virtual server
- Profiles []string
- List of profiles associated both client and server contexts on the virtual server. This includes protocol, ssl, http, etc.
- Security
Log []stringProfiles - Specifies the log profile applied to the virtual server.
- Server
Profiles []string - List of server context profiles associated on the virtual server. Not mutually exclusive with profiles and client_profiles
- Snatpool string
- Specifies the name of an existing SNAT pool that you want the virtual server to use to implement selective and intelligent SNATs.
- Source string
- Specifies an IP address or network from which the virtual server will accept traffic.
- Source
Address stringTranslation - Can be either omitted for
none
or the valuesautomap
options : [snat
,automap
,none
]. - Source
Port string - Specifies whether the system preserves the source port of the connection. The default is
preserve
. - State string
- Specifies whether the virtual server and its resources are available for load balancing. The default is Enabled
- Trafficmatching
Criteria string - Specifies destination traffic matching information to which the virtual server sends traffic
- Translate
Address string - Enables or disables address translation for the virtual server. Turn address translation off for a virtual server if you want to use the virtual server to load balance connections to any address. This option is useful when the system is load balancing devices that have the same IP address.
- Translate
Port string - Enables or disables port translation. Turn port translation off for a virtual server if you want to use the virtual server to load balance connections to any service
- Vlans []string
- The virtual server is enabled/disabled on this set of VLANs,enable/disabled will be desided by attribute
vlan_enabled
- Vlans
Enabled bool - Enables the virtual server on the VLANs specified by the
vlans
option. By default it isfalse
i.e vlanDisabled on specified vlans, if we want enable virtual server on VLANs specified byvlans
, mark this attribute totrue
.
- name String
- Name of the virtual server
- client
Profiles List<String> - List of client context profiles associated on the virtual server. Not mutually exclusive with profiles and server_profiles
- default
Persistence StringProfile - description String
- Description of Virtual server
- destination String
- Destination IP
- fallback
Persistence StringProfile - Specifies a fallback persistence profile for the Virtual Server to use when the default persistence profile is not available.
- firewall
Enforced StringPolicy - Applies the specified AFM policy to the virtual in an enforcing way,when creating a new virtual, if this parameter is not specified, the enforced is disabled.This should be in full path ex:
/Common/afm-test-policy
. - ip
Protocol String - Specifies a network protocol name you want the system to use to direct traffic on this virtual server. The default is
tcp
. valid options are [any
,udp
,tcp
] - irules List<String>
- The iRules list you want run on this virtual server. iRules help automate the intercepting, processing, and routing of application traffic.
- mask String
- Mask can either be in CIDR notation or decimal, i.e.: 24 or 255.255.255.0. A CIDR mask of 0 is the same as 0.0.0.0
- per
Flow StringRequest Access Policy - persistence
Profiles List<String> - List of persistence profiles associated with the Virtual Server.
- policies List<String>
- Specifies the policies for the virtual server.
- pool String
- Default pool name
- port Integer
- Listen port for the virtual server
- profiles List<String>
- List of profiles associated both client and server contexts on the virtual server. This includes protocol, ssl, http, etc.
- security
Log List<String>Profiles - Specifies the log profile applied to the virtual server.
- server
Profiles List<String> - List of server context profiles associated on the virtual server. Not mutually exclusive with profiles and client_profiles
- snatpool String
- Specifies the name of an existing SNAT pool that you want the virtual server to use to implement selective and intelligent SNATs.
- source String
- Specifies an IP address or network from which the virtual server will accept traffic.
- source
Address StringTranslation - Can be either omitted for
none
or the valuesautomap
options : [snat
,automap
,none
]. - source
Port String - Specifies whether the system preserves the source port of the connection. The default is
preserve
. - state String
- Specifies whether the virtual server and its resources are available for load balancing. The default is Enabled
- trafficmatching
Criteria String - Specifies destination traffic matching information to which the virtual server sends traffic
- translate
Address String - Enables or disables address translation for the virtual server. Turn address translation off for a virtual server if you want to use the virtual server to load balance connections to any address. This option is useful when the system is load balancing devices that have the same IP address.
- translate
Port String - Enables or disables port translation. Turn port translation off for a virtual server if you want to use the virtual server to load balance connections to any service
- vlans List<String>
- The virtual server is enabled/disabled on this set of VLANs,enable/disabled will be desided by attribute
vlan_enabled
- vlans
Enabled Boolean - Enables the virtual server on the VLANs specified by the
vlans
option. By default it isfalse
i.e vlanDisabled on specified vlans, if we want enable virtual server on VLANs specified byvlans
, mark this attribute totrue
.
- name string
- Name of the virtual server
- client
Profiles string[] - List of client context profiles associated on the virtual server. Not mutually exclusive with profiles and server_profiles
- default
Persistence stringProfile - description string
- Description of Virtual server
- destination string
- Destination IP
- fallback
Persistence stringProfile - Specifies a fallback persistence profile for the Virtual Server to use when the default persistence profile is not available.
- firewall
Enforced stringPolicy - Applies the specified AFM policy to the virtual in an enforcing way,when creating a new virtual, if this parameter is not specified, the enforced is disabled.This should be in full path ex:
/Common/afm-test-policy
. - ip
Protocol string - Specifies a network protocol name you want the system to use to direct traffic on this virtual server. The default is
tcp
. valid options are [any
,udp
,tcp
] - irules string[]
- The iRules list you want run on this virtual server. iRules help automate the intercepting, processing, and routing of application traffic.
- mask string
- Mask can either be in CIDR notation or decimal, i.e.: 24 or 255.255.255.0. A CIDR mask of 0 is the same as 0.0.0.0
- per
Flow stringRequest Access Policy - persistence
Profiles string[] - List of persistence profiles associated with the Virtual Server.
- policies string[]
- Specifies the policies for the virtual server.
- pool string
- Default pool name
- port number
- Listen port for the virtual server
- profiles string[]
- List of profiles associated both client and server contexts on the virtual server. This includes protocol, ssl, http, etc.
- security
Log string[]Profiles - Specifies the log profile applied to the virtual server.
- server
Profiles string[] - List of server context profiles associated on the virtual server. Not mutually exclusive with profiles and client_profiles
- snatpool string
- Specifies the name of an existing SNAT pool that you want the virtual server to use to implement selective and intelligent SNATs.
- source string
- Specifies an IP address or network from which the virtual server will accept traffic.
- source
Address stringTranslation - Can be either omitted for
none
or the valuesautomap
options : [snat
,automap
,none
]. - source
Port string - Specifies whether the system preserves the source port of the connection. The default is
preserve
. - state string
- Specifies whether the virtual server and its resources are available for load balancing. The default is Enabled
- trafficmatching
Criteria string - Specifies destination traffic matching information to which the virtual server sends traffic
- translate
Address string - Enables or disables address translation for the virtual server. Turn address translation off for a virtual server if you want to use the virtual server to load balance connections to any address. This option is useful when the system is load balancing devices that have the same IP address.
- translate
Port string - Enables or disables port translation. Turn port translation off for a virtual server if you want to use the virtual server to load balance connections to any service
- vlans string[]
- The virtual server is enabled/disabled on this set of VLANs,enable/disabled will be desided by attribute
vlan_enabled
- vlans
Enabled boolean - Enables the virtual server on the VLANs specified by the
vlans
option. By default it isfalse
i.e vlanDisabled on specified vlans, if we want enable virtual server on VLANs specified byvlans
, mark this attribute totrue
.
- name str
- Name of the virtual server
- client_
profiles Sequence[str] - List of client context profiles associated on the virtual server. Not mutually exclusive with profiles and server_profiles
- default_
persistence_ strprofile - description str
- Description of Virtual server
- destination str
- Destination IP
- fallback_
persistence_ strprofile - Specifies a fallback persistence profile for the Virtual Server to use when the default persistence profile is not available.
- firewall_
enforced_ strpolicy - Applies the specified AFM policy to the virtual in an enforcing way,when creating a new virtual, if this parameter is not specified, the enforced is disabled.This should be in full path ex:
/Common/afm-test-policy
. - ip_
protocol str - Specifies a network protocol name you want the system to use to direct traffic on this virtual server. The default is
tcp
. valid options are [any
,udp
,tcp
] - irules Sequence[str]
- The iRules list you want run on this virtual server. iRules help automate the intercepting, processing, and routing of application traffic.
- mask str
- Mask can either be in CIDR notation or decimal, i.e.: 24 or 255.255.255.0. A CIDR mask of 0 is the same as 0.0.0.0
- per_
flow_ strrequest_ access_ policy - persistence_
profiles Sequence[str] - List of persistence profiles associated with the Virtual Server.
- policies Sequence[str]
- Specifies the policies for the virtual server.
- pool str
- Default pool name
- port int
- Listen port for the virtual server
- profiles Sequence[str]
- List of profiles associated both client and server contexts on the virtual server. This includes protocol, ssl, http, etc.
- security_
log_ Sequence[str]profiles - Specifies the log profile applied to the virtual server.
- server_
profiles Sequence[str] - List of server context profiles associated on the virtual server. Not mutually exclusive with profiles and client_profiles
- snatpool str
- Specifies the name of an existing SNAT pool that you want the virtual server to use to implement selective and intelligent SNATs.
- source str
- Specifies an IP address or network from which the virtual server will accept traffic.
- source_
address_ strtranslation - Can be either omitted for
none
or the valuesautomap
options : [snat
,automap
,none
]. - source_
port str - Specifies whether the system preserves the source port of the connection. The default is
preserve
. - state str
- Specifies whether the virtual server and its resources are available for load balancing. The default is Enabled
- trafficmatching_
criteria str - Specifies destination traffic matching information to which the virtual server sends traffic
- translate_
address str - Enables or disables address translation for the virtual server. Turn address translation off for a virtual server if you want to use the virtual server to load balance connections to any address. This option is useful when the system is load balancing devices that have the same IP address.
- translate_
port str - Enables or disables port translation. Turn port translation off for a virtual server if you want to use the virtual server to load balance connections to any service
- vlans Sequence[str]
- The virtual server is enabled/disabled on this set of VLANs,enable/disabled will be desided by attribute
vlan_enabled
- vlans_
enabled bool - Enables the virtual server on the VLANs specified by the
vlans
option. By default it isfalse
i.e vlanDisabled on specified vlans, if we want enable virtual server on VLANs specified byvlans
, mark this attribute totrue
.
- name String
- Name of the virtual server
- client
Profiles List<String> - List of client context profiles associated on the virtual server. Not mutually exclusive with profiles and server_profiles
- default
Persistence StringProfile - description String
- Description of Virtual server
- destination String
- Destination IP
- fallback
Persistence StringProfile - Specifies a fallback persistence profile for the Virtual Server to use when the default persistence profile is not available.
- firewall
Enforced StringPolicy - Applies the specified AFM policy to the virtual in an enforcing way,when creating a new virtual, if this parameter is not specified, the enforced is disabled.This should be in full path ex:
/Common/afm-test-policy
. - ip
Protocol String - Specifies a network protocol name you want the system to use to direct traffic on this virtual server. The default is
tcp
. valid options are [any
,udp
,tcp
] - irules List<String>
- The iRules list you want run on this virtual server. iRules help automate the intercepting, processing, and routing of application traffic.
- mask String
- Mask can either be in CIDR notation or decimal, i.e.: 24 or 255.255.255.0. A CIDR mask of 0 is the same as 0.0.0.0
- per
Flow StringRequest Access Policy - persistence
Profiles List<String> - List of persistence profiles associated with the Virtual Server.
- policies List<String>
- Specifies the policies for the virtual server.
- pool String
- Default pool name
- port Number
- Listen port for the virtual server
- profiles List<String>
- List of profiles associated both client and server contexts on the virtual server. This includes protocol, ssl, http, etc.
- security
Log List<String>Profiles - Specifies the log profile applied to the virtual server.
- server
Profiles List<String> - List of server context profiles associated on the virtual server. Not mutually exclusive with profiles and client_profiles
- snatpool String
- Specifies the name of an existing SNAT pool that you want the virtual server to use to implement selective and intelligent SNATs.
- source String
- Specifies an IP address or network from which the virtual server will accept traffic.
- source
Address StringTranslation - Can be either omitted for
none
or the valuesautomap
options : [snat
,automap
,none
]. - source
Port String - Specifies whether the system preserves the source port of the connection. The default is
preserve
. - state String
- Specifies whether the virtual server and its resources are available for load balancing. The default is Enabled
- trafficmatching
Criteria String - Specifies destination traffic matching information to which the virtual server sends traffic
- translate
Address String - Enables or disables address translation for the virtual server. Turn address translation off for a virtual server if you want to use the virtual server to load balance connections to any address. This option is useful when the system is load balancing devices that have the same IP address.
- translate
Port String - Enables or disables port translation. Turn port translation off for a virtual server if you want to use the virtual server to load balance connections to any service
- vlans List<String>
- The virtual server is enabled/disabled on this set of VLANs,enable/disabled will be desided by attribute
vlan_enabled
- vlans
Enabled Boolean - Enables the virtual server on the VLANs specified by the
vlans
option. By default it isfalse
i.e vlanDisabled on specified vlans, if we want enable virtual server on VLANs specified byvlans
, mark this attribute totrue
.
Outputs
All input properties are implicitly available as output properties. Additionally, the VirtualServer 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 VirtualServer Resource
Get an existing VirtualServer 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?: VirtualServerState, opts?: CustomResourceOptions): VirtualServer
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
client_profiles: Optional[Sequence[str]] = None,
default_persistence_profile: Optional[str] = None,
description: Optional[str] = None,
destination: Optional[str] = None,
fallback_persistence_profile: Optional[str] = None,
firewall_enforced_policy: Optional[str] = None,
ip_protocol: Optional[str] = None,
irules: Optional[Sequence[str]] = None,
mask: Optional[str] = None,
name: Optional[str] = None,
per_flow_request_access_policy: Optional[str] = None,
persistence_profiles: Optional[Sequence[str]] = None,
policies: Optional[Sequence[str]] = None,
pool: Optional[str] = None,
port: Optional[int] = None,
profiles: Optional[Sequence[str]] = None,
security_log_profiles: Optional[Sequence[str]] = None,
server_profiles: Optional[Sequence[str]] = None,
snatpool: Optional[str] = None,
source: Optional[str] = None,
source_address_translation: Optional[str] = None,
source_port: Optional[str] = None,
state: Optional[str] = None,
trafficmatching_criteria: Optional[str] = None,
translate_address: Optional[str] = None,
translate_port: Optional[str] = None,
vlans: Optional[Sequence[str]] = None,
vlans_enabled: Optional[bool] = None) -> VirtualServer
func GetVirtualServer(ctx *Context, name string, id IDInput, state *VirtualServerState, opts ...ResourceOption) (*VirtualServer, error)
public static VirtualServer Get(string name, Input<string> id, VirtualServerState? state, CustomResourceOptions? opts = null)
public static VirtualServer get(String name, Output<String> id, VirtualServerState 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.
- Client
Profiles List<string> - List of client context profiles associated on the virtual server. Not mutually exclusive with profiles and server_profiles
- Default
Persistence stringProfile - Description string
- Description of Virtual server
- Destination string
- Destination IP
- Fallback
Persistence stringProfile - Specifies a fallback persistence profile for the Virtual Server to use when the default persistence profile is not available.
- Firewall
Enforced stringPolicy - Applies the specified AFM policy to the virtual in an enforcing way,when creating a new virtual, if this parameter is not specified, the enforced is disabled.This should be in full path ex:
/Common/afm-test-policy
. - Ip
Protocol string - Specifies a network protocol name you want the system to use to direct traffic on this virtual server. The default is
tcp
. valid options are [any
,udp
,tcp
] - Irules List<string>
- The iRules list you want run on this virtual server. iRules help automate the intercepting, processing, and routing of application traffic.
- Mask string
- Mask can either be in CIDR notation or decimal, i.e.: 24 or 255.255.255.0. A CIDR mask of 0 is the same as 0.0.0.0
- Name string
- Name of the virtual server
- Per
Flow stringRequest Access Policy - Persistence
Profiles List<string> - List of persistence profiles associated with the Virtual Server.
- Policies List<string>
- Specifies the policies for the virtual server.
- Pool string
- Default pool name
- Port int
- Listen port for the virtual server
- Profiles List<string>
- List of profiles associated both client and server contexts on the virtual server. This includes protocol, ssl, http, etc.
- Security
Log List<string>Profiles - Specifies the log profile applied to the virtual server.
- Server
Profiles List<string> - List of server context profiles associated on the virtual server. Not mutually exclusive with profiles and client_profiles
- Snatpool string
- Specifies the name of an existing SNAT pool that you want the virtual server to use to implement selective and intelligent SNATs.
- Source string
- Specifies an IP address or network from which the virtual server will accept traffic.
- Source
Address stringTranslation - Can be either omitted for
none
or the valuesautomap
options : [snat
,automap
,none
]. - Source
Port string - Specifies whether the system preserves the source port of the connection. The default is
preserve
. - State string
- Specifies whether the virtual server and its resources are available for load balancing. The default is Enabled
- Trafficmatching
Criteria string - Specifies destination traffic matching information to which the virtual server sends traffic
- Translate
Address string - Enables or disables address translation for the virtual server. Turn address translation off for a virtual server if you want to use the virtual server to load balance connections to any address. This option is useful when the system is load balancing devices that have the same IP address.
- Translate
Port string - Enables or disables port translation. Turn port translation off for a virtual server if you want to use the virtual server to load balance connections to any service
- Vlans List<string>
- The virtual server is enabled/disabled on this set of VLANs,enable/disabled will be desided by attribute
vlan_enabled
- Vlans
Enabled bool - Enables the virtual server on the VLANs specified by the
vlans
option. By default it isfalse
i.e vlanDisabled on specified vlans, if we want enable virtual server on VLANs specified byvlans
, mark this attribute totrue
.
- Client
Profiles []string - List of client context profiles associated on the virtual server. Not mutually exclusive with profiles and server_profiles
- Default
Persistence stringProfile - Description string
- Description of Virtual server
- Destination string
- Destination IP
- Fallback
Persistence stringProfile - Specifies a fallback persistence profile for the Virtual Server to use when the default persistence profile is not available.
- Firewall
Enforced stringPolicy - Applies the specified AFM policy to the virtual in an enforcing way,when creating a new virtual, if this parameter is not specified, the enforced is disabled.This should be in full path ex:
/Common/afm-test-policy
. - Ip
Protocol string - Specifies a network protocol name you want the system to use to direct traffic on this virtual server. The default is
tcp
. valid options are [any
,udp
,tcp
] - Irules []string
- The iRules list you want run on this virtual server. iRules help automate the intercepting, processing, and routing of application traffic.
- Mask string
- Mask can either be in CIDR notation or decimal, i.e.: 24 or 255.255.255.0. A CIDR mask of 0 is the same as 0.0.0.0
- Name string
- Name of the virtual server
- Per
Flow stringRequest Access Policy - Persistence
Profiles []string - List of persistence profiles associated with the Virtual Server.
- Policies []string
- Specifies the policies for the virtual server.
- Pool string
- Default pool name
- Port int
- Listen port for the virtual server
- Profiles []string
- List of profiles associated both client and server contexts on the virtual server. This includes protocol, ssl, http, etc.
- Security
Log []stringProfiles - Specifies the log profile applied to the virtual server.
- Server
Profiles []string - List of server context profiles associated on the virtual server. Not mutually exclusive with profiles and client_profiles
- Snatpool string
- Specifies the name of an existing SNAT pool that you want the virtual server to use to implement selective and intelligent SNATs.
- Source string
- Specifies an IP address or network from which the virtual server will accept traffic.
- Source
Address stringTranslation - Can be either omitted for
none
or the valuesautomap
options : [snat
,automap
,none
]. - Source
Port string - Specifies whether the system preserves the source port of the connection. The default is
preserve
. - State string
- Specifies whether the virtual server and its resources are available for load balancing. The default is Enabled
- Trafficmatching
Criteria string - Specifies destination traffic matching information to which the virtual server sends traffic
- Translate
Address string - Enables or disables address translation for the virtual server. Turn address translation off for a virtual server if you want to use the virtual server to load balance connections to any address. This option is useful when the system is load balancing devices that have the same IP address.
- Translate
Port string - Enables or disables port translation. Turn port translation off for a virtual server if you want to use the virtual server to load balance connections to any service
- Vlans []string
- The virtual server is enabled/disabled on this set of VLANs,enable/disabled will be desided by attribute
vlan_enabled
- Vlans
Enabled bool - Enables the virtual server on the VLANs specified by the
vlans
option. By default it isfalse
i.e vlanDisabled on specified vlans, if we want enable virtual server on VLANs specified byvlans
, mark this attribute totrue
.
- client
Profiles List<String> - List of client context profiles associated on the virtual server. Not mutually exclusive with profiles and server_profiles
- default
Persistence StringProfile - description String
- Description of Virtual server
- destination String
- Destination IP
- fallback
Persistence StringProfile - Specifies a fallback persistence profile for the Virtual Server to use when the default persistence profile is not available.
- firewall
Enforced StringPolicy - Applies the specified AFM policy to the virtual in an enforcing way,when creating a new virtual, if this parameter is not specified, the enforced is disabled.This should be in full path ex:
/Common/afm-test-policy
. - ip
Protocol String - Specifies a network protocol name you want the system to use to direct traffic on this virtual server. The default is
tcp
. valid options are [any
,udp
,tcp
] - irules List<String>
- The iRules list you want run on this virtual server. iRules help automate the intercepting, processing, and routing of application traffic.
- mask String
- Mask can either be in CIDR notation or decimal, i.e.: 24 or 255.255.255.0. A CIDR mask of 0 is the same as 0.0.0.0
- name String
- Name of the virtual server
- per
Flow StringRequest Access Policy - persistence
Profiles List<String> - List of persistence profiles associated with the Virtual Server.
- policies List<String>
- Specifies the policies for the virtual server.
- pool String
- Default pool name
- port Integer
- Listen port for the virtual server
- profiles List<String>
- List of profiles associated both client and server contexts on the virtual server. This includes protocol, ssl, http, etc.
- security
Log List<String>Profiles - Specifies the log profile applied to the virtual server.
- server
Profiles List<String> - List of server context profiles associated on the virtual server. Not mutually exclusive with profiles and client_profiles
- snatpool String
- Specifies the name of an existing SNAT pool that you want the virtual server to use to implement selective and intelligent SNATs.
- source String
- Specifies an IP address or network from which the virtual server will accept traffic.
- source
Address StringTranslation - Can be either omitted for
none
or the valuesautomap
options : [snat
,automap
,none
]. - source
Port String - Specifies whether the system preserves the source port of the connection. The default is
preserve
. - state String
- Specifies whether the virtual server and its resources are available for load balancing. The default is Enabled
- trafficmatching
Criteria String - Specifies destination traffic matching information to which the virtual server sends traffic
- translate
Address String - Enables or disables address translation for the virtual server. Turn address translation off for a virtual server if you want to use the virtual server to load balance connections to any address. This option is useful when the system is load balancing devices that have the same IP address.
- translate
Port String - Enables or disables port translation. Turn port translation off for a virtual server if you want to use the virtual server to load balance connections to any service
- vlans List<String>
- The virtual server is enabled/disabled on this set of VLANs,enable/disabled will be desided by attribute
vlan_enabled
- vlans
Enabled Boolean - Enables the virtual server on the VLANs specified by the
vlans
option. By default it isfalse
i.e vlanDisabled on specified vlans, if we want enable virtual server on VLANs specified byvlans
, mark this attribute totrue
.
- client
Profiles string[] - List of client context profiles associated on the virtual server. Not mutually exclusive with profiles and server_profiles
- default
Persistence stringProfile - description string
- Description of Virtual server
- destination string
- Destination IP
- fallback
Persistence stringProfile - Specifies a fallback persistence profile for the Virtual Server to use when the default persistence profile is not available.
- firewall
Enforced stringPolicy - Applies the specified AFM policy to the virtual in an enforcing way,when creating a new virtual, if this parameter is not specified, the enforced is disabled.This should be in full path ex:
/Common/afm-test-policy
. - ip
Protocol string - Specifies a network protocol name you want the system to use to direct traffic on this virtual server. The default is
tcp
. valid options are [any
,udp
,tcp
] - irules string[]
- The iRules list you want run on this virtual server. iRules help automate the intercepting, processing, and routing of application traffic.
- mask string
- Mask can either be in CIDR notation or decimal, i.e.: 24 or 255.255.255.0. A CIDR mask of 0 is the same as 0.0.0.0
- name string
- Name of the virtual server
- per
Flow stringRequest Access Policy - persistence
Profiles string[] - List of persistence profiles associated with the Virtual Server.
- policies string[]
- Specifies the policies for the virtual server.
- pool string
- Default pool name
- port number
- Listen port for the virtual server
- profiles string[]
- List of profiles associated both client and server contexts on the virtual server. This includes protocol, ssl, http, etc.
- security
Log string[]Profiles - Specifies the log profile applied to the virtual server.
- server
Profiles string[] - List of server context profiles associated on the virtual server. Not mutually exclusive with profiles and client_profiles
- snatpool string
- Specifies the name of an existing SNAT pool that you want the virtual server to use to implement selective and intelligent SNATs.
- source string
- Specifies an IP address or network from which the virtual server will accept traffic.
- source
Address stringTranslation - Can be either omitted for
none
or the valuesautomap
options : [snat
,automap
,none
]. - source
Port string - Specifies whether the system preserves the source port of the connection. The default is
preserve
. - state string
- Specifies whether the virtual server and its resources are available for load balancing. The default is Enabled
- trafficmatching
Criteria string - Specifies destination traffic matching information to which the virtual server sends traffic
- translate
Address string - Enables or disables address translation for the virtual server. Turn address translation off for a virtual server if you want to use the virtual server to load balance connections to any address. This option is useful when the system is load balancing devices that have the same IP address.
- translate
Port string - Enables or disables port translation. Turn port translation off for a virtual server if you want to use the virtual server to load balance connections to any service
- vlans string[]
- The virtual server is enabled/disabled on this set of VLANs,enable/disabled will be desided by attribute
vlan_enabled
- vlans
Enabled boolean - Enables the virtual server on the VLANs specified by the
vlans
option. By default it isfalse
i.e vlanDisabled on specified vlans, if we want enable virtual server on VLANs specified byvlans
, mark this attribute totrue
.
- client_
profiles Sequence[str] - List of client context profiles associated on the virtual server. Not mutually exclusive with profiles and server_profiles
- default_
persistence_ strprofile - description str
- Description of Virtual server
- destination str
- Destination IP
- fallback_
persistence_ strprofile - Specifies a fallback persistence profile for the Virtual Server to use when the default persistence profile is not available.
- firewall_
enforced_ strpolicy - Applies the specified AFM policy to the virtual in an enforcing way,when creating a new virtual, if this parameter is not specified, the enforced is disabled.This should be in full path ex:
/Common/afm-test-policy
. - ip_
protocol str - Specifies a network protocol name you want the system to use to direct traffic on this virtual server. The default is
tcp
. valid options are [any
,udp
,tcp
] - irules Sequence[str]
- The iRules list you want run on this virtual server. iRules help automate the intercepting, processing, and routing of application traffic.
- mask str
- Mask can either be in CIDR notation or decimal, i.e.: 24 or 255.255.255.0. A CIDR mask of 0 is the same as 0.0.0.0
- name str
- Name of the virtual server
- per_
flow_ strrequest_ access_ policy - persistence_
profiles Sequence[str] - List of persistence profiles associated with the Virtual Server.
- policies Sequence[str]
- Specifies the policies for the virtual server.
- pool str
- Default pool name
- port int
- Listen port for the virtual server
- profiles Sequence[str]
- List of profiles associated both client and server contexts on the virtual server. This includes protocol, ssl, http, etc.
- security_
log_ Sequence[str]profiles - Specifies the log profile applied to the virtual server.
- server_
profiles Sequence[str] - List of server context profiles associated on the virtual server. Not mutually exclusive with profiles and client_profiles
- snatpool str
- Specifies the name of an existing SNAT pool that you want the virtual server to use to implement selective and intelligent SNATs.
- source str
- Specifies an IP address or network from which the virtual server will accept traffic.
- source_
address_ strtranslation - Can be either omitted for
none
or the valuesautomap
options : [snat
,automap
,none
]. - source_
port str - Specifies whether the system preserves the source port of the connection. The default is
preserve
. - state str
- Specifies whether the virtual server and its resources are available for load balancing. The default is Enabled
- trafficmatching_
criteria str - Specifies destination traffic matching information to which the virtual server sends traffic
- translate_
address str - Enables or disables address translation for the virtual server. Turn address translation off for a virtual server if you want to use the virtual server to load balance connections to any address. This option is useful when the system is load balancing devices that have the same IP address.
- translate_
port str - Enables or disables port translation. Turn port translation off for a virtual server if you want to use the virtual server to load balance connections to any service
- vlans Sequence[str]
- The virtual server is enabled/disabled on this set of VLANs,enable/disabled will be desided by attribute
vlan_enabled
- vlans_
enabled bool - Enables the virtual server on the VLANs specified by the
vlans
option. By default it isfalse
i.e vlanDisabled on specified vlans, if we want enable virtual server on VLANs specified byvlans
, mark this attribute totrue
.
- client
Profiles List<String> - List of client context profiles associated on the virtual server. Not mutually exclusive with profiles and server_profiles
- default
Persistence StringProfile - description String
- Description of Virtual server
- destination String
- Destination IP
- fallback
Persistence StringProfile - Specifies a fallback persistence profile for the Virtual Server to use when the default persistence profile is not available.
- firewall
Enforced StringPolicy - Applies the specified AFM policy to the virtual in an enforcing way,when creating a new virtual, if this parameter is not specified, the enforced is disabled.This should be in full path ex:
/Common/afm-test-policy
. - ip
Protocol String - Specifies a network protocol name you want the system to use to direct traffic on this virtual server. The default is
tcp
. valid options are [any
,udp
,tcp
] - irules List<String>
- The iRules list you want run on this virtual server. iRules help automate the intercepting, processing, and routing of application traffic.
- mask String
- Mask can either be in CIDR notation or decimal, i.e.: 24 or 255.255.255.0. A CIDR mask of 0 is the same as 0.0.0.0
- name String
- Name of the virtual server
- per
Flow StringRequest Access Policy - persistence
Profiles List<String> - List of persistence profiles associated with the Virtual Server.
- policies List<String>
- Specifies the policies for the virtual server.
- pool String
- Default pool name
- port Number
- Listen port for the virtual server
- profiles List<String>
- List of profiles associated both client and server contexts on the virtual server. This includes protocol, ssl, http, etc.
- security
Log List<String>Profiles - Specifies the log profile applied to the virtual server.
- server
Profiles List<String> - List of server context profiles associated on the virtual server. Not mutually exclusive with profiles and client_profiles
- snatpool String
- Specifies the name of an existing SNAT pool that you want the virtual server to use to implement selective and intelligent SNATs.
- source String
- Specifies an IP address or network from which the virtual server will accept traffic.
- source
Address StringTranslation - Can be either omitted for
none
or the valuesautomap
options : [snat
,automap
,none
]. - source
Port String - Specifies whether the system preserves the source port of the connection. The default is
preserve
. - state String
- Specifies whether the virtual server and its resources are available for load balancing. The default is Enabled
- trafficmatching
Criteria String - Specifies destination traffic matching information to which the virtual server sends traffic
- translate
Address String - Enables or disables address translation for the virtual server. Turn address translation off for a virtual server if you want to use the virtual server to load balance connections to any address. This option is useful when the system is load balancing devices that have the same IP address.
- translate
Port String - Enables or disables port translation. Turn port translation off for a virtual server if you want to use the virtual server to load balance connections to any service
- vlans List<String>
- The virtual server is enabled/disabled on this set of VLANs,enable/disabled will be desided by attribute
vlan_enabled
- vlans
Enabled Boolean - Enables the virtual server on the VLANs specified by the
vlans
option. By default it isfalse
i.e vlanDisabled on specified vlans, if we want enable virtual server on VLANs specified byvlans
, mark this attribute totrue
.
Import
ing
An existing virtual-server can be imported into this resource by supplying virtual-server Name in full path
as id
.
An example is below:
$ terraform import bigip_ltm_virtual_server.http /Common/terraform_vs_http
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.