1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. DnsProxy
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
scm logo
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi

    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 DnsProxyDefault
    Default
    Cache DnsProxyCache
    Cache
    Device string
    The device in which the resource is defined
    DomainServers List<DnsProxyDomainServer>
    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
    StaticEntries List<DnsProxyStaticEntry>
    Static entries
    TcpQueries DnsProxyTcpQueries
    Tcp queries
    UdpQueries DnsProxyUdpQueries
    Udp queries
    Default DnsProxyDefaultArgs
    Default
    Cache DnsProxyCacheArgs
    Cache
    Device string
    The device in which the resource is defined
    DomainServers []DnsProxyDomainServerArgs
    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
    StaticEntries []DnsProxyStaticEntryArgs
    Static entries
    TcpQueries DnsProxyTcpQueriesArgs
    Tcp queries
    UdpQueries DnsProxyUdpQueriesArgs
    Udp queries
    default_ DnsProxyDefault
    Default
    cache DnsProxyCache
    Cache
    device String
    The device in which the resource is defined
    domainServers List<DnsProxyDomainServer>
    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
    staticEntries List<DnsProxyStaticEntry>
    Static entries
    tcpQueries DnsProxyTcpQueries
    Tcp queries
    udpQueries DnsProxyUdpQueries
    Udp queries
    default DnsProxyDefault
    Default
    cache DnsProxyCache
    Cache
    device string
    The device in which the resource is defined
    domainServers DnsProxyDomainServer[]
    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
    staticEntries DnsProxyStaticEntry[]
    Static entries
    tcpQueries DnsProxyTcpQueries
    Tcp queries
    udpQueries DnsProxyUdpQueries
    Udp queries
    default DnsProxyDefaultArgs
    Default
    cache DnsProxyCacheArgs
    Cache
    device str
    The device in which the resource is defined
    domain_servers Sequence[DnsProxyDomainServerArgs]
    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[DnsProxyStaticEntryArgs]
    Static entries
    tcp_queries DnsProxyTcpQueriesArgs
    Tcp queries
    udp_queries DnsProxyUdpQueriesArgs
    Udp queries
    default Property Map
    Default
    cache Property Map
    Cache
    device String
    The device in which the resource is defined
    domainServers 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
    staticEntries List<Property Map>
    Static entries
    tcpQueries Property Map
    Tcp queries
    udpQueries Property Map
    Udp queries

    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.
    Tfid string
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String

    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) -> 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: 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.
    The following state arguments are supported:
    Cache DnsProxyCache
    Cache
    Default DnsProxyDefault
    Default
    Device string
    The device in which the resource is defined
    DomainServers List<DnsProxyDomainServer>
    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
    StaticEntries List<DnsProxyStaticEntry>
    Static entries
    TcpQueries DnsProxyTcpQueries
    Tcp queries
    Tfid string
    UdpQueries DnsProxyUdpQueries
    Udp queries
    Cache DnsProxyCacheArgs
    Cache
    Default DnsProxyDefaultArgs
    Default
    Device string
    The device in which the resource is defined
    DomainServers []DnsProxyDomainServerArgs
    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
    StaticEntries []DnsProxyStaticEntryArgs
    Static entries
    TcpQueries DnsProxyTcpQueriesArgs
    Tcp queries
    Tfid string
    UdpQueries DnsProxyUdpQueriesArgs
    Udp queries
    cache DnsProxyCache
    Cache
    default_ DnsProxyDefault
    Default
    device String
    The device in which the resource is defined
    domainServers List<DnsProxyDomainServer>
    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
    staticEntries List<DnsProxyStaticEntry>
    Static entries
    tcpQueries DnsProxyTcpQueries
    Tcp queries
    tfid String
    udpQueries DnsProxyUdpQueries
    Udp queries
    cache DnsProxyCache
    Cache
    default DnsProxyDefault
    Default
    device string
    The device in which the resource is defined
    domainServers DnsProxyDomainServer[]
    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
    staticEntries DnsProxyStaticEntry[]
    Static entries
    tcpQueries DnsProxyTcpQueries
    Tcp queries
    tfid string
    udpQueries DnsProxyUdpQueries
    Udp queries
    cache DnsProxyCacheArgs
    Cache
    default DnsProxyDefaultArgs
    Default
    device str
    The device in which the resource is defined
    domain_servers Sequence[DnsProxyDomainServerArgs]
    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[DnsProxyStaticEntryArgs]
    Static entries
    tcp_queries DnsProxyTcpQueriesArgs
    Tcp queries
    tfid str
    udp_queries DnsProxyUdpQueriesArgs
    Udp queries
    cache Property Map
    Cache
    default Property Map
    Default
    device String
    The device in which the resource is defined
    domainServers 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
    staticEntries List<Property Map>
    Static entries
    tcpQueries Property Map
    Tcp queries
    tfid String
    udpQueries Property Map
    Udp queries

    Supporting Types

    DnsProxyCache, DnsProxyCacheArgs

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

    DnsProxyCacheMaxTtl, DnsProxyCacheMaxTtlArgs

    Enabled bool
    Enable max ttl for this DNS object
    TimeToLive int
    Time in seconds after which entry is cleared
    Enabled bool
    Enable max ttl for this DNS object
    TimeToLive int
    Time in seconds after which entry is cleared
    enabled Boolean
    Enable max ttl for this DNS object
    timeToLive Integer
    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 int
    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

    Primary string
    Primary DNS Name server IP address
    Inheritance DnsProxyDefaultInheritance
    Inheritance
    Secondary string
    Secondary DNS Name server IP address
    Primary string
    Primary DNS Name server IP address
    Inheritance DnsProxyDefaultInheritance
    Inheritance
    Secondary string
    Secondary DNS Name server IP address
    primary String
    Primary DNS Name server IP address
    inheritance DnsProxyDefaultInheritance
    Inheritance
    secondary String
    Secondary DNS Name server IP address
    primary string
    Primary DNS Name server IP address
    inheritance DnsProxyDefaultInheritance
    Inheritance
    secondary string
    Secondary DNS Name server IP address
    primary str
    Primary DNS Name server IP address
    inheritance DnsProxyDefaultInheritance
    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?
    DomainNames 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?
    DomainNames []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?
    domainNames 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?
    domainNames 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?
    domainNames List<String>
    Domain names(s) that will be matched
    secondary String
    Secondary DNS server IP address

    DnsProxyStaticEntry, DnsProxyStaticEntryArgs

    Addresses List<string>
    Address
    Domain string
    Fully qualified domain name
    Name string
    Static entry name
    Addresses []string
    Address
    Domain string
    Fully qualified domain name
    Name string
    Static entry name
    addresses List<String>
    Address
    domain String
    Fully qualified domain name
    name String
    Static entry name
    addresses string[]
    Address
    domain string
    Fully qualified domain name
    name string
    Static entry name
    addresses Sequence[str]
    Address
    domain str
    Fully qualified domain name
    name str
    Static entry name
    addresses List<String>
    Address
    domain String
    Fully qualified domain name
    name String
    Static entry name

    DnsProxyTcpQueries, DnsProxyTcpQueriesArgs

    Enabled bool
    Turn on forwarding of TCP DNS queries?
    MaxPendingRequests int
    Upper limit on number of concurrent TCP DNS requests
    Enabled bool
    Turn on forwarding of TCP DNS queries?
    MaxPendingRequests int
    Upper limit on number of concurrent TCP DNS requests
    enabled Boolean
    Turn on forwarding of TCP DNS queries?
    maxPendingRequests Integer
    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 int
    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 int
    Maximum number of retries before trying next name server
    Interval int
    Time in seconds for another request to be sent
    Attempts int
    Maximum number of retries before trying next name server
    Interval int
    Time in seconds for another request to be sent
    attempts Integer
    Maximum number of retries before trying next name server
    interval Integer
    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 int
    Maximum number of retries before trying next name server
    interval int
    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
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate