sdwan.TransportManagementVpnFeature
Explore with Pulumi AI
This resource can manage a Transport Management VPN Feature.
- Minimum SD-WAN Manager version: 20.12.0
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.TransportManagementVpnFeature;
import com.pulumi.sdwan.TransportManagementVpnFeatureArgs;
import com.pulumi.sdwan.inputs.TransportManagementVpnFeatureNewHostMappingArgs;
import com.pulumi.sdwan.inputs.TransportManagementVpnFeatureIpv4StaticRouteArgs;
import com.pulumi.sdwan.inputs.TransportManagementVpnFeatureIpv6StaticRouteArgs;
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 example = new TransportManagementVpnFeature("example", TransportManagementVpnFeatureArgs.builder()
            .name("Example")
            .description("My Example")
            .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
            .vpnDescription("example")
            .primaryDnsAddressIpv4("1.2.3.4")
            .secondaryDnsAddressIpv4("2.3.4.5")
            .primaryDnsAddressIpv6("2001:0:0:1::0")
            .secondaryDnsAddressIpv6("2001:0:0:2::0")
            .newHostMappings(TransportManagementVpnFeatureNewHostMappingArgs.builder()
                .host_name("example")
                .list_of_ip_addresses("1.2.3.4")
                .build())
            .ipv4StaticRoutes(TransportManagementVpnFeatureIpv4StaticRouteArgs.builder()
                .network_address("1.2.3.4")
                .subnet_mask("0.0.0.0")
                .gateway("nextHop")
                .next_hops(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .build())
            .ipv6StaticRoutes(TransportManagementVpnFeatureIpv6StaticRouteArgs.builder()
                .prefix("2002::/16")
                .gateway("nextHop")
                .next_hops(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .build())
            .build());
    }
}
resources:
  example:
    type: sdwan:TransportManagementVpnFeature
    properties:
      name: Example
      description: My Example
      featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
      vpnDescription: example
      primaryDnsAddressIpv4: 1.2.3.4
      secondaryDnsAddressIpv4: 2.3.4.5
      primaryDnsAddressIpv6: 2001:0:0:1::0
      secondaryDnsAddressIpv6: 2001:0:0:2::0
      newHostMappings:
        - host_name: example
          list_of_ip_addresses:
            - 1.2.3.4
      ipv4StaticRoutes:
        - network_address: 1.2.3.4
          subnet_mask: 0.0.0.0
          gateway: nextHop
          next_hops:
            - address: 1.2.3.4
              administrativeDistance: 1
      ipv6StaticRoutes:
        - prefix: 2002::/16
          gateway: nextHop
          next_hops:
            - address: 2001:0:0:1::1
              administrativeDistance: 1
Create TransportManagementVpnFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TransportManagementVpnFeature(name: string, args?: TransportManagementVpnFeatureArgs, opts?: CustomResourceOptions);@overload
def TransportManagementVpnFeature(resource_name: str,
                                  args: Optional[TransportManagementVpnFeatureArgs] = None,
                                  opts: Optional[ResourceOptions] = None)
@overload
def TransportManagementVpnFeature(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  description: Optional[str] = None,
                                  feature_profile_id: Optional[str] = None,
                                  ipv4_static_routes: Optional[Sequence[TransportManagementVpnFeatureIpv4StaticRouteArgs]] = None,
                                  ipv6_static_routes: Optional[Sequence[TransportManagementVpnFeatureIpv6StaticRouteArgs]] = None,
                                  name: Optional[str] = None,
                                  new_host_mappings: Optional[Sequence[TransportManagementVpnFeatureNewHostMappingArgs]] = None,
                                  primary_dns_address_ipv4: Optional[str] = None,
                                  primary_dns_address_ipv4_variable: Optional[str] = None,
                                  primary_dns_address_ipv6: Optional[str] = None,
                                  primary_dns_address_ipv6_variable: Optional[str] = None,
                                  secondary_dns_address_ipv4: Optional[str] = None,
                                  secondary_dns_address_ipv4_variable: Optional[str] = None,
                                  secondary_dns_address_ipv6: Optional[str] = None,
                                  secondary_dns_address_ipv6_variable: Optional[str] = None,
                                  vpn_description: Optional[str] = None,
                                  vpn_description_variable: Optional[str] = None)func NewTransportManagementVpnFeature(ctx *Context, name string, args *TransportManagementVpnFeatureArgs, opts ...ResourceOption) (*TransportManagementVpnFeature, error)public TransportManagementVpnFeature(string name, TransportManagementVpnFeatureArgs? args = null, CustomResourceOptions? opts = null)
