published on Thursday, Apr 9, 2026 by paloaltonetworks
published on Thursday, Apr 9, 2026 by paloaltonetworks
Create DnsProxy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DnsProxy(name: string, args: DnsProxyArgs, opts?: CustomResourceOptions);@overload
def DnsProxy(resource_name: str,
args: DnsProxyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DnsProxy(resource_name: str,
opts: Optional[ResourceOptions] = None,
location: Optional[DnsProxyLocationArgs] = None,
cache: Optional[DnsProxyCacheArgs] = None,
default: Optional[DnsProxyDefaultArgs] = None,
domain_servers: Optional[Sequence[DnsProxyDomainServerArgs]] = None,
enabled: Optional[bool] = None,
interfaces: Optional[Sequence[str]] = None,
name: Optional[str] = None,
static_entries: Optional[Sequence[DnsProxyStaticEntryArgs]] = None,
tcp_queries: Optional[DnsProxyTcpQueriesArgs] = None,
udp_queries: Optional[DnsProxyUdpQueriesArgs] = None)func NewDnsProxy(ctx *Context, name string, args DnsProxyArgs, opts ...ResourceOption) (*DnsProxy, error)public DnsProxy(string name, DnsProxyArgs args, CustomResourceOptions? opts = null)
public DnsProxy(String name, DnsProxyArgs args)
public DnsProxy(String name, DnsProxyArgs args, CustomResourceOptions options)
type: panos:DnsProxy
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 DnsProxyArgs
- 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 DnsProxyArgs
- 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 DnsProxyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DnsProxyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DnsProxyArgs
- 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 dnsProxyResource = new Panos.Index.DnsProxy("dnsProxyResource", new()
{
Location = new Panos.Inputs.DnsProxyLocationArgs
{
Template = new Panos.Inputs.DnsProxyLocationTemplateArgs
{
Name = "string",
NgfwDevice = "string",
PanoramaDevice = "string",
},
TemplateStack = new Panos.Inputs.DnsProxyLocationTemplateStackArgs
{
Name = "string",
NgfwDevice = "string",
PanoramaDevice = "string",
},
},
Cache = new Panos.Inputs.DnsProxyCacheArgs
{
CacheEdns = false,
Enabled = false,
MaxTtl = new Panos.Inputs.DnsProxyCacheMaxTtlArgs
{
Enabled = false,
TimeToLive = 0,
},
},
Default = new Panos.Inputs.DnsProxyDefaultArgs
{
Inheritance = new Panos.Inputs.DnsProxyDefaultInheritanceArgs
{
Source = "string",
},
Primary = "string",
Secondary = "string",
},
DomainServers = new[]
{
new Panos.Inputs.DnsProxyDomainServerArgs
{
Name = "string",
Cacheable = false,
DomainNames = new[]
{
"string",
},
Primary = "string",
Secondary = "string",
},
},
Enabled = false,
Interfaces = new[]
{
"string",
},
Name = "string",
StaticEntries = new[]
{
new Panos.Inputs.DnsProxyStaticEntryArgs
{
Name = "string",
Addresses = new[]
{
"string",
},
Domain = "string",
},
},
TcpQueries = new Panos.Inputs.DnsProxyTcpQueriesArgs
{
Enabled = false,
MaxPendingRequests = 0,
},
UdpQueries = new Panos.Inputs.DnsProxyUdpQueriesArgs
{
Retries = new Panos.Inputs.DnsProxyUdpQueriesRetriesArgs
{
Attempts = 0,
Interval = 0,
},
},
});
example, err := panos.NewDnsProxy(ctx, "dnsProxyResource", &panos.DnsProxyArgs{
Location: &panos.DnsProxyLocationArgs{
Template: &panos.DnsProxyLocationTemplateArgs{
Name: pulumi.String("string"),
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
TemplateStack: &panos.DnsProxyLocationTemplateStackArgs{
Name: pulumi.String("string"),
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
},
Cache: &panos.DnsProxyCacheArgs{
CacheEdns: pulumi.Bool(false),
Enabled: pulumi.Bool(false),
MaxTtl: &panos.DnsProxyCacheMaxTtlArgs{
Enabled: pulumi.Bool(false),
TimeToLive: pulumi.Float64(0),
},
},
Default: &panos.DnsProxyDefaultArgs{
Inheritance: &panos.DnsProxyDefaultInheritanceArgs{
Source: pulumi.String("string"),
},
Primary: pulumi.String("string"),
Secondary: pulumi.String("string"),
},
DomainServers: panos.DnsProxyDomainServerArray{
&panos.DnsProxyDomainServerArgs{
Name: pulumi.String("string"),
Cacheable: pulumi.Bool(false),
DomainNames: pulumi.StringArray{
pulumi.String("string"),
},
Primary: pulumi.String("string"),
Secondary: pulumi.String("string"),
},
},
Enabled: pulumi.Bool(false),
Interfaces: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
StaticEntries: panos.DnsProxyStaticEntryArray{
&panos.DnsProxyStaticEntryArgs{
Name: pulumi.String("string"),
Addresses: pulumi.StringArray{
pulumi.String("string"),
},
Domain: pulumi.String("string"),
},
},
TcpQueries: &panos.DnsProxyTcpQueriesArgs{
Enabled: pulumi.Bool(false),
MaxPendingRequests: pulumi.Float64(0),
},
UdpQueries: &panos.DnsProxyUdpQueriesArgs{
Retries: &panos.DnsProxyUdpQueriesRetriesArgs{
Attempts: pulumi.Float64(0),
Interval: pulumi.Float64(0),
},
},
})
var dnsProxyResource = new DnsProxy("dnsProxyResource", DnsProxyArgs.builder()
.location(DnsProxyLocationArgs.builder()
.template(DnsProxyLocationTemplateArgs.builder()
.name("string")
.ngfwDevice("string")
.panoramaDevice("string")
.build())
.templateStack(DnsProxyLocationTemplateStackArgs.builder()
.name("string")
.ngfwDevice("string")
.panoramaDevice("string")
.build())
.build())
.cache(DnsProxyCacheArgs.builder()
.cacheEdns(false)
.enabled(false)
.maxTtl(DnsProxyCacheMaxTtlArgs.builder()
.enabled(false)
.timeToLive(0.0)
.build())
.build())
.default_(DnsProxyDefaultArgs.builder()
.inheritance(DnsProxyDefaultInheritanceArgs.builder()
.source("string")
.build())
.primary("string")
.secondary("string")
.build())
.domainServers(DnsProxyDomainServerArgs.builder()
.name("string")
.cacheable(false)
.domainNames("string")
.primary("string")
.secondary("string")
.build())
.enabled(false)
.interfaces("string")
.name("string")
.staticEntries(DnsProxyStaticEntryArgs.builder()
.name("string")
.addresses("string")
.domain("string")
.build())
.tcpQueries(DnsProxyTcpQueriesArgs.builder()
.enabled(false)
.maxPendingRequests(0.0)
.build())
.udpQueries(DnsProxyUdpQueriesArgs.builder()
.retries(DnsProxyUdpQueriesRetriesArgs.builder()
.attempts(0.0)
.interval(0.0)
.build())
.build())
.build());
dns_proxy_resource = panos.DnsProxy("dnsProxyResource",
location={
"template": {
"name": "string",
"ngfw_device": "string",
"panorama_device": "string",
},
"template_stack": {
"name": "string",
"ngfw_device": "string",
"panorama_device": "string",
},
},
cache={
"cache_edns": False,
"enabled": False,
"max_ttl": {
"enabled": False,
"time_to_live": 0,
},
},
default={
"inheritance": {
"source": "string",
},
"primary": "string",
"secondary": "string",
},
domain_servers=[{
"name": "string",
"cacheable": False,
"domain_names": ["string"],
"primary": "string",
"secondary": "string",
}],
enabled=False,
interfaces=["string"],
name="string",
static_entries=[{
"name": "string",
"addresses": ["string"],
"domain": "string",
}],
tcp_queries={
"enabled": False,
"max_pending_requests": 0,
},
udp_queries={
"retries": {
"attempts": 0,
"interval": 0,
},
})
const dnsProxyResource = new panos.DnsProxy("dnsProxyResource", {
location: {
template: {
name: "string",
ngfwDevice: "string",
panoramaDevice: "string",
},
templateStack: {
name: "string",
ngfwDevice: "string",
panoramaDevice: "string",
},
},
cache: {
cacheEdns: false,
enabled: false,
maxTtl: {
enabled: false,
timeToLive: 0,
},
},
"default": {
inheritance: {
source: "string",
},
primary: "string",
secondary: "string",
},
domainServers: [{
name: "string",
cacheable: false,
domainNames: ["string"],
primary: "string",
secondary: "string",
}],
enabled: false,
interfaces: ["string"],
name: "string",
staticEntries: [{
name: "string",
addresses: ["string"],
domain: "string",
}],
tcpQueries: {
enabled: false,
maxPendingRequests: 0,
},
udpQueries: {
retries: {
attempts: 0,
interval: 0,
},
},
});
type: panos:DnsProxy
properties:
cache:
cacheEdns: false
enabled: false
maxTtl:
enabled: false
timeToLive: 0
default:
inheritance:
source: string
primary: string
secondary: string
domainServers:
- cacheable: false
domainNames:
- string
name: string
primary: string
secondary: string
enabled: false
interfaces:
- string
location:
template:
name: string
ngfwDevice: string
panoramaDevice: string
templateStack:
name: string
ngfwDevice: string
panoramaDevice: string
name: string
staticEntries:
- addresses:
- string
domain: string
name: string
tcpQueries:
enabled: false
maxPendingRequests: 0
udpQueries:
retries:
attempts: 0
interval: 0
DnsProxy 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 DnsProxy resource accepts the following input properties:
- Location
Dns
Proxy Location - The location of this object.
- Cache
Dns
Proxy Cache - Default
Dns
Proxy Default - Domain
Servers List<DnsProxy Domain Server> - Enabled bool
- Enable or disable processing of DNS requests on interface(s) on this object
- Interfaces List<string>
- Name string
- Static
Entries List<DnsProxy Static Entry> - Tcp
Queries DnsProxy Tcp Queries - Udp
Queries DnsProxy Udp Queries
- Location
Dns
Proxy Location Args - The location of this object.
- Cache
Dns
Proxy Cache Args - Default
Dns
Proxy Default Args - Domain
Servers []DnsProxy Domain Server Args - Enabled bool
- Enable or disable processing of DNS requests on interface(s) on this object
- Interfaces []string
- Name string
- Static
Entries []DnsProxy Static Entry Args - Tcp
Queries DnsProxy Tcp Queries Args - Udp
Queries DnsProxy Udp Queries Args
- location
Dns
Proxy Location - The location of this object.
- cache
Dns
Proxy Cache - default_
Dns
Proxy Default - domain
Servers List<DnsProxy Domain Server> - enabled Boolean
- Enable or disable processing of DNS requests on interface(s) on this object
- interfaces List<String>
- name String
- static
Entries List<DnsProxy Static Entry> - tcp
Queries DnsProxy Tcp Queries - udp
Queries DnsProxy Udp Queries
- location
Dns
Proxy Location - The location of this object.
- cache
Dns
Proxy Cache - default
Dns
Proxy Default - domain
Servers DnsProxy Domain Server[] - enabled boolean
- Enable or disable processing of DNS requests on interface(s) on this object
- interfaces string[]
- name string
- static
Entries DnsProxy Static Entry[] - tcp
Queries DnsProxy Tcp Queries - udp
Queries DnsProxy Udp Queries
- location
Dns
Proxy Location Args - The location of this object.
- cache
Dns
Proxy Cache Args - default
Dns
Proxy Default Args - domain_
servers Sequence[DnsProxy Domain Server Args] - enabled bool
- Enable or disable processing of DNS requests on interface(s) on this object
- interfaces Sequence[str]
- name str
- static_
entries Sequence[DnsProxy Static Entry Args] - tcp_
queries DnsProxy Tcp Queries Args - udp_
queries DnsProxy Udp Queries Args
- location Property Map
- The location of this object.
- cache Property Map
- default Property Map
- domain
Servers List<Property Map> - enabled Boolean
- Enable or disable processing of DNS requests on interface(s) on this object
- interfaces List<String>
- name String
- static
Entries List<Property Map> - tcp
Queries Property Map - udp
Queries Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the DnsProxy 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 DnsProxy Resource
Get an existing DnsProxy 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?: DnsProxyState, opts?: CustomResourceOptions): DnsProxy@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cache: Optional[DnsProxyCacheArgs] = None,
default: Optional[DnsProxyDefaultArgs] = None,
domain_servers: Optional[Sequence[DnsProxyDomainServerArgs]] = None,
enabled: Optional[bool] = None,
interfaces: Optional[Sequence[str]] = None,
location: Optional[DnsProxyLocationArgs] = None,
name: Optional[str] = None,
static_entries: Optional[Sequence[DnsProxyStaticEntryArgs]] = None,
tcp_queries: Optional[DnsProxyTcpQueriesArgs] = None,
udp_queries: Optional[DnsProxyUdpQueriesArgs] = None) -> DnsProxyfunc GetDnsProxy(ctx *Context, name string, id IDInput, state *DnsProxyState, opts ...ResourceOption) (*DnsProxy, error)public static DnsProxy Get(string name, Input<string> id, DnsProxyState? state, CustomResourceOptions? opts = null)public static DnsProxy get(String name, Output<String> id, DnsProxyState state, CustomResourceOptions options)resources: _: type: panos:DnsProxy 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.
- Cache
Dns
Proxy Cache - Default
Dns
Proxy Default - Domain
Servers List<DnsProxy Domain Server> - Enabled bool
- Enable or disable processing of DNS requests on interface(s) on this object
- Interfaces List<string>
- Location
Dns
Proxy Location - The location of this object.
- Name string
- Static
Entries List<DnsProxy Static Entry> - Tcp
Queries DnsProxy Tcp Queries - Udp
Queries DnsProxy Udp Queries
- Cache
Dns
Proxy Cache Args - Default
Dns
Proxy Default Args - Domain
Servers []DnsProxy Domain Server Args - Enabled bool
- Enable or disable processing of DNS requests on interface(s) on this object
- Interfaces []string
- Location
Dns
Proxy Location Args - The location of this object.
- Name string
- Static
Entries []DnsProxy Static Entry Args - Tcp
Queries DnsProxy Tcp Queries Args - Udp
Queries DnsProxy Udp Queries Args
- cache
Dns
Proxy Cache - default_
Dns
Proxy Default - domain
Servers List<DnsProxy Domain Server> - enabled Boolean
- Enable or disable processing of DNS requests on interface(s) on this object
- interfaces List<String>
- location
Dns
Proxy Location - The location of this object.
- name String
- static
Entries List<DnsProxy Static Entry> - tcp
Queries DnsProxy Tcp Queries - udp
Queries DnsProxy Udp Queries
- cache
Dns
Proxy Cache - default
Dns
Proxy Default - domain
Servers DnsProxy Domain Server[] - enabled boolean
- Enable or disable processing of DNS requests on interface(s) on this object
- interfaces string[]
- location
Dns
Proxy Location - The location of this object.
- name string
- static
Entries DnsProxy Static Entry[] - tcp
Queries DnsProxy Tcp Queries - udp
Queries DnsProxy Udp Queries
- cache
Dns
Proxy Cache Args - default
Dns
Proxy Default Args - domain_
servers Sequence[DnsProxy Domain Server Args] - enabled bool
- Enable or disable processing of DNS requests on interface(s) on this object
- interfaces Sequence[str]
- location
Dns
Proxy Location Args - The location of this object.
- name str
- static_
entries Sequence[DnsProxy Static Entry Args] - tcp_
queries DnsProxy Tcp Queries Args - udp_
queries DnsProxy Udp Queries Args
- cache Property Map
- default Property Map
- domain
Servers List<Property Map> - enabled Boolean
- Enable or disable processing of DNS requests on interface(s) on this object
- interfaces List<String>
- location Property Map
- The location of this object.
- name String
- static
Entries List<Property Map> - tcp
Queries Property Map - udp
Queries Property Map
Supporting Types
DnsProxyCache, DnsProxyCacheArgs
- Cache
Edns bool - Cache EDNS UDP response
- Enabled bool
- Turn on caching for this DNS object
- Max
Ttl DnsProxy Cache Max Ttl
- Cache
Edns bool - Cache EDNS UDP response
- Enabled bool
- Turn on caching for this DNS object
- Max
Ttl DnsProxy Cache Max Ttl
- cache
Edns Boolean - Cache EDNS UDP response
- enabled Boolean
- Turn on caching for this DNS object
- max
Ttl DnsProxy Cache Max Ttl
- cache
Edns boolean - Cache EDNS UDP response
- enabled boolean
- Turn on caching for this DNS object
- max
Ttl DnsProxy Cache Max Ttl
- cache_
edns bool - Cache EDNS UDP response
- enabled bool
- Turn on caching for this DNS object
- max_
ttl DnsProxy Cache Max Ttl
- cache
Edns Boolean - Cache EDNS UDP response
- enabled Boolean
- Turn on caching for this DNS object
- max
Ttl Property Map
DnsProxyCacheMaxTtl, DnsProxyCacheMaxTtlArgs
- Enabled bool
- Enable max ttl for this DNS object
- Time
To doubleLive - Time in seconds after which entry is cleared
- Enabled bool
- Enable max ttl for this DNS object
- Time
To float64Live - Time in seconds after which entry is cleared
- enabled Boolean
- Enable max ttl for this DNS object
- time
To DoubleLive - Time in seconds after which entry is cleared
- enabled boolean
- Enable max ttl for this DNS object
- time
To numberLive - Time in seconds after which entry is cleared
- enabled bool
- Enable max ttl for this DNS object
- time_
to_ floatlive - Time in seconds after which entry is cleared
- enabled Boolean
- Enable max ttl for this DNS object
- time
To NumberLive - Time in seconds after which entry is cleared
DnsProxyDefault, DnsProxyDefaultArgs
- Inheritance
Dns
Proxy Default Inheritance - Primary string
- Primary DNS Name server IP address
- Secondary string
- Secondary DNS Name server IP address
- Inheritance
Dns
Proxy Default Inheritance - Primary string
- Primary DNS Name server IP address
- Secondary string
- Secondary DNS Name server IP address
- inheritance
Dns
Proxy Default Inheritance - primary String
- Primary DNS Name server IP address
- secondary String
- Secondary DNS Name server IP address
- inheritance
Dns
Proxy Default Inheritance - primary string
- Primary DNS Name server IP address
- secondary string
- Secondary DNS Name server IP address
- inheritance
Dns
Proxy Default Inheritance - primary str
- Primary DNS Name server IP address
- secondary str
- Secondary DNS Name server IP address
- inheritance Property Map
- primary String
- Primary DNS Name server IP address
- secondary String
- Secondary DNS Name server IP address
DnsProxyDefaultInheritance, DnsProxyDefaultInheritanceArgs
- Source string
- Dynamic interface
- Source string
- Dynamic interface
- source String
- Dynamic interface
- source string
- Dynamic interface
- source str
- Dynamic interface
- source String
- Dynamic interface
DnsProxyDomainServer, DnsProxyDomainServerArgs
- Name string
- Cacheable bool
- Turn on caching of domains resolved by this mapping
- Domain
Names List<string> - Primary string
- Primary DNS Name server IP address
- Secondary string
- Secondary DNS Name server IP address
- Name string
- Cacheable bool
- Turn on caching of domains resolved by this mapping
- Domain
Names []string - Primary string
- Primary DNS Name server IP address
- Secondary string
- Secondary DNS Name server IP address
- name String
- cacheable Boolean
- Turn on caching of domains resolved by this mapping
- domain
Names List<String> - primary String
- Primary DNS Name server IP address
- secondary String
- Secondary DNS Name server IP address
- name string
- cacheable boolean
- Turn on caching of domains resolved by this mapping
- domain
Names string[] - primary string
- Primary DNS Name server IP address
- secondary string
- Secondary DNS Name server IP address
- name str
- cacheable bool
- Turn on caching of domains resolved by this mapping
- domain_
names Sequence[str] - primary str
- Primary DNS Name server IP address
- secondary str
- Secondary DNS Name server IP address
- name String
- cacheable Boolean
- Turn on caching of domains resolved by this mapping
- domain
Names List<String> - primary String
- Primary DNS Name server IP address
- secondary String
- Secondary DNS Name server IP address
DnsProxyLocation, DnsProxyLocationArgs
- Template
Dns
Proxy Location Template - Located in a specific template
- Template
Stack DnsProxy Location Template Stack - Located in a specific template stack
- Template
Dns
Proxy Location Template - Located in a specific template
- Template
Stack DnsProxy Location Template Stack - Located in a specific template stack
- template
Dns
Proxy Location Template - Located in a specific template
- template
Stack DnsProxy Location Template Stack - Located in a specific template stack
- template
Dns
Proxy Location Template - Located in a specific template
- template
Stack DnsProxy Location Template Stack - Located in a specific template stack
- template
Dns
Proxy Location Template - Located in a specific template
- template_
stack DnsProxy Location Template Stack - Located in a specific template stack
- template Property Map
- Located in a specific template
- template
Stack Property Map - Located in a specific template stack
DnsProxyLocationTemplate, DnsProxyLocationTemplateArgs
- 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
DnsProxyLocationTemplateStack, DnsProxyLocationTemplateStackArgs
- 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
DnsProxyStaticEntry, DnsProxyStaticEntryArgs
DnsProxyTcpQueries, DnsProxyTcpQueriesArgs
- Enabled bool
- Turn on forwarding of TCP DNS queries
- Max
Pending doubleRequests - Upper limit on number of concurrent TCP DNS requests
- Enabled bool
- Turn on forwarding of TCP DNS queries
- Max
Pending float64Requests - Upper limit on number of concurrent TCP DNS requests
- enabled Boolean
- Turn on forwarding of TCP DNS queries
- max
Pending DoubleRequests - Upper limit on number of concurrent TCP DNS requests
- enabled boolean
- Turn on forwarding of TCP DNS queries
- max
Pending numberRequests - Upper limit on number of concurrent TCP DNS requests
- enabled bool
- Turn on forwarding of TCP DNS queries
- max_
pending_ floatrequests - Upper limit on number of concurrent TCP DNS requests
- enabled Boolean
- Turn on forwarding of TCP DNS queries
- max
Pending NumberRequests - Upper limit on number of concurrent TCP DNS requests
DnsProxyUdpQueries, DnsProxyUdpQueriesArgs
DnsProxyUdpQueriesRetries, DnsProxyUdpQueriesRetriesArgs
Package Details
- Repository
- panos paloaltonetworks/terraform-provider-panos
- License
- Notes
- This Pulumi package is based on the
panosTerraform Provider.
published on Thursday, Apr 9, 2026 by paloaltonetworks
