1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. SystemDns
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.SystemDns

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    DNS configuration.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.SystemDns("trname", {secondary: "8.8.8.8"});
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystemDns("trname", secondary="8.8.8.8")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fortimanager.NewSystemDns(ctx, "trname", &fortimanager.SystemDnsArgs{
    			Secondary: pulumi.String("8.8.8.8"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortimanager.SystemDns("trname", new()
        {
            Secondary = "8.8.8.8",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystemDns;
    import com.pulumi.fortimanager.SystemDnsArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var trname = new SystemDns("trname", SystemDnsArgs.builder()
                .secondary("8.8.8.8")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystemDns
        properties:
          secondary: 8.8.8.8
    

    Create SystemDns Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SystemDns(name: string, args?: SystemDnsArgs, opts?: CustomResourceOptions);
    @overload
    def SystemDns(resource_name: str,
                  args: Optional[SystemDnsArgs] = None,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemDns(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  ip6_primary: Optional[str] = None,
                  ip6_secondary: Optional[str] = None,
                  primary: Optional[str] = None,
                  secondary: Optional[str] = None,
                  system_dns_id: Optional[str] = None)
    func NewSystemDns(ctx *Context, name string, args *SystemDnsArgs, opts ...ResourceOption) (*SystemDns, error)
    public SystemDns(string name, SystemDnsArgs? args = null, CustomResourceOptions? opts = null)
    public SystemDns(String name, SystemDnsArgs args)
    public SystemDns(String name, SystemDnsArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemDns
    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 SystemDnsArgs
    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 SystemDnsArgs
    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 SystemDnsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemDnsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemDnsArgs
    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 systemDnsResource = new Fortimanager.SystemDns("systemDnsResource", new()
    {
        Ip6Primary = "string",
        Ip6Secondary = "string",
        Primary = "string",
        Secondary = "string",
        SystemDnsId = "string",
    });
    
    example, err := fortimanager.NewSystemDns(ctx, "systemDnsResource", &fortimanager.SystemDnsArgs{
    Ip6Primary: pulumi.String("string"),
    Ip6Secondary: pulumi.String("string"),
    Primary: pulumi.String("string"),
    Secondary: pulumi.String("string"),
    SystemDnsId: pulumi.String("string"),
    })
    
    var systemDnsResource = new SystemDns("systemDnsResource", SystemDnsArgs.builder()
        .ip6Primary("string")
        .ip6Secondary("string")
        .primary("string")
        .secondary("string")
        .systemDnsId("string")
        .build());
    
    system_dns_resource = fortimanager.SystemDns("systemDnsResource",
        ip6_primary="string",
        ip6_secondary="string",
        primary="string",
        secondary="string",
        system_dns_id="string")
    
    const systemDnsResource = new fortimanager.SystemDns("systemDnsResource", {
        ip6Primary: "string",
        ip6Secondary: "string",
        primary: "string",
        secondary: "string",
        systemDnsId: "string",
    });
    
    type: fortimanager:SystemDns
    properties:
        ip6Primary: string
        ip6Secondary: string
        primary: string
        secondary: string
        systemDnsId: string
    

    SystemDns 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 SystemDns resource accepts the following input properties:

    Ip6Primary string
    IPv6 primary DNS IP.
    Ip6Secondary string
    IPv6 secondary DNS IP.
    Primary string
    Primary DNS IP.
    Secondary string
    Secondary DNS IP.
    SystemDnsId string
    an identifier for the resource.
    Ip6Primary string
    IPv6 primary DNS IP.
    Ip6Secondary string
    IPv6 secondary DNS IP.
    Primary string
    Primary DNS IP.
    Secondary string
    Secondary DNS IP.
    SystemDnsId string
    an identifier for the resource.
    ip6Primary String
    IPv6 primary DNS IP.
    ip6Secondary String
    IPv6 secondary DNS IP.
    primary String
    Primary DNS IP.
    secondary String
    Secondary DNS IP.
    systemDnsId String
    an identifier for the resource.
    ip6Primary string
    IPv6 primary DNS IP.
    ip6Secondary string
    IPv6 secondary DNS IP.
    primary string
    Primary DNS IP.
    secondary string
    Secondary DNS IP.
    systemDnsId string
    an identifier for the resource.
    ip6_primary str
    IPv6 primary DNS IP.
    ip6_secondary str
    IPv6 secondary DNS IP.
    primary str
    Primary DNS IP.
    secondary str
    Secondary DNS IP.
    system_dns_id str
    an identifier for the resource.
    ip6Primary String
    IPv6 primary DNS IP.
    ip6Secondary String
    IPv6 secondary DNS IP.
    primary String
    Primary DNS IP.
    secondary String
    Secondary DNS IP.
    systemDnsId String
    an identifier for the resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SystemDns 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 SystemDns Resource

    Get an existing SystemDns 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?: SystemDnsState, opts?: CustomResourceOptions): SystemDns
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ip6_primary: Optional[str] = None,
            ip6_secondary: Optional[str] = None,
            primary: Optional[str] = None,
            secondary: Optional[str] = None,
            system_dns_id: Optional[str] = None) -> SystemDns
    func GetSystemDns(ctx *Context, name string, id IDInput, state *SystemDnsState, opts ...ResourceOption) (*SystemDns, error)
    public static SystemDns Get(string name, Input<string> id, SystemDnsState? state, CustomResourceOptions? opts = null)
    public static SystemDns get(String name, Output<String> id, SystemDnsState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemDns    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:
    Ip6Primary string
    IPv6 primary DNS IP.
    Ip6Secondary string
    IPv6 secondary DNS IP.
    Primary string
    Primary DNS IP.
    Secondary string
    Secondary DNS IP.
    SystemDnsId string
    an identifier for the resource.
    Ip6Primary string
    IPv6 primary DNS IP.
    Ip6Secondary string
    IPv6 secondary DNS IP.
    Primary string
    Primary DNS IP.
    Secondary string
    Secondary DNS IP.
    SystemDnsId string
    an identifier for the resource.
    ip6Primary String
    IPv6 primary DNS IP.
    ip6Secondary String
    IPv6 secondary DNS IP.
    primary String
    Primary DNS IP.
    secondary String
    Secondary DNS IP.
    systemDnsId String
    an identifier for the resource.
    ip6Primary string
    IPv6 primary DNS IP.
    ip6Secondary string
    IPv6 secondary DNS IP.
    primary string
    Primary DNS IP.
    secondary string
    Secondary DNS IP.
    systemDnsId string
    an identifier for the resource.
    ip6_primary str
    IPv6 primary DNS IP.
    ip6_secondary str
    IPv6 secondary DNS IP.
    primary str
    Primary DNS IP.
    secondary str
    Secondary DNS IP.
    system_dns_id str
    an identifier for the resource.
    ip6Primary String
    IPv6 primary DNS IP.
    ip6Secondary String
    IPv6 secondary DNS IP.
    primary String
    Primary DNS IP.
    secondary String
    Secondary DNS IP.
    systemDnsId String
    an identifier for the resource.

    Import

    System Dns can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemDns:SystemDns labelname SystemDns
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev