published on Wednesday, Jun 17, 2026 by paloaltonetworks
published on Wednesday, Jun 17, 2026 by paloaltonetworks
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as panos from "@pulumi/panos";
const example = new panos.SnmptrapProfile("example", {
location: {
vsys: {
name: "vsys1",
},
},
name: "my-snmp-trap-profile",
version: {
v2c: {
servers: [{
name: "snmp-server-1",
manager: "192.0.2.1",
community: "public",
}],
},
},
});
import pulumi
import pulumi_panos as panos
example = panos.SnmptrapProfile("example",
location={
"vsys": {
"name": "vsys1",
},
},
name="my-snmp-trap-profile",
version={
"v2c": {
"servers": [{
"name": "snmp-server-1",
"manager": "192.0.2.1",
"community": "public",
}],
},
})
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 {
_, err := panos.NewSnmptrapProfile(ctx, "example", &panos.SnmptrapProfileArgs{
Location: &panos.SnmptrapProfileLocationArgs{
Vsys: &panos.SnmptrapProfileLocationVsysArgs{
Name: pulumi.String("vsys1"),
},
},
Name: pulumi.String("my-snmp-trap-profile"),
Version: &panos.SnmptrapProfileVersionArgs{
V2c: &panos.SnmptrapProfileVersionV2cArgs{
Servers: panos.SnmptrapProfileVersionV2cServerArray{
&panos.SnmptrapProfileVersionV2cServerArgs{
Name: pulumi.String("snmp-server-1"),
Manager: pulumi.String("192.0.2.1"),
Community: pulumi.String("public"),
},
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Panos = Pulumi.Panos;
return await Deployment.RunAsync(() =>
{
var example = new Panos.SnmptrapProfile("example", new()
{
Location = new Panos.Inputs.SnmptrapProfileLocationArgs
{
Vsys = new Panos.Inputs.SnmptrapProfileLocationVsysArgs
{
Name = "vsys1",
},
},
Name = "my-snmp-trap-profile",
Version = new Panos.Inputs.SnmptrapProfileVersionArgs
{
V2c = new Panos.Inputs.SnmptrapProfileVersionV2cArgs
{
Servers = new[]
{
new Panos.Inputs.SnmptrapProfileVersionV2cServerArgs
{
Name = "snmp-server-1",
Manager = "192.0.2.1",
Community = "public",
},
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.panos.SnmptrapProfile;
import com.pulumi.panos.SnmptrapProfileArgs;
import com.pulumi.panos.inputs.SnmptrapProfileLocationArgs;
import com.pulumi.panos.inputs.SnmptrapProfileLocationVsysArgs;
import com.pulumi.panos.inputs.SnmptrapProfileVersionArgs;
import com.pulumi.panos.inputs.SnmptrapProfileVersionV2cArgs;
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) {
var example = new SnmptrapProfile("example", SnmptrapProfileArgs.builder()
.location(SnmptrapProfileLocationArgs.builder()
.vsys(SnmptrapProfileLocationVsysArgs.builder()
.name("vsys1")
.build())
.build())
.name("my-snmp-trap-profile")
.version(SnmptrapProfileVersionArgs.builder()
.v2c(SnmptrapProfileVersionV2cArgs.builder()
.servers(SnmptrapProfileVersionV2cServerArgs.builder()
.name("snmp-server-1")
.manager("192.0.2.1")
.community("public")
.build())
.build())
.build())
.build());
}
}
resources:
example:
type: panos:SnmptrapProfile
properties:
location:
vsys:
name: vsys1
name: my-snmp-trap-profile
version:
v2c:
servers:
- name: snmp-server-1
manager: 192.0.2.1
community: public
Example coming soon!
Create SnmptrapProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SnmptrapProfile(name: string, args: SnmptrapProfileArgs, opts?: CustomResourceOptions);@overload
def SnmptrapProfile(resource_name: str,
args: SnmptrapProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SnmptrapProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
location: Optional[SnmptrapProfileLocationArgs] = None,
name: Optional[str] = None,
version: Optional[SnmptrapProfileVersionArgs] = None)func NewSnmptrapProfile(ctx *Context, name string, args SnmptrapProfileArgs, opts ...ResourceOption) (*SnmptrapProfile, error)public SnmptrapProfile(string name, SnmptrapProfileArgs args, CustomResourceOptions? opts = null)
public SnmptrapProfile(String name, SnmptrapProfileArgs args)
public SnmptrapProfile(String name, SnmptrapProfileArgs args, CustomResourceOptions options)
type: panos:SnmptrapProfile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "panos_snmptrapprofile" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args SnmptrapProfileArgs
- 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 SnmptrapProfileArgs
- 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 SnmptrapProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SnmptrapProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SnmptrapProfileArgs
- 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 snmptrapProfileResource = new Panos.SnmptrapProfile("snmptrapProfileResource", new()
{
Location = new Panos.Inputs.SnmptrapProfileLocationArgs
{
Panorama = null,
Template = new Panos.Inputs.SnmptrapProfileLocationTemplateArgs
{
Name = "string",
PanoramaDevice = "string",
},
TemplateStack = new Panos.Inputs.SnmptrapProfileLocationTemplateStackArgs
{
Name = "string",
PanoramaDevice = "string",
},
TemplateStackVsys = new Panos.Inputs.SnmptrapProfileLocationTemplateStackVsysArgs
{
NgfwDevice = "string",
PanoramaDevice = "string",
TemplateStack = "string",
Vsys = "string",
},
TemplateVsys = new Panos.Inputs.SnmptrapProfileLocationTemplateVsysArgs
{
NgfwDevice = "string",
PanoramaDevice = "string",
Template = "string",
Vsys = "string",
},
Vsys = new Panos.Inputs.SnmptrapProfileLocationVsysArgs
{
Name = "string",
NgfwDevice = "string",
},
},
Name = "string",
Version = new Panos.Inputs.SnmptrapProfileVersionArgs
{
V2c = new Panos.Inputs.SnmptrapProfileVersionV2cArgs
{
Servers = new[]
{
new Panos.Inputs.SnmptrapProfileVersionV2cServerArgs
{
Name = "string",
Community = "string",
Manager = "string",
},
},
},
V3 = new Panos.Inputs.SnmptrapProfileVersionV3Args
{
Servers = new[]
{
new Panos.Inputs.SnmptrapProfileVersionV3ServerArgs
{
Name = "string",
AuthenticationPassword = "string",
AuthenticationProtocol = "string",
EngineId = "string",
Manager = "string",
PrivacyPassword = "string",
PrivacyProtocol = "string",
User = "string",
},
},
},
},
});
example, err := panos.NewSnmptrapProfile(ctx, "snmptrapProfileResource", &panos.SnmptrapProfileArgs{
Location: &panos.SnmptrapProfileLocationArgs{
Panorama: &panos.SnmptrapProfileLocationPanoramaArgs{},
Template: &panos.SnmptrapProfileLocationTemplateArgs{
Name: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
TemplateStack: &panos.SnmptrapProfileLocationTemplateStackArgs{
Name: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
TemplateStackVsys: &panos.SnmptrapProfileLocationTemplateStackVsysArgs{
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
TemplateStack: pulumi.String("string"),
Vsys: pulumi.String("string"),
},
TemplateVsys: &panos.SnmptrapProfileLocationTemplateVsysArgs{
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
Template: pulumi.String("string"),
Vsys: pulumi.String("string"),
},
Vsys: &panos.SnmptrapProfileLocationVsysArgs{
Name: pulumi.String("string"),
NgfwDevice: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
Version: &panos.SnmptrapProfileVersionArgs{
V2c: &panos.SnmptrapProfileVersionV2cArgs{
Servers: panos.SnmptrapProfileVersionV2cServerArray{
&panos.SnmptrapProfileVersionV2cServerArgs{
Name: pulumi.String("string"),
Community: pulumi.String("string"),
Manager: pulumi.String("string"),
},
},
},
V3: &panos.SnmptrapProfileVersionV3Args{
Servers: panos.SnmptrapProfileVersionV3ServerArray{
&panos.SnmptrapProfileVersionV3ServerArgs{
Name: pulumi.String("string"),
AuthenticationPassword: pulumi.String("string"),
AuthenticationProtocol: pulumi.String("string"),
EngineId: pulumi.String("string"),
Manager: pulumi.String("string"),
PrivacyPassword: pulumi.String("string"),
PrivacyProtocol: pulumi.String("string"),
User: pulumi.String("string"),
},
},
},
},
})
resource "panos_snmptrapprofile" "snmptrapProfileResource" {
location = {
panorama = {}
template = {
name = "string"
panorama_device = "string"
}
template_stack = {
name = "string"
panorama_device = "string"
}
template_stack_vsys = {
ngfw_device = "string"
panorama_device = "string"
template_stack = "string"
vsys = "string"
}
template_vsys = {
ngfw_device = "string"
panorama_device = "string"
template = "string"
vsys = "string"
}
vsys = {
name = "string"
ngfw_device = "string"
}
}
name = "string"
version = {
v2c = {
servers = [{
"name" = "string"
"community" = "string"
"manager" = "string"
}]
}
v3 = {
servers = [{
"name" = "string"
"authenticationPassword" = "string"
"authenticationProtocol" = "string"
"engineId" = "string"
"manager" = "string"
"privacyPassword" = "string"
"privacyProtocol" = "string"
"user" = "string"
}]
}
}
}
var snmptrapProfileResource = new SnmptrapProfile("snmptrapProfileResource", SnmptrapProfileArgs.builder()
.location(SnmptrapProfileLocationArgs.builder()
.panorama(SnmptrapProfileLocationPanoramaArgs.builder()
.build())
.template(SnmptrapProfileLocationTemplateArgs.builder()
.name("string")
.panoramaDevice("string")
.build())
.templateStack(SnmptrapProfileLocationTemplateStackArgs.builder()
.name("string")
.panoramaDevice("string")
.build())
.templateStackVsys(SnmptrapProfileLocationTemplateStackVsysArgs.builder()
.ngfwDevice("string")
.panoramaDevice("string")
.templateStack("string")
.vsys("string")
.build())
.templateVsys(SnmptrapProfileLocationTemplateVsysArgs.builder()
.ngfwDevice("string")
.panoramaDevice("string")
.template("string")
.vsys("string")
.build())
.vsys(SnmptrapProfileLocationVsysArgs.builder()
.name("string")
.ngfwDevice("string")
.build())
.build())
.name("string")
.version(SnmptrapProfileVersionArgs.builder()
.v2c(SnmptrapProfileVersionV2cArgs.builder()
.servers(SnmptrapProfileVersionV2cServerArgs.builder()
.name("string")
.community("string")
.manager("string")
.build())
.build())
.v3(SnmptrapProfileVersionV3Args.builder()
.servers(SnmptrapProfileVersionV3ServerArgs.builder()
.name("string")
.authenticationPassword("string")
.authenticationProtocol("string")
.engineId("string")
.manager("string")
.privacyPassword("string")
.privacyProtocol("string")
.user("string")
.build())
.build())
.build())
.build());
snmptrap_profile_resource = panos.SnmptrapProfile("snmptrapProfileResource",
location={
"panorama": {},
"template": {
"name": "string",
"panorama_device": "string",
},
"template_stack": {
"name": "string",
"panorama_device": "string",
},
"template_stack_vsys": {
"ngfw_device": "string",
"panorama_device": "string",
"template_stack": "string",
"vsys": "string",
},
"template_vsys": {
"ngfw_device": "string",
"panorama_device": "string",
"template": "string",
"vsys": "string",
},
"vsys": {
"name": "string",
"ngfw_device": "string",
},
},
name="string",
version={
"v2c": {
"servers": [{
"name": "string",
"community": "string",
"manager": "string",
}],
},
"v3": {
"servers": [{
"name": "string",
"authentication_password": "string",
"authentication_protocol": "string",
"engine_id": "string",
"manager": "string",
"privacy_password": "string",
"privacy_protocol": "string",
"user": "string",
}],
},
})
const snmptrapProfileResource = new panos.SnmptrapProfile("snmptrapProfileResource", {
location: {
panorama: {},
template: {
name: "string",
panoramaDevice: "string",
},
templateStack: {
name: "string",
panoramaDevice: "string",
},
templateStackVsys: {
ngfwDevice: "string",
panoramaDevice: "string",
templateStack: "string",
vsys: "string",
},
templateVsys: {
ngfwDevice: "string",
panoramaDevice: "string",
template: "string",
vsys: "string",
},
vsys: {
name: "string",
ngfwDevice: "string",
},
},
name: "string",
version: {
v2c: {
servers: [{
name: "string",
community: "string",
manager: "string",
}],
},
v3: {
servers: [{
name: "string",
authenticationPassword: "string",
authenticationProtocol: "string",
engineId: "string",
manager: "string",
privacyPassword: "string",
privacyProtocol: "string",
user: "string",
}],
},
},
});
type: panos:SnmptrapProfile
properties:
location:
panorama: {}
template:
name: string
panoramaDevice: string
templateStack:
name: string
panoramaDevice: string
templateStackVsys:
ngfwDevice: string
panoramaDevice: string
templateStack: string
vsys: string
templateVsys:
ngfwDevice: string
panoramaDevice: string
template: string
vsys: string
vsys:
name: string
ngfwDevice: string
name: string
version:
v2c:
servers:
- community: string
manager: string
name: string
v3:
servers:
- authenticationPassword: string
authenticationProtocol: string
engineId: string
manager: string
name: string
privacyPassword: string
privacyProtocol: string
user: string
SnmptrapProfile 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 SnmptrapProfile resource accepts the following input properties:
- Location
Snmptrap
Profile Location - The location of this object.
- Name string
- Version
Snmptrap
Profile Version
- Location
Snmptrap
Profile Location Args - The location of this object.
- Name string
- Version
Snmptrap
Profile Version Args
- location
Snmptrap
Profile Location - The location of this object.
- name String
- version
Snmptrap
Profile Version
- location
Snmptrap
Profile Location - The location of this object.
- name string
- version
Snmptrap
Profile Version
- location
Snmptrap
Profile Location Args - The location of this object.
- name str
- version
Snmptrap
Profile Version Args
- location Property Map
- The location of this object.
- name String
- version Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the SnmptrapProfile 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 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 SnmptrapProfile Resource
Get an existing SnmptrapProfile 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?: SnmptrapProfileState, opts?: CustomResourceOptions): SnmptrapProfile@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
location: Optional[SnmptrapProfileLocationArgs] = None,
name: Optional[str] = None,
version: Optional[SnmptrapProfileVersionArgs] = None) -> SnmptrapProfilefunc GetSnmptrapProfile(ctx *Context, name string, id IDInput, state *SnmptrapProfileState, opts ...ResourceOption) (*SnmptrapProfile, error)public static SnmptrapProfile Get(string name, Input<string> id, SnmptrapProfileState? state, CustomResourceOptions? opts = null)public static SnmptrapProfile get(String name, Output<String> id, SnmptrapProfileState state, CustomResourceOptions options)resources: _: type: panos:SnmptrapProfile get: id: ${id}import {
to = panos_snmptrapprofile.example
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.
- Location
Snmptrap
Profile Location - The location of this object.
- Name string
- Version
Snmptrap
Profile Version
- Location
Snmptrap
Profile Location Args - The location of this object.
- Name string
- Version
Snmptrap
Profile Version Args
- location
Snmptrap
Profile Location - The location of this object.
- name String
- version
Snmptrap
Profile Version
- location
Snmptrap
Profile Location - The location of this object.
- name string
- version
Snmptrap
Profile Version
- location
Snmptrap
Profile Location Args - The location of this object.
- name str
- version
Snmptrap
Profile Version Args
- location Property Map
- The location of this object.
- name String
- version Property Map
Supporting Types
SnmptrapProfileLocation, SnmptrapProfileLocationArgs
- Panorama
Snmptrap
Profile Location Panorama - Located in a panorama.
- Template
Snmptrap
Profile Location Template - A shared resource located within a specific template
- Template
Stack SnmptrapProfile Location Template Stack - Located in a specific template
- Template
Stack SnmptrapVsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- Template
Vsys SnmptrapProfile Location Template Vsys - Located in a specific template, device and vsys.
- Vsys
Snmptrap
Profile Location Vsys - Located in a specific Virtual System
- Panorama
Snmptrap
Profile Location Panorama - Located in a panorama.
- Template
Snmptrap
Profile Location Template - A shared resource located within a specific template
- Template
Stack SnmptrapProfile Location Template Stack - Located in a specific template
- Template
Stack SnmptrapVsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- Template
Vsys SnmptrapProfile Location Template Vsys - Located in a specific template, device and vsys.
- Vsys
Snmptrap
Profile Location Vsys - Located in a specific Virtual System
- panorama object
- Located in a panorama.
- template object
- A shared resource located within a specific template
- template_
stack object - Located in a specific template
- template_
stack_ objectvsys - Located in a specific template, device and vsys.
- template_
vsys object - Located in a specific template, device and vsys.
- vsys object
- Located in a specific Virtual System
- panorama
Snmptrap
Profile Location Panorama - Located in a panorama.
- template
Snmptrap
Profile Location Template - A shared resource located within a specific template
- template
Stack SnmptrapProfile Location Template Stack - Located in a specific template
- template
Stack SnmptrapVsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template
Vsys SnmptrapProfile Location Template Vsys - Located in a specific template, device and vsys.
- vsys
Snmptrap
Profile Location Vsys - Located in a specific Virtual System
- panorama
Snmptrap
Profile Location Panorama - Located in a panorama.
- template
Snmptrap
Profile Location Template - A shared resource located within a specific template
- template
Stack SnmptrapProfile Location Template Stack - Located in a specific template
- template
Stack SnmptrapVsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template
Vsys SnmptrapProfile Location Template Vsys - Located in a specific template, device and vsys.
- vsys
Snmptrap
Profile Location Vsys - Located in a specific Virtual System
- panorama
Snmptrap
Profile Location Panorama - Located in a panorama.
- template
Snmptrap
Profile Location Template - A shared resource located within a specific template
- template_
stack SnmptrapProfile Location Template Stack - Located in a specific template
- template_
stack_ Snmptrapvsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template_
vsys SnmptrapProfile Location Template Vsys - Located in a specific template, device and vsys.
- vsys
Snmptrap
Profile Location Vsys - Located in a specific Virtual System
- panorama Property Map
- Located in a panorama.
- template Property Map
- A shared resource located within a specific template
- template
Stack Property Map - Located in a specific template
- template
Stack Property MapVsys - Located in a specific template, device and vsys.
- template
Vsys Property Map - Located in a specific template, device and vsys.
- vsys Property Map
- Located in a specific Virtual System
SnmptrapProfileLocationTemplate, SnmptrapProfileLocationTemplateArgs
- Name string
- Specific Panorama template
- Panorama
Device string - Specific Panorama device
- Name string
- Specific Panorama template
- Panorama
Device string - Specific Panorama device
- name string
- Specific Panorama template
- panorama_
device string - Specific Panorama device
- name String
- Specific Panorama template
- panorama
Device String - Specific Panorama device
- name string
- Specific Panorama template
- panorama
Device string - Specific Panorama device
- name str
- Specific Panorama template
- panorama_
device str - Specific Panorama device
- name String
- Specific Panorama template
- panorama
Device String - Specific Panorama device
SnmptrapProfileLocationTemplateStack, SnmptrapProfileLocationTemplateStackArgs
- Name string
- The template stack
- Panorama
Device string - Specific Panorama device
- Name string
- The template stack
- Panorama
Device string - Specific Panorama device
- name string
- The template stack
- panorama_
device string - Specific Panorama device
- name String
- The template stack
- panorama
Device String - Specific Panorama device
- name string
- The template stack
- panorama
Device string - Specific Panorama device
- name str
- The template stack
- panorama_
device str - Specific Panorama device
- name String
- The template stack
- panorama
Device String - Specific Panorama device
SnmptrapProfileLocationTemplateStackVsys, SnmptrapProfileLocationTemplateStackVsysArgs
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template
Stack string - The template stack
- Vsys string
- The vsys.
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template
Stack string - The template stack
- Vsys string
- The vsys.
- ngfw_
device string - The NGFW device
- panorama_
device string - Specific Panorama device
- template_
stack string - The template stack
- vsys string
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template
Stack String - The template stack
- vsys String
- The vsys.
- ngfw
Device string - The NGFW device
- panorama
Device string - Specific Panorama device
- template
Stack string - The template stack
- vsys string
- The vsys.
- ngfw_
device str - The NGFW device
- panorama_
device str - Specific Panorama device
- template_
stack str - The template stack
- vsys str
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template
Stack String - The template stack
- vsys String
- The vsys.
SnmptrapProfileLocationTemplateVsys, SnmptrapProfileLocationTemplateVsysArgs
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template string
- Specific Panorama template
- Vsys string
- The vsys.
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template string
- Specific Panorama template
- Vsys string
- The vsys.
- ngfw_
device string - The NGFW device
- panorama_
device string - Specific Panorama device
- template string
- Specific Panorama template
- vsys string
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template String
- Specific Panorama template
- vsys String
- The vsys.
- ngfw
Device string - The NGFW device
- panorama
Device string - Specific Panorama device
- template string
- Specific Panorama template
- vsys string
- The vsys.
- ngfw_
device str - The NGFW device
- panorama_
device str - Specific Panorama device
- template str
- Specific Panorama template
- vsys str
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template String
- Specific Panorama template
- vsys String
- The vsys.
SnmptrapProfileLocationVsys, SnmptrapProfileLocationVsysArgs
- Name string
- The Virtual System name
- Ngfw
Device string - The NGFW device name
- Name string
- The Virtual System name
- Ngfw
Device string - The NGFW device name
- name string
- The Virtual System name
- ngfw_
device string - The NGFW device name
- name String
- The Virtual System name
- ngfw
Device String - The NGFW device name
- name string
- The Virtual System name
- ngfw
Device string - The NGFW device name
- name str
- The Virtual System name
- ngfw_
device str - The NGFW device name
- name String
- The Virtual System name
- ngfw
Device String - The NGFW device name
SnmptrapProfileVersion, SnmptrapProfileVersionArgs
SnmptrapProfileVersionV2c, SnmptrapProfileVersionV2cArgs
- Servers
List<Snmptrap
Profile Version V2c Server> - List of SNMPv2c trap receivers
- Servers
[]Snmptrap
Profile Version V2c Server - List of SNMPv2c trap receivers
- servers list(object)
- List of SNMPv2c trap receivers
- servers
List<Snmptrap
Profile Version V2c Server> - List of SNMPv2c trap receivers
- servers
Snmptrap
Profile Version V2c Server[] - List of SNMPv2c trap receivers
- servers
Sequence[Snmptrap
Profile Version V2c Server] - List of SNMPv2c trap receivers
- servers List<Property Map>
- List of SNMPv2c trap receivers
SnmptrapProfileVersionV2cServer, SnmptrapProfileVersionV2cServerArgs
SnmptrapProfileVersionV3, SnmptrapProfileVersionV3Args
- Servers
List<Snmptrap
Profile Version V3Server> - List of SNMPv3 trap receivers
- Servers
[]Snmptrap
Profile Version V3Server - List of SNMPv3 trap receivers
- servers list(object)
- List of SNMPv3 trap receivers
- servers
List<Snmptrap
Profile Version V3Server> - List of SNMPv3 trap receivers
- servers
Snmptrap
Profile Version V3Server[] - List of SNMPv3 trap receivers
- servers
Sequence[Snmptrap
Profile Version V3Server] - List of SNMPv3 trap receivers
- servers List<Property Map>
- List of SNMPv3 trap receivers
SnmptrapProfileVersionV3Server, SnmptrapProfileVersionV3ServerArgs
- Name string
- Authentication
Password string - SNMPv3 authentication password
- Authentication
Protocol string - Authentication protocol
- Engine
Id string - SNMP engine ID (hex string, e.g. 0x80...)
- Manager string
- IP address or FQDN of SNMP manager
- Privacy
Password string - SNMPv3 privacy password
- Privacy
Protocol string - Privacy protocol
- User string
- SNMPv3 username
- Name string
- Authentication
Password string - SNMPv3 authentication password
- Authentication
Protocol string - Authentication protocol
- Engine
Id string - SNMP engine ID (hex string, e.g. 0x80...)
- Manager string
- IP address or FQDN of SNMP manager
- Privacy
Password string - SNMPv3 privacy password
- Privacy
Protocol string - Privacy protocol
- User string
- SNMPv3 username
- name string
- authentication_
password string - SNMPv3 authentication password
- authentication_
protocol string - Authentication protocol
- engine_
id string - SNMP engine ID (hex string, e.g. 0x80...)
- manager string
- IP address or FQDN of SNMP manager
- privacy_
password string - SNMPv3 privacy password
- privacy_
protocol string - Privacy protocol
- user string
- SNMPv3 username
- name String
- authentication
Password String - SNMPv3 authentication password
- authentication
Protocol String - Authentication protocol
- engine
Id String - SNMP engine ID (hex string, e.g. 0x80...)
- manager String
- IP address or FQDN of SNMP manager
- privacy
Password String - SNMPv3 privacy password
- privacy
Protocol String - Privacy protocol
- user String
- SNMPv3 username
- name string
- authentication
Password string - SNMPv3 authentication password
- authentication
Protocol string - Authentication protocol
- engine
Id string - SNMP engine ID (hex string, e.g. 0x80...)
- manager string
- IP address or FQDN of SNMP manager
- privacy
Password string - SNMPv3 privacy password
- privacy
Protocol string - Privacy protocol
- user string
- SNMPv3 username
- name str
- authentication_
password str - SNMPv3 authentication password
- authentication_
protocol str - Authentication protocol
- engine_
id str - SNMP engine ID (hex string, e.g. 0x80...)
- manager str
- IP address or FQDN of SNMP manager
- privacy_
password str - SNMPv3 privacy password
- privacy_
protocol str - Privacy protocol
- user str
- SNMPv3 username
- name String
- authentication
Password String - SNMPv3 authentication password
- authentication
Protocol String - Authentication protocol
- engine
Id String - SNMP engine ID (hex string, e.g. 0x80...)
- manager String
- IP address or FQDN of SNMP manager
- privacy
Password String - SNMPv3 privacy password
- privacy
Protocol String - Privacy protocol
- user String
- SNMPv3 username
Package Details
- Repository
- panos paloaltonetworks/terraform-provider-panos
- License
- Notes
- This Pulumi package is based on the
panosTerraform Provider.
published on Wednesday, Jun 17, 2026 by paloaltonetworks