import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Provides a resource to create a user based on the input parameters. * * ## 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: "", * }, * }}); * ``` * * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const user = new nutanix.User("user", {identityProviderUser: { * username: "username", * identityProviderReference: { * uuid: "", * }, * }}); * ``` * */ export declare class User extends pulumi.CustomResource { /** * Get an existing User 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?: UserState, opts?: pulumi.CustomResourceOptions): User; /** * Returns true if the given object is an instance of User. 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 User; /** * - List of ACP references. See #reference for more details. */ readonly accessControlPolicyReferenceLists: pulumi.Output; /** * The version of the API. */ readonly apiVersion: pulumi.Output; /** * - (Optional) Categories for the Access Control Policy. */ readonly categories: pulumi.Output; /** * - (Optional) The directory service user configuration. See below for more information. */ readonly directoryServiceUser: pulumi.Output; /** * - The display name of the user (common name) provided by the directory service. */ readonly displayName: pulumi.Output; /** * - (Optional) (Optional) The identity provider user configuration. See below for more information. */ readonly identityProviderUser: pulumi.Output; /** * - The vm kind metadata. */ readonly metadata: pulumi.Output<{ [key: string]: string; }>; /** * - the name(Optional). */ readonly name: pulumi.Output; /** * - (Optional) The reference to a user. */ readonly ownerReference: pulumi.Output<{ [key: string]: string; }>; /** * - (Optional) The reference to a project. */ readonly projectReference: pulumi.Output<{ [key: string]: string; } | undefined>; /** * - A list of projects the user is part of. See #reference for more details. */ readonly projectReferenceLists: pulumi.Output; /** * - The state of the entity. */ readonly state: pulumi.Output; /** * - The name of the user. */ readonly userType: pulumi.Output; /** * Create a User 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?: UserArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering User resources. */ export interface UserState { /** * - List of ACP references. See #reference for more details. */ accessControlPolicyReferenceLists?: pulumi.Input[] | undefined>; /** * The version of the API. */ apiVersion?: pulumi.Input; /** * - (Optional) Categories for the Access Control Policy. */ categories?: pulumi.Input[] | undefined>; /** * - (Optional) The directory service user configuration. See below for more information. */ directoryServiceUser?: pulumi.Input; /** * - The display name of the user (common name) provided by the directory service. */ displayName?: pulumi.Input; /** * - (Optional) (Optional) The identity provider user configuration. See below for more information. */ identityProviderUser?: pulumi.Input; /** * - The vm kind metadata. */ metadata?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * - the name(Optional). */ name?: pulumi.Input; /** * - (Optional) The reference to a user. */ ownerReference?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * - (Optional) The reference to a project. */ projectReference?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * - A list of projects the user is part of. See #reference for more details. */ projectReferenceLists?: pulumi.Input[] | undefined>; /** * - The state of the entity. */ state?: pulumi.Input; /** * - The name of the user. */ userType?: pulumi.Input; } /** * The set of arguments for constructing a User resource. */ export interface UserArgs { /** * - (Optional) Categories for the Access Control Policy. */ categories?: pulumi.Input[] | undefined>; /** * - (Optional) The directory service user configuration. See below for more information. */ directoryServiceUser?: pulumi.Input; /** * - (Optional) (Optional) The identity provider user configuration. See below for more information. */ identityProviderUser?: pulumi.Input; /** * - (Optional) The reference to a user. */ ownerReference?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * - (Optional) The reference to a project. */ projectReference?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; } //# sourceMappingURL=user.d.ts.map