public TransportManagementVpnFeature(String name, TransportManagementVpnFeatureArgs args)
public TransportManagementVpnFeature(String name, TransportManagementVpnFeatureArgs args, CustomResourceOptions options)
type: sdwan:TransportManagementVpnFeature
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 TransportManagementVpnFeatureArgs
- 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 TransportManagementVpnFeatureArgs
- 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 TransportManagementVpnFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TransportManagementVpnFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TransportManagementVpnFeatureArgs
- 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 transportManagementVpnFeatureResource = new Sdwan.TransportManagementVpnFeature("transportManagementVpnFeatureResource", new()
{
    Description = "string",
    FeatureProfileId = "string",
    Ipv4StaticRoutes = new[]
    {
        new Sdwan.Inputs.TransportManagementVpnFeatureIpv4StaticRouteArgs
        {
            AdministrativeDistance = 0,
            AdministrativeDistanceVariable = "string",
            Gateway = "string",
            NetworkAddress = "string",
            NetworkAddressVariable = "string",
            NextHops = new[]
            {
                new Sdwan.Inputs.TransportManagementVpnFeatureIpv4StaticRouteNextHopArgs
                {
                    Address = "string",
                    AddressVariable = "string",
                    AdministrativeDistance = 0,
                    AdministrativeDistanceVariable = "string",
                },
            },
            SubnetMask = "string",
            SubnetMaskVariable = "string",
        },
    },
    Ipv6StaticRoutes = new[]
    {
        new Sdwan.Inputs.TransportManagementVpnFeatureIpv6StaticRouteArgs
        {
            Gateway = "string",
            Nat = "string",
            NatVariable = "string",
            NextHops = new[]
            {
                new Sdwan.Inputs.TransportManagementVpnFeatureIpv6StaticRouteNextHopArgs
                {
                    Address = "string",
                    AddressVariable = "string",
                    AdministrativeDistance = 0,
                    AdministrativeDistanceVariable = "string",
                },
            },
            Null0 = false,
            Prefix = "string",
            PrefixVariable = "string",
        },
    },
    Name = "string",
    NewHostMappings = new[]
    {
        new Sdwan.Inputs.TransportManagementVpnFeatureNewHostMappingArgs
        {
            HostName = "string",
            HostNameVariable = "string",
            ListOfIpAddresses = new[]
            {
                "string",
            },
            ListOfIpAddressesVariable = "string",
        },
    },
    PrimaryDnsAddressIpv4 = "string",
    PrimaryDnsAddressIpv4Variable = "string",
    PrimaryDnsAddressIpv6 = "string",
    PrimaryDnsAddressIpv6Variable = "string",
    SecondaryDnsAddressIpv4 = "string",
    SecondaryDnsAddressIpv4Variable = "string",
    SecondaryDnsAddressIpv6 = "string",
    SecondaryDnsAddressIpv6Variable = "string",
    VpnDescription = "string",
    VpnDescriptionVariable = "string",
});
example, err := sdwan.NewTransportManagementVpnFeature(ctx, "transportManagementVpnFeatureResource", &sdwan.TransportManagementVpnFeatureArgs{
	Description:      pulumi.String("string"),
	FeatureProfileId: pulumi.String("string"),
	Ipv4StaticRoutes: sdwan.TransportManagementVpnFeatureIpv4StaticRouteArray{
		&sdwan.TransportManagementVpnFeatureIpv4StaticRouteArgs{
			AdministrativeDistance:         pulumi.Int(0),
			AdministrativeDistanceVariable: pulumi.String("string"),
			Gateway:                        pulumi.String("string"),
			NetworkAddress:                 pulumi.String("string"),
			NetworkAddressVariable:         pulumi.String("string"),
			NextHops: sdwan.TransportManagementVpnFeatureIpv4StaticRouteNextHopArray{
				&sdwan.TransportManagementVpnFeatureIpv4StaticRouteNextHopArgs{
					Address:                        pulumi.String("string"),
					AddressVariable:                pulumi.String("string"),
					AdministrativeDistance:         pulumi.Int(0),
					AdministrativeDistanceVariable: pulumi.String("string"),
				},
			},
			SubnetMask:         pulumi.String("string"),
			SubnetMaskVariable: pulumi.String("string"),
		},
	},
	Ipv6StaticRoutes: sdwan.TransportManagementVpnFeatureIpv6StaticRouteArray{
		&sdwan.TransportManagementVpnFeatureIpv6StaticRouteArgs{
			Gateway:     pulumi.String("string"),
			Nat:         pulumi.String("string"),
			NatVariable: pulumi.String("string"),
			NextHops: sdwan.TransportManagementVpnFeatureIpv6StaticRouteNextHopArray{
				&sdwan.TransportManagementVpnFeatureIpv6StaticRouteNextHopArgs{
					Address:                        pulumi.String("string"),
					AddressVariable:                pulumi.String("string"),
					AdministrativeDistance:         pulumi.Int(0),
					AdministrativeDistanceVariable: pulumi.String("string"),
				},
			},
			Null0:          pulumi.Bool(false),
			Prefix:         pulumi.String("string"),
			PrefixVariable: pulumi.String("string"),
		},
	},
	Name: pulumi.String("string"),
	NewHostMappings: sdwan.TransportManagementVpnFeatureNewHostMappingArray{
		&sdwan.TransportManagementVpnFeatureNewHostMappingArgs{
			HostName:         pulumi.String("string"),
			HostNameVariable: pulumi.String("string"),
			ListOfIpAddresses: pulumi.StringArray{
				pulumi.String("string"),
			},
			ListOfIpAddressesVariable: pulumi.String("string"),
		},
	},
	PrimaryDnsAddressIpv4:           pulumi.String("string"),
	PrimaryDnsAddressIpv4Variable:   pulumi.String("string"),
	PrimaryDnsAddressIpv6:           pulumi.String("string"),
	PrimaryDnsAddressIpv6Variable:   pulumi.String("string"),
	SecondaryDnsAddressIpv4:         pulumi.String("string"),
	SecondaryDnsAddressIpv4Variable: pulumi.String("string"),
	SecondaryDnsAddressIpv6:         pulumi.String("string"),
	SecondaryDnsAddressIpv6Variable: pulumi.String("string"),
	VpnDescription:                  pulumi.String("string"),
	VpnDescriptionVariable:          pulumi.String("string"),
})
var transportManagementVpnFeatureResource = new TransportManagementVpnFeature("transportManagementVpnFeatureResource", TransportManagementVpnFeatureArgs.builder()
    .description("string")
    .featureProfileId("string")
    .ipv4StaticRoutes(TransportManagementVpnFeatureIpv4StaticRouteArgs.builder()
        .administrativeDistance(0)
        .administrativeDistanceVariable("string")
        .gateway("string")
        .networkAddress("string")
        .networkAddressVariable("string")
        .nextHops(TransportManagementVpnFeatureIpv4StaticRouteNextHopArgs.builder()
            .address("string")
            .addressVariable("string")
            .administrativeDistance(0)
            .administrativeDistanceVariable("string")
            .build())
        .subnetMask("string")
        .subnetMaskVariable("string")
        .build())
    .ipv6StaticRoutes(TransportManagementVpnFeatureIpv6StaticRouteArgs.builder()
        .gateway("string")
        .nat("string")
        .natVariable("string")
        .nextHops(TransportManagementVpnFeatureIpv6StaticRouteNextHopArgs.builder()
            .address("string")
            .addressVariable("string")
            .administrativeDistance(0)
            .administrativeDistanceVariable("string")
            .build())
        .null0(false)
        .prefix("string")
        .prefixVariable("string")
        .build())
    .name("string")
    .newHostMappings(TransportManagementVpnFeatureNewHostMappingArgs.builder()
        .hostName("string")
        .hostNameVariable("string")
        .listOfIpAddresses("string")
        .listOfIpAddressesVariable("string")
        .build())
    .primaryDnsAddressIpv4("string")
    .primaryDnsAddressIpv4Variable("string")
    .primaryDnsAddressIpv6("string")
    .primaryDnsAddressIpv6Variable("string")
    .secondaryDnsAddressIpv4("string")
    .secondaryDnsAddressIpv4Variable("string")
    .secondaryDnsAddressIpv6("string")
    .secondaryDnsAddressIpv6Variable("string")
    .vpnDescription("string")
    .vpnDescriptionVariable("string")
    .build());
transport_management_vpn_feature_resource = sdwan.TransportManagementVpnFeature("transportManagementVpnFeatureResource",
    description="string",
    feature_profile_id="string",
    ipv4_static_routes=[{
        "administrative_distance": 0,
        "administrative_distance_variable": "string",
        "gateway": "string",
        "network_address": "string",
        "network_address_variable": "string",
        "next_hops": [{
            "address": "string",
            "address_variable": "string",
            "administrative_distance": 0,
            "administrative_distance_variable": "string",
        }],
        "subnet_mask": "string",
        "subnet_mask_variable": "string",
    }],
    ipv6_static_routes=[{
        "gateway": "string",
        "nat": "string",
        "nat_variable": "string",
        "next_hops": [{
            "address": "string",
            "address_variable": "string",
            "administrative_distance": 0,
            "administrative_distance_variable": "string",
        }],
        "null0": False,
        "prefix": "string",
        "prefix_variable": "string",
    }],
    name="string",
    new_host_mappings=[{
        "host_name": "string",
        "host_name_variable": "string",
        "list_of_ip_addresses": ["string"],
        "list_of_ip_addresses_variable": "string",
    }],
    primary_dns_address_ipv4="string",
    primary_dns_address_ipv4_variable="string",
    primary_dns_address_ipv6="string",
    primary_dns_address_ipv6_variable="string",
    secondary_dns_address_ipv4="string",
    secondary_dns_address_ipv4_variable="string",
    secondary_dns_address_ipv6="string",
    secondary_dns_address_ipv6_variable="string",
    vpn_description="string",
    vpn_description_variable="string")
const transportManagementVpnFeatureResource = new sdwan.TransportManagementVpnFeature("transportManagementVpnFeatureResource", {
    description: "string",
    featureProfileId: "string",
    ipv4StaticRoutes: [{
        administrativeDistance: 0,
        administrativeDistanceVariable: "string",
        gateway: "string",
        networkAddress: "string",
        networkAddressVariable: "string",
        nextHops: [{
            address: "string",
            addressVariable: "string",
            administrativeDistance: 0,
            administrativeDistanceVariable: "string",
        }],
        subnetMask: "string",
        subnetMaskVariable: "string",
    }],
    ipv6StaticRoutes: [{
        gateway: "string",
        nat: "string",
        natVariable: "string",
        nextHops: [{
            address: "string",
            addressVariable: "string",
            administrativeDistance: 0,
            administrativeDistanceVariable: "string",
        }],
        null0: false,
        prefix: "string",
        prefixVariable: "string",
    }],
    name: "string",
    newHostMappings: [{
        hostName: "string",
        hostNameVariable: "string",
        listOfIpAddresses: ["string"],
        listOfIpAddressesVariable: "string",
    }],
    primaryDnsAddressIpv4: "string",
    primaryDnsAddressIpv4Variable: "string",
    primaryDnsAddressIpv6: "string",
    primaryDnsAddressIpv6Variable: "string",
    secondaryDnsAddressIpv4: "string",
    secondaryDnsAddressIpv4Variable: "string",
    secondaryDnsAddressIpv6: "string",
    secondaryDnsAddressIpv6Variable: "string",
    vpnDescription: "string",
    vpnDescriptionVariable: "string",
});
type: sdwan:TransportManagementVpnFeature
properties:
    description: string
    featureProfileId: string
    ipv4StaticRoutes:
        - administrativeDistance: 0
          administrativeDistanceVariable: string
          gateway: string
          networkAddress: string
          networkAddressVariable: string
          nextHops:
            - address: string
              addressVariable: string
              administrativeDistance: 0
              administrativeDistanceVariable: string
          subnetMask: string
          subnetMaskVariable: string
    ipv6StaticRoutes:
        - gateway: string
          nat: string
          natVariable: string
          nextHops:
            - address: string
              addressVariable: string
              administrativeDistance: 0
              administrativeDistanceVariable: string
          null0: false
          prefix: string
          prefixVariable: string
    name: string
    newHostMappings:
        - hostName: string
          hostNameVariable: string
          listOfIpAddresses:
            - string
          listOfIpAddressesVariable: string
    primaryDnsAddressIpv4: string
    primaryDnsAddressIpv4Variable: string
    primaryDnsAddressIpv6: string
    primaryDnsAddressIpv6Variable: string
    secondaryDnsAddressIpv4: string
    secondaryDnsAddressIpv4Variable: string
    secondaryDnsAddressIpv6: string
    secondaryDnsAddressIpv6Variable: string
    vpnDescription: string
    vpnDescriptionVariable: string
