DnsProxy resource
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,
default: Optional[DnsProxyDefaultArgs] = None,
cache: Optional[DnsProxyCacheArgs] = None,
device: Optional[str] = None,
domain_servers: Optional[Sequence[DnsProxyDomainServerArgs]] = None,
enabled: Optional[bool] = None,
folder: Optional[str] = None,
interfaces: Optional[Sequence[str]] = None,
name: Optional[str] = None,
snippet: 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: scm: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 Scm.DnsProxy("dnsProxyResource", new()
{
Default = new Scm.Inputs.DnsProxyDefaultArgs
{
Primary = "string",
Inheritance = new Scm.Inputs.DnsProxyDefaultInheritanceArgs
{
Source = "string",
},
Secondary = "string",
},
Cache = new Scm.Inputs.DnsProxyCacheArgs
{
Enabled = false,
CacheEdns = false,
MaxTtl = new Scm.Inputs.DnsProxyCacheMaxTtlArgs
{
Enabled = false,
TimeToLive = 0,
},
},
Device = "string",
DomainServers = new[]
{
new Scm.Inputs.DnsProxyDomainServerArgs
{
Name = "string",
Primary = "string",
Cacheable = false,
DomainNames = new[]
{
"string",
},
Secondary = "string",
},
},
Enabled = false,
Folder = "string",
Interfaces = new[]
{
"string",
},
Name = "string",
Snippet = "string",
StaticEntries = new[]
{
new Scm.Inputs.DnsProxyStaticEntryArgs
{
Addresses = new[]
{
"string",
},
Domain = "string",
Name = "string",
},
},
TcpQueries = new Scm.Inputs.DnsProxyTcpQueriesArgs
{
Enabled = false,
MaxPendingRequests = 0,
},
UdpQueries = new Scm.Inputs.DnsProxyUdpQueriesArgs
{
Retries = new Scm.Inputs.DnsProxyUdpQueriesRetriesArgs
{
Attempts = 0,
Interval = 0,
},
},
});
example, err := scm.NewDnsProxy(ctx, "dnsProxyResource", &scm.DnsProxyArgs{
Default: &scm.DnsProxyDefaultArgs{
Primary: pulumi.String("string"),
Inheritance: &scm.DnsProxyDefaultInheritanceArgs{
Source: pulumi.String("string"),
},
Secondary: pulumi.String("string"),
},
Cache: &scm.DnsProxyCacheArgs{
Enabled: pulumi.Bool(false),
CacheEdns: pulumi.Bool(false),
MaxTtl: &scm.DnsProxyCacheMaxTtlArgs{
Enabled: pulumi.Bool(false),
TimeToLive: pulumi.Int(0),
},
},
Device: pulumi.String("string"),
DomainServers: scm.DnsProxyDomainServerArray{
&scm.DnsProxyDomainServerArgs{
Name: pulumi.String("string"),
Primary: pulumi.String("string"),
Cacheable: pulumi.Bool(false),
DomainNames: pulumi.StringArray{
pulumi.String("string"),
},
Secondary: pulumi.String("string"),
},
},
Enabled: pulumi.Bool(false),
Folder: pulumi.String("string"),
Interfaces: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
Snippet: pulumi.String("string"),
StaticEntries: scm.DnsProxyStaticEntryArray{
&scm.DnsProxyStaticEntryArgs{
Addresses: pulumi.StringArray{
pulumi.String("string"),
},
Domain: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
TcpQueries: &scm.DnsProxyTcpQueriesArgs{
Enabled: pulumi.Bool(false),
MaxPendingRequests: pulumi.Int(0),
},
UdpQueries: &scm.DnsProxyUdpQueriesArgs{
Retries: &scm.DnsProxyUdpQueriesRetriesArgs{
Attempts: pulumi.Int(0),
Interval: pulumi.Int(0),
},
},
})
var dnsProxyResource = new DnsProxy("dnsProxyResource", DnsProxyArgs.builder()
.default_(DnsProxyDefaultArgs.builder()
.primary("string")
.inheritance(DnsProxyDefaultInheritanceArgs.builder()
.source("string")
.build())
.secondary("string")
.build())
.cache(DnsProxyCacheArgs.builder()
.enabled(false)
.cacheEdns(false)
.maxTtl(DnsProxyCacheMaxTtlArgs.builder()
.enabled(false)
.timeToLive(0)
.build())
.build())
.device("string")
.domainServers(DnsProxyDomainServerArgs.builder()
.name("string")
.primary("string")
.cacheable(false)
.domainNames("string")
.secondary("string")
.build())
.enabled(false)
.folder("string")
.interfaces("string")
.name("string")
.snippet("string")
.staticEntries(DnsProxyStaticEntryArgs.builder()
.addresses("string")
.domain("string")
.name("string")
.build())
.tcpQueries(DnsProxyTcpQueriesArgs.builder()
.enabled(false)
.maxPendingRequests(0)
.build())
.udpQueries(DnsProxyUdpQueriesArgs.builder()
.retries(DnsProxyUdpQueriesRetriesArgs.builder()
.attempts(0)
.interval(0)
.build())
.build())
.build());
dns_proxy_resource = scm.DnsProxy("dnsProxyResource",
default={
"primary": "string",
"inheritance": {
"source": "string",
},
"secondary": "string",
},
cache={
"enabled": False,
"cache_edns": False,
"max_ttl": {
"enabled": False,
"time_to_live": 0,
},
},
device="string",
domain_servers=[{
"name": "string",
"primary": "string",
"cacheable": False,
"domain_names": ["string"],
"secondary": "string",
}],
enabled=False,
folder="string",
interfaces=["string"],
name="string",
snippet="string",
static_entries=[{
"addresses": ["string"],
"domain": "string",
"name": "string",
}],
tcp_queries={
"enabled": False,
"max_pending_requests": 0,
},
udp_queries={
"retries": {
"attempts": 0,
"interval": 0,
},
})
const dnsProxyResource = new scm.DnsProxy("dnsProxyResource", {
"default": {
primary: "string",
inheritance: {
source: "string",
},
secondary: "string",
},
cache: {
enabled: false,
cacheEdns: false,
maxTtl: {
enabled: false,
timeToLive: 0,
},
},
device: "string",
domainServers: [{
name: "string",
primary: "string",
cacheable: false,
domainNames: ["string"],
secondary: "string",
}],
enabled: false,
folder: "string",
interfaces: ["string"],
name: "string",
snippet: "string",
staticEntries: [{
addresses: ["string"],
domain: "string",
name: "string",
}],
tcpQueries: {
enabled: false,
maxPendingRequests: 0,
},
udpQueries: {
retries: {
attempts: 0,
interval: 0,
},
},
});
type: scm:DnsProxy
properties:
cache:
cacheEdns: false
enabled: false
maxTtl:
enabled: false
timeToLive: 0
default:
inheritance:
source: string
primary: string
secondary: string
device: string
domainServers:
- cacheable: false
domainNames:
- string
name: string
primary: string
secondary: string
enabled: false
folder: string
interfaces:
- string
name: string
snippet: 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:
- Default
Dns
Proxy Default - Default
- Cache
Dns
Proxy Cache - Cache
- Device string
- The device in which the resource is defined
- Domain
Servers List<DnsProxy Domain Server> - DNS proxy rules
- Enabled bool
- Enable DNS proxy?
- Folder string
- The folder in which the resource is defined
- Interfaces List<string>
- Interfaces on which to enable DNS proxy service
- Name string
- DNS proxy name
- Snippet string
- The snippet in which the resource is defined
- Static
Entries List<DnsProxy Static Entry> - Static entries
- Tcp
Queries DnsProxy Tcp Queries - Tcp queries
- Udp
Queries DnsProxy Udp Queries - Udp queries
- Default
Dns
Proxy Default Args - Default
- Cache
Dns
Proxy Cache Args - Cache
- Device string
- The device in which the resource is defined
- Domain
Servers []DnsProxy Domain Server Args - DNS proxy rules
- Enabled bool
- Enable DNS proxy?
- Folder string
- The folder in which the resource is defined
- Interfaces []string
- Interfaces on which to enable DNS proxy service
- Name string
- DNS proxy name
- Snippet string
- The snippet in which the resource is defined
- Static
Entries []DnsProxy Static Entry Args - Static entries
- Tcp
Queries DnsProxy Tcp Queries Args - Tcp queries
- Udp
Queries DnsProxy Udp Queries Args - Udp queries
- default_
Dns
Proxy Default - Default
- cache
Dns
Proxy Cache - Cache
- device String
- The device in which the resource is defined
- domain
Servers List<DnsProxy Domain Server> - DNS proxy rules
- enabled Boolean
- Enable DNS proxy?
- folder String
- The folder in which the resource is defined
- interfaces List<String>
- Interfaces on which to enable DNS proxy service
- name String
- DNS proxy name
- snippet String
- The snippet in which the resource is defined
- static
Entries List<DnsProxy Static Entry> - Static entries
- tcp
Queries DnsProxy Tcp Queries - Tcp queries
- udp
Queries DnsProxy Udp Queries - Udp queries
- default
Dns
Proxy Default - Default
- cache
Dns
Proxy Cache - Cache
- device string
- The device in which the resource is defined
- domain
Servers DnsProxy Domain Server[] - DNS proxy rules
- enabled boolean
- Enable DNS proxy?
- folder string
- The folder in which the resource is defined
- interfaces string[]
- Interfaces on which to enable DNS proxy service
- name string
- DNS proxy name
- snippet string
- The snippet in which the resource is defined
- static
Entries DnsProxy Static Entry[] - Static entries
- tcp
Queries DnsProxy Tcp Queries - Tcp queries
- udp
Queries DnsProxy Udp Queries - Udp queries
- default
Dns
Proxy Default Args - Default
- cache
Dns
Proxy Cache Args - Cache
- device str
- The device in which the resource is defined
- domain_
servers Sequence[DnsProxy Domain Server Args] - DNS proxy rules
- enabled bool
- Enable DNS proxy?
- folder str
- The folder in which the resource is defined
- interfaces Sequence[str]
- Interfaces on which to enable DNS proxy service
- name str
- DNS proxy name
- snippet str
- The snippet in which the resource is defined
- static_
entries Sequence[DnsProxy Static Entry Args] - Static entries
- tcp_
queries DnsProxy Tcp Queries Args - Tcp queries
- udp_
queries DnsProxy Udp Queries Args - Udp queries
- default Property Map
- Default
- cache Property Map
- Cache
- device String
- The device in which the resource is defined
- domain
Servers List<Property Map> - DNS proxy rules
- enabled Boolean
- Enable DNS proxy?
- folder String
- The folder in which the resource is defined
- interfaces List<String>
- Interfaces on which to enable DNS proxy service
- name String
- DNS proxy name
- snippet String
- The snippet in which the resource is defined
- static
Entries List<Property Map> - Static entries
- tcp
Queries Property Map - Tcp queries
- udp
Queries Property Map - Udp queries
Outputs
All input properties are implicitly available as output properties. Additionally, the DnsProxy resource produces the following output properties:
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,
device: Optional[str] = None,
domain_servers: Optional[Sequence[DnsProxyDomainServerArgs]] = None,
enabled: Optional[bool] = None,
folder: Optional[str] = None,
interfaces: Optional[Sequence[str]] = None,
name: Optional[str] = None,
snippet: Optional[str] = None,
static_entries: Optional[Sequence[DnsProxyStaticEntryArgs]] = None,
tcp_queries: Optional[DnsProxyTcpQueriesArgs] = None,
tfid: Optional[str] = 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: scm: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 - Cache
- Default
Dns
Proxy Default - Default
- Device string
- The device in which the resource is defined
- Domain
Servers List<DnsProxy Domain Server> - DNS proxy rules
- Enabled bool
- Enable DNS proxy?
- Folder string
- The folder in which the resource is defined
- Interfaces List<string>
- Interfaces on which to enable DNS proxy service
- Name string
- DNS proxy name
- Snippet string
- The snippet in which the resource is defined
- Static
Entries List<DnsProxy Static Entry> - Static entries
- Tcp
Queries DnsProxy Tcp Queries - Tcp queries
- Tfid string
- Udp
Queries DnsProxy Udp Queries - Udp queries
- Cache
Dns
Proxy Cache Args - Cache
- Default
Dns
Proxy Default Args - Default
- Device string
- The device in which the resource is defined
- Domain
Servers []DnsProxy Domain Server Args - DNS proxy rules
- Enabled bool
- Enable DNS proxy?
- Folder string
- The folder in which the resource is defined
- Interfaces []string
- Interfaces on which to enable DNS proxy service
- Name string
- DNS proxy name
- Snippet string
- The snippet in which the resource is defined
- Static
Entries []DnsProxy Static Entry Args - Static entries
- Tcp
Queries DnsProxy Tcp Queries Args - Tcp queries
- Tfid string
- Udp
Queries DnsProxy Udp Queries Args - Udp queries
- cache
Dns
Proxy Cache - Cache
- default_
Dns
Proxy Default - Default
- device String
- The device in which the resource is defined
- domain
Servers List<DnsProxy Domain Server> - DNS proxy rules
- enabled Boolean
- Enable DNS proxy?
- folder String
- The folder in which the resource is defined
- interfaces List<String>
- Interfaces on which to enable DNS proxy service
- name String
- DNS proxy name
- snippet String
- The snippet in which the resource is defined
- static
Entries List<DnsProxy Static Entry> - Static entries
- tcp
Queries DnsProxy Tcp Queries - Tcp queries
- tfid String
- udp
Queries DnsProxy Udp Queries - Udp queries
- cache
Dns
Proxy Cache - Cache
- default
Dns
Proxy Default - Default
- device string
- The device in which the resource is defined
- domain
Servers DnsProxy Domain Server[] - DNS proxy rules
- enabled boolean
- Enable DNS proxy?
- folder string
- The folder in which the resource is defined
- interfaces string[]
- Interfaces on which to enable DNS proxy service
- name string
- DNS proxy name
- snippet string
- The snippet in which the resource is defined
- static
Entries DnsProxy Static Entry[] - Static entries
- tcp
Queries DnsProxy Tcp Queries - Tcp queries
- tfid string
- udp
Queries DnsProxy Udp Queries - Udp queries
- cache
Dns
Proxy Cache Args - Cache
- default
Dns
Proxy Default Args - Default
- device str
- The device in which the resource is defined
- domain_
servers Sequence[DnsProxy Domain Server Args] - DNS proxy rules
- enabled bool
- Enable DNS proxy?
- folder str
- The folder in which the resource is defined
- interfaces Sequence[str]
- Interfaces on which to enable DNS proxy service
- name str
- DNS proxy name
- snippet str
- The snippet in which the resource is defined
- static_
entries Sequence[DnsProxy Static Entry Args] - Static entries
- tcp_
queries DnsProxy Tcp Queries Args - Tcp queries
- tfid str
- udp_
queries DnsProxy Udp Queries Args - Udp queries
- cache Property Map
- Cache
- default Property Map
- Default
- device String
- The device in which the resource is defined
- domain
Servers List<Property Map> - DNS proxy rules
- enabled Boolean
- Enable DNS proxy?
- folder String
- The folder in which the resource is defined
- interfaces List<String>
- Interfaces on which to enable DNS proxy service
- name String
- DNS proxy name
- snippet String
- The snippet in which the resource is defined
- static
Entries List<Property Map> - Static entries
- tcp
Queries Property Map - Tcp queries
- tfid String
- udp
Queries Property Map - Udp queries
Supporting Types
DnsProxyCache, DnsProxyCacheArgs
- Enabled bool
- Turn on caching for this DNS object
- Cache
Edns bool - Cache EDNS UDP response
- Max
Ttl DnsProxy Cache Max Ttl - Max ttl
- Enabled bool
- Turn on caching for this DNS object
- Cache
Edns bool - Cache EDNS UDP response
- Max
Ttl DnsProxy Cache Max Ttl - Max ttl
- enabled Boolean
- Turn on caching for this DNS object
- cache
Edns Boolean - Cache EDNS UDP response
- max
Ttl DnsProxy Cache Max Ttl - Max ttl
- enabled boolean
- Turn on caching for this DNS object
- cache
Edns boolean - Cache EDNS UDP response
- max
Ttl DnsProxy Cache Max Ttl - Max ttl
- enabled bool
- Turn on caching for this DNS object
- cache_
edns bool - Cache EDNS UDP response
- max_
ttl DnsProxy Cache Max Ttl - Max ttl
- enabled Boolean
- Turn on caching for this DNS object
- cache
Edns Boolean - Cache EDNS UDP response
- max
Ttl Property Map - Max ttl
DnsProxyCacheMaxTtl, DnsProxyCacheMaxTtlArgs
- Enabled bool
- Enable max ttl for this DNS object
- Time
To intLive - Time in seconds after which entry is cleared
- Enabled bool
- Enable max ttl for this DNS object
- Time
To intLive - Time in seconds after which entry is cleared
- enabled Boolean
- Enable max ttl for this DNS object
- time
To IntegerLive - 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_ intlive - 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
- Primary string
- Primary DNS Name server IP address
- Inheritance
Dns
Proxy Default Inheritance - Inheritance
- Secondary string
- Secondary DNS Name server IP address
- Primary string
- Primary DNS Name server IP address
- Inheritance
Dns
Proxy Default Inheritance - Inheritance
- Secondary string
- Secondary DNS Name server IP address
- primary String
- Primary DNS Name server IP address
- inheritance
Dns
Proxy Default Inheritance - Inheritance
- secondary String
- Secondary DNS Name server IP address
- primary string
- Primary DNS Name server IP address
- inheritance
Dns
Proxy Default Inheritance - Inheritance
- secondary string
- Secondary DNS Name server IP address
- primary str
- Primary DNS Name server IP address
- inheritance
Dns
Proxy Default Inheritance - Inheritance
- secondary str
- Secondary DNS Name server IP address
- primary String
- Primary DNS Name server IP address
- inheritance Property Map
- Inheritance
- 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
- Proxy rule name
- Primary string
- Primary DNS server IP address
- Cacheable bool
- Enable caching for this DNS proxy rule?
- Domain
Names List<string> - Domain names(s) that will be matched
- Secondary string
- Secondary DNS server IP address
- Name string
- Proxy rule name
- Primary string
- Primary DNS server IP address
- Cacheable bool
- Enable caching for this DNS proxy rule?
- Domain
Names []string - Domain names(s) that will be matched
- Secondary string
- Secondary DNS server IP address
- name String
- Proxy rule name
- primary String
- Primary DNS server IP address
- cacheable Boolean
- Enable caching for this DNS proxy rule?
- domain
Names List<String> - Domain names(s) that will be matched
- secondary String
- Secondary DNS server IP address
- name string
- Proxy rule name
- primary string
- Primary DNS server IP address
- cacheable boolean
- Enable caching for this DNS proxy rule?
- domain
Names string[] - Domain names(s) that will be matched
- secondary string
- Secondary DNS server IP address
- name str
- Proxy rule name
- primary str
- Primary DNS server IP address
- cacheable bool
- Enable caching for this DNS proxy rule?
- domain_
names Sequence[str] - Domain names(s) that will be matched
- secondary str
- Secondary DNS server IP address
- name String
- Proxy rule name
- primary String
- Primary DNS server IP address
- cacheable Boolean
- Enable caching for this DNS proxy rule?
- domain
Names List<String> - Domain names(s) that will be matched
- secondary String
- Secondary DNS server IP address
DnsProxyStaticEntry, DnsProxyStaticEntryArgs
DnsProxyTcpQueries, DnsProxyTcpQueriesArgs
- Enabled bool
- Turn on forwarding of TCP DNS queries?
- Max
Pending intRequests - Upper limit on number of concurrent TCP DNS requests
- Enabled bool
- Turn on forwarding of TCP DNS queries?
- Max
Pending intRequests - Upper limit on number of concurrent TCP DNS requests
- enabled Boolean
- Turn on forwarding of TCP DNS queries?
- max
Pending IntegerRequests - 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_ intrequests - 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
- Retries
Dns
Proxy Udp Queries Retries - Retries
- Retries
Dns
Proxy Udp Queries Retries - Retries
- retries
Dns
Proxy Udp Queries Retries - Retries
- retries
Dns
Proxy Udp Queries Retries - Retries
- retries
Dns
Proxy Udp Queries Retries - Retries
- retries Property Map
- Retries
DnsProxyUdpQueriesRetries, DnsProxyUdpQueriesRetriesArgs
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
