1. Packages
  2. Packages
  3. Panos Provider
  4. API Docs
  5. OspfInterfaceTimerRoutingProfile
Viewing docs for panos 2.0.11
published on Tuesday, Apr 28, 2026 by paloaltonetworks
Viewing docs for panos 2.0.11
published on Tuesday, Apr 28, 2026 by paloaltonetworks

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as panos from "@pulumi/panos";
    
    // Create a template
    const ospfTemplate = new panos.Template("ospf_template", {
        location: {
            panorama: {},
        },
        name: "ospf-routing-template",
    });
    // OSPF Interface Timer Profile with custom timer values
    const customTimers = new panos.OspfInterfaceTimerRoutingProfile("custom_timers", {
        location: {
            template: {
                name: ospfTemplate.name,
            },
        },
        name: "custom-if-timer-profile",
        helloInterval: 30,
        deadCounts: 4,
        retransmitInterval: 10,
        transitDelay: 2,
        grDelay: 5,
    });
    
    import pulumi
    import pulumi_panos as panos
    
    # Create a template
    ospf_template = panos.Template("ospf_template",
        location={
            "panorama": {},
        },
        name="ospf-routing-template")
    # OSPF Interface Timer Profile with custom timer values
    custom_timers = panos.OspfInterfaceTimerRoutingProfile("custom_timers",
        location={
            "template": {
                "name": ospf_template.name,
            },
        },
        name="custom-if-timer-profile",
        hello_interval=30,
        dead_counts=4,
        retransmit_interval=10,
        transit_delay=2,
        gr_delay=5)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/panos/v2/panos"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Create a template
    		ospfTemplate, err := panos.NewTemplate(ctx, "ospf_template", &panos.TemplateArgs{
    			Location: &panos.TemplateLocationArgs{
    				Panorama: &panos.TemplateLocationPanoramaArgs{},
    			},
    			Name: pulumi.String("ospf-routing-template"),
    		})
    		if err != nil {
    			return err
    		}
    		// OSPF Interface Timer Profile with custom timer values
    		_, err = panos.NewOspfInterfaceTimerRoutingProfile(ctx, "custom_timers", &panos.OspfInterfaceTimerRoutingProfileArgs{
    			Location: &panos.OspfInterfaceTimerRoutingProfileLocationArgs{
    				Template: &panos.OspfInterfaceTimerRoutingProfileLocationTemplateArgs{
    					Name: ospfTemplate.Name,
    				},
    			},
    			Name:               pulumi.String("custom-if-timer-profile"),
    			HelloInterval:      pulumi.Float64(30),
    			DeadCounts:         pulumi.Float64(4),
    			RetransmitInterval: pulumi.Float64(10),
    			TransitDelay:       pulumi.Float64(2),
    			GrDelay:            pulumi.Float64(5),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Panos = Pulumi.Panos;
    
    return await Deployment.RunAsync(() => 
    {
        // Create a template
        var ospfTemplate = new Panos.Template("ospf_template", new()
        {
            Location = new Panos.Inputs.TemplateLocationArgs
            {
                Panorama = null,
            },
            Name = "ospf-routing-template",
        });
    
        // OSPF Interface Timer Profile with custom timer values
        var customTimers = new Panos.OspfInterfaceTimerRoutingProfile("custom_timers", new()
        {
            Location = new Panos.Inputs.OspfInterfaceTimerRoutingProfileLocationArgs
            {
                Template = new Panos.Inputs.OspfInterfaceTimerRoutingProfileLocationTemplateArgs
                {
                    Name = ospfTemplate.Name,
                },
            },
            Name = "custom-if-timer-profile",
            HelloInterval = 30,
            DeadCounts = 4,
            RetransmitInterval = 10,
            TransitDelay = 2,
            GrDelay = 5,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.panos.Template;
    import com.pulumi.panos.TemplateArgs;
    import com.pulumi.panos.inputs.TemplateLocationArgs;
    import com.pulumi.panos.inputs.TemplateLocationPanoramaArgs;
    import com.pulumi.panos.OspfInterfaceTimerRoutingProfile;
    import com.pulumi.panos.OspfInterfaceTimerRoutingProfileArgs;
    import com.pulumi.panos.inputs.OspfInterfaceTimerRoutingProfileLocationArgs;
    import com.pulumi.panos.inputs.OspfInterfaceTimerRoutingProfileLocationTemplateArgs;
    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) {
            // Create a template
            var ospfTemplate = new Template("ospfTemplate", TemplateArgs.builder()
                .location(TemplateLocationArgs.builder()
                    .panorama(TemplateLocationPanoramaArgs.builder()
                        .build())
                    .build())
                .name("ospf-routing-template")
                .build());
    
            // OSPF Interface Timer Profile with custom timer values
            var customTimers = new OspfInterfaceTimerRoutingProfile("customTimers", OspfInterfaceTimerRoutingProfileArgs.builder()
                .location(OspfInterfaceTimerRoutingProfileLocationArgs.builder()
                    .template(OspfInterfaceTimerRoutingProfileLocationTemplateArgs.builder()
                        .name(ospfTemplate.name())
                        .build())
                    .build())
                .name("custom-if-timer-profile")
                .helloInterval(30.0)
                .deadCounts(4.0)
                .retransmitInterval(10.0)
                .transitDelay(2.0)
                .grDelay(5.0)
                .build());
    
        }
    }
    
    resources:
      # Create a template
      ospfTemplate:
        type: panos:Template
        name: ospf_template
        properties:
          location:
            panorama: {}
          name: ospf-routing-template
      # OSPF Interface Timer Profile with custom timer values
      customTimers:
        type: panos:OspfInterfaceTimerRoutingProfile
        name: custom_timers
        properties:
          location:
            template:
              name: ${ospfTemplate.name}
          name: custom-if-timer-profile
          helloInterval: 30
          deadCounts: 4
          retransmitInterval: 10
          transitDelay: 2
          grDelay: 5
    

    Create OspfInterfaceTimerRoutingProfile Resource

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

    Constructor syntax

    new OspfInterfaceTimerRoutingProfile(name: string, args: OspfInterfaceTimerRoutingProfileArgs, opts?: CustomResourceOptions);
    @overload
    def OspfInterfaceTimerRoutingProfile(resource_name: str,
                                         args: OspfInterfaceTimerRoutingProfileArgs,
                                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def OspfInterfaceTimerRoutingProfile(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         location: Optional[OspfInterfaceTimerRoutingProfileLocationArgs] = None,
                                         dead_counts: Optional[float] = None,
                                         gr_delay: Optional[float] = None,
                                         hello_interval: Optional[float] = None,
                                         name: Optional[str] = None,
                                         retransmit_interval: Optional[float] = None,
                                         transit_delay: Optional[float] = None)
    func NewOspfInterfaceTimerRoutingProfile(ctx *Context, name string, args OspfInterfaceTimerRoutingProfileArgs, opts ...ResourceOption) (*OspfInterfaceTimerRoutingProfile, error)
    public OspfInterfaceTimerRoutingProfile(string name, OspfInterfaceTimerRoutingProfileArgs args, CustomResourceOptions? opts = null)
    public OspfInterfaceTimerRoutingProfile(String name, OspfInterfaceTimerRoutingProfileArgs args)
    public OspfInterfaceTimerRoutingProfile(String name, OspfInterfaceTimerRoutingProfileArgs args, CustomResourceOptions options)
    
    type: panos:OspfInterfaceTimerRoutingProfile
    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 OspfInterfaceTimerRoutingProfileArgs
    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 OspfInterfaceTimerRoutingProfileArgs
    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 OspfInterfaceTimerRoutingProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OspfInterfaceTimerRoutingProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OspfInterfaceTimerRoutingProfileArgs
    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 ospfInterfaceTimerRoutingProfileResource = new Panos.OspfInterfaceTimerRoutingProfile("ospfInterfaceTimerRoutingProfileResource", new()
    {
        Location = new Panos.Inputs.OspfInterfaceTimerRoutingProfileLocationArgs
        {
            Ngfw = new Panos.Inputs.OspfInterfaceTimerRoutingProfileLocationNgfwArgs
            {
                NgfwDevice = "string",
            },
            Template = new Panos.Inputs.OspfInterfaceTimerRoutingProfileLocationTemplateArgs
            {
                Name = "string",
                NgfwDevice = "string",
                PanoramaDevice = "string",
            },
            TemplateStack = new Panos.Inputs.OspfInterfaceTimerRoutingProfileLocationTemplateStackArgs
            {
                Name = "string",
                NgfwDevice = "string",
                PanoramaDevice = "string",
            },
        },
        DeadCounts = 0,
        GrDelay = 0,
        HelloInterval = 0,
        Name = "string",
        RetransmitInterval = 0,
        TransitDelay = 0,
    });
    
    example, err := panos.NewOspfInterfaceTimerRoutingProfile(ctx, "ospfInterfaceTimerRoutingProfileResource", &panos.OspfInterfaceTimerRoutingProfileArgs{
    	Location: &panos.OspfInterfaceTimerRoutingProfileLocationArgs{
    		Ngfw: &panos.OspfInterfaceTimerRoutingProfileLocationNgfwArgs{
    			NgfwDevice: pulumi.String("string"),
    		},
    		Template: &panos.OspfInterfaceTimerRoutingProfileLocationTemplateArgs{
    			Name:           pulumi.String("string"),
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    		TemplateStack: &panos.OspfInterfaceTimerRoutingProfileLocationTemplateStackArgs{
    			Name:           pulumi.String("string"),
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    	},
    	DeadCounts:         pulumi.Float64(0),
    	GrDelay:            pulumi.Float64(0),
    	HelloInterval:      pulumi.Float64(0),
    	Name:               pulumi.String("string"),
    	RetransmitInterval: pulumi.Float64(0),
    	TransitDelay:       pulumi.Float64(0),
    })
    
    var ospfInterfaceTimerRoutingProfileResource = new OspfInterfaceTimerRoutingProfile("ospfInterfaceTimerRoutingProfileResource", OspfInterfaceTimerRoutingProfileArgs.builder()
        .location(OspfInterfaceTimerRoutingProfileLocationArgs.builder()
            .ngfw(OspfInterfaceTimerRoutingProfileLocationNgfwArgs.builder()
                .ngfwDevice("string")
                .build())
            .template(OspfInterfaceTimerRoutingProfileLocationTemplateArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .panoramaDevice("string")
                .build())
            .templateStack(OspfInterfaceTimerRoutingProfileLocationTemplateStackArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .panoramaDevice("string")
                .build())
            .build())
        .deadCounts(0.0)
        .grDelay(0.0)
        .helloInterval(0.0)
        .name("string")
        .retransmitInterval(0.0)
        .transitDelay(0.0)
        .build());
    
    ospf_interface_timer_routing_profile_resource = panos.OspfInterfaceTimerRoutingProfile("ospfInterfaceTimerRoutingProfileResource",
        location={
            "ngfw": {
                "ngfw_device": "string",
            },
            "template": {
                "name": "string",
                "ngfw_device": "string",
                "panorama_device": "string",
            },
            "template_stack": {
                "name": "string",
                "ngfw_device": "string",
                "panorama_device": "string",
            },
        },
        dead_counts=float(0),
        gr_delay=float(0),
        hello_interval=float(0),
        name="string",
        retransmit_interval=float(0),
        transit_delay=float(0))
    
    const ospfInterfaceTimerRoutingProfileResource = new panos.OspfInterfaceTimerRoutingProfile("ospfInterfaceTimerRoutingProfileResource", {
        location: {
            ngfw: {
                ngfwDevice: "string",
            },
            template: {
                name: "string",
                ngfwDevice: "string",
                panoramaDevice: "string",
            },
            templateStack: {
                name: "string",
                ngfwDevice: "string",
                panoramaDevice: "string",
            },
        },
        deadCounts: 0,
        grDelay: 0,
        helloInterval: 0,
        name: "string",
        retransmitInterval: 0,
        transitDelay: 0,
    });
    
    type: panos:OspfInterfaceTimerRoutingProfile
    properties:
        deadCounts: 0
        grDelay: 0
        helloInterval: 0
        location:
            ngfw:
                ngfwDevice: string
            template:
                name: string
                ngfwDevice: string
                panoramaDevice: string
            templateStack:
                name: string
                ngfwDevice: string
                panoramaDevice: string
        name: string
        retransmitInterval: 0
        transitDelay: 0
    

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

    Location OspfInterfaceTimerRoutingProfileLocation
    The location of this object.
    DeadCounts double
    number of lost hello packets to declare router down
    GrDelay double
    Period (in seconds) used to send grace LSAs before first hello is sent when graceful restart starts
    HelloInterval double
    Interval (in seconds) to send Hello packets
    Name string
    RetransmitInterval double
    Interval (in seconds) to retransmit LSAs
    TransitDelay double
    Estimated delay (in seconds) to transmit LSAs
    Location OspfInterfaceTimerRoutingProfileLocationArgs
    The location of this object.
    DeadCounts float64
    number of lost hello packets to declare router down
    GrDelay float64
    Period (in seconds) used to send grace LSAs before first hello is sent when graceful restart starts
    HelloInterval float64
    Interval (in seconds) to send Hello packets
    Name string
    RetransmitInterval float64
    Interval (in seconds) to retransmit LSAs
    TransitDelay float64
    Estimated delay (in seconds) to transmit LSAs
    location OspfInterfaceTimerRoutingProfileLocation
    The location of this object.
    deadCounts Double
    number of lost hello packets to declare router down
    grDelay Double
    Period (in seconds) used to send grace LSAs before first hello is sent when graceful restart starts
    helloInterval Double
    Interval (in seconds) to send Hello packets
    name String
    retransmitInterval Double
    Interval (in seconds) to retransmit LSAs
    transitDelay Double
    Estimated delay (in seconds) to transmit LSAs
    location OspfInterfaceTimerRoutingProfileLocation
    The location of this object.
    deadCounts number
    number of lost hello packets to declare router down
    grDelay number
    Period (in seconds) used to send grace LSAs before first hello is sent when graceful restart starts
    helloInterval number
    Interval (in seconds) to send Hello packets
    name string
    retransmitInterval number
    Interval (in seconds) to retransmit LSAs
    transitDelay number
    Estimated delay (in seconds) to transmit LSAs
    location OspfInterfaceTimerRoutingProfileLocationArgs
    The location of this object.
    dead_counts float
    number of lost hello packets to declare router down
    gr_delay float
    Period (in seconds) used to send grace LSAs before first hello is sent when graceful restart starts
    hello_interval float
    Interval (in seconds) to send Hello packets
    name str
    retransmit_interval float
    Interval (in seconds) to retransmit LSAs
    transit_delay float
    Estimated delay (in seconds) to transmit LSAs
    location Property Map
    The location of this object.
    deadCounts Number
    number of lost hello packets to declare router down
    grDelay Number
    Period (in seconds) used to send grace LSAs before first hello is sent when graceful restart starts
    helloInterval Number
    Interval (in seconds) to send Hello packets
    name String
    retransmitInterval Number
    Interval (in seconds) to retransmit LSAs
    transitDelay Number
    Estimated delay (in seconds) to transmit LSAs

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing OspfInterfaceTimerRoutingProfile Resource

    Get an existing OspfInterfaceTimerRoutingProfile 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?: OspfInterfaceTimerRoutingProfileState, opts?: CustomResourceOptions): OspfInterfaceTimerRoutingProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            dead_counts: Optional[float] = None,
            gr_delay: Optional[float] = None,
            hello_interval: Optional[float] = None,
            location: Optional[OspfInterfaceTimerRoutingProfileLocationArgs] = None,
            name: Optional[str] = None,
            retransmit_interval: Optional[float] = None,
            transit_delay: Optional[float] = None) -> OspfInterfaceTimerRoutingProfile
    func GetOspfInterfaceTimerRoutingProfile(ctx *Context, name string, id IDInput, state *OspfInterfaceTimerRoutingProfileState, opts ...ResourceOption) (*OspfInterfaceTimerRoutingProfile, error)
    public static OspfInterfaceTimerRoutingProfile Get(string name, Input<string> id, OspfInterfaceTimerRoutingProfileState? state, CustomResourceOptions? opts = null)
    public static OspfInterfaceTimerRoutingProfile get(String name, Output<String> id, OspfInterfaceTimerRoutingProfileState state, CustomResourceOptions options)
    resources:  _:    type: panos:OspfInterfaceTimerRoutingProfile    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.
    The following state arguments are supported:
    DeadCounts double
    number of lost hello packets to declare router down
    GrDelay double
    Period (in seconds) used to send grace LSAs before first hello is sent when graceful restart starts
    HelloInterval double
    Interval (in seconds) to send Hello packets
    Location OspfInterfaceTimerRoutingProfileLocation
    The location of this object.
    Name string
    RetransmitInterval double
    Interval (in seconds) to retransmit LSAs
    TransitDelay double
    Estimated delay (in seconds) to transmit LSAs
    DeadCounts float64
    number of lost hello packets to declare router down
    GrDelay float64
    Period (in seconds) used to send grace LSAs before first hello is sent when graceful restart starts
    HelloInterval float64
    Interval (in seconds) to send Hello packets
    Location OspfInterfaceTimerRoutingProfileLocationArgs
    The location of this object.
    Name string
    RetransmitInterval float64
    Interval (in seconds) to retransmit LSAs
    TransitDelay float64
    Estimated delay (in seconds) to transmit LSAs
    deadCounts Double
    number of lost hello packets to declare router down
    grDelay Double
    Period (in seconds) used to send grace LSAs before first hello is sent when graceful restart starts
    helloInterval Double
    Interval (in seconds) to send Hello packets
    location OspfInterfaceTimerRoutingProfileLocation
    The location of this object.
    name String
    retransmitInterval Double
    Interval (in seconds) to retransmit LSAs
    transitDelay Double
    Estimated delay (in seconds) to transmit LSAs
    deadCounts number
    number of lost hello packets to declare router down
    grDelay number
    Period (in seconds) used to send grace LSAs before first hello is sent when graceful restart starts
    helloInterval number
    Interval (in seconds) to send Hello packets
    location OspfInterfaceTimerRoutingProfileLocation
    The location of this object.
    name string
    retransmitInterval number
    Interval (in seconds) to retransmit LSAs
    transitDelay number
    Estimated delay (in seconds) to transmit LSAs
    dead_counts float
    number of lost hello packets to declare router down
    gr_delay float
    Period (in seconds) used to send grace LSAs before first hello is sent when graceful restart starts
    hello_interval float
    Interval (in seconds) to send Hello packets
    location OspfInterfaceTimerRoutingProfileLocationArgs
    The location of this object.
    name str
    retransmit_interval float
    Interval (in seconds) to retransmit LSAs
    transit_delay float
    Estimated delay (in seconds) to transmit LSAs
    deadCounts Number
    number of lost hello packets to declare router down
    grDelay Number
    Period (in seconds) used to send grace LSAs before first hello is sent when graceful restart starts
    helloInterval Number
    Interval (in seconds) to send Hello packets
    location Property Map
    The location of this object.
    name String
    retransmitInterval Number
    Interval (in seconds) to retransmit LSAs
    transitDelay Number
    Estimated delay (in seconds) to transmit LSAs

    Supporting Types

    OspfInterfaceTimerRoutingProfileLocation, OspfInterfaceTimerRoutingProfileLocationArgs

    ngfw Property Map
    Located in a specific NGFW device
    template Property Map
    Located in a specific template
    templateStack Property Map
    Located in a specific template stack

    OspfInterfaceTimerRoutingProfileLocationNgfw, OspfInterfaceTimerRoutingProfileLocationNgfwArgs

    NgfwDevice string
    The NGFW device
    NgfwDevice string
    The NGFW device
    ngfwDevice String
    The NGFW device
    ngfwDevice string
    The NGFW device
    ngfw_device str
    The NGFW device
    ngfwDevice String
    The NGFW device

    OspfInterfaceTimerRoutingProfileLocationTemplate, OspfInterfaceTimerRoutingProfileLocationTemplateArgs

    Name string
    Specific Panorama template
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    Name string
    Specific Panorama template
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    name String
    Specific Panorama template
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    name string
    Specific Panorama template
    ngfwDevice string
    The NGFW device
    panoramaDevice string
    Specific Panorama device
    name str
    Specific Panorama template
    ngfw_device str
    The NGFW device
    panorama_device str
    Specific Panorama device
    name String
    Specific Panorama template
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device

    OspfInterfaceTimerRoutingProfileLocationTemplateStack, OspfInterfaceTimerRoutingProfileLocationTemplateStackArgs

    Name string
    Specific Panorama template stack
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    Name string
    Specific Panorama template stack
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    name String
    Specific Panorama template stack
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    name string
    Specific Panorama template stack
    ngfwDevice string
    The NGFW device
    panoramaDevice string
    Specific Panorama device
    name str
    Specific Panorama template stack
    ngfw_device str
    The NGFW device
    panorama_device str
    Specific Panorama device
    name String
    Specific Panorama template stack
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device

    Import

    #!/bin/bash

    Import an OSPF interface timer routing profile from a template

    location=’{“template”:{“name”:“ospf-routing-template”,“panorama_device”:“localhost.localdomain”,“ngfw_device”:“localhost.localdomain”}}'

    encoded_location=$(echo -n “$location” | base64)

    $ pulumi import panos:index/ospfInterfaceTimerRoutingProfile:OspfInterfaceTimerRoutingProfile custom_timers" "$encoded_location:custom-if-timer-profile"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    panos paloaltonetworks/terraform-provider-panos
    License
    Notes
    This Pulumi package is based on the panos Terraform Provider.
    Viewing docs for panos 2.0.11
    published on Tuesday, Apr 28, 2026 by paloaltonetworks
      Try Pulumi Cloud free. Your team will thank you.