TransportManagementVpnFeature 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 TransportManagementVpnFeature resource accepts the following input properties:
- Description string
- The description of the Feature
- FeatureProfile stringId 
- Feature Profile ID
- Ipv4StaticRoutes List<TransportManagement Vpn Feature Ipv4Static Route> 
- IPv4 Static Route
- Ipv6StaticRoutes List<TransportManagement Vpn Feature Ipv6Static Route> 
- IPv6 Static Route
- Name string
- The name of the Feature
- NewHost List<TransportMappings Management Vpn Feature New Host Mapping> 
- PrimaryDns stringAddress Ipv4 
- Primary DNS Address (IPv4)
- PrimaryDns stringAddress Ipv4Variable 
- Variable name
- PrimaryDns stringAddress Ipv6 
- Primary DNS Address (IPv6)
- PrimaryDns stringAddress Ipv6Variable 
- Variable name
- SecondaryDns stringAddress Ipv4 
- Secondary DNS Address (IPv4)
- SecondaryDns stringAddress Ipv4Variable 
- Variable name
- SecondaryDns stringAddress Ipv6 
- Secondary DNS Address (IPv6)
- SecondaryDns stringAddress Ipv6Variable 
- Variable name
- VpnDescription string
- Name
- VpnDescription stringVariable 
- Variable name
- Description string
- The description of the Feature
- FeatureProfile stringId 
- Feature Profile ID
- Ipv4StaticRoutes []TransportManagement Vpn Feature Ipv4Static Route Args 
- IPv4 Static Route
- Ipv6StaticRoutes []TransportManagement Vpn Feature Ipv6Static Route Args 
- IPv6 Static Route
- Name string
- The name of the Feature
- NewHost []TransportMappings Management Vpn Feature New Host Mapping Args 
- PrimaryDns stringAddress Ipv4 
- Primary DNS Address (IPv4)
- PrimaryDns stringAddress Ipv4Variable 
- Variable name
- PrimaryDns stringAddress Ipv6 
- Primary DNS Address (IPv6)
- PrimaryDns stringAddress Ipv6Variable 
- Variable name
- SecondaryDns stringAddress Ipv4 
- Secondary DNS Address (IPv4)
- SecondaryDns stringAddress Ipv4Variable 
- Variable name
- SecondaryDns stringAddress Ipv6 
- Secondary DNS Address (IPv6)
- SecondaryDns stringAddress Ipv6Variable 
- Variable name
- VpnDescription string
- Name
- VpnDescription stringVariable 
- Variable name
- description String
- The description of the Feature
- featureProfile StringId 
- Feature Profile ID
- ipv4StaticRoutes List<TransportManagement Vpn Feature Ipv4Static Route> 
- IPv4 Static Route
- ipv6StaticRoutes List<TransportManagement Vpn Feature Ipv6Static Route> 
- IPv6 Static Route
- name String
- The name of the Feature
- newHost List<TransportMappings Management Vpn Feature New Host Mapping> 
- primaryDns StringAddress Ipv4 
- Primary DNS Address (IPv4)
- primaryDns StringAddress Ipv4Variable 
- Variable name
- primaryDns StringAddress Ipv6 
- Primary DNS Address (IPv6)
- primaryDns StringAddress Ipv6Variable 
- Variable name
- secondaryDns StringAddress Ipv4 
- Secondary DNS Address (IPv4)
- secondaryDns StringAddress Ipv4Variable 
- Variable name
- secondaryDns StringAddress Ipv6 
- Secondary DNS Address (IPv6)
- secondaryDns StringAddress Ipv6Variable 
- Variable name
- vpnDescription String
- Name
- vpnDescription StringVariable 
- Variable name
- description string
- The description of the Feature
- featureProfile stringId 
- Feature Profile ID
- ipv4StaticRoutes TransportManagement Vpn Feature Ipv4Static Route[] 
- IPv4 Static Route
- ipv6StaticRoutes TransportManagement Vpn Feature Ipv6Static Route[] 
- IPv6 Static Route
- name string
- The name of the Feature
- newHost TransportMappings Management Vpn Feature New Host Mapping[] 
- primaryDns stringAddress Ipv4 
- Primary DNS Address (IPv4)
- primaryDns stringAddress Ipv4Variable 
- Variable name
- primaryDns stringAddress Ipv6 
- Primary DNS Address (IPv6)
- primaryDns stringAddress Ipv6Variable 
- Variable name
- secondaryDns stringAddress Ipv4 
- Secondary DNS Address (IPv4)
- secondaryDns stringAddress Ipv4Variable 
- Variable name
- secondaryDns stringAddress Ipv6 
- Secondary DNS Address (IPv6)
- secondaryDns stringAddress Ipv6Variable 
- Variable name
- vpnDescription string
- Name
- vpnDescription stringVariable 
- Variable name
- description str
- The description of the Feature
- feature_profile_ strid 
- Feature Profile ID
- ipv4_static_ Sequence[Transportroutes Management Vpn Feature Ipv4Static Route Args] 
- IPv4 Static Route
- ipv6_static_ Sequence[Transportroutes Management Vpn Feature Ipv6Static Route Args] 
- IPv6 Static Route
- name str
- The name of the Feature
- new_host_ Sequence[Transportmappings Management Vpn Feature New Host Mapping Args] 
- primary_dns_ straddress_ ipv4 
- Primary DNS Address (IPv4)
- primary_dns_ straddress_ ipv4_ variable 
- Variable name
- primary_dns_ straddress_ ipv6 
- Primary DNS Address (IPv6)
- primary_dns_ straddress_ ipv6_ variable 
- Variable name
- secondary_dns_ straddress_ ipv4 
- Secondary DNS Address (IPv4)
- secondary_dns_ straddress_ ipv4_ variable 
- Variable name
- secondary_dns_ straddress_ ipv6 
- Secondary DNS Address (IPv6)
- secondary_dns_ straddress_ ipv6_ variable 
- Variable name
- vpn_description str
- Name
- vpn_description_ strvariable 
- Variable name
- description String
- The description of the Feature
- featureProfile StringId 
- Feature Profile ID
- ipv4StaticRoutes List<Property Map>
- IPv4 Static Route
- ipv6StaticRoutes List<Property Map>
- IPv6 Static Route
- name String
- The name of the Feature
- newHost List<Property Map>Mappings 
- primaryDns StringAddress Ipv4 
- Primary DNS Address (IPv4)
- primaryDns StringAddress Ipv4Variable 
- Variable name
- primaryDns StringAddress Ipv6 
- Primary DNS Address (IPv6)
- primaryDns StringAddress Ipv6Variable 
- Variable name
- secondaryDns StringAddress Ipv4 
- Secondary DNS Address (IPv4)
- secondaryDns StringAddress Ipv4Variable 
- Variable name
- secondaryDns StringAddress Ipv6 
- Secondary DNS Address (IPv6)
- secondaryDns StringAddress Ipv6Variable 
- Variable name
- vpnDescription String
- Name
- vpnDescription StringVariable 
- Variable name
Outputs
All input properties are implicitly available as output properties. Additionally, the TransportManagementVpnFeature resource produces the following output properties:
Look up Existing TransportManagementVpnFeature Resource
Get an existing TransportManagementVpnFeature 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?: TransportManagementVpnFeatureState, opts?: CustomResourceOptions): TransportManagementVpnFeature@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        feature_profile_id: Optional[str] = None,
        ipv4_static_routes: Optional[Sequence[TransportManagementVpnFeatureIpv4StaticRouteArgs]] = None,
        ipv6_static_routes: Optional[Sequence[TransportManagementVpnFeatureIpv6StaticRouteArgs]] = None,
        name: Optional[str] = None,
        new_host_mappings: Optional[Sequence[TransportManagementVpnFeatureNewHostMappingArgs]] = None,
        primary_dns_address_ipv4: Optional[str] = None,
        primary_dns_address_ipv4_variable: Optional[str] = None,
        primary_dns_address_ipv6: Optional[str] = None,
        primary_dns_address_ipv6_variable: Optional[str] = None,
        secondary_dns_address_ipv4: Optional[str] = None,
        secondary_dns_address_ipv4_variable: Optional[str] = None,
        secondary_dns_address_ipv6: Optional[str] = None,
        secondary_dns_address_ipv6_variable: Optional[str] = None,
        version: Optional[int] = None,
        vpn_description: Optional[str] = None,
        vpn_description_variable: Optional[str] = None) -> TransportManagementVpnFeaturefunc GetTransportManagementVpnFeature(ctx *Context, name string, id IDInput, state *TransportManagementVpnFeatureState, opts ...ResourceOption) (*TransportManagementVpnFeature, error)public static TransportManagementVpnFeature Get(string name, Input<string> id, TransportManagementVpnFeatureState? state, CustomResourceOptions? opts = null)public static TransportManagementVpnFeature get(String name, Output<String> id, TransportManagementVpnFeatureState state, CustomResourceOptions options)resources:  _:    type: sdwan:TransportManagementVpnFeature    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Description string
