published on Tuesday, Apr 28, 2026 by paloaltonetworks
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 bfdTemplate = new panos.Template("bfd_template", {
location: {
panorama: {},
},
name: "bfd-routing-template",
});
// BFD Profile with custom timing values
const customTimers = new panos.BfdRoutingProfile("custom_timers", {
location: {
template: {
name: bfdTemplate.name,
},
},
name: "custom-bfd-profile",
detectionMultiplier: 5,
holdTime: 1000,
minRxInterval: 500,
minTxInterval: 500,
mode: "active",
});
// BFD Profile with multihop configuration
const multihop = new panos.BfdRoutingProfile("multihop", {
location: {
template: {
name: bfdTemplate.name,
},
},
name: "multihop-bfd-profile",
detectionMultiplier: 3,
minRxInterval: 300,
minTxInterval: 300,
mode: "passive",
multihop: {
minReceivedTtl: 128,
},
});
import pulumi
import pulumi_panos as panos
# Create a template
bfd_template = panos.Template("bfd_template",
location={
"panorama": {},
},
name="bfd-routing-template")
# BFD Profile with custom timing values
custom_timers = panos.BfdRoutingProfile("custom_timers",
location={
"template": {
"name": bfd_template.name,
},
},
name="custom-bfd-profile",
detection_multiplier=5,
hold_time=1000,
min_rx_interval=500,
min_tx_interval=500,
mode="active")
# BFD Profile with multihop configuration
multihop = panos.BfdRoutingProfile("multihop",
location={
"template": {
"name": bfd_template.name,
},
},
name="multihop-bfd-profile",
detection_multiplier=3,
min_rx_interval=300,
min_tx_interval=300,
mode="passive",
multihop={
"min_received_ttl": 128,
})
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
bfdTemplate, err := panos.NewTemplate(ctx, "bfd_template", &panos.TemplateArgs{
Location: &panos.TemplateLocationArgs{
Panorama: &panos.TemplateLocationPanoramaArgs{},
},
Name: pulumi.String("bfd-routing-template"),
})
if err != nil {
return err
}
// BFD Profile with custom timing values
_, err = panos.NewBfdRoutingProfile(ctx, "custom_timers", &panos.BfdRoutingProfileArgs{
Location: &panos.BfdRoutingProfileLocationArgs{
Template: &panos.BfdRoutingProfileLocationTemplateArgs{
Name: bfdTemplate.Name,
},
},
Name: pulumi.String("custom-bfd-profile"),
DetectionMultiplier: pulumi.Float64(5),
HoldTime: pulumi.Float64(1000),
MinRxInterval: pulumi.Float64(500),
MinTxInterval: pulumi.Float64(500),
Mode: pulumi.String("active"),
})
if err != nil {
return err
}
// BFD Profile with multihop configuration
_, err = panos.NewBfdRoutingProfile(ctx, "multihop", &panos.BfdRoutingProfileArgs{
Location: &panos.BfdRoutingProfileLocationArgs{
Template: &panos.BfdRoutingProfileLocationTemplateArgs{
Name: bfdTemplate.Name,
},
},
Name: pulumi.String("multihop-bfd-profile"),
DetectionMultiplier: pulumi.Float64(3),
MinRxInterval: pulumi.Float64(300),
MinTxInterval: pulumi.Float64(300),
Mode: pulumi.String("passive"),
Multihop: &panos.BfdRoutingProfileMultihopArgs{
MinReceivedTtl: pulumi.Float64(128),
},
})
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 bfdTemplate = new Panos.Template("bfd_template", new()
{
Location = new Panos.Inputs.TemplateLocationArgs
{
Panorama = null,
},
Name = "bfd-routing-template",
});
// BFD Profile with custom timing values
var customTimers = new Panos.BfdRoutingProfile("custom_timers", new()
{
Location = new Panos.Inputs.BfdRoutingProfileLocationArgs
{
Template = new Panos.Inputs.BfdRoutingProfileLocationTemplateArgs
{
Name = bfdTemplate.Name,
},
},
Name = "custom-bfd-profile",
DetectionMultiplier = 5,
HoldTime = 1000,
MinRxInterval = 500,
MinTxInterval = 500,
Mode = "active",
});
// BFD Profile with multihop configuration
var multihop = new Panos.BfdRoutingProfile("multihop", new()
{
Location = new Panos.Inputs.BfdRoutingProfileLocationArgs
{
Template = new Panos.Inputs.BfdRoutingProfileLocationTemplateArgs
{
Name = bfdTemplate.Name,
},
},
Name = "multihop-bfd-profile",
DetectionMultiplier = 3,
MinRxInterval = 300,
MinTxInterval = 300,
Mode = "passive",
Multihop = new Panos.Inputs.BfdRoutingProfileMultihopArgs
{
MinReceivedTtl = 128,
},
});
});
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.BfdRoutingProfile;
import com.pulumi.panos.BfdRoutingProfileArgs;
import com.pulumi.panos.inputs.BfdRoutingProfileLocationArgs;
import com.pulumi.panos.inputs.BfdRoutingProfileLocationTemplateArgs;
import com.pulumi.panos.inputs.BfdRoutingProfileMultihopArgs;
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 bfdTemplate = new Template("bfdTemplate", TemplateArgs.builder()
.location(TemplateLocationArgs.builder()
.panorama(TemplateLocationPanoramaArgs.builder()
.build())
.build())
.name("bfd-routing-template")
.build());
// BFD Profile with custom timing values
var customTimers = new BfdRoutingProfile("customTimers", BfdRoutingProfileArgs.builder()
.location(BfdRoutingProfileLocationArgs.builder()
.template(BfdRoutingProfileLocationTemplateArgs.builder()
.name(bfdTemplate.name())
.build())
.build())
.name("custom-bfd-profile")
.detectionMultiplier(5.0)
.holdTime(1000.0)
.minRxInterval(500.0)
.minTxInterval(500.0)
.mode("active")
.build());
// BFD Profile with multihop configuration
var multihop = new BfdRoutingProfile("multihop", BfdRoutingProfileArgs.builder()
.location(BfdRoutingProfileLocationArgs.builder()
.template(BfdRoutingProfileLocationTemplateArgs.builder()
.name(bfdTemplate.name())
.build())
.build())
.name("multihop-bfd-profile")
.detectionMultiplier(3.0)
.minRxInterval(300.0)
.minTxInterval(300.0)
.mode("passive")
.multihop(BfdRoutingProfileMultihopArgs.builder()
.minReceivedTtl(128.0)
.build())
.build());
}
}
resources:
# Create a template
bfdTemplate:
type: panos:Template
name: bfd_template
properties:
location:
panorama: {}
name: bfd-routing-template
# BFD Profile with custom timing values
customTimers:
type: panos:BfdRoutingProfile
name: custom_timers
properties:
location:
template:
name: ${bfdTemplate.name}
name: custom-bfd-profile
detectionMultiplier: 5
holdTime: 1000
minRxInterval: 500
minTxInterval: 500
mode: active
# BFD Profile with multihop configuration
multihop:
type: panos:BfdRoutingProfile
properties:
location:
template:
name: ${bfdTemplate.name}
name: multihop-bfd-profile
detectionMultiplier: 3
minRxInterval: 300
minTxInterval: 300
mode: passive
multihop:
minReceivedTtl: 128
Create BfdRoutingProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BfdRoutingProfile(name: string, args: BfdRoutingProfileArgs, opts?: CustomResourceOptions);@overload
def BfdRoutingProfile(resource_name: str,
args: BfdRoutingProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BfdRoutingProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
location: Optional[BfdRoutingProfileLocationArgs] = None,
detection_multiplier: Optional[float] = None,
hold_time: Optional[float] = None,
min_rx_interval: Optional[float] = None,
min_tx_interval: Optional[float] = None,
mode: Optional[str] = None,
multihop: Optional[BfdRoutingProfileMultihopArgs] = None,
name: Optional[str] = None)func NewBfdRoutingProfile(ctx *Context, name string, args BfdRoutingProfileArgs, opts ...ResourceOption) (*BfdRoutingProfile, error)public BfdRoutingProfile(string name, BfdRoutingProfileArgs args, CustomResourceOptions? opts = null)
public BfdRoutingProfile(String name, BfdRoutingProfileArgs args)
public BfdRoutingProfile(String name, BfdRoutingProfileArgs args, CustomResourceOptions options)
type: panos:BfdRoutingProfile
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 BfdRoutingProfileArgs
- 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 BfdRoutingProfileArgs
- 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 BfdRoutingProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BfdRoutingProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BfdRoutingProfileArgs
- 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 bfdRoutingProfileResource = new Panos.BfdRoutingProfile("bfdRoutingProfileResource", new()
{
Location = new Panos.Inputs.BfdRoutingProfileLocationArgs
{
Ngfw = new Panos.Inputs.BfdRoutingProfileLocationNgfwArgs
{
NgfwDevice = "string",
},
Template = new Panos.Inputs.BfdRoutingProfileLocationTemplateArgs
{
Name = "string",
NgfwDevice = "string",
PanoramaDevice = "string",
},
TemplateStack = new Panos.Inputs.BfdRoutingProfileLocationTemplateStackArgs
{
Name = "string",
NgfwDevice = "string",
PanoramaDevice = "string",
},
},
DetectionMultiplier = 0,
HoldTime = 0,
MinRxInterval = 0,
MinTxInterval = 0,
Mode = "string",
Multihop = new Panos.Inputs.BfdRoutingProfileMultihopArgs
{
MinReceivedTtl = 0,
},
Name = "string",
});
example, err := panos.NewBfdRoutingProfile(ctx, "bfdRoutingProfileResource", &panos.BfdRoutingProfileArgs{
Location: &panos.BfdRoutingProfileLocationArgs{
Ngfw: &panos.BfdRoutingProfileLocationNgfwArgs{
NgfwDevice: pulumi.String("string"),
},
Template: &panos.BfdRoutingProfileLocationTemplateArgs{
Name: pulumi.String("string"),
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
TemplateStack: &panos.BfdRoutingProfileLocationTemplateStackArgs{
Name: pulumi.String("string"),
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
},
DetectionMultiplier: pulumi.Float64(0),
HoldTime: pulumi.Float64(0),
MinRxInterval: pulumi.Float64(0),
MinTxInterval: pulumi.Float64(0),
Mode: pulumi.String("string"),
Multihop: &panos.BfdRoutingProfileMultihopArgs{
MinReceivedTtl: pulumi.Float64(0),
},
Name: pulumi.String("string"),
})
var bfdRoutingProfileResource = new BfdRoutingProfile("bfdRoutingProfileResource", BfdRoutingProfileArgs.builder()
.location(BfdRoutingProfileLocationArgs.builder()
.ngfw(BfdRoutingProfileLocationNgfwArgs.builder()
.ngfwDevice("string")
.build())
.template(BfdRoutingProfileLocationTemplateArgs.builder()
.name("string")
.ngfwDevice("string")
.panoramaDevice("string")
.build())
.templateStack(BfdRoutingProfileLocationTemplateStackArgs.builder()
.name("string")
.ngfwDevice("string")
.panoramaDevice("string")
.build())
.build())
.detectionMultiplier(0.0)
.holdTime(0.0)
.minRxInterval(0.0)
.minTxInterval(0.0)
.mode("string")
.multihop(BfdRoutingProfileMultihopArgs.builder()
.minReceivedTtl(0.0)
.build())
.name("string")
.build());
bfd_routing_profile_resource = panos.BfdRoutingProfile("bfdRoutingProfileResource",
location={
"ngfw": {
"ngfw_device": "string",
},
"template": {
"name": "string",
"ngfw_device": "string",
"panorama_device": "string",
},
"template_stack": {
"name": "string",
"ngfw_device": "string",
"panorama_device": "string",
},
},
detection_multiplier=float(0),
hold_time=float(0),
min_rx_interval=float(0),
min_tx_interval=float(0),
mode="string",
multihop={
"min_received_ttl": float(0),
},
name="string")
const bfdRoutingProfileResource = new panos.BfdRoutingProfile("bfdRoutingProfileResource", {
location: {
ngfw: {
ngfwDevice: "string",
},
template: {
name: "string",
ngfwDevice: "string",
panoramaDevice: "string",
},
templateStack: {
name: "string",
ngfwDevice: "string",
panoramaDevice: "string",
},
},
detectionMultiplier: 0,
holdTime: 0,
minRxInterval: 0,
minTxInterval: 0,
mode: "string",
multihop: {
minReceivedTtl: 0,
},
name: "string",
});
type: panos:BfdRoutingProfile
properties:
detectionMultiplier: 0
holdTime: 0
location:
ngfw:
ngfwDevice: string
template:
name: string
ngfwDevice: string
panoramaDevice: string
templateStack:
name: string
ngfwDevice: string
panoramaDevice: string
minRxInterval: 0
minTxInterval: 0
mode: string
multihop:
minReceivedTtl: 0
name: string
BfdRoutingProfile 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 BfdRoutingProfile resource accepts the following input properties:
- Location
Bfd
Routing Profile Location - The location of this object.
- Detection
Multiplier double - multiplier sent to remote system
- Hold
Time double - delay transmission and reception of control packets in ms
- Min
Rx doubleInterval - required minimum rx interval in ms
- Min
Tx doubleInterval - desired minimum tx interval in ms
- Mode string
- BFD operation mode
- Multihop
Bfd
Routing Profile Multihop - Name string
- Location
Bfd
Routing Profile Location Args - The location of this object.
- Detection
Multiplier float64 - multiplier sent to remote system
- Hold
Time float64 - delay transmission and reception of control packets in ms
- Min
Rx float64Interval - required minimum rx interval in ms
- Min
Tx float64Interval - desired minimum tx interval in ms
- Mode string
- BFD operation mode
- Multihop
Bfd
Routing Profile Multihop Args - Name string
- location
Bfd
Routing Profile Location - The location of this object.
- detection
Multiplier Double - multiplier sent to remote system
- hold
Time Double - delay transmission and reception of control packets in ms
- min
Rx DoubleInterval - required minimum rx interval in ms
- min
Tx DoubleInterval - desired minimum tx interval in ms
- mode String
- BFD operation mode
- multihop
Bfd
Routing Profile Multihop - name String
- location
Bfd
Routing Profile Location - The location of this object.
- detection
Multiplier number - multiplier sent to remote system
- hold
Time number - delay transmission and reception of control packets in ms
- min
Rx numberInterval - required minimum rx interval in ms
- min
Tx numberInterval - desired minimum tx interval in ms
- mode string
- BFD operation mode
- multihop
Bfd
Routing Profile Multihop - name string
- location
Bfd
Routing Profile Location Args - The location of this object.
- detection_
multiplier float - multiplier sent to remote system
- hold_
time float - delay transmission and reception of control packets in ms
- min_
rx_ floatinterval - required minimum rx interval in ms
- min_
tx_ floatinterval - desired minimum tx interval in ms
- mode str
- BFD operation mode
- multihop
Bfd
Routing Profile Multihop Args - name str
- location Property Map
- The location of this object.
- detection
Multiplier Number - multiplier sent to remote system
- hold
Time Number - delay transmission and reception of control packets in ms
- min
Rx NumberInterval - required minimum rx interval in ms
- min
Tx NumberInterval - desired minimum tx interval in ms
- mode String
- BFD operation mode
- multihop Property Map
- name String
Outputs
All input properties are implicitly available as output properties. Additionally, the BfdRoutingProfile 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 BfdRoutingProfile Resource
Get an existing BfdRoutingProfile 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?: BfdRoutingProfileState, opts?: CustomResourceOptions): BfdRoutingProfile@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
detection_multiplier: Optional[float] = None,
hold_time: Optional[float] = None,
location: Optional[BfdRoutingProfileLocationArgs] = None,
min_rx_interval: Optional[float] = None,
min_tx_interval: Optional[float] = None,
mode: Optional[str] = None,
multihop: Optional[BfdRoutingProfileMultihopArgs] = None,
name: Optional[str] = None) -> BfdRoutingProfilefunc GetBfdRoutingProfile(ctx *Context, name string, id IDInput, state *BfdRoutingProfileState, opts ...ResourceOption) (*BfdRoutingProfile, error)public static BfdRoutingProfile Get(string name, Input<string> id, BfdRoutingProfileState? state, CustomResourceOptions? opts = null)public static BfdRoutingProfile get(String name, Output<String> id, BfdRoutingProfileState state, CustomResourceOptions options)resources: _: type: panos:BfdRoutingProfile 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.
- Detection
Multiplier double - multiplier sent to remote system
- Hold
Time double - delay transmission and reception of control packets in ms
- Location
Bfd
Routing Profile Location - The location of this object.
- Min
Rx doubleInterval - required minimum rx interval in ms
- Min
Tx doubleInterval - desired minimum tx interval in ms
- Mode string
- BFD operation mode
- Multihop
Bfd
Routing Profile Multihop - Name string
- Detection
Multiplier float64 - multiplier sent to remote system
- Hold
Time float64 - delay transmission and reception of control packets in ms
- Location
Bfd
Routing Profile Location Args - The location of this object.
- Min
Rx float64Interval - required minimum rx interval in ms
- Min
Tx float64Interval - desired minimum tx interval in ms
- Mode string
- BFD operation mode
- Multihop
Bfd
Routing Profile Multihop Args - Name string
- detection
Multiplier Double - multiplier sent to remote system
- hold
Time Double - delay transmission and reception of control packets in ms
- location
Bfd
Routing Profile Location - The location of this object.
- min
Rx DoubleInterval - required minimum rx interval in ms
- min
Tx DoubleInterval - desired minimum tx interval in ms
- mode String
- BFD operation mode
- multihop
Bfd
Routing Profile Multihop - name String
- detection
Multiplier number - multiplier sent to remote system
- hold
Time number - delay transmission and reception of control packets in ms
- location
Bfd
Routing Profile Location - The location of this object.
- min
Rx numberInterval - required minimum rx interval in ms
- min
Tx numberInterval - desired minimum tx interval in ms
- mode string
- BFD operation mode
- multihop
Bfd
Routing Profile Multihop - name string
- detection_
multiplier float - multiplier sent to remote system
- hold_
time float - delay transmission and reception of control packets in ms
- location
Bfd
Routing Profile Location Args - The location of this object.
- min_
rx_ floatinterval - required minimum rx interval in ms
- min_
tx_ floatinterval - desired minimum tx interval in ms
- mode str
- BFD operation mode
- multihop
Bfd
Routing Profile Multihop Args - name str
- detection
Multiplier Number - multiplier sent to remote system
- hold
Time Number - delay transmission and reception of control packets in ms
- location Property Map
- The location of this object.
- min
Rx NumberInterval - required minimum rx interval in ms
- min
Tx NumberInterval - desired minimum tx interval in ms
- mode String
- BFD operation mode
- multihop Property Map
- name String
Supporting Types
BfdRoutingProfileLocation, BfdRoutingProfileLocationArgs
- Ngfw
Bfd
Routing Profile Location Ngfw - Located in a specific NGFW device
- Template
Bfd
Routing Profile Location Template - Located in a specific template
- Template
Stack BfdRouting Profile Location Template Stack - Located in a specific template stack
- Ngfw
Bfd
Routing Profile Location Ngfw - Located in a specific NGFW device
- Template
Bfd
Routing Profile Location Template - Located in a specific template
- Template
Stack BfdRouting Profile Location Template Stack - Located in a specific template stack
- ngfw
Bfd
Routing Profile Location Ngfw - Located in a specific NGFW device
- template
Bfd
Routing Profile Location Template - Located in a specific template
- template
Stack BfdRouting Profile Location Template Stack - Located in a specific template stack
- ngfw
Bfd
Routing Profile Location Ngfw - Located in a specific NGFW device
- template
Bfd
Routing Profile Location Template - Located in a specific template
- template
Stack BfdRouting Profile Location Template Stack - Located in a specific template stack
- ngfw
Bfd
Routing Profile Location Ngfw - Located in a specific NGFW device
- template
Bfd
Routing Profile Location Template - Located in a specific template
- template_
stack BfdRouting Profile Location Template Stack - Located in a specific template stack
- ngfw Property Map
- Located in a specific NGFW device
- template Property Map
- Located in a specific template
- template
Stack Property Map - Located in a specific template stack
BfdRoutingProfileLocationNgfw, BfdRoutingProfileLocationNgfwArgs
- Ngfw
Device string - The NGFW device
- Ngfw
Device string - The NGFW device
- ngfw
Device String - The NGFW device
- ngfw
Device string - The NGFW device
- ngfw_
device str - The NGFW device
- ngfw
Device String - The NGFW device
BfdRoutingProfileLocationTemplate, BfdRoutingProfileLocationTemplateArgs
- Name string
- Specific Panorama template
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Name string
- Specific Panorama template
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- name String
- Specific Panorama template
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- name string
- Specific Panorama template
- ngfw
Device string - The NGFW device
- panorama
Device 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
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
BfdRoutingProfileLocationTemplateStack, BfdRoutingProfileLocationTemplateStackArgs
- Name string
- Specific Panorama template stack
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Name string
- Specific Panorama template stack
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- name String
- Specific Panorama template stack
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- name string
- Specific Panorama template stack
- ngfw
Device string - The NGFW device
- panorama
Device 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
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
BfdRoutingProfileMultihop, BfdRoutingProfileMultihopArgs
- Min
Received doubleTtl - minimum accepted ttl on received BFD packet
- Min
Received float64Ttl - minimum accepted ttl on received BFD packet
- min
Received DoubleTtl - minimum accepted ttl on received BFD packet
- min
Received numberTtl - minimum accepted ttl on received BFD packet
- min_
received_ floatttl - minimum accepted ttl on received BFD packet
- min
Received NumberTtl - minimum accepted ttl on received BFD packet
Package Details
- Repository
- panos paloaltonetworks/terraform-provider-panos
- License
- Notes
- This Pulumi package is based on the
panosTerraform Provider.
published on Tuesday, Apr 28, 2026 by paloaltonetworks
