1. Packages
  2. Packages
  3. Panos Provider
  4. API Docs
  5. LldpProfile
Viewing docs for panos 2.0.11
published on Tuesday, Apr 28, 2026 by paloaltonetworks
Viewing docs for panos 2.0.11
published on Tuesday, Apr 28, 2026 by paloaltonetworks

    Create LldpProfile Resource

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

    Constructor syntax

    new LldpProfile(name: string, args: LldpProfileArgs, opts?: CustomResourceOptions);
    @overload
    def LldpProfile(resource_name: str,
                    args: LldpProfileArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def LldpProfile(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    location: Optional[LldpProfileLocationArgs] = None,
                    mode: Optional[str] = None,
                    name: Optional[str] = None,
                    option_tlvs: Optional[LldpProfileOptionTlvsArgs] = None,
                    snmp_syslog_notification: Optional[bool] = None)
    func NewLldpProfile(ctx *Context, name string, args LldpProfileArgs, opts ...ResourceOption) (*LldpProfile, error)
    public LldpProfile(string name, LldpProfileArgs args, CustomResourceOptions? opts = null)
    public LldpProfile(String name, LldpProfileArgs args)
    public LldpProfile(String name, LldpProfileArgs args, CustomResourceOptions options)
    
    type: panos:LldpProfile
    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 LldpProfileArgs
    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 LldpProfileArgs
    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 LldpProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LldpProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LldpProfileArgs
    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 lldpProfileResource = new Panos.LldpProfile("lldpProfileResource", new()
    {
        Location = new Panos.Inputs.LldpProfileLocationArgs
        {
            Ngfw = new Panos.Inputs.LldpProfileLocationNgfwArgs
            {
                NgfwDevice = "string",
            },
            Template = new Panos.Inputs.LldpProfileLocationTemplateArgs
            {
                Name = "string",
                NgfwDevice = "string",
                PanoramaDevice = "string",
            },
            TemplateStack = new Panos.Inputs.LldpProfileLocationTemplateStackArgs
            {
                Name = "string",
                NgfwDevice = "string",
                PanoramaDevice = "string",
            },
        },
        Mode = "string",
        Name = "string",
        OptionTlvs = new Panos.Inputs.LldpProfileOptionTlvsArgs
        {
            ManagementAddress = new Panos.Inputs.LldpProfileOptionTlvsManagementAddressArgs
            {
                Enabled = false,
                Iplists = new[]
                {
                    new Panos.Inputs.LldpProfileOptionTlvsManagementAddressIplistArgs
                    {
                        Name = "string",
                        Interface = "string",
                        Ipv4 = "string",
                        Ipv6 = "string",
                    },
                },
            },
            PortDescription = false,
            SystemCapabilities = false,
            SystemDescription = false,
            SystemName = false,
        },
        SnmpSyslogNotification = false,
    });
    
    example, err := panos.NewLldpProfile(ctx, "lldpProfileResource", &panos.LldpProfileArgs{
    	Location: &panos.LldpProfileLocationArgs{
    		Ngfw: &panos.LldpProfileLocationNgfwArgs{
    			NgfwDevice: pulumi.String("string"),
    		},
    		Template: &panos.LldpProfileLocationTemplateArgs{
    			Name:           pulumi.String("string"),
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    		TemplateStack: &panos.LldpProfileLocationTemplateStackArgs{
    			Name:           pulumi.String("string"),
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    	},
    	Mode: pulumi.String("string"),
    	Name: pulumi.String("string"),
    	OptionTlvs: &panos.LldpProfileOptionTlvsArgs{
    		ManagementAddress: &panos.LldpProfileOptionTlvsManagementAddressArgs{
    			Enabled: pulumi.Bool(false),
    			Iplists: panos.LldpProfileOptionTlvsManagementAddressIplistArray{
    				&panos.LldpProfileOptionTlvsManagementAddressIplistArgs{
    					Name:      pulumi.String("string"),
    					Interface: pulumi.String("string"),
    					Ipv4:      pulumi.String("string"),
    					Ipv6:      pulumi.String("string"),
    				},
    			},
    		},
    		PortDescription:    pulumi.Bool(false),
    		SystemCapabilities: pulumi.Bool(false),
    		SystemDescription:  pulumi.Bool(false),
    		SystemName:         pulumi.Bool(false),
    	},
    	SnmpSyslogNotification: pulumi.Bool(false),
    })
    
    var lldpProfileResource = new LldpProfile("lldpProfileResource", LldpProfileArgs.builder()
        .location(LldpProfileLocationArgs.builder()
            .ngfw(LldpProfileLocationNgfwArgs.builder()
                .ngfwDevice("string")
                .build())
            .template(LldpProfileLocationTemplateArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .panoramaDevice("string")
                .build())
            .templateStack(LldpProfileLocationTemplateStackArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .panoramaDevice("string")
                .build())
            .build())
        .mode("string")
        .name("string")
        .optionTlvs(LldpProfileOptionTlvsArgs.builder()
            .managementAddress(LldpProfileOptionTlvsManagementAddressArgs.builder()
                .enabled(false)
                .iplists(LldpProfileOptionTlvsManagementAddressIplistArgs.builder()
                    .name("string")
                    .interface_("string")
                    .ipv4("string")
                    .ipv6("string")
                    .build())
                .build())
            .portDescription(false)
            .systemCapabilities(false)
            .systemDescription(false)
            .systemName(false)
            .build())
        .snmpSyslogNotification(false)
        .build());
    
    lldp_profile_resource = panos.LldpProfile("lldpProfileResource",
        location={
            "ngfw": {
                "ngfw_device": "string",
            },
            "template": {
                "name": "string",
                "ngfw_device": "string",
                "panorama_device": "string",
            },
            "template_stack": {
                "name": "string",
                "ngfw_device": "string",
                "panorama_device": "string",
            },
        },
        mode="string",
        name="string",
        option_tlvs={
            "management_address": {
                "enabled": False,
                "iplists": [{
                    "name": "string",
                    "interface": "string",
                    "ipv4": "string",
                    "ipv6": "string",
                }],
            },
            "port_description": False,
            "system_capabilities": False,
            "system_description": False,
            "system_name": False,
        },
        snmp_syslog_notification=False)
    
    const lldpProfileResource = new panos.LldpProfile("lldpProfileResource", {
        location: {
            ngfw: {
                ngfwDevice: "string",
            },
            template: {
                name: "string",
                ngfwDevice: "string",
                panoramaDevice: "string",
            },
            templateStack: {
                name: "string",
                ngfwDevice: "string",
                panoramaDevice: "string",
            },
        },
        mode: "string",
        name: "string",
        optionTlvs: {
            managementAddress: {
                enabled: false,
                iplists: [{
                    name: "string",
                    "interface": "string",
                    ipv4: "string",
                    ipv6: "string",
                }],
            },
            portDescription: false,
            systemCapabilities: false,
            systemDescription: false,
            systemName: false,
        },
        snmpSyslogNotification: false,
    });
    
    type: panos:LldpProfile
    properties:
        location:
            ngfw:
                ngfwDevice: string
            template:
                name: string
                ngfwDevice: string
                panoramaDevice: string
            templateStack:
                name: string
                ngfwDevice: string
                panoramaDevice: string
        mode: string
        name: string
        optionTlvs:
            managementAddress:
                enabled: false
                iplists:
                    - interface: string
                      ipv4: string
                      ipv6: string
                      name: string
            portDescription: false
            systemCapabilities: false
            systemDescription: false
            systemName: false
        snmpSyslogNotification: false
    

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

    Location LldpProfileLocation
    The location of this object.
    Mode string
    lldp operation mode
    Name string
    OptionTlvs LldpProfileOptionTlvs
    SnmpSyslogNotification bool
    Location LldpProfileLocationArgs
    The location of this object.
    Mode string
    lldp operation mode
    Name string
    OptionTlvs LldpProfileOptionTlvsArgs
    SnmpSyslogNotification bool
    location LldpProfileLocation
    The location of this object.
    mode String
    lldp operation mode
    name String
    optionTlvs LldpProfileOptionTlvs
    snmpSyslogNotification Boolean
    location LldpProfileLocation
    The location of this object.
    mode string
    lldp operation mode
    name string
    optionTlvs LldpProfileOptionTlvs
    snmpSyslogNotification boolean
    location Property Map
    The location of this object.
    mode String
    lldp operation mode
    name String
    optionTlvs Property Map
    snmpSyslogNotification Boolean

    Outputs

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

    Get an existing LldpProfile 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?: LldpProfileState, opts?: CustomResourceOptions): LldpProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            location: Optional[LldpProfileLocationArgs] = None,
            mode: Optional[str] = None,
            name: Optional[str] = None,
            option_tlvs: Optional[LldpProfileOptionTlvsArgs] = None,
            snmp_syslog_notification: Optional[bool] = None) -> LldpProfile
    func GetLldpProfile(ctx *Context, name string, id IDInput, state *LldpProfileState, opts ...ResourceOption) (*LldpProfile, error)
    public static LldpProfile Get(string name, Input<string> id, LldpProfileState? state, CustomResourceOptions? opts = null)
    public static LldpProfile get(String name, Output<String> id, LldpProfileState state, CustomResourceOptions options)
    resources:  _:    type: panos:LldpProfile    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Location LldpProfileLocation
    The location of this object.
    Mode string
    lldp operation mode
    Name string
    OptionTlvs LldpProfileOptionTlvs
    SnmpSyslogNotification bool
    Location LldpProfileLocationArgs
    The location of this object.
    Mode string
    lldp operation mode
    Name string
    OptionTlvs LldpProfileOptionTlvsArgs
    SnmpSyslogNotification bool
    location LldpProfileLocation
    The location of this object.
    mode String
    lldp operation mode
    name String
    optionTlvs LldpProfileOptionTlvs
    snmpSyslogNotification Boolean
    location LldpProfileLocation
    The location of this object.
    mode string
    lldp operation mode
    name string
    optionTlvs LldpProfileOptionTlvs
    snmpSyslogNotification boolean
    location Property Map
    The location of this object.
    mode String
    lldp operation mode
    name String
    optionTlvs Property Map
    snmpSyslogNotification Boolean

    Supporting Types

    LldpProfileLocation, LldpProfileLocationArgs

    Ngfw LldpProfileLocationNgfw
    Located in a specific NGFW device
    Template LldpProfileLocationTemplate
    Located in a specific template
    TemplateStack LldpProfileLocationTemplateStack
    Located in a specific template stack
    Ngfw LldpProfileLocationNgfw
    Located in a specific NGFW device
    Template LldpProfileLocationTemplate
    Located in a specific template
    TemplateStack LldpProfileLocationTemplateStack
    Located in a specific template stack
    ngfw LldpProfileLocationNgfw
    Located in a specific NGFW device
    template LldpProfileLocationTemplate
    Located in a specific template
    templateStack LldpProfileLocationTemplateStack
    Located in a specific template stack
    ngfw LldpProfileLocationNgfw
    Located in a specific NGFW device
    template LldpProfileLocationTemplate
    Located in a specific template
    templateStack LldpProfileLocationTemplateStack
    Located in a specific template stack
    ngfw LldpProfileLocationNgfw
    Located in a specific NGFW device
    template LldpProfileLocationTemplate
    Located in a specific template
    template_stack LldpProfileLocationTemplateStack
    Located in a specific template stack
    ngfw Property Map
    Located in a specific NGFW device
    template Property Map
    Located in a specific template
    templateStack Property Map
    Located in a specific template stack

    LldpProfileLocationNgfw, LldpProfileLocationNgfwArgs

    NgfwDevice string
    The NGFW device
    NgfwDevice string
    The NGFW device
    ngfwDevice String
    The NGFW device
    ngfwDevice string
    The NGFW device
    ngfw_device str
    The NGFW device
    ngfwDevice String
    The NGFW device

    LldpProfileLocationTemplate, LldpProfileLocationTemplateArgs

    Name string
    Specific Panorama template
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    Name string
    Specific Panorama template
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    name String
    Specific Panorama template
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    name string
    Specific Panorama template
    ngfwDevice string
    The NGFW device
    panoramaDevice string
    Specific Panorama device
    name str
    Specific Panorama template
    ngfw_device str
    The NGFW device
    panorama_device str
    Specific Panorama device
    name String
    Specific Panorama template
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device

    LldpProfileLocationTemplateStack, LldpProfileLocationTemplateStackArgs

    Name string
    Specific Panorama template stack
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    Name string
    Specific Panorama template stack
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    name String
    Specific Panorama template stack
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    name string
    Specific Panorama template stack
    ngfwDevice string
    The NGFW device
    panoramaDevice string
    Specific Panorama device
    name str
    Specific Panorama template stack
    ngfw_device str
    The NGFW device
    panorama_device str
    Specific Panorama device
    name String
    Specific Panorama template stack
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device

    LldpProfileOptionTlvs, LldpProfileOptionTlvsArgs

    LldpProfileOptionTlvsManagementAddress, LldpProfileOptionTlvsManagementAddressArgs

    LldpProfileOptionTlvsManagementAddressIplist, LldpProfileOptionTlvsManagementAddressIplistArgs

    Name string
    Interface string
    interface name
    Ipv4 string
    IPv4 address
    Ipv6 string
    IPv6 address
    Name string
    Interface string
    interface name
    Ipv4 string
    IPv4 address
    Ipv6 string
    IPv6 address
    name String
    interface_ String
    interface name
    ipv4 String
    IPv4 address
    ipv6 String
    IPv6 address
    name string
    interface string
    interface name
    ipv4 string
    IPv4 address
    ipv6 string
    IPv6 address
    name str
    interface str
    interface name
    ipv4 str
    IPv4 address
    ipv6 str
    IPv6 address
    name String
    interface String
    interface name
    ipv4 String
    IPv4 address
    ipv6 String
    IPv6 address

    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.11
    published on Tuesday, Apr 28, 2026 by paloaltonetworks
      Try Pulumi Cloud free. Your team will thank you.