1. Packages
  2. Panos Provider
  3. API Docs
  4. BgpTimerRoutingProfile
panos 2.0.7 published on Thursday, Nov 27, 2025 by paloaltonetworks
panos logo
panos 2.0.7 published on Thursday, Nov 27, 2025 by paloaltonetworks

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as panos from "@pulumi/panos";
    
    // Create a template
    const bgpTemplate = new panos.Template("bgp_template", {
        location: {
            panorama: {},
        },
        name: "bgp-routing-template",
    });
    // BGP Timer Profile with custom timer values
    const customTimers = new panos.BgpTimerRoutingProfile("custom_timers", {
        location: {
            template: {
                name: bgpTemplate.name,
            },
        },
        name: "custom-timer-profile",
        holdTime: "180",
        keepAliveInterval: "60",
        minRouteAdvertisementInterval: 15,
        openDelayTime: 5,
        reconnectRetryInterval: 30,
    });
    
    import pulumi
    import pulumi_panos as panos
    
    # Create a template
    bgp_template = panos.Template("bgp_template",
        location={
            "panorama": {},
        },
        name="bgp-routing-template")
    # BGP Timer Profile with custom timer values
    custom_timers = panos.BgpTimerRoutingProfile("custom_timers",
        location={
            "template": {
                "name": bgp_template.name,
            },
        },
        name="custom-timer-profile",
        hold_time="180",
        keep_alive_interval="60",
        min_route_advertisement_interval=15,
        open_delay_time=5,
        reconnect_retry_interval=30)
    
    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
    		bgpTemplate, err := panos.NewTemplate(ctx, "bgp_template", &panos.TemplateArgs{
    			Location: &panos.TemplateLocationArgs{
    				Panorama: &panos.TemplateLocationPanoramaArgs{},
    			},
    			Name: pulumi.String("bgp-routing-template"),
    		})
    		if err != nil {
    			return err
    		}
    		// BGP Timer Profile with custom timer values
    		_, err = panos.NewBgpTimerRoutingProfile(ctx, "custom_timers", &panos.BgpTimerRoutingProfileArgs{
    			Location: &panos.BgpTimerRoutingProfileLocationArgs{
    				Template: &panos.BgpTimerRoutingProfileLocationTemplateArgs{
    					Name: bgpTemplate.Name,
    				},
    			},
    			Name:                          pulumi.String("custom-timer-profile"),
    			HoldTime:                      pulumi.String("180"),
    			KeepAliveInterval:             pulumi.String("60"),
    			MinRouteAdvertisementInterval: pulumi.Float64(15),
    			OpenDelayTime:                 pulumi.Float64(5),
    			ReconnectRetryInterval:        pulumi.Float64(30),
    		})
    		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 bgpTemplate = new Panos.Template("bgp_template", new()
        {
            Location = new Panos.Inputs.TemplateLocationArgs
            {
                Panorama = null,
            },
            Name = "bgp-routing-template",
        });
    
        // BGP Timer Profile with custom timer values
        var customTimers = new Panos.BgpTimerRoutingProfile("custom_timers", new()
        {
            Location = new Panos.Inputs.BgpTimerRoutingProfileLocationArgs
            {
                Template = new Panos.Inputs.BgpTimerRoutingProfileLocationTemplateArgs
                {
                    Name = bgpTemplate.Name,
                },
            },
            Name = "custom-timer-profile",
            HoldTime = "180",
            KeepAliveInterval = "60",
            MinRouteAdvertisementInterval = 15,
            OpenDelayTime = 5,
            ReconnectRetryInterval = 30,
        });
    
    });
    
    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.BgpTimerRoutingProfile;
    import com.pulumi.panos.BgpTimerRoutingProfileArgs;
    import com.pulumi.panos.inputs.BgpTimerRoutingProfileLocationArgs;
    import com.pulumi.panos.inputs.BgpTimerRoutingProfileLocationTemplateArgs;
    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 bgpTemplate = new Template("bgpTemplate", TemplateArgs.builder()
                .location(TemplateLocationArgs.builder()
                    .panorama(TemplateLocationPanoramaArgs.builder()
                        .build())
                    .build())
                .name("bgp-routing-template")
                .build());
    
            // BGP Timer Profile with custom timer values
            var customTimers = new BgpTimerRoutingProfile("customTimers", BgpTimerRoutingProfileArgs.builder()
                .location(BgpTimerRoutingProfileLocationArgs.builder()
                    .template(BgpTimerRoutingProfileLocationTemplateArgs.builder()
                        .name(bgpTemplate.name())
                        .build())
                    .build())
                .name("custom-timer-profile")
                .holdTime("180")
                .keepAliveInterval("60")
                .minRouteAdvertisementInterval(15.0)
                .openDelayTime(5.0)
                .reconnectRetryInterval(30.0)
                .build());
    
        }
    }
    
    resources:
      # Create a template
      bgpTemplate:
        type: panos:Template
        name: bgp_template
        properties:
          location:
            panorama: {}
          name: bgp-routing-template
      # BGP Timer Profile with custom timer values
      customTimers:
        type: panos:BgpTimerRoutingProfile
        name: custom_timers
        properties:
          location:
            template:
              name: ${bgpTemplate.name}
          name: custom-timer-profile
          holdTime: '180'
          keepAliveInterval: '60'
          minRouteAdvertisementInterval: 15
          openDelayTime: 5
          reconnectRetryInterval: 30
    

    Create BgpTimerRoutingProfile Resource

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

    Constructor syntax

    new BgpTimerRoutingProfile(name: string, args: BgpTimerRoutingProfileArgs, opts?: CustomResourceOptions);
    @overload
    def BgpTimerRoutingProfile(resource_name: str,
                               args: BgpTimerRoutingProfileArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def BgpTimerRoutingProfile(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               location: Optional[BgpTimerRoutingProfileLocationArgs] = None,
                               hold_time: Optional[str] = None,
                               keep_alive_interval: Optional[str] = None,
                               min_route_advertisement_interval: Optional[float] = None,
                               name: Optional[str] = None,
                               open_delay_time: Optional[float] = None,
                               reconnect_retry_interval: Optional[float] = None)
    func NewBgpTimerRoutingProfile(ctx *Context, name string, args BgpTimerRoutingProfileArgs, opts ...ResourceOption) (*BgpTimerRoutingProfile, error)
    public BgpTimerRoutingProfile(string name, BgpTimerRoutingProfileArgs args, CustomResourceOptions? opts = null)
    public BgpTimerRoutingProfile(String name, BgpTimerRoutingProfileArgs args)
    public BgpTimerRoutingProfile(String name, BgpTimerRoutingProfileArgs args, CustomResourceOptions options)
    
    type: panos:BgpTimerRoutingProfile
    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 BgpTimerRoutingProfileArgs
    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 BgpTimerRoutingProfileArgs
    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 BgpTimerRoutingProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BgpTimerRoutingProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BgpTimerRoutingProfileArgs
    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 bgpTimerRoutingProfileResource = new Panos.BgpTimerRoutingProfile("bgpTimerRoutingProfileResource", new()
    {
        Location = new Panos.Inputs.BgpTimerRoutingProfileLocationArgs
        {
            Ngfw = new Panos.Inputs.BgpTimerRoutingProfileLocationNgfwArgs
            {
                NgfwDevice = "string",
            },
            Template = new Panos.Inputs.BgpTimerRoutingProfileLocationTemplateArgs
            {
                Name = "string",
                NgfwDevice = "string",
                PanoramaDevice = "string",
            },
            TemplateStack = new Panos.Inputs.BgpTimerRoutingProfileLocationTemplateStackArgs
            {
                Name = "string",
                NgfwDevice = "string",
                PanoramaDevice = "string",
            },
        },
        HoldTime = "string",
        KeepAliveInterval = "string",
        MinRouteAdvertisementInterval = 0,
        Name = "string",
        OpenDelayTime = 0,
        ReconnectRetryInterval = 0,
    });
    
    example, err := panos.NewBgpTimerRoutingProfile(ctx, "bgpTimerRoutingProfileResource", &panos.BgpTimerRoutingProfileArgs{
    	Location: &panos.BgpTimerRoutingProfileLocationArgs{
    		Ngfw: &panos.BgpTimerRoutingProfileLocationNgfwArgs{
    			NgfwDevice: pulumi.String("string"),
    		},
    		Template: &panos.BgpTimerRoutingProfileLocationTemplateArgs{
    			Name:           pulumi.String("string"),
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    		TemplateStack: &panos.BgpTimerRoutingProfileLocationTemplateStackArgs{
    			Name:           pulumi.String("string"),
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    	},
    	HoldTime:                      pulumi.String("string"),
    	KeepAliveInterval:             pulumi.String("string"),
    	MinRouteAdvertisementInterval: pulumi.Float64(0),
    	Name:                          pulumi.String("string"),
    	OpenDelayTime:                 pulumi.Float64(0),
    	ReconnectRetryInterval:        pulumi.Float64(0),
    })
    
    var bgpTimerRoutingProfileResource = new BgpTimerRoutingProfile("bgpTimerRoutingProfileResource", BgpTimerRoutingProfileArgs.builder()
        .location(BgpTimerRoutingProfileLocationArgs.builder()
            .ngfw(BgpTimerRoutingProfileLocationNgfwArgs.builder()
                .ngfwDevice("string")
                .build())
            .template(BgpTimerRoutingProfileLocationTemplateArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .panoramaDevice("string")
                .build())
            .templateStack(BgpTimerRoutingProfileLocationTemplateStackArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .panoramaDevice("string")
                .build())
            .build())
        .holdTime("string")
        .keepAliveInterval("string")
        .minRouteAdvertisementInterval(0.0)
        .name("string")
        .openDelayTime(0.0)
        .reconnectRetryInterval(0.0)
        .build());
    
    bgp_timer_routing_profile_resource = panos.BgpTimerRoutingProfile("bgpTimerRoutingProfileResource",
        location={
            "ngfw": {
                "ngfw_device": "string",
            },
            "template": {
                "name": "string",
                "ngfw_device": "string",
                "panorama_device": "string",
            },
            "template_stack": {
                "name": "string",
                "ngfw_device": "string",
                "panorama_device": "string",
            },
        },
        hold_time="string",
        keep_alive_interval="string",
        min_route_advertisement_interval=0,
        name="string",
        open_delay_time=0,
        reconnect_retry_interval=0)
    
    const bgpTimerRoutingProfileResource = new panos.BgpTimerRoutingProfile("bgpTimerRoutingProfileResource", {
        location: {
            ngfw: {
                ngfwDevice: "string",
            },
            template: {
                name: "string",
                ngfwDevice: "string",
                panoramaDevice: "string",
            },
            templateStack: {
                name: "string",
                ngfwDevice: "string",
                panoramaDevice: "string",
            },
        },
        holdTime: "string",
        keepAliveInterval: "string",
        minRouteAdvertisementInterval: 0,
        name: "string",
        openDelayTime: 0,
        reconnectRetryInterval: 0,
    });
    
    type: panos:BgpTimerRoutingProfile
    properties:
        holdTime: string
        keepAliveInterval: string
        location:
            ngfw:
                ngfwDevice: string
            template:
                name: string
                ngfwDevice: string
                panoramaDevice: string
            templateStack:
                name: string
                ngfwDevice: string
                panoramaDevice: string
        minRouteAdvertisementInterval: 0
        name: string
        openDelayTime: 0
        reconnectRetryInterval: 0
    

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

    Location BgpTimerRoutingProfileLocation
    The location of this object.
    HoldTime string
    hold time Default:90 (in seconds)
    KeepAliveInterval string
    keep-alive interval Default:30 (in seconds)
    MinRouteAdvertisementInterval double
    Minimum Route Advertisement Interval Default:30 (in seconds)
    Name string
    OpenDelayTime double
    Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
    ReconnectRetryInterval double
    Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
    Location BgpTimerRoutingProfileLocationArgs
    The location of this object.
    HoldTime string
    hold time Default:90 (in seconds)
    KeepAliveInterval string
    keep-alive interval Default:30 (in seconds)
    MinRouteAdvertisementInterval float64
    Minimum Route Advertisement Interval Default:30 (in seconds)
    Name string
    OpenDelayTime float64
    Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
    ReconnectRetryInterval float64
    Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
    location BgpTimerRoutingProfileLocation
    The location of this object.
    holdTime String
    hold time Default:90 (in seconds)
    keepAliveInterval String
    keep-alive interval Default:30 (in seconds)
    minRouteAdvertisementInterval Double
    Minimum Route Advertisement Interval Default:30 (in seconds)
    name String
    openDelayTime Double
    Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
    reconnectRetryInterval Double
    Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
    location BgpTimerRoutingProfileLocation
    The location of this object.
    holdTime string
    hold time Default:90 (in seconds)
    keepAliveInterval string
    keep-alive interval Default:30 (in seconds)
    minRouteAdvertisementInterval number
    Minimum Route Advertisement Interval Default:30 (in seconds)
    name string
    openDelayTime number
    Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
    reconnectRetryInterval number
    Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
    location BgpTimerRoutingProfileLocationArgs
    The location of this object.
    hold_time str
    hold time Default:90 (in seconds)
    keep_alive_interval str
    keep-alive interval Default:30 (in seconds)
    min_route_advertisement_interval float
    Minimum Route Advertisement Interval Default:30 (in seconds)
    name str
    open_delay_time float
    Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
    reconnect_retry_interval float
    Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
    location Property Map
    The location of this object.
    holdTime String
    hold time Default:90 (in seconds)
    keepAliveInterval String
    keep-alive interval Default:30 (in seconds)
    minRouteAdvertisementInterval Number
    Minimum Route Advertisement Interval Default:30 (in seconds)
    name String
    openDelayTime Number
    Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
    reconnectRetryInterval Number
    Wait in the connect state before retrying connection to the peer Default:15 (in seconds)

    Outputs

    All input properties are implicitly available as output properties. Additionally, the BgpTimerRoutingProfile 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 BgpTimerRoutingProfile Resource

    Get an existing BgpTimerRoutingProfile 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?: BgpTimerRoutingProfileState, opts?: CustomResourceOptions): BgpTimerRoutingProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            hold_time: Optional[str] = None,
            keep_alive_interval: Optional[str] = None,
            location: Optional[BgpTimerRoutingProfileLocationArgs] = None,
            min_route_advertisement_interval: Optional[float] = None,
            name: Optional[str] = None,
            open_delay_time: Optional[float] = None,
            reconnect_retry_interval: Optional[float] = None) -> BgpTimerRoutingProfile
    func GetBgpTimerRoutingProfile(ctx *Context, name string, id IDInput, state *BgpTimerRoutingProfileState, opts ...ResourceOption) (*BgpTimerRoutingProfile, error)
    public static BgpTimerRoutingProfile Get(string name, Input<string> id, BgpTimerRoutingProfileState? state, CustomResourceOptions? opts = null)
    public static BgpTimerRoutingProfile get(String name, Output<String> id, BgpTimerRoutingProfileState state, CustomResourceOptions options)
    resources:  _:    type: panos:BgpTimerRoutingProfile    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:
    HoldTime string
    hold time Default:90 (in seconds)
    KeepAliveInterval string
    keep-alive interval Default:30 (in seconds)
    Location BgpTimerRoutingProfileLocation
    The location of this object.
    MinRouteAdvertisementInterval double
    Minimum Route Advertisement Interval Default:30 (in seconds)
    Name string
    OpenDelayTime double
    Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
    ReconnectRetryInterval double
    Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
    HoldTime string
    hold time Default:90 (in seconds)
    KeepAliveInterval string
    keep-alive interval Default:30 (in seconds)
    Location BgpTimerRoutingProfileLocationArgs
    The location of this object.
    MinRouteAdvertisementInterval float64
    Minimum Route Advertisement Interval Default:30 (in seconds)
    Name string
    OpenDelayTime float64
    Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
    ReconnectRetryInterval float64
    Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
    holdTime String
    hold time Default:90 (in seconds)
    keepAliveInterval String
    keep-alive interval Default:30 (in seconds)
    location BgpTimerRoutingProfileLocation
    The location of this object.
    minRouteAdvertisementInterval Double
    Minimum Route Advertisement Interval Default:30 (in seconds)
    name String
    openDelayTime Double
    Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
    reconnectRetryInterval Double
    Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
    holdTime string
    hold time Default:90 (in seconds)
    keepAliveInterval string
    keep-alive interval Default:30 (in seconds)
    location BgpTimerRoutingProfileLocation
    The location of this object.
    minRouteAdvertisementInterval number
    Minimum Route Advertisement Interval Default:30 (in seconds)
    name string
    openDelayTime number
    Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
    reconnectRetryInterval number
    Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
    hold_time str
    hold time Default:90 (in seconds)
    keep_alive_interval str
    keep-alive interval Default:30 (in seconds)
    location BgpTimerRoutingProfileLocationArgs
    The location of this object.
    min_route_advertisement_interval float
    Minimum Route Advertisement Interval Default:30 (in seconds)
    name str
    open_delay_time float
    Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
    reconnect_retry_interval float
    Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
    holdTime String
    hold time Default:90 (in seconds)
    keepAliveInterval String
    keep-alive interval Default:30 (in seconds)
    location Property Map
    The location of this object.
    minRouteAdvertisementInterval Number
    Minimum Route Advertisement Interval Default:30 (in seconds)
    name String
    openDelayTime Number
    Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
    reconnectRetryInterval Number
    Wait in the connect state before retrying connection to the peer Default:15 (in seconds)

    Supporting Types

    BgpTimerRoutingProfileLocation, BgpTimerRoutingProfileLocationArgs

    Ngfw BgpTimerRoutingProfileLocationNgfw
    Located in a specific NGFW device
    Template BgpTimerRoutingProfileLocationTemplate
    Located in a specific template
    TemplateStack BgpTimerRoutingProfileLocationTemplateStack
    Located in a specific template stack
    Ngfw BgpTimerRoutingProfileLocationNgfw
    Located in a specific NGFW device
    Template BgpTimerRoutingProfileLocationTemplate
    Located in a specific template
    TemplateStack BgpTimerRoutingProfileLocationTemplateStack
    Located in a specific template stack
    ngfw BgpTimerRoutingProfileLocationNgfw
    Located in a specific NGFW device
    template BgpTimerRoutingProfileLocationTemplate
    Located in a specific template
    templateStack BgpTimerRoutingProfileLocationTemplateStack
    Located in a specific template stack
    ngfw BgpTimerRoutingProfileLocationNgfw
    Located in a specific NGFW device
    template BgpTimerRoutingProfileLocationTemplate
    Located in a specific template
    templateStack BgpTimerRoutingProfileLocationTemplateStack
    Located in a specific template stack
    ngfw BgpTimerRoutingProfileLocationNgfw
    Located in a specific NGFW device
    template BgpTimerRoutingProfileLocationTemplate
    Located in a specific template
    template_stack BgpTimerRoutingProfileLocationTemplateStack
    Located in a specific template stack
    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

    BgpTimerRoutingProfileLocationNgfw, BgpTimerRoutingProfileLocationNgfwArgs

    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

    BgpTimerRoutingProfileLocationTemplate, BgpTimerRoutingProfileLocationTemplateArgs

    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

    BgpTimerRoutingProfileLocationTemplateStack, BgpTimerRoutingProfileLocationTemplateStackArgs

    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.
    panos logo
    panos 2.0.7 published on Thursday, Nov 27, 2025 by paloaltonetworks
      Meet Neo: Your AI Platform Teammate