- The description of the Feature
- FeatureProfile stringId 
- Feature Profile ID
- Ipv4StaticRoutes List<TransportManagement Vpn Feature Ipv4Static Route> 
- IPv4 Static Route
- Ipv6StaticRoutes List<TransportManagement Vpn Feature Ipv6Static Route> 
- IPv6 Static Route
- Name string
- The name of the Feature
- NewHost List<TransportMappings Management Vpn Feature New Host Mapping> 
- PrimaryDns stringAddress Ipv4 
- Primary DNS Address (IPv4)
- PrimaryDns stringAddress Ipv4Variable 
- Variable name
- PrimaryDns stringAddress Ipv6 
- Primary DNS Address (IPv6)
- PrimaryDns stringAddress Ipv6Variable 
- Variable name
- SecondaryDns stringAddress Ipv4 
- Secondary DNS Address (IPv4)
- SecondaryDns stringAddress Ipv4Variable 
- Variable name
- SecondaryDns stringAddress Ipv6 
- Secondary DNS Address (IPv6)
- SecondaryDns stringAddress Ipv6Variable 
- Variable name
- Version int
- The version of the Feature
- VpnDescription string
- Name
- VpnDescription stringVariable 
- Variable name
- Description string
- The description of the Feature
- FeatureProfile stringId 
- Feature Profile ID
- Ipv4StaticRoutes []TransportManagement Vpn Feature Ipv4Static Route Args 
- IPv4 Static Route
- Ipv6StaticRoutes []TransportManagement Vpn Feature Ipv6Static Route Args 
- IPv6 Static Route
- Name string
- The name of the Feature
- NewHost []TransportMappings Management Vpn Feature New Host Mapping Args 
- PrimaryDns stringAddress Ipv4 
- Primary DNS Address (IPv4)
- PrimaryDns stringAddress Ipv4Variable 
- Variable name
- PrimaryDns stringAddress Ipv6 
- Primary DNS Address (IPv6)
- PrimaryDns stringAddress Ipv6Variable 
- Variable name
- SecondaryDns stringAddress Ipv4 
- Secondary DNS Address (IPv4)
- SecondaryDns stringAddress Ipv4Variable 
- Variable name
- SecondaryDns stringAddress Ipv6 
- Secondary DNS Address (IPv6)
- SecondaryDns stringAddress Ipv6Variable 
- Variable name
- Version int
- The version of the Feature
- VpnDescription string
- Name
- VpnDescription stringVariable 
- Variable name
- description String
- The description of the Feature
- featureProfile StringId 
- Feature Profile ID
- ipv4StaticRoutes List<TransportManagement Vpn Feature Ipv4Static Route> 
- IPv4 Static Route
- ipv6StaticRoutes List<TransportManagement Vpn Feature Ipv6Static Route> 
- IPv6 Static Route
- name String
- The name of the Feature
- newHost List<TransportMappings Management Vpn Feature New Host Mapping> 
- primaryDns StringAddress Ipv4 
- Primary DNS Address (IPv4)
- primaryDns StringAddress Ipv4Variable 
- Variable name
- primaryDns StringAddress Ipv6 
- Primary DNS Address (IPv6)
- primaryDns StringAddress Ipv6Variable 
- Variable name
- secondaryDns StringAddress Ipv4 
- Secondary DNS Address (IPv4)
- secondaryDns StringAddress Ipv4Variable 
- Variable name
- secondaryDns StringAddress Ipv6 
- Secondary DNS Address (IPv6)
- secondaryDns StringAddress Ipv6Variable 
- Variable name
- version Integer
- The version of the Feature
- vpnDescription String
- Name
- vpnDescription StringVariable 
- Variable name
- description string
- The description of the Feature
- featureProfile stringId 
- Feature Profile ID
- ipv4StaticRoutes TransportManagement Vpn Feature Ipv4Static Route[] 
- IPv4 Static Route
- ipv6StaticRoutes TransportManagement Vpn Feature Ipv6Static Route[] 
- IPv6 Static Route
- name string
- The name of the Feature
- newHost TransportMappings Management Vpn Feature New Host Mapping[] 
- primaryDns stringAddress Ipv4 
- Primary DNS Address (IPv4)
- primaryDns stringAddress Ipv4Variable 
- Variable name
- primaryDns stringAddress Ipv6 
- Primary DNS Address (IPv6)
- primaryDns stringAddress Ipv6Variable 
- Variable name
- secondaryDns stringAddress Ipv4 
- Secondary DNS Address (IPv4)
- secondaryDns stringAddress Ipv4Variable 
- Variable name
- secondaryDns stringAddress Ipv6 
- Secondary DNS Address (IPv6)
- secondaryDns stringAddress Ipv6Variable 
- Variable name
- version number
- The version of the Feature
- vpnDescription string
- Name
- vpnDescription stringVariable 
- Variable name
- description str
- The description of the Feature
- feature_profile_ strid 
- Feature Profile ID
- ipv4_static_ Sequence[Transportroutes Management Vpn Feature Ipv4Static Route Args] 
- IPv4 Static Route
- ipv6_static_ Sequence[Transportroutes Management Vpn Feature Ipv6Static Route Args] 
- IPv6 Static Route
- name str
- The name of the Feature
- new_host_ Sequence[Transportmappings Management Vpn Feature New Host Mapping Args] 
- primary_dns_ straddress_ ipv4 
- Primary DNS Address (IPv4)
- primary_dns_ straddress_ ipv4_ variable 
- Variable name
- primary_dns_ straddress_ ipv6 
- Primary DNS Address (IPv6)
- primary_dns_ straddress_ ipv6_ variable 
- Variable name
- secondary_dns_ straddress_ ipv4 
- Secondary DNS Address (IPv4)
- secondary_dns_ straddress_ ipv4_ variable 
- Variable name
- secondary_dns_ straddress_ ipv6 
- Secondary DNS Address (IPv6)
- secondary_dns_ straddress_ ipv6_ variable 
- Variable name
- version int
- The version of the Feature
- vpn_description str
- Name
- vpn_description_ strvariable 
- Variable name
- description String
- The description of the Feature
- featureProfile StringId 
- Feature Profile ID
- ipv4StaticRoutes List<Property Map>
- IPv4 Static Route
- ipv6StaticRoutes List<Property Map>
- IPv6 Static Route
- name String
- The name of the Feature
- newHost List<Property Map>Mappings 
- primaryDns StringAddress Ipv4 
- Primary DNS Address (IPv4)
- primaryDns StringAddress Ipv4Variable 
- Variable name
- primaryDns StringAddress Ipv6 
- Primary DNS Address (IPv6)
- primaryDns StringAddress Ipv6Variable 
- Variable name
- secondaryDns StringAddress Ipv4 
- Secondary DNS Address (IPv4)
- secondaryDns StringAddress Ipv4Variable 
- Variable name
- secondaryDns StringAddress Ipv6 
- Secondary DNS Address (IPv6)
- secondaryDns StringAddress Ipv6Variable 
- Variable name
- version Number
- The version of the Feature
- vpnDescription String
- Name
- vpnDescription StringVariable 
- Variable name
Supporting Types
TransportManagementVpnFeatureIpv4StaticRoute, TransportManagementVpnFeatureIpv4StaticRouteArgs            
- AdministrativeDistance int
- Administrative distance, Attribute conditional on gatewaybeing equal tonull0- Range: 1-255
- Default value: 1
 
