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

fortimanager.ObjectSystemDhcpServerExcluderange

Explore with Pulumi AI

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

    Exclude one or more ranges of IP addresses from being assigned to clients.

    This resource is a sub resource for variable exclude_range of resource fortimanager.ObjectSystemDhcpServer. Conflict and overwrite may occur if use both of them.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectSystemDhcpServer = new fortimanager.ObjectSystemDhcpServer("trnameObjectSystemDhcpServer", {fosid: 2});
    const trnameObjectSystemDhcpServerExcluderange = new fortimanager.ObjectSystemDhcpServerExcluderange("trnameObjectSystemDhcpServerExcluderange", {
        server: trnameObjectSystemDhcpServer.fosid,
        endIp: "10.160.100.34",
        fosid: 11,
        startIp: "10.160.88.34",
    }, {
        dependsOn: [trnameObjectSystemDhcpServer],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_system_dhcp_server = fortimanager.ObjectSystemDhcpServer("trnameObjectSystemDhcpServer", fosid=2)
    trname_object_system_dhcp_server_excluderange = fortimanager.ObjectSystemDhcpServerExcluderange("trnameObjectSystemDhcpServerExcluderange",
        server=trname_object_system_dhcp_server.fosid,
        end_ip="10.160.100.34",
        fosid=11,
        start_ip="10.160.88.34",
        opts = pulumi.ResourceOptions(depends_on=[trname_object_system_dhcp_server]))
    
    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 {
    		trnameObjectSystemDhcpServer, err := fortimanager.NewObjectSystemDhcpServer(ctx, "trnameObjectSystemDhcpServer", &fortimanager.ObjectSystemDhcpServerArgs{
    			Fosid: pulumi.Float64(2),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectSystemDhcpServerExcluderange(ctx, "trnameObjectSystemDhcpServerExcluderange", &fortimanager.ObjectSystemDhcpServerExcluderangeArgs{
    			Server:  trnameObjectSystemDhcpServer.Fosid,
    			EndIp:   pulumi.String("10.160.100.34"),
    			Fosid:   pulumi.Float64(11),
    			StartIp: pulumi.String("10.160.88.34"),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectSystemDhcpServer,
    		}))
    		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 trnameObjectSystemDhcpServer = new Fortimanager.ObjectSystemDhcpServer("trnameObjectSystemDhcpServer", new()
        {
            Fosid = 2,
        });
    
        var trnameObjectSystemDhcpServerExcluderange = new Fortimanager.ObjectSystemDhcpServerExcluderange("trnameObjectSystemDhcpServerExcluderange", new()
        {
            Server = trnameObjectSystemDhcpServer.Fosid,
            EndIp = "10.160.100.34",
            Fosid = 11,
            StartIp = "10.160.88.34",
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectSystemDhcpServer,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectSystemDhcpServer;
    import com.pulumi.fortimanager.ObjectSystemDhcpServerArgs;
    import com.pulumi.fortimanager.ObjectSystemDhcpServerExcluderange;
    import com.pulumi.fortimanager.ObjectSystemDhcpServerExcluderangeArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 trnameObjectSystemDhcpServer = new ObjectSystemDhcpServer("trnameObjectSystemDhcpServer", ObjectSystemDhcpServerArgs.builder()
                .fosid(2)
                .build());
    
            var trnameObjectSystemDhcpServerExcluderange = new ObjectSystemDhcpServerExcluderange("trnameObjectSystemDhcpServerExcluderange", ObjectSystemDhcpServerExcluderangeArgs.builder()
                .server(trnameObjectSystemDhcpServer.fosid())
                .endIp("10.160.100.34")
                .fosid(11)
                .startIp("10.160.88.34")
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectSystemDhcpServer)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectSystemDhcpServerExcluderange:
        type: fortimanager:ObjectSystemDhcpServerExcluderange
        properties:
          server: ${trnameObjectSystemDhcpServer.fosid}
          endIp: 10.160.100.34
          fosid: 11
          startIp: 10.160.88.34
        options:
          dependsOn:
            - ${trnameObjectSystemDhcpServer}
      trnameObjectSystemDhcpServer:
        type: fortimanager:ObjectSystemDhcpServer
        properties:
          fosid: 2
    

    Create ObjectSystemDhcpServerExcluderange Resource

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

    Constructor syntax

    new ObjectSystemDhcpServerExcluderange(name: string, args: ObjectSystemDhcpServerExcluderangeArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectSystemDhcpServerExcluderange(resource_name: str,
                                           args: ObjectSystemDhcpServerExcluderangeArgs,
                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectSystemDhcpServerExcluderange(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           server: Optional[str] = None,
                                           adom: Optional[str] = None,
                                           end_ip: Optional[str] = None,
                                           fosid: Optional[float] = None,
                                           lease_time: Optional[float] = None,
                                           object_system_dhcp_server_excluderange_id: Optional[str] = None,
                                           scopetype: Optional[str] = None,
                                           start_ip: Optional[str] = None,
                                           uci_match: Optional[str] = None,
                                           uci_strings: Optional[Sequence[str]] = None,
                                           vci_match: Optional[str] = None,
                                           vci_strings: Optional[Sequence[str]] = None)
    func NewObjectSystemDhcpServerExcluderange(ctx *Context, name string, args ObjectSystemDhcpServerExcluderangeArgs, opts ...ResourceOption) (*ObjectSystemDhcpServerExcluderange, error)
    public ObjectSystemDhcpServerExcluderange(string name, ObjectSystemDhcpServerExcluderangeArgs args, CustomResourceOptions? opts = null)
    public ObjectSystemDhcpServerExcluderange(String name, ObjectSystemDhcpServerExcluderangeArgs args)
    public ObjectSystemDhcpServerExcluderange(String name, ObjectSystemDhcpServerExcluderangeArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectSystemDhcpServerExcluderange
    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 ObjectSystemDhcpServerExcluderangeArgs
    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 ObjectSystemDhcpServerExcluderangeArgs
    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 ObjectSystemDhcpServerExcluderangeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectSystemDhcpServerExcluderangeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectSystemDhcpServerExcluderangeArgs
    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 objectSystemDhcpServerExcluderangeResource = new Fortimanager.ObjectSystemDhcpServerExcluderange("objectSystemDhcpServerExcluderangeResource", new()
    {
        Server = "string",
        Adom = "string",
        EndIp = "string",
        Fosid = 0,
        LeaseTime = 0,
        ObjectSystemDhcpServerExcluderangeId = "string",
        Scopetype = "string",
        StartIp = "string",
        UciMatch = "string",
        UciStrings = new[]
        {
            "string",
        },
        VciMatch = "string",
        VciStrings = new[]
        {
            "string",
        },
    });
    
    example, err := fortimanager.NewObjectSystemDhcpServerExcluderange(ctx, "objectSystemDhcpServerExcluderangeResource", &fortimanager.ObjectSystemDhcpServerExcluderangeArgs{
    Server: pulumi.String("string"),
    Adom: pulumi.String("string"),
    EndIp: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    LeaseTime: pulumi.Float64(0),
    ObjectSystemDhcpServerExcluderangeId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    StartIp: pulumi.String("string"),
    UciMatch: pulumi.String("string"),
    UciStrings: pulumi.StringArray{
    pulumi.String("string"),
    },
    VciMatch: pulumi.String("string"),
    VciStrings: pulumi.StringArray{
    pulumi.String("string"),
    },
    })
    
    var objectSystemDhcpServerExcluderangeResource = new ObjectSystemDhcpServerExcluderange("objectSystemDhcpServerExcluderangeResource", ObjectSystemDhcpServerExcluderangeArgs.builder()
        .server("string")
        .adom("string")
        .endIp("string")
        .fosid(0)
        .leaseTime(0)
        .objectSystemDhcpServerExcluderangeId("string")
        .scopetype("string")
        .startIp("string")
        .uciMatch("string")
        .uciStrings("string")
        .vciMatch("string")
        .vciStrings("string")
        .build());
    
    object_system_dhcp_server_excluderange_resource = fortimanager.ObjectSystemDhcpServerExcluderange("objectSystemDhcpServerExcluderangeResource",
        server="string",
        adom="string",
        end_ip="string",
        fosid=0,
        lease_time=0,
        object_system_dhcp_server_excluderange_id="string",
        scopetype="string",
        start_ip="string",
        uci_match="string",
        uci_strings=["string"],
        vci_match="string",
        vci_strings=["string"])
    
    const objectSystemDhcpServerExcluderangeResource = new fortimanager.ObjectSystemDhcpServerExcluderange("objectSystemDhcpServerExcluderangeResource", {
        server: "string",
        adom: "string",
        endIp: "string",
        fosid: 0,
        leaseTime: 0,
        objectSystemDhcpServerExcluderangeId: "string",
        scopetype: "string",
        startIp: "string",
        uciMatch: "string",
        uciStrings: ["string"],
        vciMatch: "string",
        vciStrings: ["string"],
    });
    
    type: fortimanager:ObjectSystemDhcpServerExcluderange
    properties:
        adom: string
        endIp: string
        fosid: 0
        leaseTime: 0
        objectSystemDhcpServerExcluderangeId: string
        scopetype: string
        server: string
        startIp: string
        uciMatch: string
        uciStrings:
            - string
        vciMatch: string
        vciStrings:
            - string
    

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

    Server string
    Server.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    EndIp string
    End of IP range.
    Fosid double
    ID.
    LeaseTime double
    Lease time in seconds, 0 means default lease time.
    ObjectSystemDhcpServerExcluderangeId string
    an identifier for the resource with format {{fosid}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    StartIp string
    Start of IP range.
    UciMatch string
    Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values: disable, enable.
    UciStrings List<string>
    One or more UCI strings in quotes separated by spaces.
    VciMatch string
    Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values: disable, enable.
    VciStrings List<string>
    One or more VCI strings in quotes separated by spaces.
    Server string
    Server.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    EndIp string
    End of IP range.
    Fosid float64
    ID.
    LeaseTime float64
    Lease time in seconds, 0 means default lease time.
    ObjectSystemDhcpServerExcluderangeId string
    an identifier for the resource with format {{fosid}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    StartIp string
    Start of IP range.
    UciMatch string
    Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values: disable, enable.
    UciStrings []string
    One or more UCI strings in quotes separated by spaces.
    VciMatch string
    Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values: disable, enable.
    VciStrings []string
    One or more VCI strings in quotes separated by spaces.
    server String
    Server.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    endIp String
    End of IP range.
    fosid Double
    ID.
    leaseTime Double
    Lease time in seconds, 0 means default lease time.
    objectSystemDhcpServerExcluderangeId String
    an identifier for the resource with format {{fosid}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    startIp String
    Start of IP range.
    uciMatch String
    Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values: disable, enable.
    uciStrings List<String>
    One or more UCI strings in quotes separated by spaces.
    vciMatch String
    Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values: disable, enable.
    vciStrings List<String>
    One or more VCI strings in quotes separated by spaces.
    server string
    Server.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    endIp string
    End of IP range.
    fosid number
    ID.
    leaseTime number
    Lease time in seconds, 0 means default lease time.
    objectSystemDhcpServerExcluderangeId string
    an identifier for the resource with format {{fosid}}.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    startIp string
    Start of IP range.
    uciMatch string
    Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values: disable, enable.
    uciStrings string[]
    One or more UCI strings in quotes separated by spaces.
    vciMatch string
    Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values: disable, enable.
    vciStrings string[]
    One or more VCI strings in quotes separated by spaces.
    server str
    Server.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    end_ip str
    End of IP range.
    fosid float
    ID.
    lease_time float
    Lease time in seconds, 0 means default lease time.
    object_system_dhcp_server_excluderange_id str
    an identifier for the resource with format {{fosid}}.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    start_ip str
    Start of IP range.
    uci_match str
    Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values: disable, enable.
    uci_strings Sequence[str]
    One or more UCI strings in quotes separated by spaces.
    vci_match str
    Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values: disable, enable.
    vci_strings Sequence[str]
    One or more VCI strings in quotes separated by spaces.
    server String
    Server.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    endIp String
    End of IP range.
    fosid Number
    ID.
    leaseTime Number
    Lease time in seconds, 0 means default lease time.
    objectSystemDhcpServerExcluderangeId String
    an identifier for the resource with format {{fosid}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    startIp String
    Start of IP range.
    uciMatch String
    Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values: disable, enable.
    uciStrings List<String>
    One or more UCI strings in quotes separated by spaces.
    vciMatch String
    Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values: disable, enable.
    vciStrings List<String>
    One or more VCI strings in quotes separated by spaces.

    Outputs

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

    Get an existing ObjectSystemDhcpServerExcluderange 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?: ObjectSystemDhcpServerExcluderangeState, opts?: CustomResourceOptions): ObjectSystemDhcpServerExcluderange
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            end_ip: Optional[str] = None,
            fosid: Optional[float] = None,
            lease_time: Optional[float] = None,
            object_system_dhcp_server_excluderange_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            server: Optional[str] = None,
            start_ip: Optional[str] = None,
            uci_match: Optional[str] = None,
            uci_strings: Optional[Sequence[str]] = None,
            vci_match: Optional[str] = None,
            vci_strings: Optional[Sequence[str]] = None) -> ObjectSystemDhcpServerExcluderange
    func GetObjectSystemDhcpServerExcluderange(ctx *Context, name string, id IDInput, state *ObjectSystemDhcpServerExcluderangeState, opts ...ResourceOption) (*ObjectSystemDhcpServerExcluderange, error)
    public static ObjectSystemDhcpServerExcluderange Get(string name, Input<string> id, ObjectSystemDhcpServerExcluderangeState? state, CustomResourceOptions? opts = null)
    public static ObjectSystemDhcpServerExcluderange get(String name, Output<String> id, ObjectSystemDhcpServerExcluderangeState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectSystemDhcpServerExcluderange    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:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    EndIp string
    End of IP range.
    Fosid double
    ID.
    LeaseTime double
    Lease time in seconds, 0 means default lease time.
    ObjectSystemDhcpServerExcluderangeId string
    an identifier for the resource with format {{fosid}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Server string
    Server.
    StartIp string
    Start of IP range.
    UciMatch string
    Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values: disable, enable.
    UciStrings List<string>
    One or more UCI strings in quotes separated by spaces.
    VciMatch string
    Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values: disable, enable.
    VciStrings List<string>
    One or more VCI strings in quotes separated by spaces.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    EndIp string
    End of IP range.
    Fosid float64
    ID.
    LeaseTime float64
    Lease time in seconds, 0 means default lease time.
    ObjectSystemDhcpServerExcluderangeId string
    an identifier for the resource with format {{fosid}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Server string
    Server.
    StartIp string
    Start of IP range.
    UciMatch string
    Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values: disable, enable.
    UciStrings []string
    One or more UCI strings in quotes separated by spaces.
    VciMatch string
    Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values: disable, enable.
    VciStrings []string
    One or more VCI strings in quotes separated by spaces.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    endIp String
    End of IP range.
    fosid Double
    ID.
    leaseTime Double
    Lease time in seconds, 0 means default lease time.
    objectSystemDhcpServerExcluderangeId String
    an identifier for the resource with format {{fosid}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    server String
    Server.
    startIp String
    Start of IP range.
    uciMatch String
    Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values: disable, enable.
    uciStrings List<String>
    One or more UCI strings in quotes separated by spaces.
    vciMatch String
    Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values: disable, enable.
    vciStrings List<String>
    One or more VCI strings in quotes separated by spaces.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    endIp string
    End of IP range.
    fosid number
    ID.
    leaseTime number
    Lease time in seconds, 0 means default lease time.
    objectSystemDhcpServerExcluderangeId string
    an identifier for the resource with format {{fosid}}.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    server string
    Server.
    startIp string
    Start of IP range.
    uciMatch string
    Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values: disable, enable.
    uciStrings string[]
    One or more UCI strings in quotes separated by spaces.
    vciMatch string
    Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values: disable, enable.
    vciStrings string[]
    One or more VCI strings in quotes separated by spaces.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    end_ip str
    End of IP range.
    fosid float
    ID.
    lease_time float
    Lease time in seconds, 0 means default lease time.
    object_system_dhcp_server_excluderange_id str
    an identifier for the resource with format {{fosid}}.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    server str
    Server.
    start_ip str
    Start of IP range.
    uci_match str
    Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values: disable, enable.
    uci_strings Sequence[str]
    One or more UCI strings in quotes separated by spaces.
    vci_match str
    Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values: disable, enable.
    vci_strings Sequence[str]
    One or more VCI strings in quotes separated by spaces.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    endIp String
    End of IP range.
    fosid Number
    ID.
    leaseTime Number
    Lease time in seconds, 0 means default lease time.
    objectSystemDhcpServerExcluderangeId String
    an identifier for the resource with format {{fosid}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    server String
    Server.
    startIp String
    Start of IP range.
    uciMatch String
    Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values: disable, enable.
    uciStrings List<String>
    One or more UCI strings in quotes separated by spaces.
    vciMatch String
    Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values: disable, enable.
    vciStrings List<String>
    One or more VCI strings in quotes separated by spaces.

    Import

    ObjectSystem DhcpServerExcludeRange can be imported using any of these accepted formats:

    Set import_options = [“server=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectSystemDhcpServerExcluderange:ObjectSystemDhcpServerExcluderange labelname {{fosid}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    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