import * as pulumi from "@pulumi/pulumi"; export declare class NexusUser extends pulumi.CustomResource { /** * Get an existing NexusUser 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?: NexusUserState, opts?: pulumi.CustomResourceOptions): NexusUser; /** * Returns true if the given object is an instance of NexusUser. 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 NexusUser; /** * The email address associated with the user. */ readonly email: pulumi.Output; /** * The first name of the user. */ readonly firstname: pulumi.Output; /** * The last name of the user. */ readonly lastname: pulumi.Output; /** * The password for the user. */ readonly password: pulumi.Output; /** * The roles which the user has been assigned within Nexus. */ readonly roles: pulumi.Output; /** * The user's status, e.g. active or disabled. */ readonly status: pulumi.Output; /** * The userid which is required for login. This value cannot be changed. */ readonly userid: pulumi.Output; /** * Create a NexusUser 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: NexusUserArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NexusUser resources. */ export interface NexusUserState { /** * The email address associated with the user. */ email?: pulumi.Input; /** * The first name of the user. */ firstname?: pulumi.Input; /** * The last name of the user. */ lastname?: pulumi.Input; /** * The password for the user. */ password?: pulumi.Input; /** * The roles which the user has been assigned within Nexus. */ roles?: pulumi.Input[]>; /** * The user's status, e.g. active or disabled. */ status?: pulumi.Input; /** * The userid which is required for login. This value cannot be changed. */ userid?: pulumi.Input; } /** * The set of arguments for constructing a NexusUser resource. */ export interface NexusUserArgs { /** * The email address associated with the user. */ email: pulumi.Input; /** * The first name of the user. */ firstname: pulumi.Input; /** * The last name of the user. */ lastname: pulumi.Input; /** * The password for the user. */ password: pulumi.Input; /** * The roles which the user has been assigned within Nexus. */ roles?: pulumi.Input[]>; /** * The user's status, e.g. active or disabled. */ status?: pulumi.Input; /** * The userid which is required for login. This value cannot be changed. */ userid: pulumi.Input; }