import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Provides a datasource to retrieve all the users. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const user = new nutanix.User("user", {directoryServiceUser: { * userPrincipalName: "test-user@ntnxlab.local", * directoryServiceReference: { * uuid: "", * }, * }}); * const users = nutanix.getUser({}); * ``` * */ export declare function getUsers(args?: GetUsersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getUsers. */ export interface GetUsersArgs { /** * - The user kind metadata. */ metadatas?: inputs.GetUsersMetadata[]; } /** * A collection of values returned by getUsers. */ export interface GetUsersResult { /** * The version of the API. */ readonly apiVersion: string; /** * List of Users */ readonly entities: outputs.GetUsersEntity[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * - The user kind metadata. */ readonly metadatas: outputs.GetUsersMetadata[]; } /** * Provides a datasource to retrieve all the users. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const user = new nutanix.User("user", {directoryServiceUser: { * userPrincipalName: "test-user@ntnxlab.local", * directoryServiceReference: { * uuid: "", * }, * }}); * const users = nutanix.getUser({}); * ``` * */ export declare function getUsersOutput(args?: GetUsersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getUsers. */ export interface GetUsersOutputArgs { /** * - The user kind metadata. */ metadatas?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getUsers.d.ts.map