import * as pulumi from "@pulumi/pulumi"; /** * Data source for retrieving a Harness Dashboard Folder. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const folder = harness.platform.getDashboardFolders({ * id: "id", * }); * ``` */ export declare function getDashboardFolders(args: GetDashboardFoldersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDashboardFolders. */ export interface GetDashboardFoldersArgs { /** * Identifier of the folder. */ id: string; /** * Unique identifier of the resource. */ identifier?: string; /** * Name of the resource. */ name?: string; } /** * A collection of values returned by getDashboardFolders. */ export interface GetDashboardFoldersResult { /** * Created DateTime of the folder. */ readonly createdAt: string; /** * Description of the resource. */ readonly description: string; /** * Identifier of the folder. */ readonly id: string; /** * Unique identifier of the resource. */ readonly identifier?: string; /** * Name of the resource. */ readonly name?: string; /** * Tags to associate with the resource. */ readonly tags: string[]; } /** * Data source for retrieving a Harness Dashboard Folder. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const folder = harness.platform.getDashboardFolders({ * id: "id", * }); * ``` */ export declare function getDashboardFoldersOutput(args: GetDashboardFoldersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDashboardFolders. */ export interface GetDashboardFoldersOutputArgs { /** * Identifier of the folder. */ id: pulumi.Input; /** * Unique identifier of the resource. */ identifier?: pulumi.Input; /** * Name of the resource. */ name?: pulumi.Input; } //# sourceMappingURL=getDashboardFolders.d.ts.map