1. Packages
  2. Openwrt Provider
  3. API Docs
  4. getDhcpDhcp
openwrt 0.0.20 published on Friday, Mar 7, 2025 by joneshf

openwrt.getDhcpDhcp

Explore with Pulumi AI

openwrt logo
openwrt 0.0.20 published on Friday, Mar 7, 2025 by joneshf

    Per interface lease pools and settings for serving DHCP requests.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as openwrt from "@pulumi/openwrt";
    
    const testing = openwrt.getDhcpDhcp({
        id: "testing",
    });
    
    import pulumi
    import pulumi_openwrt as openwrt
    
    testing = openwrt.get_dhcp_dhcp(id="testing")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/openwrt/openwrt"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := openwrt.LookupDhcpDhcp(ctx, &openwrt.LookupDhcpDhcpArgs{
    			Id: "testing",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Openwrt = Pulumi.Openwrt;
    
    return await Deployment.RunAsync(() => 
    {
        var testing = Openwrt.GetDhcpDhcp.Invoke(new()
        {
            Id = "testing",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.openwrt.OpenwrtFunctions;
    import com.pulumi.openwrt.inputs.GetDhcpDhcpArgs;
    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) {
            final var testing = OpenwrtFunctions.getDhcpDhcp(GetDhcpDhcpArgs.builder()
                .id("testing")
                .build());
    
        }
    }
    
    variables:
      testing:
        fn::invoke:
          function: openwrt:getDhcpDhcp
          arguments:
            id: testing
    

    Using getDhcpDhcp

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getDhcpDhcp(args: GetDhcpDhcpArgs, opts?: InvokeOptions): Promise<GetDhcpDhcpResult>
    function getDhcpDhcpOutput(args: GetDhcpDhcpOutputArgs, opts?: InvokeOptions): Output<GetDhcpDhcpResult>
    def get_dhcp_dhcp(id: Optional[str] = None,
                      opts: Optional[InvokeOptions] = None) -> GetDhcpDhcpResult
    def get_dhcp_dhcp_output(id: Optional[pulumi.Input[str]] = None,
                      opts: Optional[InvokeOptions] = None) -> Output[GetDhcpDhcpResult]
    func LookupDhcpDhcp(ctx *Context, args *LookupDhcpDhcpArgs, opts ...InvokeOption) (*LookupDhcpDhcpResult, error)
    func LookupDhcpDhcpOutput(ctx *Context, args *LookupDhcpDhcpOutputArgs, opts ...InvokeOption) LookupDhcpDhcpResultOutput

    > Note: This function is named LookupDhcpDhcp in the Go SDK.

    public static class GetDhcpDhcp 
    {
        public static Task<GetDhcpDhcpResult> InvokeAsync(GetDhcpDhcpArgs args, InvokeOptions? opts = null)
        public static Output<GetDhcpDhcpResult> Invoke(GetDhcpDhcpInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDhcpDhcpResult> getDhcpDhcp(GetDhcpDhcpArgs args, InvokeOptions options)
    public static Output<GetDhcpDhcpResult> getDhcpDhcp(GetDhcpDhcpArgs args, InvokeOptions options)
    
    fn::invoke:
      function: openwrt:index/getDhcpDhcp:getDhcpDhcp
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    Name of the section. This name is only used when interacting with UCI directly.
    Id string
    Name of the section. This name is only used when interacting with UCI directly.
    id String
    Name of the section. This name is only used when interacting with UCI directly.
    id string
    Name of the section. This name is only used when interacting with UCI directly.
    id str
    Name of the section. This name is only used when interacting with UCI directly.
    id String
    Name of the section. This name is only used when interacting with UCI directly.

    getDhcpDhcp Result

    The following output properties are available:

    Dhcpv4 string
    The mode of the DHCPv4 server. Must be one of: "disabled", "server".
    Dhcpv6 string
    The mode of the DHCPv6 server. Must be one of: "disabled", "relay", "server".
    Force bool
    Forces DHCP serving on the specified interface even if another DHCP server is detected on the same network segment.
    Id string
    Name of the section. This name is only used when interacting with UCI directly.
    Ignore bool
    Specifies whether dnsmasq should ignore this pool.
    Interface string
    Leasetime string
    The lease time of addresses handed out to clients. E.g. 12h, or 30m. Required if ignore is not true.
    Limit double
    Specifies the size of the address pool. E.g. With start = 100, and limit = 150, the maximum address will be 249. Required if ignore is not true.
    Ra string
    The mode of Router Advertisements. Must be one of: "disabled", "relay", "server".
    RaFlags List<string>
    Router Advertisement flags to include in messages. Must be one of: "home-agent", "managed-config", "none", "other-config".
    Start double
    Specifies the offset from the network address of the underlying interface to calculate the minimum address that may be leased to clients. It may be greater than 255 to span subnets. Required if ignore is not true.
    Dhcpv4 string
    The mode of the DHCPv4 server. Must be one of: "disabled", "server".
    Dhcpv6 string
    The mode of the DHCPv6 server. Must be one of: "disabled", "relay", "server".
    Force bool
    Forces DHCP serving on the specified interface even if another DHCP server is detected on the same network segment.
    Id string
    Name of the section. This name is only used when interacting with UCI directly.
    Ignore bool
    Specifies whether dnsmasq should ignore this pool.
    Interface string
    Leasetime string
    The lease time of addresses handed out to clients. E.g. 12h, or 30m. Required if ignore is not true.
    Limit float64
    Specifies the size of the address pool. E.g. With start = 100, and limit = 150, the maximum address will be 249. Required if ignore is not true.
    Ra string
    The mode of Router Advertisements. Must be one of: "disabled", "relay", "server".
    RaFlags []string
    Router Advertisement flags to include in messages. Must be one of: "home-agent", "managed-config", "none", "other-config".
    Start float64
    Specifies the offset from the network address of the underlying interface to calculate the minimum address that may be leased to clients. It may be greater than 255 to span subnets. Required if ignore is not true.
    dhcpv4 String
    The mode of the DHCPv4 server. Must be one of: "disabled", "server".
    dhcpv6 String
    The mode of the DHCPv6 server. Must be one of: "disabled", "relay", "server".
    force Boolean
    Forces DHCP serving on the specified interface even if another DHCP server is detected on the same network segment.
    id String
    Name of the section. This name is only used when interacting with UCI directly.
    ignore Boolean
    Specifies whether dnsmasq should ignore this pool.
    interface_ String
    leasetime String
    The lease time of addresses handed out to clients. E.g. 12h, or 30m. Required if ignore is not true.
    limit Double
    Specifies the size of the address pool. E.g. With start = 100, and limit = 150, the maximum address will be 249. Required if ignore is not true.
    ra String
    The mode of Router Advertisements. Must be one of: "disabled", "relay", "server".
    raFlags List<String>
    Router Advertisement flags to include in messages. Must be one of: "home-agent", "managed-config", "none", "other-config".
    start Double
    Specifies the offset from the network address of the underlying interface to calculate the minimum address that may be leased to clients. It may be greater than 255 to span subnets. Required if ignore is not true.
    dhcpv4 string
    The mode of the DHCPv4 server. Must be one of: "disabled", "server".
    dhcpv6 string
    The mode of the DHCPv6 server. Must be one of: "disabled", "relay", "server".
    force boolean
    Forces DHCP serving on the specified interface even if another DHCP server is detected on the same network segment.
    id string
    Name of the section. This name is only used when interacting with UCI directly.
    ignore boolean
    Specifies whether dnsmasq should ignore this pool.
    interface string
    leasetime string
    The lease time of addresses handed out to clients. E.g. 12h, or 30m. Required if ignore is not true.
    limit number
    Specifies the size of the address pool. E.g. With start = 100, and limit = 150, the maximum address will be 249. Required if ignore is not true.
    ra string
    The mode of Router Advertisements. Must be one of: "disabled", "relay", "server".
    raFlags string[]
    Router Advertisement flags to include in messages. Must be one of: "home-agent", "managed-config", "none", "other-config".
    start number
    Specifies the offset from the network address of the underlying interface to calculate the minimum address that may be leased to clients. It may be greater than 255 to span subnets. Required if ignore is not true.
    dhcpv4 str
    The mode of the DHCPv4 server. Must be one of: "disabled", "server".
    dhcpv6 str
    The mode of the DHCPv6 server. Must be one of: "disabled", "relay", "server".
    force bool
    Forces DHCP serving on the specified interface even if another DHCP server is detected on the same network segment.
    id str
    Name of the section. This name is only used when interacting with UCI directly.
    ignore bool
    Specifies whether dnsmasq should ignore this pool.
    interface str
    leasetime str
    The lease time of addresses handed out to clients. E.g. 12h, or 30m. Required if ignore is not true.
    limit float
    Specifies the size of the address pool. E.g. With start = 100, and limit = 150, the maximum address will be 249. Required if ignore is not true.
    ra str
    The mode of Router Advertisements. Must be one of: "disabled", "relay", "server".
    ra_flags Sequence[str]
    Router Advertisement flags to include in messages. Must be one of: "home-agent", "managed-config", "none", "other-config".
    start float
    Specifies the offset from the network address of the underlying interface to calculate the minimum address that may be leased to clients. It may be greater than 255 to span subnets. Required if ignore is not true.
    dhcpv4 String
    The mode of the DHCPv4 server. Must be one of: "disabled", "server".
    dhcpv6 String
    The mode of the DHCPv6 server. Must be one of: "disabled", "relay", "server".
    force Boolean
    Forces DHCP serving on the specified interface even if another DHCP server is detected on the same network segment.
    id String
    Name of the section. This name is only used when interacting with UCI directly.
    ignore Boolean
    Specifies whether dnsmasq should ignore this pool.
    interface String
    leasetime String
    The lease time of addresses handed out to clients. E.g. 12h, or 30m. Required if ignore is not true.
    limit Number
    Specifies the size of the address pool. E.g. With start = 100, and limit = 150, the maximum address will be 249. Required if ignore is not true.
    ra String
    The mode of Router Advertisements. Must be one of: "disabled", "relay", "server".
    raFlags List<String>
    Router Advertisement flags to include in messages. Must be one of: "home-agent", "managed-config", "none", "other-config".
    start Number
    Specifies the offset from the network address of the underlying interface to calculate the minimum address that may be leased to clients. It may be greater than 255 to span subnets. Required if ignore is not true.

    Package Details

    Repository
    openwrt joneshf/terraform-provider-openwrt
    License
    Notes
    This Pulumi package is based on the openwrt Terraform Provider.
    openwrt logo
    openwrt 0.0.20 published on Friday, Mar 7, 2025 by joneshf