import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * DhcpInterface data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // We use the ID from the resource created above. * const singleInfById = scm.getDhcpInterface({ * id: "b3544acb-fc55-4c6f-921d-4128b5a1d135", * }); * export const singleDhcpInfName = singleInfById; * ``` */ export declare function getDhcpInterface(args: GetDhcpInterfaceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDhcpInterface. */ export interface GetDhcpInterfaceArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * UUID of the resource */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getDhcpInterface. */ export interface GetDhcpInterfaceResult { /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly name: string; readonly relay: outputs.GetDhcpInterfaceRelay; readonly server: outputs.GetDhcpInterfaceServer; readonly snippet: string; readonly tfid: string; } /** * DhcpInterface data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // We use the ID from the resource created above. * const singleInfById = scm.getDhcpInterface({ * id: "b3544acb-fc55-4c6f-921d-4128b5a1d135", * }); * export const singleDhcpInfName = singleInfById; * ``` */ export declare function getDhcpInterfaceOutput(args: GetDhcpInterfaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDhcpInterface. */ export interface GetDhcpInterfaceOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * UUID of the resource */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getDhcpInterface.d.ts.map