sdwan.GpsFeatureTemplate
Explore with Pulumi AI
This resource can manage a gps feature template.
- Minimum SD-WAN Manager version: 15.0.0
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = new sdwan.GpsFeatureTemplate("example", {
    name: "Example",
    description: "My Example",
    deviceTypes: ["vedge-C8000V"],
    enable: true,
    gpsMode: "ms-based",
    nmea: true,
    sourceAddress: "1.2.3.4",
    destinationAddress: "2.3.4.5",
    destinationPort: 1234,
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.GpsFeatureTemplate("example",
    name="Example",
    description="My Example",
    device_types=["vedge-C8000V"],
    enable=True,
    gps_mode="ms-based",
    nmea=True,
    source_address="1.2.3.4",
    destination_address="2.3.4.5",
    destination_port=1234)
package main
import (
	"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sdwan.NewGpsFeatureTemplate(ctx, "example", &sdwan.GpsFeatureTemplateArgs{
			Name:        pulumi.String("Example"),
			Description: pulumi.String("My Example"),
			DeviceTypes: pulumi.StringArray{
				pulumi.String("vedge-C8000V"),
			},
			Enable:             pulumi.Bool(true),
			GpsMode:            pulumi.String("ms-based"),
			Nmea:               pulumi.Bool(true),
			SourceAddress:      pulumi.String("1.2.3.4"),
			DestinationAddress: pulumi.String("2.3.4.5"),
			DestinationPort:    pulumi.Int(1234),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;
return await Deployment.RunAsync(() => 
{
    var example = new Sdwan.GpsFeatureTemplate("example", new()
    {
        Name = "Example",
        Description = "My Example",
        DeviceTypes = new[]
        {
            "vedge-C8000V",
        },
        Enable = true,
        GpsMode = "ms-based",
        Nmea = true,
        SourceAddress = "1.2.3.4",
        DestinationAddress = "2.3.4.5",
        DestinationPort = 1234,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.GpsFeatureTemplate;
import com.pulumi.sdwan.GpsFeatureTemplateArgs;
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 GpsFeatureTemplate("example", GpsFeatureTemplateArgs.builder()
            .name("Example")
            .description("My Example")
            .deviceTypes("vedge-C8000V")
            .enable(true)
            .gpsMode("ms-based")
            .nmea(true)
            .sourceAddress("1.2.3.4")
            .destinationAddress("2.3.4.5")
            .destinationPort(1234)
            .build());
    }
}
resources:
  example:
    type: sdwan:GpsFeatureTemplate
    properties:
      name: Example
      description: My Example
      deviceTypes:
        - vedge-C8000V
      enable: true
      gpsMode: ms-based
      nmea: true
      sourceAddress: 1.2.3.4
      destinationAddress: 2.3.4.5
      destinationPort: 1234
Create GpsFeatureTemplate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GpsFeatureTemplate(name: string, args: GpsFeatureTemplateArgs, opts?: CustomResourceOptions);@overload
def GpsFeatureTemplate(resource_name: str,
                       args: GpsFeatureTemplateArgs,
                       opts: Optional[ResourceOptions] = None)
@overload
def GpsFeatureTemplate(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       device_types: Optional[Sequence[str]] = None,
                       description: Optional[str] = None,
                       enable: Optional[bool] = None,
                       destination_port: Optional[int] = None,
                       destination_port_variable: Optional[str] = None,
                       destination_address_variable: Optional[str] = None,
                       destination_address: Optional[str] = None,
                       enable_variable: Optional[str] = None,
                       gps_mode: Optional[str] = None,
                       gps_mode_variable: Optional[str] = None,
                       name: Optional[str] = None,
                       nmea: Optional[bool] = None,
                       nmea_variable: Optional[str] = None,
                       source_address: Optional[str] = None,
                       source_address_variable: Optional[str] = None)func NewGpsFeatureTemplate(ctx *Context, name string, args GpsFeatureTemplateArgs, opts ...ResourceOption) (*GpsFeatureTemplate, error)public GpsFeatureTemplate(string name, GpsFeatureTemplateArgs args, CustomResourceOptions? opts = null)
public GpsFeatureTemplate(String name, GpsFeatureTemplateArgs args)
public GpsFeatureTemplate(String name, GpsFeatureTemplateArgs args, CustomResourceOptions options)
type: sdwan:GpsFeatureTemplate
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 GpsFeatureTemplateArgs
- 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 GpsFeatureTemplateArgs
- 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 GpsFeatureTemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GpsFeatureTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GpsFeatureTemplateArgs
- 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 gpsFeatureTemplateResource = new Sdwan.GpsFeatureTemplate("gpsFeatureTemplateResource", new()
{
    DeviceTypes = new[]
    {
        "string",
    },
    Description = "string",
    Enable = false,
    DestinationPort = 0,
    DestinationPortVariable = "string",
    DestinationAddressVariable = "string",
    DestinationAddress = "string",
    EnableVariable = "string",
    GpsMode = "string",
    GpsModeVariable = "string",
    Name = "string",
    Nmea = false,
    NmeaVariable = "string",
    SourceAddress = "string",
    SourceAddressVariable = "string",
});
example, err := sdwan.NewGpsFeatureTemplate(ctx, "gpsFeatureTemplateResource", &sdwan.GpsFeatureTemplateArgs{
	DeviceTypes: pulumi.StringArray{
		pulumi.String("string"),
	},
	Description:                pulumi.String("string"),
	Enable:                     pulumi.Bool(false),
	DestinationPort:            pulumi.Int(0),
	DestinationPortVariable:    pulumi.String("string"),
	DestinationAddressVariable: pulumi.String("string"),
	DestinationAddress:         pulumi.String("string"),
	EnableVariable:             pulumi.String("string"),
	GpsMode:                    pulumi.String("string"),
	GpsModeVariable:            pulumi.String("string"),
	Name:                       pulumi.String("string"),
	Nmea:                       pulumi.Bool(false),
	NmeaVariable:               pulumi.String("string"),
	SourceAddress:              pulumi.String("string"),
	SourceAddressVariable:      pulumi.String("string"),
})
var gpsFeatureTemplateResource = new GpsFeatureTemplate("gpsFeatureTemplateResource", GpsFeatureTemplateArgs.builder()
    .deviceTypes("string")
    .description("string")
    .enable(false)
    .destinationPort(0)
    .destinationPortVariable("string")
    .destinationAddressVariable("string")
    .destinationAddress("string")
    .enableVariable("string")
    .gpsMode("string")
    .gpsModeVariable("string")
    .name("string")
    .nmea(false)
    .nmeaVariable("string")
    .sourceAddress("string")
    .sourceAddressVariable("string")
    .build());
gps_feature_template_resource = sdwan.GpsFeatureTemplate("gpsFeatureTemplateResource",
    device_types=["string"],
    description="string",
    enable=False,
    destination_port=0,
    destination_port_variable="string",
    destination_address_variable="string",
    destination_address="string",
    enable_variable="string",
    gps_mode="string",
    gps_mode_variable="string",
    name="string",
    nmea=False,
    nmea_variable="string",
    source_address="string",
    source_address_variable="string")
const gpsFeatureTemplateResource = new sdwan.GpsFeatureTemplate("gpsFeatureTemplateResource", {
    deviceTypes: ["string"],
    description: "string",
    enable: false,
    destinationPort: 0,
    destinationPortVariable: "string",
    destinationAddressVariable: "string",
    destinationAddress: "string",
    enableVariable: "string",
    gpsMode: "string",
    gpsModeVariable: "string",
    name: "string",
    nmea: false,
    nmeaVariable: "string",
    sourceAddress: "string",
    sourceAddressVariable: "string",
});
type: sdwan:GpsFeatureTemplate
properties:
    description: string
    destinationAddress: string
    destinationAddressVariable: string
    destinationPort: 0
    destinationPortVariable: string
    deviceTypes:
        - string
    enable: false
    enableVariable: string
    gpsMode: string
    gpsModeVariable: string
    name: string
    nmea: false
    nmeaVariable: string
    sourceAddress: string
    sourceAddressVariable: string
GpsFeatureTemplate 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 GpsFeatureTemplate resource accepts the following input properties:
- Description string
- The description of the feature template
- DeviceTypes List<string>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- DestinationAddress string
- Destination address
- DestinationAddress stringVariable 
- Variable name
- DestinationPort int
- Destination port - Range: 1-65535
- DestinationPort stringVariable 
- Variable name
- Enable bool
- Enable/disable GPS - Default value: false
- EnableVariable string
- Variable name
- GpsMode string
- Select GPS mode - Choices: ms-based,standalone- Default value:ms-based
- GpsMode stringVariable 
- Variable name
- Name string
- The name of the feature template
- Nmea bool
- Enable/disable NMEA data - Default value: false
- NmeaVariable string
- Variable name
- SourceAddress string
- Source address
- SourceAddress stringVariable 
- Variable name
- Description string
- The description of the feature template
- DeviceTypes []string
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- DestinationAddress string
- Destination address
- DestinationAddress stringVariable 
- Variable name
- DestinationPort int
- Destination port - Range: 1-65535
- DestinationPort stringVariable 
- Variable name
- Enable bool
- Enable/disable GPS - Default value: false
- EnableVariable string
- Variable name
- GpsMode string
- Select GPS mode - Choices: ms-based,standalone- Default value:ms-based
- GpsMode stringVariable 
- Variable name
- Name string
- The name of the feature template
- Nmea bool
- Enable/disable NMEA data - Default value: false
- NmeaVariable string
- Variable name
- SourceAddress string
- Source address
- SourceAddress stringVariable 
- Variable name
- description String
- The description of the feature template
- deviceTypes List<String>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- destinationAddress String
- Destination address
- destinationAddress StringVariable 
- Variable name
- destinationPort Integer
- Destination port - Range: 1-65535
- destinationPort StringVariable 
- Variable name
- enable Boolean
- Enable/disable GPS - Default value: false
- enableVariable String
- Variable name
- gpsMode String
- Select GPS mode - Choices: ms-based,standalone- Default value:ms-based
- gpsMode StringVariable 
- Variable name
- name String
- The name of the feature template
- nmea Boolean
- Enable/disable NMEA data - Default value: false
- nmeaVariable String
- Variable name
- sourceAddress String
- Source address
- sourceAddress StringVariable 
- Variable name
- description string
- The description of the feature template
- deviceTypes string[]
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- destinationAddress string
- Destination address
- destinationAddress stringVariable 
- Variable name
- destinationPort number
- Destination port - Range: 1-65535
- destinationPort stringVariable 
- Variable name
- enable boolean
- Enable/disable GPS - Default value: false
- enableVariable string
- Variable name
- gpsMode string
- Select GPS mode - Choices: ms-based,standalone- Default value:ms-based
- gpsMode stringVariable 
- Variable name
- name string
- The name of the feature template
- nmea boolean
- Enable/disable NMEA data - Default value: false
- nmeaVariable string
- Variable name
- sourceAddress string
- Source address
- sourceAddress stringVariable 
- Variable name
- description str
- The description of the feature template
- device_types Sequence[str]
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- destination_address str
- Destination address
- destination_address_ strvariable 
- Variable name
- destination_port int
- Destination port - Range: 1-65535
- destination_port_ strvariable 
- Variable name
- enable bool
- Enable/disable GPS - Default value: false
- enable_variable str
- Variable name
- gps_mode str
- Select GPS mode - Choices: ms-based,standalone- Default value:ms-based
- gps_mode_ strvariable 
- Variable name
- name str
- The name of the feature template
- nmea bool
- Enable/disable NMEA data - Default value: false
- nmea_variable str
- Variable name
- source_address str
- Source address
- source_address_ strvariable 
- Variable name
- description String
- The description of the feature template
- deviceTypes List<String>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- destinationAddress String
- Destination address
- destinationAddress StringVariable 
- Variable name
- destinationPort Number
- Destination port - Range: 1-65535
- destinationPort StringVariable 
- Variable name
- enable Boolean
- Enable/disable GPS - Default value: false
- enableVariable String
- Variable name
- gpsMode String
- Select GPS mode - Choices: ms-based,standalone- Default value:ms-based
- gpsMode StringVariable 
- Variable name
- name String
- The name of the feature template
- nmea Boolean
- Enable/disable NMEA data - Default value: false
- nmeaVariable String
- Variable name
- sourceAddress String
- Source address
- sourceAddress StringVariable 
- Variable name
Outputs
All input properties are implicitly available as output properties. Additionally, the GpsFeatureTemplate resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- TemplateType string
- The template type
- Version int
- The version of the feature template
- Id string
- The provider-assigned unique ID for this managed resource.
- TemplateType string
- The template type
- Version int
- The version of the feature template
- id String
- The provider-assigned unique ID for this managed resource.
- templateType String
- The template type
- version Integer
- The version of the feature template
- id string
- The provider-assigned unique ID for this managed resource.
- templateType string
- The template type
- version number
- The version of the feature template
- id str
- The provider-assigned unique ID for this managed resource.
- template_type str
- The template type
- version int
- The version of the feature template
- id String
- The provider-assigned unique ID for this managed resource.
- templateType String
- The template type
- version Number
- The version of the feature template
Look up Existing GpsFeatureTemplate Resource
Get an existing GpsFeatureTemplate 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?: GpsFeatureTemplateState, opts?: CustomResourceOptions): GpsFeatureTemplate@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        destination_address: Optional[str] = None,
        destination_address_variable: Optional[str] = None,
        destination_port: Optional[int] = None,
        destination_port_variable: Optional[str] = None,
        device_types: Optional[Sequence[str]] = None,
        enable: Optional[bool] = None,
        enable_variable: Optional[str] = None,
        gps_mode: Optional[str] = None,
        gps_mode_variable: Optional[str] = None,
        name: Optional[str] = None,
        nmea: Optional[bool] = None,
        nmea_variable: Optional[str] = None,
        source_address: Optional[str] = None,
        source_address_variable: Optional[str] = None,
        template_type: Optional[str] = None,
        version: Optional[int] = None) -> GpsFeatureTemplatefunc GetGpsFeatureTemplate(ctx *Context, name string, id IDInput, state *GpsFeatureTemplateState, opts ...ResourceOption) (*GpsFeatureTemplate, error)public static GpsFeatureTemplate Get(string name, Input<string> id, GpsFeatureTemplateState? state, CustomResourceOptions? opts = null)public static GpsFeatureTemplate get(String name, Output<String> id, GpsFeatureTemplateState state, CustomResourceOptions options)resources:  _:    type: sdwan:GpsFeatureTemplate    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 template
- DestinationAddress string
- Destination address
- DestinationAddress stringVariable 
- Variable name
- DestinationPort int
- Destination port - Range: 1-65535
- DestinationPort stringVariable 
- Variable name
- DeviceTypes List<string>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- Enable bool
- Enable/disable GPS - Default value: false
- EnableVariable string
- Variable name
- GpsMode string
- Select GPS mode - Choices: ms-based,standalone- Default value:ms-based
- GpsMode stringVariable 
- Variable name
- Name string
- The name of the feature template
- Nmea bool
- Enable/disable NMEA data - Default value: false
- NmeaVariable string
- Variable name
- SourceAddress string
- Source address
- SourceAddress stringVariable 
- Variable name
- TemplateType string
- The template type
- Version int
- The version of the feature template
- Description string
- The description of the feature template
- DestinationAddress string
- Destination address
- DestinationAddress stringVariable 
- Variable name
- DestinationPort int
- Destination port - Range: 1-65535
- DestinationPort stringVariable 
- Variable name
- DeviceTypes []string
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- Enable bool
- Enable/disable GPS - Default value: false
- EnableVariable string
- Variable name
- GpsMode string
- Select GPS mode - Choices: ms-based,standalone- Default value:ms-based
- GpsMode stringVariable 
- Variable name
- Name string
- The name of the feature template
- Nmea bool
- Enable/disable NMEA data - Default value: false
- NmeaVariable string
- Variable name
- SourceAddress string
- Source address
- SourceAddress stringVariable 
- Variable name
- TemplateType string
- The template type
- Version int
- The version of the feature template
- description String
- The description of the feature template
- destinationAddress String
- Destination address
- destinationAddress StringVariable 
- Variable name
- destinationPort Integer
- Destination port - Range: 1-65535
- destinationPort StringVariable 
- Variable name
- deviceTypes List<String>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- enable Boolean
- Enable/disable GPS - Default value: false
- enableVariable String
- Variable name
- gpsMode String
- Select GPS mode - Choices: ms-based,standalone- Default value:ms-based
- gpsMode StringVariable 
- Variable name
- name String
- The name of the feature template
- nmea Boolean
- Enable/disable NMEA data - Default value: false
- nmeaVariable String
- Variable name
- sourceAddress String
- Source address
- sourceAddress StringVariable 
- Variable name
- templateType String
- The template type
- version Integer
- The version of the feature template
- description string
- The description of the feature template
- destinationAddress string
- Destination address
- destinationAddress stringVariable 
- Variable name
- destinationPort number
- Destination port - Range: 1-65535
- destinationPort stringVariable 
- Variable name
- deviceTypes string[]
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- enable boolean
- Enable/disable GPS - Default value: false
- enableVariable string
- Variable name
- gpsMode string
- Select GPS mode - Choices: ms-based,standalone- Default value:ms-based
- gpsMode stringVariable 
- Variable name
- name string
- The name of the feature template
- nmea boolean
- Enable/disable NMEA data - Default value: false
- nmeaVariable string
- Variable name
- sourceAddress string
- Source address
- sourceAddress stringVariable 
- Variable name
- templateType string
- The template type
- version number
- The version of the feature template
- description str
- The description of the feature template
- destination_address str
- Destination address
- destination_address_ strvariable 
- Variable name
- destination_port int
- Destination port - Range: 1-65535
- destination_port_ strvariable 
- Variable name
- device_types Sequence[str]
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- enable bool
- Enable/disable GPS - Default value: false
- enable_variable str
- Variable name
- gps_mode str
- Select GPS mode - Choices: ms-based,standalone- Default value:ms-based
- gps_mode_ strvariable 
- Variable name
- name str
- The name of the feature template
- nmea bool
- Enable/disable NMEA data - Default value: false
- nmea_variable str
- Variable name
- source_address str
- Source address
- source_address_ strvariable 
- Variable name
- template_type str
- The template type
- version int
- The version of the feature template
- description String
- The description of the feature template
- destinationAddress String
- Destination address
- destinationAddress StringVariable 
- Variable name
- destinationPort Number
- Destination port - Range: 1-65535
- destinationPort StringVariable 
- Variable name
- deviceTypes List<String>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- enable Boolean
- Enable/disable GPS - Default value: false
- enableVariable String
- Variable name
- gpsMode String
- Select GPS mode - Choices: ms-based,standalone- Default value:ms-based
- gpsMode StringVariable 
- Variable name
- name String
- The name of the feature template
- nmea Boolean
- Enable/disable NMEA data - Default value: false
- nmeaVariable String
- Variable name
- sourceAddress String
- Source address
- sourceAddress StringVariable 
- Variable name
- templateType String
- The template type
- version Number
- The version of the feature template
Import
$ pulumi import sdwan:index/gpsFeatureTemplate:GpsFeatureTemplate 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 sdwanTerraform Provider.
