1. Packages
  2. Panos Provider
  3. API Docs
  4. DnsProxy
Viewing docs for panos 2.0.10
published on Thursday, Apr 9, 2026 by paloaltonetworks
Viewing docs for panos 2.0.10
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 Property Map
    The location of this object.
    cache Property Map
    default Property Map
    domainServers List<Property Map>
    enabled Boolean
    Enable or disable processing of DNS requests on interface(s) on this object
    interfaces List<String>
    name String
    staticEntries List<Property Map>
    tcpQueries Property Map
    udpQueries 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) -> DnsProxy
    func 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.
    The following state arguments are supported:
    cache Property Map
    default Property Map
    domainServers 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
    staticEntries List<Property Map>
    tcpQueries Property Map
    udpQueries Property Map

    Supporting Types

    DnsProxyCache, DnsProxyCacheArgs

    CacheEdns bool
    Cache EDNS UDP response
    Enabled bool
    Turn on caching for this DNS object
    MaxTtl DnsProxyCacheMaxTtl
    CacheEdns bool
    Cache EDNS UDP response
    Enabled bool
    Turn on caching for this DNS object
    MaxTtl DnsProxyCacheMaxTtl
    cacheEdns Boolean
    Cache EDNS UDP response
    enabled Boolean
    Turn on caching for this DNS object
    maxTtl DnsProxyCacheMaxTtl
    cacheEdns boolean
    Cache EDNS UDP response
    enabled boolean
    Turn on caching for this DNS object
    maxTtl DnsProxyCacheMaxTtl
    cache_edns bool
    Cache EDNS UDP response
    enabled bool
    Turn on caching for this DNS object
    max_ttl DnsProxyCacheMaxTtl
    cacheEdns Boolean
    Cache EDNS UDP response
    enabled Boolean
    Turn on caching for this DNS object
    maxTtl Property Map

    DnsProxyCacheMaxTtl, DnsProxyCacheMaxTtlArgs

    Enabled bool
    Enable max ttl for this DNS object
    TimeToLive double
    Time in seconds after which entry is cleared
    Enabled bool
    Enable max ttl for this DNS object
    TimeToLive float64
    Time in seconds after which entry is cleared
    enabled Boolean
    Enable max ttl for this DNS object
    timeToLive Double
    Time in seconds after which entry is cleared
    enabled boolean
    Enable max ttl for this DNS object
    timeToLive number
    Time in seconds after which entry is cleared
    enabled bool
    Enable max ttl for this DNS object
    time_to_live float
    Time in seconds after which entry is cleared
    enabled Boolean
    Enable max ttl for this DNS object
    timeToLive Number
    Time in seconds after which entry is cleared

    DnsProxyDefault, DnsProxyDefaultArgs

    Inheritance DnsProxyDefaultInheritance
    Primary string
    Primary DNS Name server IP address
    Secondary string
    Secondary DNS Name server IP address
    Inheritance DnsProxyDefaultInheritance
    Primary string
    Primary DNS Name server IP address
    Secondary string
    Secondary DNS Name server IP address
    inheritance DnsProxyDefaultInheritance
    primary String
    Primary DNS Name server IP address
    secondary String
    Secondary DNS Name server IP address
    inheritance DnsProxyDefaultInheritance
    primary string
    Primary DNS Name server IP address
    secondary string
    Secondary DNS Name server IP address
    inheritance DnsProxyDefaultInheritance
    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
    DomainNames 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
    DomainNames []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
    domainNames 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
    domainNames 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
    domainNames List<String>
    primary String
    Primary DNS Name server IP address
    secondary String
    Secondary DNS Name server IP address

    DnsProxyLocation, DnsProxyLocationArgs

    Template DnsProxyLocationTemplate
    Located in a specific template
    TemplateStack DnsProxyLocationTemplateStack
    Located in a specific template stack
    Template DnsProxyLocationTemplate
    Located in a specific template
    TemplateStack DnsProxyLocationTemplateStack
    Located in a specific template stack
    template DnsProxyLocationTemplate
    Located in a specific template
    templateStack DnsProxyLocationTemplateStack
    Located in a specific template stack
    template DnsProxyLocationTemplate
    Located in a specific template
    templateStack DnsProxyLocationTemplateStack
    Located in a specific template stack
    template DnsProxyLocationTemplate
    Located in a specific template
    template_stack DnsProxyLocationTemplateStack
    Located in a specific template stack
    template Property Map
    Located in a specific template
    templateStack Property Map
    Located in a specific template stack

    DnsProxyLocationTemplate, DnsProxyLocationTemplateArgs

    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

    DnsProxyLocationTemplateStack, DnsProxyLocationTemplateStackArgs

    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

    DnsProxyStaticEntry, DnsProxyStaticEntryArgs

    Name string
    Addresses List<string>
    Domain string
    Fully qualified domain name for specified IP address
    Name string
    Addresses []string
    Domain string
    Fully qualified domain name for specified IP address
    name String
    addresses List<String>
    domain String
    Fully qualified domain name for specified IP address
    name string
    addresses string[]
    domain string
    Fully qualified domain name for specified IP address
    name str
    addresses Sequence[str]
    domain str
    Fully qualified domain name for specified IP address
    name String
    addresses List<String>
    domain String
    Fully qualified domain name for specified IP address

    DnsProxyTcpQueries, DnsProxyTcpQueriesArgs

    Enabled bool
    Turn on forwarding of TCP DNS queries
    MaxPendingRequests double
    Upper limit on number of concurrent TCP DNS requests
    Enabled bool
    Turn on forwarding of TCP DNS queries
    MaxPendingRequests float64
    Upper limit on number of concurrent TCP DNS requests
    enabled Boolean
    Turn on forwarding of TCP DNS queries
    maxPendingRequests Double
    Upper limit on number of concurrent TCP DNS requests
    enabled boolean
    Turn on forwarding of TCP DNS queries
    maxPendingRequests number
    Upper limit on number of concurrent TCP DNS requests
    enabled bool
    Turn on forwarding of TCP DNS queries
    max_pending_requests float
    Upper limit on number of concurrent TCP DNS requests
    enabled Boolean
    Turn on forwarding of TCP DNS queries
    maxPendingRequests Number
    Upper limit on number of concurrent TCP DNS requests

    DnsProxyUdpQueries, DnsProxyUdpQueriesArgs

    DnsProxyUdpQueriesRetries, DnsProxyUdpQueriesRetriesArgs

    Attempts double
    Maximum number of retries before trying next name server
    Interval double
    Time in seconds for another request to be sent
    Attempts float64
    Maximum number of retries before trying next name server
    Interval float64
    Time in seconds for another request to be sent
    attempts Double
    Maximum number of retries before trying next name server
    interval Double
    Time in seconds for another request to be sent
    attempts number
    Maximum number of retries before trying next name server
    interval number
    Time in seconds for another request to be sent
    attempts float
    Maximum number of retries before trying next name server
    interval float
    Time in seconds for another request to be sent
    attempts Number
    Maximum number of retries before trying next name server
    interval Number
    Time in seconds for another request to be sent

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