panos.LoopbackInterface
Explore with Pulumi AI
Create LoopbackInterface Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LoopbackInterface(name: string, args: LoopbackInterfaceArgs, opts?: CustomResourceOptions);
@overload
def LoopbackInterface(resource_name: str,
args: LoopbackInterfaceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LoopbackInterface(resource_name: str,
opts: Optional[ResourceOptions] = None,
location: Optional[LoopbackInterfaceLocationArgs] = None,
adjust_tcp_mss: Optional[LoopbackInterfaceAdjustTcpMssArgs] = None,
comment: Optional[str] = None,
interface_management_profile: Optional[str] = None,
ips: Optional[Sequence[LoopbackInterfaceIpArgs]] = None,
ipv6: Optional[LoopbackInterfaceIpv6Args] = None,
mtu: Optional[float] = None,
name: Optional[str] = None,
netflow_profile: Optional[str] = None)
func NewLoopbackInterface(ctx *Context, name string, args LoopbackInterfaceArgs, opts ...ResourceOption) (*LoopbackInterface, error)
public LoopbackInterface(string name, LoopbackInterfaceArgs args, CustomResourceOptions? opts = null)
public LoopbackInterface(String name, LoopbackInterfaceArgs args)
public LoopbackInterface(String name, LoopbackInterfaceArgs args, CustomResourceOptions options)
type: panos:LoopbackInterface
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 LoopbackInterfaceArgs
- 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 LoopbackInterfaceArgs
- 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 LoopbackInterfaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LoopbackInterfaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LoopbackInterfaceArgs
- 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 loopbackInterfaceResource = new Panos.LoopbackInterface("loopbackInterfaceResource", new()
{
Location = new Panos.Inputs.LoopbackInterfaceLocationArgs
{
Ngfw = new Panos.Inputs.LoopbackInterfaceLocationNgfwArgs
{
NgfwDevice = "string",
},
Template = new Panos.Inputs.LoopbackInterfaceLocationTemplateArgs
{
Name = "string",
NgfwDevice = "string",
PanoramaDevice = "string",
},
TemplateStack = new Panos.Inputs.LoopbackInterfaceLocationTemplateStackArgs
{
Name = "string",
NgfwDevice = "string",
PanoramaDevice = "string",
},
},
AdjustTcpMss = new Panos.Inputs.LoopbackInterfaceAdjustTcpMssArgs
{
Enable = false,
Ipv4MssAdjustment = 0,
Ipv6MssAdjustment = 0,
},
Comment = "string",
InterfaceManagementProfile = "string",
Ips = new[]
{
new Panos.Inputs.LoopbackInterfaceIpArgs
{
Name = "string",
},
},
Ipv6 = new Panos.Inputs.LoopbackInterfaceIpv6Args
{
Addresses = new[]
{
new Panos.Inputs.LoopbackInterfaceIpv6AddressArgs
{
Name = "string",
Anycast = null,
EnableOnInterface = false,
Prefix = null,
},
},
Enabled = false,
InterfaceId = "string",
},
Mtu = 0,
Name = "string",
NetflowProfile = "string",
});
example, err := panos.NewLoopbackInterface(ctx, "loopbackInterfaceResource", &panos.LoopbackInterfaceArgs{
Location: &panos.LoopbackInterfaceLocationArgs{
Ngfw: &panos.LoopbackInterfaceLocationNgfwArgs{
NgfwDevice: pulumi.String("string"),
},
Template: &panos.LoopbackInterfaceLocationTemplateArgs{
Name: pulumi.String("string"),
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
TemplateStack: &panos.LoopbackInterfaceLocationTemplateStackArgs{
Name: pulumi.String("string"),
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
},
AdjustTcpMss: &panos.LoopbackInterfaceAdjustTcpMssArgs{
Enable: pulumi.Bool(false),
Ipv4MssAdjustment: pulumi.Float64(0),
Ipv6MssAdjustment: pulumi.Float64(0),
},
Comment: pulumi.String("string"),
InterfaceManagementProfile: pulumi.String("string"),
Ips: panos.LoopbackInterfaceIpArray{
&panos.LoopbackInterfaceIpArgs{
Name: pulumi.String("string"),
},
},
Ipv6: &panos.LoopbackInterfaceIpv6Args{
Addresses: panos.LoopbackInterfaceIpv6AddressArray{
&panos.LoopbackInterfaceIpv6AddressArgs{
Name: pulumi.String("string"),
Anycast: &panos.LoopbackInterfaceIpv6AddressAnycastArgs{},
EnableOnInterface: pulumi.Bool(false),
Prefix: &panos.LoopbackInterfaceIpv6AddressPrefixArgs{},
},
},
Enabled: pulumi.Bool(false),
InterfaceId: pulumi.String("string"),
},
Mtu: pulumi.Float64(0),
Name: pulumi.String("string"),
NetflowProfile: pulumi.String("string"),
})
var loopbackInterfaceResource = new LoopbackInterface("loopbackInterfaceResource", LoopbackInterfaceArgs.builder()
.location(LoopbackInterfaceLocationArgs.builder()
.ngfw(LoopbackInterfaceLocationNgfwArgs.builder()
.ngfwDevice("string")
.build())
.template(LoopbackInterfaceLocationTemplateArgs.builder()
.name("string")
.ngfwDevice("string")
.panoramaDevice("string")
.build())
.templateStack(LoopbackInterfaceLocationTemplateStackArgs.builder()
.name("string")
.ngfwDevice("string")
.panoramaDevice("string")
.build())
.build())
.adjustTcpMss(LoopbackInterfaceAdjustTcpMssArgs.builder()
.enable(false)
.ipv4MssAdjustment(0)
.ipv6MssAdjustment(0)
.build())
.comment("string")
.interfaceManagementProfile("string")
.ips(LoopbackInterfaceIpArgs.builder()
.name("string")
.build())
.ipv6(LoopbackInterfaceIpv6Args.builder()
.addresses(LoopbackInterfaceIpv6AddressArgs.builder()
.name("string")
.anycast()
.enableOnInterface(false)
.prefix()
.build())
.enabled(false)
.interfaceId("string")
.build())
.mtu(0)
.name("string")
.netflowProfile("string")
.build());
loopback_interface_resource = panos.LoopbackInterface("loopbackInterfaceResource",
location={
"ngfw": {
"ngfw_device": "string",
},
"template": {
"name": "string",
"ngfw_device": "string",
"panorama_device": "string",
},
"template_stack": {
"name": "string",
"ngfw_device": "string",
"panorama_device": "string",
},
},
adjust_tcp_mss={
"enable": False,
"ipv4_mss_adjustment": 0,
"ipv6_mss_adjustment": 0,
},
comment="string",
interface_management_profile="string",
ips=[{
"name": "string",
}],
ipv6={
"addresses": [{
"name": "string",
"anycast": {},
"enable_on_interface": False,
"prefix": {},
}],
"enabled": False,
"interface_id": "string",
},
mtu=0,
name="string",
netflow_profile="string")
const loopbackInterfaceResource = new panos.LoopbackInterface("loopbackInterfaceResource", {
location: {
ngfw: {
ngfwDevice: "string",
},
template: {
name: "string",
ngfwDevice: "string",
panoramaDevice: "string",
},
templateStack: {
name: "string",
ngfwDevice: "string",
panoramaDevice: "string",
},
},
adjustTcpMss: {
enable: false,
ipv4MssAdjustment: 0,
ipv6MssAdjustment: 0,
},
comment: "string",
interfaceManagementProfile: "string",
ips: [{
name: "string",
}],
ipv6: {
addresses: [{
name: "string",
anycast: {},
enableOnInterface: false,
prefix: {},
}],
enabled: false,
interfaceId: "string",
},
mtu: 0,
name: "string",
netflowProfile: "string",
});
type: panos:LoopbackInterface
properties:
adjustTcpMss:
enable: false
ipv4MssAdjustment: 0
ipv6MssAdjustment: 0
comment: string
interfaceManagementProfile: string
ips:
- name: string
ipv6:
addresses:
- anycast: {}
enableOnInterface: false
name: string
prefix: {}
enabled: false
interfaceId: string
location:
ngfw:
ngfwDevice: string
template:
name: string
ngfwDevice: string
panoramaDevice: string
templateStack:
name: string
ngfwDevice: string
panoramaDevice: string
mtu: 0
name: string
netflowProfile: string
LoopbackInterface 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 LoopbackInterface resource accepts the following input properties:
- Location
Loopback
Interface Location - The location of this object.
- Adjust
Tcp LoopbackMss Interface Adjust Tcp Mss - Comment string
- Interface
Management stringProfile - Interface management profile
- Ips
List<Loopback
Interface Ip> - Ipv6
Loopback
Interface Ipv6 - Mtu double
- Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
- Name string
- Netflow
Profile string - Netflow Server Profile
- Location
Loopback
Interface Location Args - The location of this object.
- Adjust
Tcp LoopbackMss Interface Adjust Tcp Mss Args - Comment string
- Interface
Management stringProfile - Interface management profile
- Ips
[]Loopback
Interface Ip Args - Ipv6
Loopback
Interface Ipv6Args - Mtu float64
- Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
- Name string
- Netflow
Profile string - Netflow Server Profile
- location
Loopback
Interface Location - The location of this object.
- adjust
Tcp LoopbackMss Interface Adjust Tcp Mss - comment String
- interface
Management StringProfile - Interface management profile
- ips
List<Loopback
Interface Ip> - ipv6
Loopback
Interface Ipv6 - mtu Double
- Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
- name String
- netflow
Profile String - Netflow Server Profile
- location
Loopback
Interface Location - The location of this object.
- adjust
Tcp LoopbackMss Interface Adjust Tcp Mss - comment string
- interface
Management stringProfile - Interface management profile
- ips
Loopback
Interface Ip[] - ipv6
Loopback
Interface Ipv6 - mtu number
- Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
- name string
- netflow
Profile string - Netflow Server Profile
- location
Loopback
Interface Location Args - The location of this object.
- adjust_
tcp_ Loopbackmss Interface Adjust Tcp Mss Args - comment str
- interface_
management_ strprofile - Interface management profile
- ips
Sequence[Loopback
Interface Ip Args] - ipv6
Loopback
Interface Ipv6Args - mtu float
- Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
- name str
- netflow_
profile str - Netflow Server Profile
- location Property Map
- The location of this object.
- adjust
Tcp Property MapMss - comment String
- interface
Management StringProfile - Interface management profile
- ips List<Property Map>
- ipv6 Property Map
- mtu Number
- Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
- name String
- netflow
Profile String - Netflow Server Profile
Outputs
All input properties are implicitly available as output properties. Additionally, the LoopbackInterface 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 LoopbackInterface Resource
Get an existing LoopbackInterface 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?: LoopbackInterfaceState, opts?: CustomResourceOptions): LoopbackInterface
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adjust_tcp_mss: Optional[LoopbackInterfaceAdjustTcpMssArgs] = None,
comment: Optional[str] = None,
interface_management_profile: Optional[str] = None,
ips: Optional[Sequence[LoopbackInterfaceIpArgs]] = None,
ipv6: Optional[LoopbackInterfaceIpv6Args] = None,
location: Optional[LoopbackInterfaceLocationArgs] = None,
mtu: Optional[float] = None,
name: Optional[str] = None,
netflow_profile: Optional[str] = None) -> LoopbackInterface
func GetLoopbackInterface(ctx *Context, name string, id IDInput, state *LoopbackInterfaceState, opts ...ResourceOption) (*LoopbackInterface, error)
public static LoopbackInterface Get(string name, Input<string> id, LoopbackInterfaceState? state, CustomResourceOptions? opts = null)
public static LoopbackInterface get(String name, Output<String> id, LoopbackInterfaceState state, CustomResourceOptions options)
resources: _: type: panos:LoopbackInterface 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.
- Adjust
Tcp LoopbackMss Interface Adjust Tcp Mss - Comment string
- Interface
Management stringProfile - Interface management profile
- Ips
List<Loopback
Interface Ip> - Ipv6
Loopback
Interface Ipv6 - Location
Loopback
Interface Location - The location of this object.
- Mtu double
- Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
- Name string
- Netflow
Profile string - Netflow Server Profile
- Adjust
Tcp LoopbackMss Interface Adjust Tcp Mss Args - Comment string
- Interface
Management stringProfile - Interface management profile
- Ips
[]Loopback
Interface Ip Args - Ipv6
Loopback
Interface Ipv6Args - Location
Loopback
Interface Location Args - The location of this object.
- Mtu float64
- Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
- Name string
- Netflow
Profile string - Netflow Server Profile
- adjust
Tcp LoopbackMss Interface Adjust Tcp Mss - comment String
- interface
Management StringProfile - Interface management profile
- ips
List<Loopback
Interface Ip> - ipv6
Loopback
Interface Ipv6 - location
Loopback
Interface Location - The location of this object.
- mtu Double
- Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
- name String
- netflow
Profile String - Netflow Server Profile
- adjust
Tcp LoopbackMss Interface Adjust Tcp Mss - comment string
- interface
Management stringProfile - Interface management profile
- ips
Loopback
Interface Ip[] - ipv6
Loopback
Interface Ipv6 - location
Loopback
Interface Location - The location of this object.
- mtu number
- Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
- name string
- netflow
Profile string - Netflow Server Profile
- adjust_
tcp_ Loopbackmss Interface Adjust Tcp Mss Args - comment str
- interface_
management_ strprofile - Interface management profile
- ips
Sequence[Loopback
Interface Ip Args] - ipv6
Loopback
Interface Ipv6Args - location
Loopback
Interface Location Args - The location of this object.
- mtu float
- Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
- name str
- netflow_
profile str - Netflow Server Profile
- adjust
Tcp Property MapMss - comment String
- interface
Management StringProfile - Interface management profile
- ips List<Property Map>
- ipv6 Property Map
- location Property Map
- The location of this object.
- mtu Number
- Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
- name String
- netflow
Profile String - Netflow Server Profile
Supporting Types
LoopbackInterfaceAdjustTcpMss, LoopbackInterfaceAdjustTcpMssArgs
- Enable bool
- Set if TCP MSS value should be reduced based on mtu
- Ipv4Mss
Adjustment double - IPv4 MSS adjustment size (in bytes)
- Ipv6Mss
Adjustment double - IPv6 MSS adjustment size (in bytes)
- Enable bool
- Set if TCP MSS value should be reduced based on mtu
- Ipv4Mss
Adjustment float64 - IPv4 MSS adjustment size (in bytes)
- Ipv6Mss
Adjustment float64 - IPv6 MSS adjustment size (in bytes)
- enable Boolean
- Set if TCP MSS value should be reduced based on mtu
- ipv4Mss
Adjustment Double - IPv4 MSS adjustment size (in bytes)
- ipv6Mss
Adjustment Double - IPv6 MSS adjustment size (in bytes)
- enable boolean
- Set if TCP MSS value should be reduced based on mtu
- ipv4Mss
Adjustment number - IPv4 MSS adjustment size (in bytes)
- ipv6Mss
Adjustment number - IPv6 MSS adjustment size (in bytes)
- enable bool
- Set if TCP MSS value should be reduced based on mtu
- ipv4_
mss_ floatadjustment - IPv4 MSS adjustment size (in bytes)
- ipv6_
mss_ floatadjustment - IPv6 MSS adjustment size (in bytes)
- enable Boolean
- Set if TCP MSS value should be reduced based on mtu
- ipv4Mss
Adjustment Number - IPv4 MSS adjustment size (in bytes)
- ipv6Mss
Adjustment Number - IPv6 MSS adjustment size (in bytes)
LoopbackInterfaceIp, LoopbackInterfaceIpArgs
- Name string
- Name string
- name String
- name string
- name str
- name String
LoopbackInterfaceIpv6, LoopbackInterfaceIpv6Args
- Addresses
List<Loopback
Interface Ipv6Address> - Enabled bool
- Enable IPv6 on the interface
- Interface
Id string
- Addresses
[]Loopback
Interface Ipv6Address - Enabled bool
- Enable IPv6 on the interface
- Interface
Id string
- addresses
List<Loopback
Interface Ipv6Address> - enabled Boolean
- Enable IPv6 on the interface
- interface
Id String
- addresses
Loopback
Interface Ipv6Address[] - enabled boolean
- Enable IPv6 on the interface
- interface
Id string
- addresses
Sequence[Loopback
Interface Ipv6Address] - enabled bool
- Enable IPv6 on the interface
- interface_
id str
- addresses List<Property Map>
- enabled Boolean
- Enable IPv6 on the interface
- interface
Id String
LoopbackInterfaceIpv6Address, LoopbackInterfaceIpv6AddressArgs
- Name string
- Anycast
Loopback
Interface Ipv6Address Anycast - Enable
On boolInterface - configure this address on interface
- Prefix
Loopback
Interface Ipv6Address Prefix
- Name string
- Anycast
Loopback
Interface Ipv6Address Anycast - Enable
On boolInterface - configure this address on interface
- Prefix
Loopback
Interface Ipv6Address Prefix
- name String
- anycast
Loopback
Interface Ipv6Address Anycast - enable
On BooleanInterface - configure this address on interface
- prefix
Loopback
Interface Ipv6Address Prefix
- name string
- anycast
Loopback
Interface Ipv6Address Anycast - enable
On booleanInterface - configure this address on interface
- prefix
Loopback
Interface Ipv6Address Prefix
- name str
- anycast
Loopback
Interface Ipv6Address Anycast - enable_
on_ boolinterface - configure this address on interface
- prefix
Loopback
Interface Ipv6Address Prefix
- name String
- anycast Property Map
- enable
On BooleanInterface - configure this address on interface
- prefix Property Map
LoopbackInterfaceLocation, LoopbackInterfaceLocationArgs
- Ngfw
Loopback
Interface Location Ngfw - Located in a specific NGFW device
- Template
Loopback
Interface Location Template - Located in a specific template
- Template
Stack LoopbackInterface Location Template Stack - Located in a specific template stack
- Ngfw
Loopback
Interface Location Ngfw - Located in a specific NGFW device
- Template
Loopback
Interface Location Template - Located in a specific template
- Template
Stack LoopbackInterface Location Template Stack - Located in a specific template stack
- ngfw
Loopback
Interface Location Ngfw - Located in a specific NGFW device
- template
Loopback
Interface Location Template - Located in a specific template
- template
Stack LoopbackInterface Location Template Stack - Located in a specific template stack
- ngfw
Loopback
Interface Location Ngfw - Located in a specific NGFW device
- template
Loopback
Interface Location Template - Located in a specific template
- template
Stack LoopbackInterface Location Template Stack - Located in a specific template stack
- ngfw
Loopback
Interface Location Ngfw - Located in a specific NGFW device
- template
Loopback
Interface Location Template - Located in a specific template
- template_
stack LoopbackInterface 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
LoopbackInterfaceLocationNgfw, LoopbackInterfaceLocationNgfwArgs
- 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
LoopbackInterfaceLocationTemplate, LoopbackInterfaceLocationTemplateArgs
- 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
LoopbackInterfaceLocationTemplateStack, LoopbackInterfaceLocationTemplateStackArgs
- Name string
- Specific Panorama template stack
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Name string
- Specific Panorama template stack
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- name String
- Specific Panorama template stack
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- name string
- Specific Panorama template stack
- ngfw
Device string - The NGFW device
- panorama
Device string - Specific Panorama device
- name str
- Specific Panorama template stack
- ngfw_
device str - The NGFW device
- panorama_
device str - Specific Panorama device
- name String
- Specific Panorama template stack
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
Package Details
- Repository
- panos paloaltonetworks/terraform-provider-panos
- License
- Notes
- This Pulumi package is based on the
panos
Terraform Provider.