UNPKG

@lubyou/pulumi-fortios

Version:

A Pulumi package for creating and managing fortios cloud resources.

30 lines (29 loc) 1.07 kB
import * as pulumi from "@pulumi/pulumi"; export declare function getSystemDhcpServerList(args?: GetSystemDhcpServerListArgs, opts?: pulumi.InvokeOptions): Promise<GetSystemDhcpServerListResult>; /** * A collection of arguments for invoking GetSystemDhcpServerList. */ export interface GetSystemDhcpServerListArgs { filter?: string; vdomparam?: string; } /** * A collection of values returned by GetSystemDhcpServerList. */ export interface GetSystemDhcpServerListResult { readonly filter?: string; readonly fosidlists: number[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly vdomparam?: string; } export declare function getSystemDhcpServerListOutput(args?: GetSystemDhcpServerListOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSystemDhcpServerListResult>; /** * A collection of arguments for invoking GetSystemDhcpServerList. */ export interface GetSystemDhcpServerListOutputArgs { filter?: pulumi.Input<string>; vdomparam?: pulumi.Input<string>; }