published on Tuesday, Apr 28, 2026 by paloaltonetworks
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
Lldp
Profile Location - The location of this object.
- Mode string
- lldp operation mode
- Name string
- Option
Tlvs LldpProfile Option Tlvs - Snmp
Syslog boolNotification
- Location
Lldp
Profile Location Args - The location of this object.
- Mode string
- lldp operation mode
- Name string
- Option
Tlvs LldpProfile Option Tlvs Args - Snmp
Syslog boolNotification
- location
Lldp
Profile Location - The location of this object.
- mode String
- lldp operation mode
- name String
- option
Tlvs LldpProfile Option Tlvs - snmp
Syslog BooleanNotification
- location
Lldp
Profile Location - The location of this object.
- mode string
- lldp operation mode
- name string
- option
Tlvs LldpProfile Option Tlvs - snmp
Syslog booleanNotification
- location
Lldp
Profile Location Args - The location of this object.
- mode str
- lldp operation mode
- name str
- option_
tlvs LldpProfile Option Tlvs Args - snmp_
syslog_ boolnotification
- location Property Map
- The location of this object.
- mode String
- lldp operation mode
- name String
- option
Tlvs Property Map - snmp
Syslog BooleanNotification
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) -> LldpProfilefunc 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.
- Location
Lldp
Profile Location - The location of this object.
- Mode string
- lldp operation mode
- Name string
- Option
Tlvs LldpProfile Option Tlvs - Snmp
Syslog boolNotification
- Location
Lldp
Profile Location Args - The location of this object.
- Mode string
- lldp operation mode
- Name string
- Option
Tlvs LldpProfile Option Tlvs Args - Snmp
Syslog boolNotification
- location
Lldp
Profile Location - The location of this object.
- mode String
- lldp operation mode
- name String
- option
Tlvs LldpProfile Option Tlvs - snmp
Syslog BooleanNotification
- location
Lldp
Profile Location - The location of this object.
- mode string
- lldp operation mode
- name string
- option
Tlvs LldpProfile Option Tlvs - snmp
Syslog booleanNotification
- location
Lldp
Profile Location Args - The location of this object.
- mode str
- lldp operation mode
- name str
- option_
tlvs LldpProfile Option Tlvs Args - snmp_
syslog_ boolnotification
- location Property Map
- The location of this object.
- mode String
- lldp operation mode
- name String
- option
Tlvs Property Map - snmp
Syslog BooleanNotification
Supporting Types
LldpProfileLocation, LldpProfileLocationArgs
- Ngfw
Lldp
Profile Location Ngfw - Located in a specific NGFW device
- Template
Lldp
Profile Location Template - Located in a specific template
- Template
Stack LldpProfile Location Template Stack - Located in a specific template stack
- Ngfw
Lldp
Profile Location Ngfw - Located in a specific NGFW device
- Template
Lldp
Profile Location Template - Located in a specific template
- Template
Stack LldpProfile Location Template Stack - Located in a specific template stack
- ngfw
Lldp
Profile Location Ngfw - Located in a specific NGFW device
- template
Lldp
Profile Location Template - Located in a specific template
- template
Stack LldpProfile Location Template Stack - Located in a specific template stack
- ngfw
Lldp
Profile Location Ngfw - Located in a specific NGFW device
- template
Lldp
Profile Location Template - Located in a specific template
- template
Stack LldpProfile Location Template Stack - Located in a specific template stack
- ngfw
Lldp
Profile Location Ngfw - Located in a specific NGFW device
- template
Lldp
Profile Location Template - Located in a specific template
- template_
stack LldpProfile 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
LldpProfileLocationNgfw, LldpProfileLocationNgfwArgs
- 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
LldpProfileLocationTemplate, LldpProfileLocationTemplateArgs
- 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
LldpProfileLocationTemplateStack, LldpProfileLocationTemplateStackArgs
- 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
LldpProfileOptionTlvs, LldpProfileOptionTlvsArgs
- management
Address LldpProfile Option Tlvs Management Address - port
Description Boolean - system
Capabilities Boolean - system
Description Boolean - system
Name Boolean
- management
Address LldpProfile Option Tlvs Management Address - port
Description boolean - system
Capabilities boolean - system
Description boolean - system
Name boolean
- management
Address Property Map - port
Description Boolean - system
Capabilities Boolean - system
Description Boolean - system
Name Boolean
LldpProfileOptionTlvsManagementAddress, LldpProfileOptionTlvsManagementAddressArgs
- enabled Boolean
- iplists List<Property Map>
LldpProfileOptionTlvsManagementAddressIplist, LldpProfileOptionTlvsManagementAddressIplistArgs
- 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
panosTerraform Provider.
published on Tuesday, Apr 28, 2026 by paloaltonetworks
