1. Packages
  2. Cisco Catalyst SD-WAN
  3. API Docs
  4. TransportManagementVpnProfileParcel
Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi

sdwan.TransportManagementVpnProfileParcel

Explore with Pulumi AI

sdwan logo
Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi

    This resource can manage a Transport Management VPN profile parcel.

    • 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.TransportManagementVpnProfileParcel;
    import com.pulumi.sdwan.TransportManagementVpnProfileParcelArgs;
    import com.pulumi.sdwan.inputs.TransportManagementVpnProfileParcelNewHostMappingArgs;
    import com.pulumi.sdwan.inputs.TransportManagementVpnProfileParcelIpv4StaticRouteArgs;
    import com.pulumi.sdwan.inputs.TransportManagementVpnProfileParcelIpv6StaticRouteArgs;
    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 TransportManagementVpnProfileParcel("example", TransportManagementVpnProfileParcelArgs.builder()        
                .name("Example")
                .description("My Example")
                .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
                .basicConfigurationDescription("example")
                .primaryDnsAddressIpv4("1.2.3.4")
                .secondaryDnsAddressIpv4("2.3.4.5")
                .primaryDnsAddressIpv6("2001:0:0:1::0")
                .secondaryDnsAddressIpv6("2001:0:0:2::0")
                .newHostMappings(TransportManagementVpnProfileParcelNewHostMappingArgs.builder()
                    .host_name("example")
                    .list_of_ip_addresses("1.2.3.4")
                    .build())
                .ipv4StaticRoutes(TransportManagementVpnProfileParcelIpv4StaticRouteArgs.builder()
                    .network_address("1.2.3.4")
                    .subnet_mask("0.0.0.0")
                    .gateway("nextHop")
                    .ipv4_route_gateway_next_ho(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                    .administrative_distance(1)
                    .build())
                .ipv6StaticRoutes(TransportManagementVpnProfileParcelIpv6StaticRouteArgs.builder()
                    .prefix("2002::/16")
                    .next_hops(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: sdwan:TransportManagementVpnProfileParcel
        properties:
          name: Example
          description: My Example
          featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
          basicConfigurationDescription: 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
              ipv4_route_gateway_next_ho:
                - address: 1.2.3.4
                  administrativeDistance: 1
              administrative_distance: 1
          ipv6StaticRoutes:
            - prefix: 2002::/16
              next_hops:
                - address: 2001:0:0:1::1
                  administrativeDistance: 1
    

    Create TransportManagementVpnProfileParcel Resource

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

    Constructor syntax

    new TransportManagementVpnProfileParcel(name: string, args?: TransportManagementVpnProfileParcelArgs, opts?: CustomResourceOptions);
    @overload
    def TransportManagementVpnProfileParcel(resource_name: str,
                                            args: Optional[TransportManagementVpnProfileParcelArgs] = None,
                                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def TransportManagementVpnProfileParcel(resource_name: str,
                                            opts: Optional[ResourceOptions] = None,
                                            basic_configuration_description: Optional[str] = None,
                                            basic_configuration_description_variable: Optional[str] = None,
                                            description: Optional[str] = None,
                                            feature_profile_id: Optional[str] = None,
                                            ipv4_static_routes: Optional[Sequence[TransportManagementVpnProfileParcelIpv4StaticRouteArgs]] = None,
                                            ipv6_static_routes: Optional[Sequence[TransportManagementVpnProfileParcelIpv6StaticRouteArgs]] = None,
                                            name: Optional[str] = None,
                                            new_host_mappings: Optional[Sequence[TransportManagementVpnProfileParcelNewHostMappingArgs]] = 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)
    func NewTransportManagementVpnProfileParcel(ctx *Context, name string, args *TransportManagementVpnProfileParcelArgs, opts ...ResourceOption) (*TransportManagementVpnProfileParcel, error)
    public TransportManagementVpnProfileParcel(string name, TransportManagementVpnProfileParcelArgs? args = null, CustomResourceOptions? opts = null)
    public TransportManagementVpnProfileParcel(String name, TransportManagementVpnProfileParcelArgs args)
    public TransportManagementVpnProfileParcel(String name, TransportManagementVpnProfileParcelArgs args, CustomResourceOptions options)
    
    type: sdwan:TransportManagementVpnProfileParcel
    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 TransportManagementVpnProfileParcelArgs
    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 TransportManagementVpnProfileParcelArgs
    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 TransportManagementVpnProfileParcelArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TransportManagementVpnProfileParcelArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TransportManagementVpnProfileParcelArgs
    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 transportManagementVpnProfileParcelResource = new Sdwan.TransportManagementVpnProfileParcel("transportManagementVpnProfileParcelResource", new()
    {
        BasicConfigurationDescription = "string",
        BasicConfigurationDescriptionVariable = "string",
        Description = "string",
        FeatureProfileId = "string",
        Ipv4StaticRoutes = new[]
        {
            new Sdwan.Inputs.TransportManagementVpnProfileParcelIpv4StaticRouteArgs
            {
                AdministrativeDistance = 0,
                AdministrativeDistanceVariable = "string",
                Gateway = "string",
                Ipv4RouteGatewayNextHos = new[]
                {
                    new Sdwan.Inputs.TransportManagementVpnProfileParcelIpv4StaticRouteIpv4RouteGatewayNextHoArgs
                    {
                        Address = "string",
                        AddressVariable = "string",
                        AdministrativeDistance = 0,
                        AdministrativeDistanceVariable = "string",
                    },
                },
                NetworkAddress = "string",
                NetworkAddressVariable = "string",
                SubnetMask = "string",
                SubnetMaskVariable = "string",
            },
        },
        Ipv6StaticRoutes = new[]
        {
            new Sdwan.Inputs.TransportManagementVpnProfileParcelIpv6StaticRouteArgs
            {
                Nat = "string",
                NatVariable = "string",
                NextHops = new[]
                {
                    new Sdwan.Inputs.TransportManagementVpnProfileParcelIpv6StaticRouteNextHopArgs
                    {
                        Address = "string",
                        AddressVariable = "string",
                        AdministrativeDistance = 0,
                        AdministrativeDistanceVariable = "string",
                    },
                },
                Null0 = false,
                Prefix = "string",
                PrefixVariable = "string",
            },
        },
        Name = "string",
        NewHostMappings = new[]
        {
            new Sdwan.Inputs.TransportManagementVpnProfileParcelNewHostMappingArgs
            {
                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",
    });
    
    example, err := sdwan.NewTransportManagementVpnProfileParcel(ctx, "transportManagementVpnProfileParcelResource", &sdwan.TransportManagementVpnProfileParcelArgs{
    	BasicConfigurationDescription:         pulumi.String("string"),
    	BasicConfigurationDescriptionVariable: pulumi.String("string"),
    	Description:                           pulumi.String("string"),
    	FeatureProfileId:                      pulumi.String("string"),
    	Ipv4StaticRoutes: sdwan.TransportManagementVpnProfileParcelIpv4StaticRouteArray{
    		&sdwan.TransportManagementVpnProfileParcelIpv4StaticRouteArgs{
    			AdministrativeDistance:         pulumi.Int(0),
    			AdministrativeDistanceVariable: pulumi.String("string"),
    			Gateway:                        pulumi.String("string"),
    			Ipv4RouteGatewayNextHos: sdwan.TransportManagementVpnProfileParcelIpv4StaticRouteIpv4RouteGatewayNextHoArray{
    				&sdwan.TransportManagementVpnProfileParcelIpv4StaticRouteIpv4RouteGatewayNextHoArgs{
    					Address:                        pulumi.String("string"),
    					AddressVariable:                pulumi.String("string"),
    					AdministrativeDistance:         pulumi.Int(0),
    					AdministrativeDistanceVariable: pulumi.String("string"),
    				},
    			},
    			NetworkAddress:         pulumi.String("string"),
    			NetworkAddressVariable: pulumi.String("string"),
    			SubnetMask:             pulumi.String("string"),
    			SubnetMaskVariable:     pulumi.String("string"),
    		},
    	},
    	Ipv6StaticRoutes: sdwan.TransportManagementVpnProfileParcelIpv6StaticRouteArray{
    		&sdwan.TransportManagementVpnProfileParcelIpv6StaticRouteArgs{
    			Nat:         pulumi.String("string"),
    			NatVariable: pulumi.String("string"),
    			NextHops: sdwan.TransportManagementVpnProfileParcelIpv6StaticRouteNextHopArray{
    				&sdwan.TransportManagementVpnProfileParcelIpv6StaticRouteNextHopArgs{
    					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.TransportManagementVpnProfileParcelNewHostMappingArray{
    		&sdwan.TransportManagementVpnProfileParcelNewHostMappingArgs{
    			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"),
    })
    
    var transportManagementVpnProfileParcelResource = new TransportManagementVpnProfileParcel("transportManagementVpnProfileParcelResource", TransportManagementVpnProfileParcelArgs.builder()
        .basicConfigurationDescription("string")
        .basicConfigurationDescriptionVariable("string")
        .description("string")
        .featureProfileId("string")
        .ipv4StaticRoutes(TransportManagementVpnProfileParcelIpv4StaticRouteArgs.builder()
            .administrativeDistance(0)
            .administrativeDistanceVariable("string")
            .gateway("string")
            .ipv4RouteGatewayNextHos(TransportManagementVpnProfileParcelIpv4StaticRouteIpv4RouteGatewayNextHoArgs.builder()
                .address("string")
                .addressVariable("string")
                .administrativeDistance(0)
                .administrativeDistanceVariable("string")
                .build())
            .networkAddress("string")
            .networkAddressVariable("string")
            .subnetMask("string")
            .subnetMaskVariable("string")
            .build())
        .ipv6StaticRoutes(TransportManagementVpnProfileParcelIpv6StaticRouteArgs.builder()
            .nat("string")
            .natVariable("string")
            .nextHops(TransportManagementVpnProfileParcelIpv6StaticRouteNextHopArgs.builder()
                .address("string")
                .addressVariable("string")
                .administrativeDistance(0)
                .administrativeDistanceVariable("string")
                .build())
            .null0(false)
            .prefix("string")
            .prefixVariable("string")
            .build())
        .name("string")
        .newHostMappings(TransportManagementVpnProfileParcelNewHostMappingArgs.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")
        .build());
    
    transport_management_vpn_profile_parcel_resource = sdwan.TransportManagementVpnProfileParcel("transportManagementVpnProfileParcelResource",
        basic_configuration_description="string",
        basic_configuration_description_variable="string",
        description="string",
        feature_profile_id="string",
        ipv4_static_routes=[sdwan.TransportManagementVpnProfileParcelIpv4StaticRouteArgs(
            administrative_distance=0,
            administrative_distance_variable="string",
            gateway="string",
            ipv4_route_gateway_next_hos=[sdwan.TransportManagementVpnProfileParcelIpv4StaticRouteIpv4RouteGatewayNextHoArgs(
                address="string",
                address_variable="string",
                administrative_distance=0,
                administrative_distance_variable="string",
            )],
            network_address="string",
            network_address_variable="string",
            subnet_mask="string",
            subnet_mask_variable="string",
        )],
        ipv6_static_routes=[sdwan.TransportManagementVpnProfileParcelIpv6StaticRouteArgs(
            nat="string",
            nat_variable="string",
            next_hops=[sdwan.TransportManagementVpnProfileParcelIpv6StaticRouteNextHopArgs(
                address="string",
                address_variable="string",
                administrative_distance=0,
                administrative_distance_variable="string",
            )],
            null0=False,
            prefix="string",
            prefix_variable="string",
        )],
        name="string",
        new_host_mappings=[sdwan.TransportManagementVpnProfileParcelNewHostMappingArgs(
            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")
    
    const transportManagementVpnProfileParcelResource = new sdwan.TransportManagementVpnProfileParcel("transportManagementVpnProfileParcelResource", {
        basicConfigurationDescription: "string",
        basicConfigurationDescriptionVariable: "string",
        description: "string",
        featureProfileId: "string",
        ipv4StaticRoutes: [{
            administrativeDistance: 0,
            administrativeDistanceVariable: "string",
            gateway: "string",
            ipv4RouteGatewayNextHos: [{
                address: "string",
                addressVariable: "string",
                administrativeDistance: 0,
                administrativeDistanceVariable: "string",
            }],
            networkAddress: "string",
            networkAddressVariable: "string",
            subnetMask: "string",
            subnetMaskVariable: "string",
        }],
        ipv6StaticRoutes: [{
            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",
    });
    
    type: sdwan:TransportManagementVpnProfileParcel
    properties:
        basicConfigurationDescription: string
        basicConfigurationDescriptionVariable: string
        description: string
        featureProfileId: string
        ipv4StaticRoutes:
            - administrativeDistance: 0
              administrativeDistanceVariable: string
              gateway: string
              ipv4RouteGatewayNextHos:
                - address: string
                  addressVariable: string
                  administrativeDistance: 0
                  administrativeDistanceVariable: string
              networkAddress: string
              networkAddressVariable: string
              subnetMask: string
              subnetMaskVariable: string
        ipv6StaticRoutes:
            - 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
    

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

    BasicConfigurationDescription string
    Name
    BasicConfigurationDescriptionVariable string
    Variable name
    Description string
    The description of the profile parcel
    FeatureProfileId string
    Feature Profile ID
    Ipv4StaticRoutes List<TransportManagementVpnProfileParcelIpv4StaticRoute>
    IPv4 Static Route
    Ipv6StaticRoutes List<TransportManagementVpnProfileParcelIpv6StaticRoute>
    IPv6 Static Route
    Name string
    The name of the profile parcel
    NewHostMappings List<TransportManagementVpnProfileParcelNewHostMapping>
    PrimaryDnsAddressIpv4 string
    Primary DNS Address (IPv4)
    PrimaryDnsAddressIpv4Variable string
    Variable name
    PrimaryDnsAddressIpv6 string
    Primary DNS Address (IPv6)
    PrimaryDnsAddressIpv6Variable string
    Variable name
    SecondaryDnsAddressIpv4 string
    Secondary DNS Address (IPv4)
    SecondaryDnsAddressIpv4Variable string
    Variable name
    SecondaryDnsAddressIpv6 string
    Secondary DNS Address (IPv6)
    SecondaryDnsAddressIpv6Variable string
    Variable name
    BasicConfigurationDescription string
    Name
    BasicConfigurationDescriptionVariable string
    Variable name
    Description string
    The description of the profile parcel
    FeatureProfileId string
    Feature Profile ID
    Ipv4StaticRoutes []TransportManagementVpnProfileParcelIpv4StaticRouteArgs
    IPv4 Static Route
    Ipv6StaticRoutes []TransportManagementVpnProfileParcelIpv6StaticRouteArgs
    IPv6 Static Route
    Name string
    The name of the profile parcel
    NewHostMappings []TransportManagementVpnProfileParcelNewHostMappingArgs
    PrimaryDnsAddressIpv4 string
    Primary DNS Address (IPv4)
    PrimaryDnsAddressIpv4Variable string
    Variable name
    PrimaryDnsAddressIpv6 string
    Primary DNS Address (IPv6)
    PrimaryDnsAddressIpv6Variable string
    Variable name
    SecondaryDnsAddressIpv4 string
    Secondary DNS Address (IPv4)
    SecondaryDnsAddressIpv4Variable string
    Variable name
    SecondaryDnsAddressIpv6 string
    Secondary DNS Address (IPv6)
    SecondaryDnsAddressIpv6Variable string
    Variable name
    basicConfigurationDescription String
    Name
    basicConfigurationDescriptionVariable String
    Variable name
    description String
    The description of the profile parcel
    featureProfileId String
    Feature Profile ID
    ipv4StaticRoutes List<TransportManagementVpnProfileParcelIpv4StaticRoute>
    IPv4 Static Route
    ipv6StaticRoutes List<TransportManagementVpnProfileParcelIpv6StaticRoute>
    IPv6 Static Route
    name String
    The name of the profile parcel
    newHostMappings List<TransportManagementVpnProfileParcelNewHostMapping>
    primaryDnsAddressIpv4 String
    Primary DNS Address (IPv4)
    primaryDnsAddressIpv4Variable String
    Variable name
    primaryDnsAddressIpv6 String
    Primary DNS Address (IPv6)
    primaryDnsAddressIpv6Variable String
    Variable name
    secondaryDnsAddressIpv4 String
    Secondary DNS Address (IPv4)
    secondaryDnsAddressIpv4Variable String
    Variable name
    secondaryDnsAddressIpv6 String
    Secondary DNS Address (IPv6)
    secondaryDnsAddressIpv6Variable String
    Variable name
    basicConfigurationDescription string
    Name
    basicConfigurationDescriptionVariable string
    Variable name
    description string
    The description of the profile parcel
    featureProfileId string
    Feature Profile ID
    ipv4StaticRoutes TransportManagementVpnProfileParcelIpv4StaticRoute[]
    IPv4 Static Route
    ipv6StaticRoutes TransportManagementVpnProfileParcelIpv6StaticRoute[]
    IPv6 Static Route
    name string
    The name of the profile parcel
    newHostMappings TransportManagementVpnProfileParcelNewHostMapping[]
    primaryDnsAddressIpv4 string
    Primary DNS Address (IPv4)
    primaryDnsAddressIpv4Variable string
    Variable name
    primaryDnsAddressIpv6 string
    Primary DNS Address (IPv6)
    primaryDnsAddressIpv6Variable string
    Variable name
    secondaryDnsAddressIpv4 string
    Secondary DNS Address (IPv4)
    secondaryDnsAddressIpv4Variable string
    Variable name
    secondaryDnsAddressIpv6 string
    Secondary DNS Address (IPv6)
    secondaryDnsAddressIpv6Variable string
    Variable name
    basic_configuration_description str
    Name
    basic_configuration_description_variable str
    Variable name
    description str
    The description of the profile parcel
    feature_profile_id str
    Feature Profile ID
    ipv4_static_routes Sequence[TransportManagementVpnProfileParcelIpv4StaticRouteArgs]
    IPv4 Static Route
    ipv6_static_routes Sequence[TransportManagementVpnProfileParcelIpv6StaticRouteArgs]
    IPv6 Static Route
    name str
    The name of the profile parcel
    new_host_mappings Sequence[TransportManagementVpnProfileParcelNewHostMappingArgs]
    primary_dns_address_ipv4 str
    Primary DNS Address (IPv4)
    primary_dns_address_ipv4_variable str
    Variable name
    primary_dns_address_ipv6 str
    Primary DNS Address (IPv6)
    primary_dns_address_ipv6_variable str
    Variable name
    secondary_dns_address_ipv4 str
    Secondary DNS Address (IPv4)
    secondary_dns_address_ipv4_variable str
    Variable name
    secondary_dns_address_ipv6 str
    Secondary DNS Address (IPv6)
    secondary_dns_address_ipv6_variable str
    Variable name
    basicConfigurationDescription String
    Name
    basicConfigurationDescriptionVariable String
    Variable name
    description String
    The description of the profile parcel
    featureProfileId String
    Feature Profile ID
    ipv4StaticRoutes List<Property Map>
    IPv4 Static Route
    ipv6StaticRoutes List<Property Map>
    IPv6 Static Route
    name String
    The name of the profile parcel
    newHostMappings List<Property Map>
    primaryDnsAddressIpv4 String
    Primary DNS Address (IPv4)
    primaryDnsAddressIpv4Variable String
    Variable name
    primaryDnsAddressIpv6 String
    Primary DNS Address (IPv6)
    primaryDnsAddressIpv6Variable String
    Variable name
    secondaryDnsAddressIpv4 String
    Secondary DNS Address (IPv4)
    secondaryDnsAddressIpv4Variable String
    Variable name
    secondaryDnsAddressIpv6 String
    Secondary DNS Address (IPv6)
    secondaryDnsAddressIpv6Variable String
    Variable name

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TransportManagementVpnProfileParcel resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the profile parcel
    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the profile parcel
    id String
    The provider-assigned unique ID for this managed resource.
    version Integer
    The version of the profile parcel
    id string
    The provider-assigned unique ID for this managed resource.
    version number
    The version of the profile parcel
    id str
    The provider-assigned unique ID for this managed resource.
    version int
    The version of the profile parcel
    id String
    The provider-assigned unique ID for this managed resource.
    version Number
    The version of the profile parcel

    Look up Existing TransportManagementVpnProfileParcel Resource

    Get an existing TransportManagementVpnProfileParcel 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?: TransportManagementVpnProfileParcelState, opts?: CustomResourceOptions): TransportManagementVpnProfileParcel
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            basic_configuration_description: Optional[str] = None,
            basic_configuration_description_variable: Optional[str] = None,
            description: Optional[str] = None,
            feature_profile_id: Optional[str] = None,
            ipv4_static_routes: Optional[Sequence[TransportManagementVpnProfileParcelIpv4StaticRouteArgs]] = None,
            ipv6_static_routes: Optional[Sequence[TransportManagementVpnProfileParcelIpv6StaticRouteArgs]] = None,
            name: Optional[str] = None,
            new_host_mappings: Optional[Sequence[TransportManagementVpnProfileParcelNewHostMappingArgs]] = 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) -> TransportManagementVpnProfileParcel
    func GetTransportManagementVpnProfileParcel(ctx *Context, name string, id IDInput, state *TransportManagementVpnProfileParcelState, opts ...ResourceOption) (*TransportManagementVpnProfileParcel, error)
    public static TransportManagementVpnProfileParcel Get(string name, Input<string> id, TransportManagementVpnProfileParcelState? state, CustomResourceOptions? opts = null)
    public static TransportManagementVpnProfileParcel get(String name, Output<String> id, TransportManagementVpnProfileParcelState 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.
    The following state arguments are supported:
    BasicConfigurationDescription string
    Name
    BasicConfigurationDescriptionVariable string
    Variable name
    Description string
    The description of the profile parcel
    FeatureProfileId string
    Feature Profile ID
    Ipv4StaticRoutes List<TransportManagementVpnProfileParcelIpv4StaticRoute>
    IPv4 Static Route
    Ipv6StaticRoutes List<TransportManagementVpnProfileParcelIpv6StaticRoute>
    IPv6 Static Route
    Name string
    The name of the profile parcel
    NewHostMappings List<TransportManagementVpnProfileParcelNewHostMapping>
    PrimaryDnsAddressIpv4 string
    Primary DNS Address (IPv4)
    PrimaryDnsAddressIpv4Variable string
    Variable name
    PrimaryDnsAddressIpv6 string
    Primary DNS Address (IPv6)
    PrimaryDnsAddressIpv6Variable string
    Variable name
    SecondaryDnsAddressIpv4 string
    Secondary DNS Address (IPv4)
    SecondaryDnsAddressIpv4Variable string
    Variable name
    SecondaryDnsAddressIpv6 string
    Secondary DNS Address (IPv6)
    SecondaryDnsAddressIpv6Variable string
    Variable name
    Version int
    The version of the profile parcel
    BasicConfigurationDescription string
    Name
    BasicConfigurationDescriptionVariable string
    Variable name
    Description string
    The description of the profile parcel
    FeatureProfileId string
    Feature Profile ID
    Ipv4StaticRoutes []TransportManagementVpnProfileParcelIpv4StaticRouteArgs
    IPv4 Static Route
    Ipv6StaticRoutes []TransportManagementVpnProfileParcelIpv6StaticRouteArgs
    IPv6 Static Route
    Name string
    The name of the profile parcel
    NewHostMappings []TransportManagementVpnProfileParcelNewHostMappingArgs
    PrimaryDnsAddressIpv4 string
    Primary DNS Address (IPv4)
    PrimaryDnsAddressIpv4Variable string
    Variable name
    PrimaryDnsAddressIpv6 string
    Primary DNS Address (IPv6)
    PrimaryDnsAddressIpv6Variable string
    Variable name
    SecondaryDnsAddressIpv4 string
    Secondary DNS Address (IPv4)
    SecondaryDnsAddressIpv4Variable string
    Variable name
    SecondaryDnsAddressIpv6 string
    Secondary DNS Address (IPv6)
    SecondaryDnsAddressIpv6Variable string
    Variable name
    Version int
    The version of the profile parcel
    basicConfigurationDescription String
    Name
    basicConfigurationDescriptionVariable String
    Variable name
    description String
    The description of the profile parcel
    featureProfileId String
    Feature Profile ID
    ipv4StaticRoutes List<TransportManagementVpnProfileParcelIpv4StaticRoute>
    IPv4 Static Route
    ipv6StaticRoutes List<TransportManagementVpnProfileParcelIpv6StaticRoute>
    IPv6 Static Route
    name String
    The name of the profile parcel
    newHostMappings List<TransportManagementVpnProfileParcelNewHostMapping>
    primaryDnsAddressIpv4 String
    Primary DNS Address (IPv4)
    primaryDnsAddressIpv4Variable String
    Variable name
    primaryDnsAddressIpv6 String
    Primary DNS Address (IPv6)
    primaryDnsAddressIpv6Variable String
    Variable name
    secondaryDnsAddressIpv4 String
    Secondary DNS Address (IPv4)
    secondaryDnsAddressIpv4Variable String
    Variable name
    secondaryDnsAddressIpv6 String
    Secondary DNS Address (IPv6)
    secondaryDnsAddressIpv6Variable String
    Variable name
    version Integer
    The version of the profile parcel
    basicConfigurationDescription string
    Name
    basicConfigurationDescriptionVariable string
    Variable name
    description string
    The description of the profile parcel
    featureProfileId string
    Feature Profile ID
    ipv4StaticRoutes TransportManagementVpnProfileParcelIpv4StaticRoute[]
    IPv4 Static Route
    ipv6StaticRoutes TransportManagementVpnProfileParcelIpv6StaticRoute[]
    IPv6 Static Route
    name string
    The name of the profile parcel
    newHostMappings TransportManagementVpnProfileParcelNewHostMapping[]
    primaryDnsAddressIpv4 string
    Primary DNS Address (IPv4)
    primaryDnsAddressIpv4Variable string
    Variable name
    primaryDnsAddressIpv6 string
    Primary DNS Address (IPv6)
    primaryDnsAddressIpv6Variable string
    Variable name
    secondaryDnsAddressIpv4 string
    Secondary DNS Address (IPv4)
    secondaryDnsAddressIpv4Variable string
    Variable name
    secondaryDnsAddressIpv6 string
    Secondary DNS Address (IPv6)
    secondaryDnsAddressIpv6Variable string
    Variable name
    version number
    The version of the profile parcel
    basic_configuration_description str
    Name
    basic_configuration_description_variable str
    Variable name
    description str
    The description of the profile parcel
    feature_profile_id str
    Feature Profile ID
    ipv4_static_routes Sequence[TransportManagementVpnProfileParcelIpv4StaticRouteArgs]
    IPv4 Static Route
    ipv6_static_routes Sequence[TransportManagementVpnProfileParcelIpv6StaticRouteArgs]
    IPv6 Static Route
    name str
    The name of the profile parcel
    new_host_mappings Sequence[TransportManagementVpnProfileParcelNewHostMappingArgs]
    primary_dns_address_ipv4 str
    Primary DNS Address (IPv4)
    primary_dns_address_ipv4_variable str
    Variable name
    primary_dns_address_ipv6 str
    Primary DNS Address (IPv6)
    primary_dns_address_ipv6_variable str
    Variable name
    secondary_dns_address_ipv4 str
    Secondary DNS Address (IPv4)
    secondary_dns_address_ipv4_variable str
    Variable name
    secondary_dns_address_ipv6 str
    Secondary DNS Address (IPv6)
    secondary_dns_address_ipv6_variable str
    Variable name
    version int
    The version of the profile parcel
    basicConfigurationDescription String
    Name
    basicConfigurationDescriptionVariable String
    Variable name
    description String
    The description of the profile parcel
    featureProfileId String
    Feature Profile ID
    ipv4StaticRoutes List<Property Map>
    IPv4 Static Route
    ipv6StaticRoutes List<Property Map>
    IPv6 Static Route
    name String
    The name of the profile parcel
    newHostMappings List<Property Map>
    primaryDnsAddressIpv4 String
    Primary DNS Address (IPv4)
    primaryDnsAddressIpv4Variable String
    Variable name
    primaryDnsAddressIpv6 String
    Primary DNS Address (IPv6)
    primaryDnsAddressIpv6Variable String
    Variable name
    secondaryDnsAddressIpv4 String
    Secondary DNS Address (IPv4)
    secondaryDnsAddressIpv4Variable String
    Variable name
    secondaryDnsAddressIpv6 String
    Secondary DNS Address (IPv6)
    secondaryDnsAddressIpv6Variable String
    Variable name
    version Number
    The version of the profile parcel

    Supporting Types

    TransportManagementVpnProfileParcelIpv4StaticRoute, TransportManagementVpnProfileParcelIpv4StaticRouteArgs

    AdministrativeDistance int
    Administrative distance

    • Range: 1-255
    • Default value: 1
    AdministrativeDistanceVariable string
    Variable name
    Gateway string
    Gateway

    • Choices: nextHop, dhcp, null0
    • Default value: nextHop
    Ipv4RouteGatewayNextHos List<TransportManagementVpnProfileParcelIpv4StaticRouteIpv4RouteGatewayNextHo>
    IPv4 Route Gateway Next Hop
    NetworkAddress string
    IP Address
    NetworkAddressVariable string
    Variable name
    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
    SubnetMaskVariable string
    Variable name
    AdministrativeDistance int
    Administrative distance

    • Range: 1-255
    • Default value: 1
    AdministrativeDistanceVariable string
    Variable name
    Gateway string
    Gateway

    • Choices: nextHop, dhcp, null0
    • Default value: nextHop
    Ipv4RouteGatewayNextHos []TransportManagementVpnProfileParcelIpv4StaticRouteIpv4RouteGatewayNextHo
    IPv4 Route Gateway Next Hop
    NetworkAddress string
    IP Address
    NetworkAddressVariable string
    Variable name
    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
    SubnetMaskVariable string
    Variable name
    administrativeDistance Integer
    Administrative distance

    • Range: 1-255
    • Default value: 1
    administrativeDistanceVariable String
    Variable name
    gateway String
    Gateway

    • Choices: nextHop, dhcp, null0
    • Default value: nextHop
    ipv4RouteGatewayNextHos List<TransportManagementVpnProfileParcelIpv4StaticRouteIpv4RouteGatewayNextHo>
    IPv4 Route Gateway Next Hop
    networkAddress String
    IP Address
    networkAddressVariable String
    Variable name
    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
    subnetMaskVariable String
    Variable name
    administrativeDistance number
    Administrative distance

    • Range: 1-255
    • Default value: 1
    administrativeDistanceVariable string
    Variable name
    gateway string
    Gateway

    • Choices: nextHop, dhcp, null0
    • Default value: nextHop
    ipv4RouteGatewayNextHos TransportManagementVpnProfileParcelIpv4StaticRouteIpv4RouteGatewayNextHo[]
    IPv4 Route Gateway Next Hop
    networkAddress string
    IP Address
    networkAddressVariable string
    Variable name
    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
    subnetMaskVariable string
    Variable name
    administrative_distance int
    Administrative distance

    • Range: 1-255
    • Default value: 1
    administrative_distance_variable str
    Variable name
    gateway str
    Gateway

    • Choices: nextHop, dhcp, null0
    • Default value: nextHop
    ipv4_route_gateway_next_hos Sequence[TransportManagementVpnProfileParcelIpv4StaticRouteIpv4RouteGatewayNextHo]
    IPv4 Route Gateway Next Hop
    network_address str
    IP Address
    network_address_variable str
    Variable name
    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
    subnet_mask_variable str
    Variable name
    administrativeDistance Number
    Administrative distance

    • Range: 1-255
    • Default value: 1
    administrativeDistanceVariable String
    Variable name
    gateway String
    Gateway

    • Choices: nextHop, dhcp, null0
    • Default value: nextHop
    ipv4RouteGatewayNextHos List<Property Map>
    IPv4 Route Gateway Next Hop
    networkAddress String
    IP Address
    networkAddressVariable String
    Variable name
    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
    subnetMaskVariable String
    Variable name

    TransportManagementVpnProfileParcelIpv4StaticRouteIpv4RouteGatewayNextHo, TransportManagementVpnProfileParcelIpv4StaticRouteIpv4RouteGatewayNextHoArgs

    Address string
    Address
    AddressVariable string
    Variable name
    AdministrativeDistance int
    Administrative distance

    • Range: 1-255
    • Default value: 1
    AdministrativeDistanceVariable string
    Variable name
    Address string
    Address
    AddressVariable string
    Variable name
    AdministrativeDistance int
    Administrative distance

    • Range: 1-255
    • Default value: 1
    AdministrativeDistanceVariable string
    Variable name
    address String
    Address
    addressVariable String
    Variable name
    administrativeDistance Integer
    Administrative distance

    • Range: 1-255
    • Default value: 1
    administrativeDistanceVariable String
    Variable name
    address string
    Address
    addressVariable string
    Variable name
    administrativeDistance number
    Administrative distance

    • Range: 1-255
    • Default value: 1
    administrativeDistanceVariable string
    Variable name
    address str
    Address
    address_variable str
    Variable name
    administrative_distance int
    Administrative distance

    • Range: 1-255
    • Default value: 1
    administrative_distance_variable str
    Variable name
    address String
    Address
    addressVariable String
    Variable name
    administrativeDistance Number
    Administrative distance

    • Range: 1-255
    • Default value: 1
    administrativeDistanceVariable String
    Variable name

    TransportManagementVpnProfileParcelIpv6StaticRoute, TransportManagementVpnProfileParcelIpv6StaticRouteArgs

    Nat string
    IPv6 Nat

    • Choices: NAT64, NAT66
    NatVariable string
    Variable name
    NextHops List<TransportManagementVpnProfileParcelIpv6StaticRouteNextHop>
    IPv6 Route Gateway Next Hop
    Null0 bool
    IPv6 Route Gateway Next Hop
    Prefix string
    Prefix
    PrefixVariable string
    Variable name
    Nat string
    IPv6 Nat

    • Choices: NAT64, NAT66
    NatVariable string
    Variable name
    NextHops []TransportManagementVpnProfileParcelIpv6StaticRouteNextHop
    IPv6 Route Gateway Next Hop
    Null0 bool
    IPv6 Route Gateway Next Hop
    Prefix string
    Prefix
    PrefixVariable string
    Variable name
    nat String
    IPv6 Nat

    • Choices: NAT64, NAT66
    natVariable String
    Variable name
    nextHops List<TransportManagementVpnProfileParcelIpv6StaticRouteNextHop>
    IPv6 Route Gateway Next Hop
    null0 Boolean
    IPv6 Route Gateway Next Hop
    prefix String
    Prefix
    prefixVariable String
    Variable name
    nat string
    IPv6 Nat

    • Choices: NAT64, NAT66
    natVariable string
    Variable name
    nextHops TransportManagementVpnProfileParcelIpv6StaticRouteNextHop[]
    IPv6 Route Gateway Next Hop
    null0 boolean
    IPv6 Route Gateway Next Hop
    prefix string
    Prefix
    prefixVariable string
    Variable name
    nat str
    IPv6 Nat

    • Choices: NAT64, NAT66
    nat_variable str
    Variable name
    next_hops Sequence[TransportManagementVpnProfileParcelIpv6StaticRouteNextHop]
    IPv6 Route Gateway Next Hop
    null0 bool
    IPv6 Route Gateway Next Hop
    prefix str
    Prefix
    prefix_variable str
    Variable name
    nat String
    IPv6 Nat

    • Choices: NAT64, NAT66
    natVariable String
    Variable name
    nextHops List<Property Map>
    IPv6 Route Gateway Next Hop
    null0 Boolean
    IPv6 Route Gateway Next Hop
    prefix String
    Prefix
    prefixVariable String
    Variable name

    TransportManagementVpnProfileParcelIpv6StaticRouteNextHop, TransportManagementVpnProfileParcelIpv6StaticRouteNextHopArgs

    Address string
    Address
    AddressVariable string
    Variable name
    AdministrativeDistance int
    Administrative distance

    • Range: 1-254
    AdministrativeDistanceVariable string
    Variable name
    Address string
    Address
    AddressVariable string
    Variable name
    AdministrativeDistance int
    Administrative distance

    • Range: 1-254
    AdministrativeDistanceVariable string
    Variable name
    address String
    Address
    addressVariable String
    Variable name
    administrativeDistance Integer
    Administrative distance

    • Range: 1-254
    administrativeDistanceVariable String
    Variable name
    address string
    Address
    addressVariable string
    Variable name
    administrativeDistance number
    Administrative distance

    • Range: 1-254
    administrativeDistanceVariable string
    Variable name
    address str
    Address
    address_variable str
    Variable name
    administrative_distance int
    Administrative distance

    • Range: 1-254
    administrative_distance_variable str
    Variable name
    address String
    Address
    addressVariable String
    Variable name
    administrativeDistance Number
    Administrative distance

    • Range: 1-254
    administrativeDistanceVariable String
    Variable name

    TransportManagementVpnProfileParcelNewHostMapping, TransportManagementVpnProfileParcelNewHostMappingArgs

    HostName string
    Hostname
    HostNameVariable string
    Variable name
    ListOfIpAddresses List<string>
    List of IP
    ListOfIpAddressesVariable string
    Variable name
    HostName string
    Hostname
    HostNameVariable string
    Variable name
    ListOfIpAddresses []string
    List of IP
    ListOfIpAddressesVariable string
    Variable name
    hostName String
    Hostname
    hostNameVariable String
    Variable name
    listOfIpAddresses List<String>
    List of IP
    listOfIpAddressesVariable String
    Variable name
    hostName string
    Hostname
    hostNameVariable string
    Variable name
    listOfIpAddresses string[]
    List of IP
    listOfIpAddressesVariable string
    Variable name
    host_name str
    Hostname
    host_name_variable str
    Variable name
    list_of_ip_addresses Sequence[str]
    List of IP
    list_of_ip_addresses_variable str
    Variable name
    hostName String
    Hostname
    hostNameVariable String
    Variable name
    listOfIpAddresses List<String>
    List of IP
    listOfIpAddressesVariable String
    Variable name

    Import

    $ pulumi import sdwan:index/transportManagementVpnProfileParcel:TransportManagementVpnProfileParcel example "f6b2c44c-693c-4763-b010-895aa3d236bd"
    

    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 sdwan Terraform Provider.
    sdwan logo
    Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi