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 user groups. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const usergroups = nutanix.getUserGroups({}); * ``` * */ export declare function getUserGroups(args?: GetUserGroupsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getUserGroups. */ export interface GetUserGroupsArgs { /** * - The user group kind metadata. */ metadatas?: inputs.GetUserGroupsMetadata[]; } /** * A collection of values returned by getUserGroups. */ export interface GetUserGroupsResult { readonly apiVersion: string; readonly entities: outputs.GetUserGroupsEntity[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly metadatas: outputs.GetUserGroupsMetadata[]; } /** * Provides a datasource to retrieve all the user groups. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const usergroups = nutanix.getUserGroups({}); * ``` * */ export declare function getUserGroupsOutput(args?: GetUserGroupsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getUserGroups. */ export interface GetUserGroupsOutputArgs { /** * - The user group kind metadata. */ metadatas?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getUserGroups.d.ts.map