1. Packages
  2. Packages
  3. Panos Provider
  4. API Docs
  5. SnmptrapProfile
Viewing docs for panos 2.0.12
published on Wednesday, Jun 17, 2026 by paloaltonetworks
Viewing docs for panos 2.0.12
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 object
    The location of this object.
    name string
    version object
    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) -> SnmptrapProfile
    func 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.
    The following state arguments are supported:
    location object
    The location of this object.
    name string
    version object
    location Property Map
    The location of this object.
    name String
    version Property Map

    Supporting Types

    SnmptrapProfileLocation, SnmptrapProfileLocationArgs

    Panorama SnmptrapProfileLocationPanorama
    Located in a panorama.
    Template SnmptrapProfileLocationTemplate
    A shared resource located within a specific template
    TemplateStack SnmptrapProfileLocationTemplateStack
    Located in a specific template
    TemplateStackVsys SnmptrapProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    TemplateVsys SnmptrapProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    Vsys SnmptrapProfileLocationVsys
    Located in a specific Virtual System
    Panorama SnmptrapProfileLocationPanorama
    Located in a panorama.
    Template SnmptrapProfileLocationTemplate
    A shared resource located within a specific template
    TemplateStack SnmptrapProfileLocationTemplateStack
    Located in a specific template
    TemplateStackVsys SnmptrapProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    TemplateVsys SnmptrapProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    Vsys SnmptrapProfileLocationVsys
    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_vsys object
    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 SnmptrapProfileLocationPanorama
    Located in a panorama.
    template SnmptrapProfileLocationTemplate
    A shared resource located within a specific template
    templateStack SnmptrapProfileLocationTemplateStack
    Located in a specific template
    templateStackVsys SnmptrapProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    templateVsys SnmptrapProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    vsys SnmptrapProfileLocationVsys
    Located in a specific Virtual System
    panorama SnmptrapProfileLocationPanorama
    Located in a panorama.
    template SnmptrapProfileLocationTemplate
    A shared resource located within a specific template
    templateStack SnmptrapProfileLocationTemplateStack
    Located in a specific template
    templateStackVsys SnmptrapProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    templateVsys SnmptrapProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    vsys SnmptrapProfileLocationVsys
    Located in a specific Virtual System
    panorama SnmptrapProfileLocationPanorama
    Located in a panorama.
    template SnmptrapProfileLocationTemplate
    A shared resource located within a specific template
    template_stack SnmptrapProfileLocationTemplateStack
    Located in a specific template
    template_stack_vsys SnmptrapProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    template_vsys SnmptrapProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    vsys SnmptrapProfileLocationVsys
    Located in a specific Virtual System
    panorama Property Map
    Located in a panorama.
    template Property Map
    A shared resource located within a specific template
    templateStack Property Map
    Located in a specific template
    templateStackVsys Property Map
    Located in a specific template, device and vsys.
    templateVsys 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
    PanoramaDevice string
    Specific Panorama device
    Name string
    Specific Panorama template
    PanoramaDevice string
    Specific Panorama device
    name string
    Specific Panorama template
    panorama_device string
    Specific Panorama device
    name String
    Specific Panorama template
    panoramaDevice String
    Specific Panorama device
    name string
    Specific Panorama template
    panoramaDevice string
    Specific Panorama device
    name str
    Specific Panorama template
    panorama_device str
    Specific Panorama device
    name String
    Specific Panorama template
    panoramaDevice String
    Specific Panorama device

    SnmptrapProfileLocationTemplateStack, SnmptrapProfileLocationTemplateStackArgs

    Name string
    The template stack
    PanoramaDevice string
    Specific Panorama device
    Name string
    The template stack
    PanoramaDevice string
    Specific Panorama device
    name string
    The template stack
    panorama_device string
    Specific Panorama device
    name String
    The template stack
    panoramaDevice String
    Specific Panorama device
    name string
    The template stack
    panoramaDevice string
    Specific Panorama device
    name str
    The template stack
    panorama_device str
    Specific Panorama device
    name String
    The template stack
    panoramaDevice String
    Specific Panorama device

    SnmptrapProfileLocationTemplateStackVsys, SnmptrapProfileLocationTemplateStackVsysArgs

    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    TemplateStack string
    The template stack
    Vsys string
    The vsys.
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    TemplateStack 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.
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    templateStack String
    The template stack
    vsys String
    The vsys.
    ngfwDevice string
    The NGFW device
    panoramaDevice string
    Specific Panorama device
    templateStack 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.
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    templateStack String
    The template stack
    vsys String
    The vsys.

    SnmptrapProfileLocationTemplateVsys, SnmptrapProfileLocationTemplateVsysArgs

    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    Template string
    Specific Panorama template
    Vsys string
    The vsys.
    NgfwDevice string
    The NGFW device
    PanoramaDevice 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.
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    template String
    Specific Panorama template
    vsys String
    The vsys.
    ngfwDevice string
    The NGFW device
    panoramaDevice 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.
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    template String
    Specific Panorama template
    vsys String
    The vsys.

    SnmptrapProfileLocationVsys, SnmptrapProfileLocationVsysArgs

    Name string
    The Virtual System name
    NgfwDevice string
    The NGFW device name
    Name string
    The Virtual System name
    NgfwDevice string
    The NGFW device name
    name string
    The Virtual System name
    ngfw_device string
    The NGFW device name
    name String
    The Virtual System name
    ngfwDevice String
    The NGFW device name
    name string
    The Virtual System name
    ngfwDevice string
    The NGFW device name
    name str
    The Virtual System name
    ngfw_device str
    The NGFW device name
    name String
    The Virtual System name
    ngfwDevice String
    The NGFW device name

    SnmptrapProfileVersion, SnmptrapProfileVersionArgs

    SnmptrapProfileVersionV2c, SnmptrapProfileVersionV2cArgs

    Servers List<SnmptrapProfileVersionV2cServer>
    List of SNMPv2c trap receivers
    Servers []SnmptrapProfileVersionV2cServer
    List of SNMPv2c trap receivers
    servers list(object)
    List of SNMPv2c trap receivers
    servers List<SnmptrapProfileVersionV2cServer>
    List of SNMPv2c trap receivers
    servers SnmptrapProfileVersionV2cServer[]
    List of SNMPv2c trap receivers
    servers List<Property Map>
    List of SNMPv2c trap receivers

    SnmptrapProfileVersionV2cServer, SnmptrapProfileVersionV2cServerArgs

    Name string
    Community string
    SNMP community string
    Manager string
    IP address or FQDN of SNMP manager
    Name string
    Community string
    SNMP community string
    Manager string
    IP address or FQDN of SNMP manager
    name string
    community string
    SNMP community string
    manager string
    IP address or FQDN of SNMP manager
    name String
    community String
    SNMP community string
    manager String
    IP address or FQDN of SNMP manager
    name string
    community string
    SNMP community string
    manager string
    IP address or FQDN of SNMP manager
    name str
    community str
    SNMP community string
    manager str
    IP address or FQDN of SNMP manager
    name String
    community String
    SNMP community string
    manager String
    IP address or FQDN of SNMP manager

    SnmptrapProfileVersionV3, SnmptrapProfileVersionV3Args

    Servers List<SnmptrapProfileVersionV3Server>
    List of SNMPv3 trap receivers
    Servers []SnmptrapProfileVersionV3Server
    List of SNMPv3 trap receivers
    servers list(object)
    List of SNMPv3 trap receivers
    servers List<SnmptrapProfileVersionV3Server>
    List of SNMPv3 trap receivers
    servers SnmptrapProfileVersionV3Server[]
    List of SNMPv3 trap receivers
    servers List<Property Map>
    List of SNMPv3 trap receivers

    SnmptrapProfileVersionV3Server, SnmptrapProfileVersionV3ServerArgs

    Name string
    AuthenticationPassword string
    SNMPv3 authentication password
    AuthenticationProtocol string
    Authentication protocol
    EngineId string
    SNMP engine ID (hex string, e.g. 0x80...)
    Manager string
    IP address or FQDN of SNMP manager
    PrivacyPassword string
    SNMPv3 privacy password
    PrivacyProtocol string
    Privacy protocol
    User string
    SNMPv3 username
    Name string
    AuthenticationPassword string
    SNMPv3 authentication password
    AuthenticationProtocol string
    Authentication protocol
    EngineId string
    SNMP engine ID (hex string, e.g. 0x80...)
    Manager string
    IP address or FQDN of SNMP manager
    PrivacyPassword string
    SNMPv3 privacy password
    PrivacyProtocol 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
    authenticationPassword String
    SNMPv3 authentication password
    authenticationProtocol String
    Authentication protocol
    engineId String
    SNMP engine ID (hex string, e.g. 0x80...)
    manager String
    IP address or FQDN of SNMP manager
    privacyPassword String
    SNMPv3 privacy password
    privacyProtocol String
    Privacy protocol
    user String
    SNMPv3 username
    name string
    authenticationPassword string
    SNMPv3 authentication password
    authenticationProtocol string
    Authentication protocol
    engineId string
    SNMP engine ID (hex string, e.g. 0x80...)
    manager string
    IP address or FQDN of SNMP manager
    privacyPassword string
    SNMPv3 privacy password
    privacyProtocol 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
    authenticationPassword String
    SNMPv3 authentication password
    authenticationProtocol String
    Authentication protocol
    engineId String
    SNMP engine ID (hex string, e.g. 0x80...)
    manager String
    IP address or FQDN of SNMP manager
    privacyPassword String
    SNMPv3 privacy password
    privacyProtocol String
    Privacy protocol
    user String
    SNMPv3 username

    Package Details

    Repository
    panos paloaltonetworks/terraform-provider-panos
    License
    Notes
    This Pulumi package is based on the panos Terraform Provider.
    Viewing docs for panos 2.0.12
    published on Wednesday, Jun 17, 2026 by paloaltonetworks

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial