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
Bgp
Timer Routing Profile Location - The location of this object.
- Hold
Time string - hold time Default:90 (in seconds)
- Keep
Alive stringInterval - keep-alive interval Default:30 (in seconds)
- Min
Route doubleAdvertisement Interval - Minimum Route Advertisement Interval Default:30 (in seconds)
- Name string
- Open
Delay doubleTime - Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
- Reconnect
Retry doubleInterval - Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
- Location
Bgp
Timer Routing Profile Location Args - The location of this object.
- Hold
Time string - hold time Default:90 (in seconds)
- Keep
Alive stringInterval - keep-alive interval Default:30 (in seconds)
- Min
Route float64Advertisement Interval - Minimum Route Advertisement Interval Default:30 (in seconds)
- Name string
- Open
Delay float64Time - Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
- Reconnect
Retry float64Interval - Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
- location
Bgp
Timer Routing Profile Location - The location of this object.
- hold
Time String - hold time Default:90 (in seconds)
- keep
Alive StringInterval - keep-alive interval Default:30 (in seconds)
- min
Route DoubleAdvertisement Interval - Minimum Route Advertisement Interval Default:30 (in seconds)
- name String
- open
Delay DoubleTime - Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
- reconnect
Retry DoubleInterval - Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
- location
Bgp
Timer Routing Profile Location - The location of this object.
- hold
Time string - hold time Default:90 (in seconds)
- keep
Alive stringInterval - keep-alive interval Default:30 (in seconds)
- min
Route numberAdvertisement Interval - Minimum Route Advertisement Interval Default:30 (in seconds)
- name string
- open
Delay numberTime - Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
- reconnect
Retry numberInterval - Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
- location
Bgp
Timer Routing Profile Location Args - The location of this object.
- hold_
time str - hold time Default:90 (in seconds)
- keep_
alive_ strinterval - keep-alive interval Default:30 (in seconds)
- min_
route_ floatadvertisement_ interval - Minimum Route Advertisement Interval Default:30 (in seconds)
- name str
- open_
delay_ floattime - Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
- reconnect_
retry_ floatinterval - Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
- location Property Map
- The location of this object.
- hold
Time String - hold time Default:90 (in seconds)
- keep
Alive StringInterval - keep-alive interval Default:30 (in seconds)
- min
Route NumberAdvertisement Interval - Minimum Route Advertisement Interval Default:30 (in seconds)
- name String
- open
Delay NumberTime - Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
- reconnect
Retry NumberInterval - 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) -> BgpTimerRoutingProfilefunc 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.
- Hold
Time string - hold time Default:90 (in seconds)
- Keep
Alive stringInterval - keep-alive interval Default:30 (in seconds)
- Location
Bgp
Timer Routing Profile Location - The location of this object.
- Min
Route doubleAdvertisement Interval - Minimum Route Advertisement Interval Default:30 (in seconds)
- Name string
- Open
Delay doubleTime - Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
- Reconnect
Retry doubleInterval - Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
- Hold
Time string - hold time Default:90 (in seconds)
- Keep
Alive stringInterval - keep-alive interval Default:30 (in seconds)
- Location
Bgp
Timer Routing Profile Location Args - The location of this object.
- Min
Route float64Advertisement Interval - Minimum Route Advertisement Interval Default:30 (in seconds)
- Name string
- Open
Delay float64Time - Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
- Reconnect
Retry float64Interval - Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
- hold
Time String - hold time Default:90 (in seconds)
- keep
Alive StringInterval - keep-alive interval Default:30 (in seconds)
- location
Bgp
Timer Routing Profile Location - The location of this object.
- min
Route DoubleAdvertisement Interval - Minimum Route Advertisement Interval Default:30 (in seconds)
- name String
- open
Delay DoubleTime - Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
- reconnect
Retry DoubleInterval - Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
- hold
Time string - hold time Default:90 (in seconds)
- keep
Alive stringInterval - keep-alive interval Default:30 (in seconds)
- location
Bgp
Timer Routing Profile Location - The location of this object.
- min
Route numberAdvertisement Interval - Minimum Route Advertisement Interval Default:30 (in seconds)
- name string
- open
Delay numberTime - Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
- reconnect
Retry numberInterval - 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_ strinterval - keep-alive interval Default:30 (in seconds)
- location
Bgp
Timer Routing Profile Location Args - The location of this object.
- min_
route_ floatadvertisement_ interval - Minimum Route Advertisement Interval Default:30 (in seconds)
- name str
- open_
delay_ floattime - Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
- reconnect_
retry_ floatinterval - Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
- hold
Time String - hold time Default:90 (in seconds)
- keep
Alive StringInterval - keep-alive interval Default:30 (in seconds)
- location Property Map
- The location of this object.
- min
Route NumberAdvertisement Interval - Minimum Route Advertisement Interval Default:30 (in seconds)
- name String
- open
Delay NumberTime - Delay time after peer TCP connection up and sending 1st BGP Open Message Default:0 (in seconds)
- reconnect
Retry NumberInterval - Wait in the connect state before retrying connection to the peer Default:15 (in seconds)
Supporting Types
BgpTimerRoutingProfileLocation, BgpTimerRoutingProfileLocationArgs
- Ngfw
Bgp
Timer Routing Profile Location Ngfw - Located in a specific NGFW device
- Template
Bgp
Timer Routing Profile Location Template - Located in a specific template
- Template
Stack BgpTimer Routing Profile Location Template Stack - Located in a specific template stack
- Ngfw
Bgp
Timer Routing Profile Location Ngfw - Located in a specific NGFW device
- Template
Bgp
Timer Routing Profile Location Template - Located in a specific template
- Template
Stack BgpTimer Routing Profile Location Template Stack - Located in a specific template stack
- ngfw
Bgp
Timer Routing Profile Location Ngfw - Located in a specific NGFW device
- template
Bgp
Timer Routing Profile Location Template - Located in a specific template
- template
Stack BgpTimer Routing Profile Location Template Stack - Located in a specific template stack
- ngfw
Bgp
Timer Routing Profile Location Ngfw - Located in a specific NGFW device
- template
Bgp
Timer Routing Profile Location Template - Located in a specific template
- template
Stack BgpTimer Routing Profile Location Template Stack - Located in a specific template stack
- ngfw
Bgp
Timer Routing Profile Location Ngfw - Located in a specific NGFW device
- template
Bgp
Timer Routing Profile Location Template - Located in a specific template
- template_
stack BgpTimer Routing 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
BgpTimerRoutingProfileLocationNgfw, BgpTimerRoutingProfileLocationNgfwArgs
- 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
BgpTimerRoutingProfileLocationTemplate, BgpTimerRoutingProfileLocationTemplateArgs
- 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
BgpTimerRoutingProfileLocationTemplateStack, BgpTimerRoutingProfileLocationTemplateStackArgs
- 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
Package Details
- Repository
- panos paloaltonetworks/terraform-provider-panos
- License
- Notes
- This Pulumi package is based on the
panosTerraform Provider.
