import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Provides a resource to add a User group to the system.. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const userGrp = new nutanix.UserGroups("user_grp", {directoryServiceUserGroups: [{ * distinguishedName: "", * }]}); * ``` * * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const userGrp = new nutanix.UserGroups("user_grp", {samlUserGroups: [{ * name: "", * idpUuid: "", * }]}); * ``` * */ export declare class UserGroups extends pulumi.CustomResource { /** * Get an existing UserGroups resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: UserGroupsState, opts?: pulumi.CustomResourceOptions): UserGroups; /** * Returns true if the given object is an instance of UserGroups. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is UserGroups; readonly categories: pulumi.Output; /** * - (Optional) A Directory Service organizational unit. */ readonly directoryServiceOus: pulumi.Output; /** * - (Optional) A Directory Service user group. */ readonly directoryServiceUserGroups: pulumi.Output; /** * The userGroup kind metadata. */ readonly metadata: pulumi.Output<{ [key: string]: string; }>; readonly ownerReference: pulumi.Output<{ [key: string]: string; }>; readonly projectReference: pulumi.Output<{ [key: string]: string; } | undefined>; /** * - (Optional) A SAML Service user group. */ readonly samlUserGroups: pulumi.Output; /** * Create a UserGroups resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: UserGroupsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering UserGroups resources. */ export interface UserGroupsState { categories?: pulumi.Input[] | undefined>; /** * - (Optional) A Directory Service organizational unit. */ directoryServiceOus?: pulumi.Input[] | undefined>; /** * - (Optional) A Directory Service user group. */ directoryServiceUserGroups?: pulumi.Input[] | undefined>; /** * The userGroup kind metadata. */ metadata?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; ownerReference?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; projectReference?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * - (Optional) A SAML Service user group. */ samlUserGroups?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a UserGroups resource. */ export interface UserGroupsArgs { categories?: pulumi.Input[] | undefined>; /** * - (Optional) A Directory Service organizational unit. */ directoryServiceOus?: pulumi.Input[] | undefined>; /** * - (Optional) A Directory Service user group. */ directoryServiceUserGroups?: pulumi.Input[] | undefined>; ownerReference?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; projectReference?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * - (Optional) A SAML Service user group. */ samlUserGroups?: pulumi.Input[] | undefined>; } //# sourceMappingURL=userGroups.d.ts.map