- Range: 
- AdministrativeDistance stringVariable 
- Variable name
- Gateway string
- Gateway- Choices: nextHop,dhcp,null0
- Default value: nextHop
 
- Choices: 
- NetworkAddress string
- IP Address
- NetworkAddress stringVariable 
- Variable name
- NextHops List<TransportManagement Vpn Feature Ipv4Static Route Next Hop> 
- IPv4 Route Gateway Next Hop, Attribute conditional on gatewaybeing equal tonextHop
- SubnetMask string
- Subnet Mask- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- SubnetMask stringVariable 
- Variable name
- AdministrativeDistance int
- Administrative distance, Attribute conditional on gatewaybeing equal tonull0- Range: 1-255
- Default value: 1
 
- Range: 
- AdministrativeDistance stringVariable 
- Variable name
- Gateway string
- Gateway- Choices: nextHop,dhcp,null0
- Default value: nextHop
 
- Choices: 
- NetworkAddress string
- IP Address
- NetworkAddress stringVariable 
- Variable name
- NextHops []TransportManagement Vpn Feature Ipv4Static Route Next Hop 
- IPv4 Route Gateway Next Hop, Attribute conditional on gatewaybeing equal tonextHop
- SubnetMask string
- Subnet Mask- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- SubnetMask stringVariable 
- Variable name
- administrativeDistance Integer
- Administrative distance, Attribute conditional on gatewaybeing equal tonull0- Range: 1-255
- Default value: 1
 
- Range: 
- administrativeDistance StringVariable 
- Variable name
- gateway String
- Gateway- Choices: nextHop,dhcp,null0
- Default value: nextHop
 
- Choices: 
- networkAddress String
- IP Address
- networkAddress StringVariable 
- Variable name
- nextHops List<TransportManagement Vpn Feature Ipv4Static Route Next Hop> 
- IPv4 Route Gateway Next Hop, Attribute conditional on gatewaybeing equal tonextHop
- subnetMask String
- Subnet Mask- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- subnetMask StringVariable 
- Variable name
- administrativeDistance number
- Administrative distance, Attribute conditional on gatewaybeing equal tonull0- Range: 1-255
- Default value: 1
 
- Range: 
- administrativeDistance stringVariable 
- Variable name
- gateway string
- Gateway- Choices: nextHop,dhcp,null0
- Default value: nextHop
 
- Choices: 
- networkAddress string
- IP Address
- networkAddress stringVariable 
- Variable name
- nextHops TransportManagement Vpn Feature Ipv4Static Route Next Hop[] 
- IPv4 Route Gateway Next Hop, Attribute conditional on gatewaybeing equal tonextHop
- subnetMask string
- Subnet Mask- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- subnetMask stringVariable 
- Variable name
- administrative_distance int
- Administrative distance, Attribute conditional on gatewaybeing equal tonull0- Range: 1-255
- Default value: 1
 
- Range: 
- administrative_distance_ strvariable 
- Variable name
- gateway str
- Gateway- Choices: nextHop,dhcp,null0
- Default value: nextHop
 
- Choices: 
- network_address str
- IP Address
- network_address_ strvariable 
- Variable name
- next_hops Sequence[TransportManagement Vpn Feature Ipv4Static Route Next Hop] 
- IPv4 Route Gateway Next Hop, Attribute conditional on gatewaybeing equal tonextHop
- subnet_mask str
- Subnet Mask- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- subnet_mask_ strvariable 
- Variable name
- administrativeDistance Number
- Administrative distance, Attribute conditional on gatewaybeing equal tonull0- Range: 1-255
- Default value: 1
 
- Range: 
- administrativeDistance StringVariable 
- Variable name
- gateway String
- Gateway- Choices: nextHop,dhcp,null0
- Default value: nextHop
 
- Choices: 
- networkAddress String
- IP Address
- networkAddress StringVariable 
- Variable name
- nextHops List<Property Map>
- IPv4 Route Gateway Next Hop, Attribute conditional on gatewaybeing equal tonextHop
- subnetMask String
- Subnet Mask- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- subnetMask StringVariable 
- Variable name
TransportManagementVpnFeatureIpv4StaticRouteNextHop, TransportManagementVpnFeatureIpv4StaticRouteNextHopArgs                
- Address string
- Address
- AddressVariable string
- Variable name
- AdministrativeDistance int
- Administrative distance- Range: 1-255
- Default value: 1
 
- Range: 
- AdministrativeDistance stringVariable 
- Variable name
- Address string
- Address
- AddressVariable string
- Variable name
- AdministrativeDistance int
- Administrative distance- Range: 1-255
- Default value: 1
 
- Range: 
- AdministrativeDistance stringVariable 
- Variable name
- address String
- Address
- addressVariable String
- Variable name
- administrativeDistance Integer
- Administrative distance- Range: 1-255
- Default value: 1
 
- Range: 
- administrativeDistance StringVariable 
- Variable name
- address string
- Address
- addressVariable string
- Variable name
- administrativeDistance number
- Administrative distance- Range: 1-255
- Default value: 1
 
- Range: 
- administrativeDistance stringVariable 
- Variable name
- address str
- Address
- address_variable str
- Variable name
- administrative_distance int
- Administrative distance- Range: 1-255
- Default value: 1
 
- Range: 
- administrative_distance_ strvariable 
- Variable name
- address String
- Address
- addressVariable String
- Variable name
- administrativeDistance Number
- Administrative distance- Range: 1-255
- Default value: 1
 
- Range: 
- administrativeDistance StringVariable 
- Variable name
TransportManagementVpnFeatureIpv6StaticRoute, TransportManagementVpnFeatureIpv6StaticRouteArgs            
- Gateway string
- Gateway- Choices: nextHop,null0,nat
 
- Choices: 
- Nat string
- IPv6 Nat, Attribute conditional on gatewaybeing equal tonat- Choices: NAT64,NAT66
 
- Choices: 
- NatVariable string
- Variable name
- NextHops List<TransportManagement Vpn Feature Ipv6Static Route Next Hop> 
- IPv6 Route Gateway Next Hop, Attribute conditional on gatewaybeing equal tonextHop
- Null0 bool
- IPv6 Route Gateway Next Hop, Attribute conditional on gatewaybeing equal tonull0
- Prefix string
- Prefix
- PrefixVariable string
- Variable name
- Gateway string
- Gateway- Choices: nextHop,null0,nat
 
- Choices: 
- Nat string
- IPv6 Nat, Attribute conditional on gatewaybeing equal tonat- Choices: NAT64,NAT66
 
