import * as pulumi from "@pulumi/pulumi"; /** * This data source can read profiling policies. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.profiling.getProfilerProfile({ * name: "Polycom-Device", * }); * ``` */ export declare function getProfilerProfile(args?: GetProfilerProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getProfilerProfile. */ export interface GetProfilerProfileArgs { /** * The id of the object */ id?: string; /** * Profile name */ name?: string; } /** * A collection of values returned by getProfilerProfile. */ export interface GetProfilerProfileResult { /** * Description */ readonly description: string; /** * The id of the object */ readonly id: string; /** * Profile name */ readonly name: string; /** * Parent ID */ readonly parentId: string; } /** * This data source can read profiling policies. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.profiling.getProfilerProfile({ * name: "Polycom-Device", * }); * ``` */ export declare function getProfilerProfileOutput(args?: GetProfilerProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getProfilerProfile. */ export interface GetProfilerProfileOutputArgs { /** * The id of the object */ id?: pulumi.Input; /** * Profile name */ name?: pulumi.Input; } //# sourceMappingURL=getProfilerProfile.d.ts.map