1. Packages
  2. Packages
  3. Panos Provider
  4. API Docs
  5. Ospfv3IfTimerRoutingProfile
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 ospfv3Template = new panos.Template("ospfv3_template", {
        location: {
            panorama: {},
        },
        name: "ospfv3-routing-template",
    });
    // OSPFv3 Interface Timer Profile with custom timer values
    const customTimers = new panos.Ospfv3IfTimerRoutingProfile("custom_timers", {
        location: {
            template: {
                name: ospfv3Template.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
    ospfv3_template = panos.Template("ospfv3_template",
        location={
            "panorama": {},
        },
        name="ospfv3-routing-template")
    # OSPFv3 Interface Timer Profile with custom timer values
    custom_timers = panos.Ospfv3IfTimerRoutingProfile("custom_timers",
        location={
            "template": {
                "name": ospfv3_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
    		ospfv3Template, err := panos.NewTemplate(ctx, "ospfv3_template", &panos.TemplateArgs{
    			Location: &panos.TemplateLocationArgs{
    				Panorama: &panos.TemplateLocationPanoramaArgs{},
    			},
    			Name: pulumi.String("ospfv3-routing-template"),
    		})
    		if err != nil {
    			return err
    		}
    		// OSPFv3 Interface Timer Profile with custom timer values
    		_, err = panos.NewOspfv3IfTimerRoutingProfile(ctx, "custom_timers", &panos.Ospfv3IfTimerRoutingProfileArgs{
    			Location: &panos.Ospfv3IfTimerRoutingProfileLocationArgs{
    				Template: &panos.Ospfv3IfTimerRoutingProfileLocationTemplateArgs{
    					Name: ospfv3Template.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 ospfv3Template = new Panos.Template("ospfv3_template", new()
        {
            Location = new Panos.Inputs.TemplateLocationArgs
            {
                Panorama = null,
            },
            Name = "ospfv3-routing-template",
        });
    
        // OSPFv3 Interface Timer Profile with custom timer values
        var customTimers = new Panos.Ospfv3IfTimerRoutingProfile("custom_timers", new()
        {
            Location = new Panos.Inputs.Ospfv3IfTimerRoutingProfileLocationArgs
            {
                Template = new Panos.Inputs.Ospfv3IfTimerRoutingProfileLocationTemplateArgs
                {
                    Name = ospfv3Template.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.Ospfv3IfTimerRoutingProfile;
    import com.pulumi.panos.Ospfv3IfTimerRoutingProfileArgs;
    import com.pulumi.panos.inputs.Ospfv3IfTimerRoutingProfileLocationArgs;
    import com.pulumi.panos.inputs.Ospfv3IfTimerRoutingProfileLocationTemplateArgs;
    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 ospfv3Template = new Template("ospfv3Template", TemplateArgs.builder()
                .location(TemplateLocationArgs.builder()
                    .panorama(TemplateLocationPanoramaArgs.builder()
                        .build())
                    .build())
                .name("ospfv3-routing-template")
                .build());
    
            // OSPFv3 Interface Timer Profile with custom timer values
            var customTimers = new Ospfv3IfTimerRoutingProfile("customTimers", Ospfv3IfTimerRoutingProfileArgs.builder()
                .location(Ospfv3IfTimerRoutingProfileLocationArgs.builder()
                    .template(Ospfv3IfTimerRoutingProfileLocationTemplateArgs.builder()
                        .name(ospfv3Template.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
      ospfv3Template:
        type: panos:Template
        name: ospfv3_template
        properties:
          location:
            panorama: {}
          name: ospfv3-routing-template
      # OSPFv3 Interface Timer Profile with custom timer values
      customTimers:
        type: panos:Ospfv3IfTimerRoutingProfile
        name: custom_timers
        properties:
          location:
            template:
              name: ${ospfv3Template.name}
          name: custom-if-timer-profile
          helloInterval: 30
          deadCounts: 4
          retransmitInterval: 10
          transitDelay: 2
          grDelay: 5
    

    Create Ospfv3IfTimerRoutingProfile Resource

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

    Constructor syntax

    new Ospfv3IfTimerRoutingProfile(name: string, args: Ospfv3IfTimerRoutingProfileArgs, opts?: CustomResourceOptions);
    @overload
    def Ospfv3IfTimerRoutingProfile(resource_name: str,
                                    args: Ospfv3IfTimerRoutingProfileArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def Ospfv3IfTimerRoutingProfile(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    location: Optional[Ospfv3IfTimerRoutingProfileLocationArgs] = 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 NewOspfv3IfTimerRoutingProfile(ctx *Context, name string, args Ospfv3IfTimerRoutingProfileArgs, opts ...ResourceOption) (*Ospfv3IfTimerRoutingProfile, error)
    public Ospfv3IfTimerRoutingProfile(string name, Ospfv3IfTimerRoutingProfileArgs args, CustomResourceOptions? opts = null)
    public Ospfv3IfTimerRoutingProfile(String name, Ospfv3IfTimerRoutingProfileArgs args)
    public Ospfv3IfTimerRoutingProfile(String name, Ospfv3IfTimerRoutingProfileArgs args, CustomResourceOptions options)
    
    type: panos:Ospfv3IfTimerRoutingProfile
    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 Ospfv3IfTimerRoutingProfileArgs
    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 Ospfv3IfTimerRoutingProfileArgs
    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 Ospfv3IfTimerRoutingProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args Ospfv3IfTimerRoutingProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args Ospfv3IfTimerRoutingProfileArgs
    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 ospfv3IfTimerRoutingProfileResource = new Panos.Ospfv3IfTimerRoutingProfile("ospfv3IfTimerRoutingProfileResource", new()
    {
        Location = new Panos.Inputs.Ospfv3IfTimerRoutingProfileLocationArgs
        {
            Ngfw = new Panos.Inputs.Ospfv3IfTimerRoutingProfileLocationNgfwArgs
            {
                NgfwDevice = "string",
            },
            Template = new Panos.Inputs.Ospfv3IfTimerRoutingProfileLocationTemplateArgs
            {
                Name = "string",
                NgfwDevice = "string",
                PanoramaDevice = "string",
            },
            TemplateStack = new Panos.Inputs.Ospfv3IfTimerRoutingProfileLocationTemplateStackArgs
            {
                Name = "string",
                NgfwDevice = "string",
                PanoramaDevice = "string",
            },
        },
        DeadCounts = 0,
        GrDelay = 0,
        HelloInterval = 0,
        Name = "string",
        RetransmitInterval = 0,
        TransitDelay = 0,
    });
    
    example, err := panos.NewOspfv3IfTimerRoutingProfile(ctx, "ospfv3IfTimerRoutingProfileResource", &panos.Ospfv3IfTimerRoutingProfileArgs{
    	Location: &panos.Ospfv3IfTimerRoutingProfileLocationArgs{
    		Ngfw: &panos.Ospfv3IfTimerRoutingProfileLocationNgfwArgs{
    			NgfwDevice: pulumi.String("string"),
    		},
    		Template: &panos.Ospfv3IfTimerRoutingProfileLocationTemplateArgs{
    			Name:           pulumi.String("string"),
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    		TemplateStack: &panos.Ospfv3IfTimerRoutingProfileLocationTemplateStackArgs{
    			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 ospfv3IfTimerRoutingProfileResource = new Ospfv3IfTimerRoutingProfile("ospfv3IfTimerRoutingProfileResource", Ospfv3IfTimerRoutingProfileArgs.builder()
        .location(Ospfv3IfTimerRoutingProfileLocationArgs.builder()
            .ngfw(Ospfv3IfTimerRoutingProfileLocationNgfwArgs.builder()
                .ngfwDevice("string")
                .build())
            .template(Ospfv3IfTimerRoutingProfileLocationTemplateArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .panoramaDevice("string")
                .build())
            .templateStack(Ospfv3IfTimerRoutingProfileLocationTemplateStackArgs.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());
    
    ospfv3_if_timer_routing_profile_resource = panos.Ospfv3IfTimerRoutingProfile("ospfv3IfTimerRoutingProfileResource",
        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 ospfv3IfTimerRoutingProfileResource = new panos.Ospfv3IfTimerRoutingProfile("ospfv3IfTimerRoutingProfileResource", {
        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:Ospfv3IfTimerRoutingProfile
    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
    

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

    Location Ospfv3IfTimerRoutingProfileLocation
    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 Ospfv3IfTimerRoutingProfileLocationArgs
    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 Ospfv3IfTimerRoutingProfileLocation
    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 Ospfv3IfTimerRoutingProfileLocation
    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 Ospfv3IfTimerRoutingProfileLocationArgs
    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 Ospfv3IfTimerRoutingProfile 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 Ospfv3IfTimerRoutingProfile Resource

    Get an existing Ospfv3IfTimerRoutingProfile 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?: Ospfv3IfTimerRoutingProfileState, opts?: CustomResourceOptions): Ospfv3IfTimerRoutingProfile
    @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[Ospfv3IfTimerRoutingProfileLocationArgs] = None,
            name: Optional[str] = None,
            retransmit_interval: Optional[float] = None,
            transit_delay: Optional[float] = None) -> Ospfv3IfTimerRoutingProfile
    func GetOspfv3IfTimerRoutingProfile(ctx *Context, name string, id IDInput, state *Ospfv3IfTimerRoutingProfileState, opts ...ResourceOption) (*Ospfv3IfTimerRoutingProfile, error)
    public static Ospfv3IfTimerRoutingProfile Get(string name, Input<string> id, Ospfv3IfTimerRoutingProfileState? state, CustomResourceOptions? opts = null)
    public static Ospfv3IfTimerRoutingProfile get(String name, Output<String> id, Ospfv3IfTimerRoutingProfileState state, CustomResourceOptions options)
    resources:  _:    type: panos:Ospfv3IfTimerRoutingProfile    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 Ospfv3IfTimerRoutingProfileLocation
    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 Ospfv3IfTimerRoutingProfileLocationArgs
    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 Ospfv3IfTimerRoutingProfileLocation
    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 Ospfv3IfTimerRoutingProfileLocation
    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 Ospfv3IfTimerRoutingProfileLocationArgs
    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

    Ospfv3IfTimerRoutingProfileLocation, Ospfv3IfTimerRoutingProfileLocationArgs

    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

    Ospfv3IfTimerRoutingProfileLocationNgfw, Ospfv3IfTimerRoutingProfileLocationNgfwArgs

    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

    Ospfv3IfTimerRoutingProfileLocationTemplate, Ospfv3IfTimerRoutingProfileLocationTemplateArgs

    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

    Ospfv3IfTimerRoutingProfileLocationTemplateStack, Ospfv3IfTimerRoutingProfileLocationTemplateStackArgs

    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

    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.