- Choices: 
- NatVariable string
- Variable name
- NextHops []TransportManagement Vpn Feature Ipv6Static Route Next Hop 
- IPv6 Route Gateway Next Hop, Attribute conditional on gatewaybeing equal tonextHop
- Null0 bool
- IPv6 Route Gateway Next Hop, Attribute conditional on gatewaybeing equal tonull0
- Prefix string
- Prefix
- PrefixVariable string
- Variable name
- gateway String
- Gateway- Choices: nextHop,null0,nat
 
- Choices: 
- nat String
- IPv6 Nat, Attribute conditional on gatewaybeing equal tonat- Choices: NAT64,NAT66
 
- Choices: 
- natVariable String
- Variable name
- nextHops List<TransportManagement Vpn Feature Ipv6Static Route Next Hop> 
- IPv6 Route Gateway Next Hop, Attribute conditional on gatewaybeing equal tonextHop
- null0 Boolean
- IPv6 Route Gateway Next Hop, Attribute conditional on gatewaybeing equal tonull0
- prefix String
- Prefix
- prefixVariable String
- Variable name
- gateway string
- Gateway- Choices: nextHop,null0,nat
 
- Choices: 
- nat string
- IPv6 Nat, Attribute conditional on gatewaybeing equal tonat- Choices: NAT64,NAT66
 
- Choices: 
- natVariable string
- Variable name
- nextHops TransportManagement Vpn Feature Ipv6Static Route Next Hop[] 
- IPv6 Route Gateway Next Hop, Attribute conditional on gatewaybeing equal tonextHop
- null0 boolean
- IPv6 Route Gateway Next Hop, Attribute conditional on gatewaybeing equal tonull0
- prefix string
- Prefix
- prefixVariable string
- Variable name
- gateway str
- Gateway- Choices: nextHop,null0,nat
 
- Choices: 
- nat str
- IPv6 Nat, Attribute conditional on gatewaybeing equal tonat- Choices: NAT64,NAT66
 
- Choices: 
- nat_variable str
- Variable name
- next_hops Sequence[TransportManagement Vpn Feature Ipv6Static Route Next Hop] 
- IPv6 Route Gateway Next Hop, Attribute conditional on gatewaybeing equal tonextHop
- null0 bool
- IPv6 Route Gateway Next Hop, Attribute conditional on gatewaybeing equal tonull0
- prefix str
- Prefix
- prefix_variable str
- Variable name
- gateway String
- Gateway- Choices: nextHop,null0,nat
 
- Choices: 
- nat String
- IPv6 Nat, Attribute conditional on gatewaybeing equal tonat- Choices: NAT64,NAT66
 
- Choices: 
- natVariable String
- Variable name
- nextHops List<Property Map>
- IPv6 Route Gateway Next Hop, Attribute conditional on gatewaybeing equal tonextHop
- null0 Boolean
- IPv6 Route Gateway Next Hop, Attribute conditional on gatewaybeing equal tonull0
- prefix String
- Prefix
- prefixVariable String
- Variable name
TransportManagementVpnFeatureIpv6StaticRouteNextHop, TransportManagementVpnFeatureIpv6StaticRouteNextHopArgs                
- Address string
- Address
- AddressVariable string
- Variable name
- AdministrativeDistance int
- Administrative distance- Range: 1-254
- Default value: 1
 
- Range: 
- AdministrativeDistance stringVariable 
- Variable name
- Address string
- Address
- AddressVariable string
- Variable name
- AdministrativeDistance int
- Administrative distance- Range: 1-254
- Default value: 1
 
- Range: 
- AdministrativeDistance stringVariable 
- Variable name
- address String
- Address
- addressVariable String
- Variable name
- administrativeDistance Integer
- Administrative distance- Range: 1-254
- Default value: 1
 
- Range: 
- administrativeDistance StringVariable 
- Variable name
- address string
- Address
- addressVariable string
- Variable name
- administrativeDistance number
- Administrative distance- Range: 1-254
- Default value: 1
 
- Range: 
- administrativeDistance stringVariable 
- Variable name
- address str
- Address
- address_variable str
- Variable name
- administrative_distance int
- Administrative distance- Range: 1-254
- Default value: 1
 
- Range: 
- administrative_distance_ strvariable 
- Variable name
- address String
- Address
- addressVariable String
- Variable name
- administrativeDistance Number
- Administrative distance- Range: 1-254
- Default value: 1
 
- Range: 
- administrativeDistance StringVariable 
- Variable name
TransportManagementVpnFeatureNewHostMapping, TransportManagementVpnFeatureNewHostMappingArgs              
- HostName string
- Hostname
- HostName stringVariable 
- Variable name
- ListOf List<string>Ip Addresses 
- List of IP
- ListOf stringIp Addresses Variable 
- Variable name
- HostName string
- Hostname
- HostName stringVariable 
- Variable name
- ListOf []stringIp Addresses 
- List of IP
- ListOf stringIp Addresses Variable 
- Variable name
- hostName String
- Hostname
- hostName StringVariable 
- Variable name
- listOf List<String>Ip Addresses 
- List of IP
- listOf StringIp Addresses Variable 
- Variable name
- hostName string
- Hostname
- hostName stringVariable 
- Variable name
- listOf string[]Ip Addresses 
- List of IP
- listOf stringIp Addresses Variable 
- Variable name
- host_name str
- Hostname
- host_name_ strvariable 
- Variable name
- list_of_ Sequence[str]ip_ addresses 
- List of IP
- list_of_ strip_ addresses_ variable 
- Variable name
- hostName String
- Hostname
- hostName StringVariable 
- Variable name
- listOf List<String>Ip Addresses 
- List of IP
- listOf StringIp Addresses Variable 
- Variable name
Import
Expected import identifier with the format: “transport_management_vpn_feature_id,feature_profile_id”
$ pulumi import sdwan:index/transportManagementVpnFeature:TransportManagementVpnFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the sdwanTerraform Provider.
