import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to look up a user management department by ID or name. */ export declare function getUserManagementDepartment(args?: GetUserManagementDepartmentArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetUserManagementDepartmentArgs { /** * The name of the department to look up. */ name?: string; /** * The ID of the department to look up. */ resourceId?: number; } export interface GetUserManagementDepartmentResult { /** * Comments or notes about the department. */ readonly comments: string; /** * Whether the department has been deleted. */ readonly deleted: boolean; /** * The IDP ID associated with the department. */ readonly idpId: number; /** * The name of the department. */ readonly name: string; /** * The ID of the department. */ readonly resourceId: number; } /** * Use this data source to look up a user management department by ID or name. */ export declare function getUserManagementDepartmentOutput(args?: GetUserManagementDepartmentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetUserManagementDepartmentOutputArgs { /** * The name of the department to look up. */ name?: pulumi.Input; /** * The ID of the department to look up. */ resourceId?: pulumi.Input; } //# sourceMappingURL=getUserManagementDepartment.d.ts.map