import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * HttpServerProfile data source */ export declare function getHttpServerProfile(args: GetHttpServerProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getHttpServerProfile. */ export interface GetHttpServerProfileArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the HTTP server profile */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getHttpServerProfile. */ export interface GetHttpServerProfileResult { /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; readonly format: outputs.GetHttpServerProfileFormat; /** * The UUID of the HTTP server profile */ readonly id: string; readonly name: string; readonly servers: outputs.GetHttpServerProfileServer[]; readonly snippet: string; readonly tagRegistration: boolean; readonly tfid: string; } /** * HttpServerProfile data source */ export declare function getHttpServerProfileOutput(args: GetHttpServerProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getHttpServerProfile. */ export interface GetHttpServerProfileOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the HTTP server profile */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getHttpServerProfile.d.ts.map