1. Packages
  2. F5bigip Provider
  3. API Docs
  4. ltm
  5. Snat
f5 BIG-IP v3.17.10 published on Tuesday, Apr 8, 2025 by Pulumi

f5bigip.ltm.Snat

Explore with Pulumi AI

f5bigip.ltm.Snat Manages a SNAT configuration

For resources should be named with their full path. The full path is the combination of the partition + name of the resource.For example /Common/test-snat.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";

const test_snat = new f5bigip.ltm.Snat("test-snat", {
    name: "/Common/test-snat",
    translation: "/Common/136.1.1.2",
    sourceport: "preserve",
    origins: [{
        name: "0.0.0.0/0",
    }],
    vlans: ["/Common/internal"],
    vlansdisabled: false,
});
Copy
import pulumi
import pulumi_f5bigip as f5bigip

test_snat = f5bigip.ltm.Snat("test-snat",
    name="/Common/test-snat",
    translation="/Common/136.1.1.2",
    sourceport="preserve",
    origins=[{
        "name": "0.0.0.0/0",
    }],
    vlans=["/Common/internal"],
    vlansdisabled=False)
Copy
package main

import (
	"github.com/pulumi/pulumi-f5bigip/sdk/v3/go/f5bigip/ltm"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := ltm.NewSnat(ctx, "test-snat", &ltm.SnatArgs{
			Name:        pulumi.String("/Common/test-snat"),
			Translation: pulumi.String("/Common/136.1.1.2"),
			Sourceport:  pulumi.String("preserve"),
			Origins: ltm.SnatOriginArray{
				&ltm.SnatOriginArgs{
					Name: pulumi.String("0.0.0.0/0"),
				},
			},
			Vlans: pulumi.StringArray{
				pulumi.String("/Common/internal"),
			},
			Vlansdisabled: pulumi.Bool(false),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;

return await Deployment.RunAsync(() => 
{
    var test_snat = new F5BigIP.Ltm.Snat("test-snat", new()
    {
        Name = "/Common/test-snat",
        Translation = "/Common/136.1.1.2",
        Sourceport = "preserve",
        Origins = new[]
        {
            new F5BigIP.Ltm.Inputs.SnatOriginArgs
            {
                Name = "0.0.0.0/0",
            },
        },
        Vlans = new[]
        {
            "/Common/internal",
        },
        Vlansdisabled = false,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.f5bigip.ltm.Snat;
import com.pulumi.f5bigip.ltm.SnatArgs;
import com.pulumi.f5bigip.ltm.inputs.SnatOriginArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var test_snat = new Snat("test-snat", SnatArgs.builder()
            .name("/Common/test-snat")
            .translation("/Common/136.1.1.2")
            .sourceport("preserve")
            .origins(SnatOriginArgs.builder()
                .name("0.0.0.0/0")
                .build())
            .vlans("/Common/internal")
            .vlansdisabled(false)
            .build());

    }
}
Copy
resources:
  test-snat:
    type: f5bigip:ltm:Snat
    properties:
      name: /Common/test-snat
      translation: /Common/136.1.1.2
      sourceport: preserve
      origins:
        - name: 0.0.0.0/0
      vlans:
        - /Common/internal
      vlansdisabled: false
Copy

Create Snat Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Snat(name: string, args: SnatArgs, opts?: CustomResourceOptions);
@overload
def Snat(resource_name: str,
         args: SnatArgs,
         opts: Optional[ResourceOptions] = None)

@overload
def Snat(resource_name: str,
         opts: Optional[ResourceOptions] = None,
         name: Optional[str] = None,
         origins: Optional[Sequence[SnatOriginArgs]] = None,
         autolasthop: Optional[str] = None,
         full_path: Optional[str] = None,
         mirror: Optional[str] = None,
         partition: Optional[str] = None,
         snatpool: Optional[str] = None,
         sourceport: Optional[str] = None,
         translation: Optional[str] = None,
         vlans: Optional[Sequence[str]] = None,
         vlansdisabled: Optional[bool] = None)
func NewSnat(ctx *Context, name string, args SnatArgs, opts ...ResourceOption) (*Snat, error)
public Snat(string name, SnatArgs args, CustomResourceOptions? opts = null)
public Snat(String name, SnatArgs args)
public Snat(String name, SnatArgs args, CustomResourceOptions options)
type: f5bigip:ltm:Snat
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SnatArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SnatArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SnatArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SnatArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SnatArgs
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 snatResource = new F5BigIP.Ltm.Snat("snatResource", new()
{
    Name = "string",
    Origins = new[]
    {
        new F5BigIP.Ltm.Inputs.SnatOriginArgs
        {
            AppService = "string",
            Name = "string",
        },
    },
    Autolasthop = "string",
    FullPath = "string",
    Mirror = "string",
    Partition = "string",
    Snatpool = "string",
    Sourceport = "string",
    Translation = "string",
    Vlans = new[]
    {
        "string",
    },
    Vlansdisabled = false,
});
Copy
example, err := ltm.NewSnat(ctx, "snatResource", &ltm.SnatArgs{
	Name: pulumi.String("string"),
	Origins: ltm.SnatOriginArray{
		&ltm.SnatOriginArgs{
			AppService: pulumi.String("string"),
			Name:       pulumi.String("string"),
		},
	},
	Autolasthop: pulumi.String("string"),
	FullPath:    pulumi.String("string"),
	Mirror:      pulumi.String("string"),
	Partition:   pulumi.String("string"),
	Snatpool:    pulumi.String("string"),
	Sourceport:  pulumi.String("string"),
	Translation: pulumi.String("string"),
	Vlans: pulumi.StringArray{
		pulumi.String("string"),
	},
	Vlansdisabled: pulumi.Bool(false),
})
Copy
var snatResource = new Snat("snatResource", SnatArgs.builder()
    .name("string")
    .origins(SnatOriginArgs.builder()
        .appService("string")
        .name("string")
        .build())
    .autolasthop("string")
    .fullPath("string")
    .mirror("string")
    .partition("string")
    .snatpool("string")
    .sourceport("string")
    .translation("string")
    .vlans("string")
    .vlansdisabled(false)
    .build());
Copy
snat_resource = f5bigip.ltm.Snat("snatResource",
    name="string",
    origins=[{
        "app_service": "string",
        "name": "string",
    }],
    autolasthop="string",
    full_path="string",
    mirror="string",
    partition="string",
    snatpool="string",
    sourceport="string",
    translation="string",
    vlans=["string"],
    vlansdisabled=False)
Copy
const snatResource = new f5bigip.ltm.Snat("snatResource", {
    name: "string",
    origins: [{
        appService: "string",
        name: "string",
    }],
    autolasthop: "string",
    fullPath: "string",
    mirror: "string",
    partition: "string",
    snatpool: "string",
    sourceport: "string",
    translation: "string",
    vlans: ["string"],
    vlansdisabled: false,
});
Copy
type: f5bigip:ltm:Snat
properties:
    autolasthop: string
    fullPath: string
    mirror: string
    name: string
    origins:
        - appService: string
          name: string
    partition: string
    snatpool: string
    sourceport: string
    translation: string
    vlans:
        - string
    vlansdisabled: false
Copy

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

Name
This property is required.
Changes to this property will trigger replacement.
string
Name of the SNAT, name of SNAT should be full path. Full path is the combination of the partition + SNAT name,For example /Common/test-snat.
Origins This property is required. List<Pulumi.F5BigIP.Ltm.Inputs.SnatOrigin>
Specifies, for each SNAT that you create, the origin addresses that are to be members of that SNAT. Specify origin addresses by their IP addresses and service ports
Autolasthop string
Specifies whether to automatically map last hop for pools or not. The default is to use next level's default.
FullPath string
Fullpath
Mirror string
Enables or disables mirroring of SNAT connections.
Partition string
Partition or path to which the SNAT belongs
Snatpool string
Specifies the name of a SNAT pool. You can only use this option when automap and translation are not used.
Sourceport string
Specifies how the SNAT object handles the client's source port. The default is preserve.
Translation string
Specifies the IP address configured for translation. Note that translated addresses are outside the traffic management system. You can only use this option when automap and snatpool are not used.
Vlans List<string>
Specifies the available VLANs or tunnels and those for which the SNAT is enabled or disabled.
Vlansdisabled bool
Specifies the VLANs or tunnels for which the SNAT is enabled or disabled. The default is true, vlandisabled on VLANS specified by vlans,if set to false vlanEnabled set on VLANS specified by vlans .
Name
This property is required.
Changes to this property will trigger replacement.
string
Name of the SNAT, name of SNAT should be full path. Full path is the combination of the partition + SNAT name,For example /Common/test-snat.
Origins This property is required. []SnatOriginArgs
Specifies, for each SNAT that you create, the origin addresses that are to be members of that SNAT. Specify origin addresses by their IP addresses and service ports
Autolasthop string
Specifies whether to automatically map last hop for pools or not. The default is to use next level's default.
FullPath string
Fullpath
Mirror string
Enables or disables mirroring of SNAT connections.
Partition string
Partition or path to which the SNAT belongs
Snatpool string
Specifies the name of a SNAT pool. You can only use this option when automap and translation are not used.
Sourceport string
Specifies how the SNAT object handles the client's source port. The default is preserve.
Translation string
Specifies the IP address configured for translation. Note that translated addresses are outside the traffic management system. You can only use this option when automap and snatpool are not used.
Vlans []string
Specifies the available VLANs or tunnels and those for which the SNAT is enabled or disabled.
Vlansdisabled bool
Specifies the VLANs or tunnels for which the SNAT is enabled or disabled. The default is true, vlandisabled on VLANS specified by vlans,if set to false vlanEnabled set on VLANS specified by vlans .
name
This property is required.
Changes to this property will trigger replacement.
String
Name of the SNAT, name of SNAT should be full path. Full path is the combination of the partition + SNAT name,For example /Common/test-snat.
origins This property is required. List<SnatOrigin>
Specifies, for each SNAT that you create, the origin addresses that are to be members of that SNAT. Specify origin addresses by their IP addresses and service ports
autolasthop String
Specifies whether to automatically map last hop for pools or not. The default is to use next level's default.
fullPath String
Fullpath
mirror String
Enables or disables mirroring of SNAT connections.
partition String
Partition or path to which the SNAT belongs
snatpool String
Specifies the name of a SNAT pool. You can only use this option when automap and translation are not used.
sourceport String
Specifies how the SNAT object handles the client's source port. The default is preserve.
translation String
Specifies the IP address configured for translation. Note that translated addresses are outside the traffic management system. You can only use this option when automap and snatpool are not used.
vlans List<String>
Specifies the available VLANs or tunnels and those for which the SNAT is enabled or disabled.
vlansdisabled Boolean
Specifies the VLANs or tunnels for which the SNAT is enabled or disabled. The default is true, vlandisabled on VLANS specified by vlans,if set to false vlanEnabled set on VLANS specified by vlans .
name
This property is required.
Changes to this property will trigger replacement.
string
Name of the SNAT, name of SNAT should be full path. Full path is the combination of the partition + SNAT name,For example /Common/test-snat.
origins This property is required. SnatOrigin[]
Specifies, for each SNAT that you create, the origin addresses that are to be members of that SNAT. Specify origin addresses by their IP addresses and service ports
autolasthop string
Specifies whether to automatically map last hop for pools or not. The default is to use next level's default.
fullPath string
Fullpath
mirror string
Enables or disables mirroring of SNAT connections.
partition string
Partition or path to which the SNAT belongs
snatpool string
Specifies the name of a SNAT pool. You can only use this option when automap and translation are not used.
sourceport string
Specifies how the SNAT object handles the client's source port. The default is preserve.
translation string
Specifies the IP address configured for translation. Note that translated addresses are outside the traffic management system. You can only use this option when automap and snatpool are not used.
vlans string[]
Specifies the available VLANs or tunnels and those for which the SNAT is enabled or disabled.
vlansdisabled boolean
Specifies the VLANs or tunnels for which the SNAT is enabled or disabled. The default is true, vlandisabled on VLANS specified by vlans,if set to false vlanEnabled set on VLANS specified by vlans .
name
This property is required.
Changes to this property will trigger replacement.
str
Name of the SNAT, name of SNAT should be full path. Full path is the combination of the partition + SNAT name,For example /Common/test-snat.
origins This property is required. Sequence[SnatOriginArgs]
Specifies, for each SNAT that you create, the origin addresses that are to be members of that SNAT. Specify origin addresses by their IP addresses and service ports
autolasthop str
Specifies whether to automatically map last hop for pools or not. The default is to use next level's default.
full_path str
Fullpath
mirror str
Enables or disables mirroring of SNAT connections.
partition str
Partition or path to which the SNAT belongs
snatpool str
Specifies the name of a SNAT pool. You can only use this option when automap and translation are not used.
sourceport str
Specifies how the SNAT object handles the client's source port. The default is preserve.
translation str
Specifies the IP address configured for translation. Note that translated addresses are outside the traffic management system. You can only use this option when automap and snatpool are not used.
vlans Sequence[str]
Specifies the available VLANs or tunnels and those for which the SNAT is enabled or disabled.
vlansdisabled bool
Specifies the VLANs or tunnels for which the SNAT is enabled or disabled. The default is true, vlandisabled on VLANS specified by vlans,if set to false vlanEnabled set on VLANS specified by vlans .
name
This property is required.
Changes to this property will trigger replacement.
String
Name of the SNAT, name of SNAT should be full path. Full path is the combination of the partition + SNAT name,For example /Common/test-snat.
origins This property is required. List<Property Map>
Specifies, for each SNAT that you create, the origin addresses that are to be members of that SNAT. Specify origin addresses by their IP addresses and service ports
autolasthop String
Specifies whether to automatically map last hop for pools or not. The default is to use next level's default.
fullPath String
Fullpath
mirror String
Enables or disables mirroring of SNAT connections.
partition String
Partition or path to which the SNAT belongs
snatpool String
Specifies the name of a SNAT pool. You can only use this option when automap and translation are not used.
sourceport String
Specifies how the SNAT object handles the client's source port. The default is preserve.
translation String
Specifies the IP address configured for translation. Note that translated addresses are outside the traffic management system. You can only use this option when automap and snatpool are not used.
vlans List<String>
Specifies the available VLANs or tunnels and those for which the SNAT is enabled or disabled.
vlansdisabled Boolean
Specifies the VLANs or tunnels for which the SNAT is enabled or disabled. The default is true, vlandisabled on VLANS specified by vlans,if set to false vlanEnabled set on VLANS specified by vlans .

Outputs

All input properties are implicitly available as output properties. Additionally, the Snat 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 Snat Resource

Get an existing Snat 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?: SnatState, opts?: CustomResourceOptions): Snat
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        autolasthop: Optional[str] = None,
        full_path: Optional[str] = None,
        mirror: Optional[str] = None,
        name: Optional[str] = None,
        origins: Optional[Sequence[SnatOriginArgs]] = None,
        partition: Optional[str] = None,
        snatpool: Optional[str] = None,
        sourceport: Optional[str] = None,
        translation: Optional[str] = None,
        vlans: Optional[Sequence[str]] = None,
        vlansdisabled: Optional[bool] = None) -> Snat
func GetSnat(ctx *Context, name string, id IDInput, state *SnatState, opts ...ResourceOption) (*Snat, error)
public static Snat Get(string name, Input<string> id, SnatState? state, CustomResourceOptions? opts = null)
public static Snat get(String name, Output<String> id, SnatState state, CustomResourceOptions options)
resources:  _:    type: f5bigip:ltm:Snat    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Autolasthop string
Specifies whether to automatically map last hop for pools or not. The default is to use next level's default.
FullPath string
Fullpath
Mirror string
Enables or disables mirroring of SNAT connections.
Name Changes to this property will trigger replacement. string
Name of the SNAT, name of SNAT should be full path. Full path is the combination of the partition + SNAT name,For example /Common/test-snat.
Origins List<Pulumi.F5BigIP.Ltm.Inputs.SnatOrigin>
Specifies, for each SNAT that you create, the origin addresses that are to be members of that SNAT. Specify origin addresses by their IP addresses and service ports
Partition string
Partition or path to which the SNAT belongs
Snatpool string
Specifies the name of a SNAT pool. You can only use this option when automap and translation are not used.
Sourceport string
Specifies how the SNAT object handles the client's source port. The default is preserve.
Translation string
Specifies the IP address configured for translation. Note that translated addresses are outside the traffic management system. You can only use this option when automap and snatpool are not used.
Vlans List<string>
Specifies the available VLANs or tunnels and those for which the SNAT is enabled or disabled.
Vlansdisabled bool
Specifies the VLANs or tunnels for which the SNAT is enabled or disabled. The default is true, vlandisabled on VLANS specified by vlans,if set to false vlanEnabled set on VLANS specified by vlans .
Autolasthop string
Specifies whether to automatically map last hop for pools or not. The default is to use next level's default.
FullPath string
Fullpath
Mirror string
Enables or disables mirroring of SNAT connections.
Name Changes to this property will trigger replacement. string
Name of the SNAT, name of SNAT should be full path. Full path is the combination of the partition + SNAT name,For example /Common/test-snat.
Origins []SnatOriginArgs
Specifies, for each SNAT that you create, the origin addresses that are to be members of that SNAT. Specify origin addresses by their IP addresses and service ports
Partition string
Partition or path to which the SNAT belongs
Snatpool string
Specifies the name of a SNAT pool. You can only use this option when automap and translation are not used.
Sourceport string
Specifies how the SNAT object handles the client's source port. The default is preserve.
Translation string
Specifies the IP address configured for translation. Note that translated addresses are outside the traffic management system. You can only use this option when automap and snatpool are not used.
Vlans []string
Specifies the available VLANs or tunnels and those for which the SNAT is enabled or disabled.
Vlansdisabled bool
Specifies the VLANs or tunnels for which the SNAT is enabled or disabled. The default is true, vlandisabled on VLANS specified by vlans,if set to false vlanEnabled set on VLANS specified by vlans .
autolasthop String
Specifies whether to automatically map last hop for pools or not. The default is to use next level's default.
fullPath String
Fullpath
mirror String
Enables or disables mirroring of SNAT connections.
name Changes to this property will trigger replacement. String
Name of the SNAT, name of SNAT should be full path. Full path is the combination of the partition + SNAT name,For example /Common/test-snat.
origins List<SnatOrigin>
Specifies, for each SNAT that you create, the origin addresses that are to be members of that SNAT. Specify origin addresses by their IP addresses and service ports
partition String
Partition or path to which the SNAT belongs
snatpool String
Specifies the name of a SNAT pool. You can only use this option when automap and translation are not used.
sourceport String
Specifies how the SNAT object handles the client's source port. The default is preserve.
translation String
Specifies the IP address configured for translation. Note that translated addresses are outside the traffic management system. You can only use this option when automap and snatpool are not used.
vlans List<String>
Specifies the available VLANs or tunnels and those for which the SNAT is enabled or disabled.
vlansdisabled Boolean
Specifies the VLANs or tunnels for which the SNAT is enabled or disabled. The default is true, vlandisabled on VLANS specified by vlans,if set to false vlanEnabled set on VLANS specified by vlans .
autolasthop string
Specifies whether to automatically map last hop for pools or not. The default is to use next level's default.
fullPath string
Fullpath
mirror string
Enables or disables mirroring of SNAT connections.
name Changes to this property will trigger replacement. string
Name of the SNAT, name of SNAT should be full path. Full path is the combination of the partition + SNAT name,For example /Common/test-snat.
origins SnatOrigin[]
Specifies, for each SNAT that you create, the origin addresses that are to be members of that SNAT. Specify origin addresses by their IP addresses and service ports
partition string
Partition or path to which the SNAT belongs
snatpool string
Specifies the name of a SNAT pool. You can only use this option when automap and translation are not used.
sourceport string
Specifies how the SNAT object handles the client's source port. The default is preserve.
translation string
Specifies the IP address configured for translation. Note that translated addresses are outside the traffic management system. You can only use this option when automap and snatpool are not used.
vlans string[]
Specifies the available VLANs or tunnels and those for which the SNAT is enabled or disabled.
vlansdisabled boolean
Specifies the VLANs or tunnels for which the SNAT is enabled or disabled. The default is true, vlandisabled on VLANS specified by vlans,if set to false vlanEnabled set on VLANS specified by vlans .
autolasthop str
Specifies whether to automatically map last hop for pools or not. The default is to use next level's default.
full_path str
Fullpath
mirror str
Enables or disables mirroring of SNAT connections.
name Changes to this property will trigger replacement. str
Name of the SNAT, name of SNAT should be full path. Full path is the combination of the partition + SNAT name,For example /Common/test-snat.
origins Sequence[SnatOriginArgs]
Specifies, for each SNAT that you create, the origin addresses that are to be members of that SNAT. Specify origin addresses by their IP addresses and service ports
partition str
Partition or path to which the SNAT belongs
snatpool str
Specifies the name of a SNAT pool. You can only use this option when automap and translation are not used.
sourceport str
Specifies how the SNAT object handles the client's source port. The default is preserve.
translation str
Specifies the IP address configured for translation. Note that translated addresses are outside the traffic management system. You can only use this option when automap and snatpool are not used.
vlans Sequence[str]
Specifies the available VLANs or tunnels and those for which the SNAT is enabled or disabled.
vlansdisabled bool
Specifies the VLANs or tunnels for which the SNAT is enabled or disabled. The default is true, vlandisabled on VLANS specified by vlans,if set to false vlanEnabled set on VLANS specified by vlans .
autolasthop String
Specifies whether to automatically map last hop for pools or not. The default is to use next level's default.
fullPath String
Fullpath
mirror String
Enables or disables mirroring of SNAT connections.
name Changes to this property will trigger replacement. String
Name of the SNAT, name of SNAT should be full path. Full path is the combination of the partition + SNAT name,For example /Common/test-snat.
origins List<Property Map>
Specifies, for each SNAT that you create, the origin addresses that are to be members of that SNAT. Specify origin addresses by their IP addresses and service ports
partition String
Partition or path to which the SNAT belongs
snatpool String
Specifies the name of a SNAT pool. You can only use this option when automap and translation are not used.
sourceport String
Specifies how the SNAT object handles the client's source port. The default is preserve.
translation String
Specifies the IP address configured for translation. Note that translated addresses are outside the traffic management system. You can only use this option when automap and snatpool are not used.
vlans List<String>
Specifies the available VLANs or tunnels and those for which the SNAT is enabled or disabled.
vlansdisabled Boolean
Specifies the VLANs or tunnels for which the SNAT is enabled or disabled. The default is true, vlandisabled on VLANS specified by vlans,if set to false vlanEnabled set on VLANS specified by vlans .

Supporting Types

SnatOrigin
, SnatOriginArgs

AppService string
app service
Name string
Name of the SNAT, name of SNAT should be full path. Full path is the combination of the partition + SNAT name,For example /Common/test-snat.
AppService string
app service
Name string
Name of the SNAT, name of SNAT should be full path. Full path is the combination of the partition + SNAT name,For example /Common/test-snat.
appService String
app service
name String
Name of the SNAT, name of SNAT should be full path. Full path is the combination of the partition + SNAT name,For example /Common/test-snat.
appService string
app service
name string
Name of the SNAT, name of SNAT should be full path. Full path is the combination of the partition + SNAT name,For example /Common/test-snat.
app_service str
app service
name str
Name of the SNAT, name of SNAT should be full path. Full path is the combination of the partition + SNAT name,For example /Common/test-snat.
appService String
app service
name String
Name of the SNAT, name of SNAT should be full path. Full path is the combination of the partition + SNAT name,For example /Common/test-snat.

Package Details

Repository
f5 BIG-IP pulumi/pulumi-f5bigip
License
Apache-2.0
Notes
This Pulumi package is based on the bigip Terraform Provider.