import * as pulumi from "@pulumi/pulumi"; export declare class UserLocal extends pulumi.CustomResource { /** * Get an existing UserLocal 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?: UserLocalState, opts?: pulumi.CustomResourceOptions): UserLocal; /** * Returns true if the given object is an instance of UserLocal. 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 UserLocal; readonly authConcurrentOverride: pulumi.Output; readonly authConcurrentValue: pulumi.Output; readonly authtimeout: pulumi.Output; readonly emailTo: pulumi.Output; readonly fortitoken: pulumi.Output; readonly fosid: pulumi.Output; readonly ldapServer: pulumi.Output; readonly name: pulumi.Output; readonly passwd: pulumi.Output; readonly passwdPolicy: pulumi.Output; readonly passwdTime: pulumi.Output; readonly ppkIdentity: pulumi.Output; readonly ppkSecret: pulumi.Output; readonly radiusServer: pulumi.Output; readonly smsCustomServer: pulumi.Output; readonly smsPhone: pulumi.Output; readonly smsServer: pulumi.Output; readonly status: pulumi.Output; readonly tacacsServer: pulumi.Output; readonly twoFactor: pulumi.Output; readonly twoFactorAuthentication: pulumi.Output; readonly twoFactorNotification: pulumi.Output; readonly type: pulumi.Output; readonly usernameCaseInsensitivity: pulumi.Output; readonly usernameCaseSensitivity: pulumi.Output; readonly usernameSensitivity: pulumi.Output; readonly vdomparam: pulumi.Output; readonly workstation: pulumi.Output; /** * Create a UserLocal 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: UserLocalArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering UserLocal resources. */ export interface UserLocalState { authConcurrentOverride?: pulumi.Input; authConcurrentValue?: pulumi.Input; authtimeout?: pulumi.Input; emailTo?: pulumi.Input; fortitoken?: pulumi.Input; fosid?: pulumi.Input; ldapServer?: pulumi.Input; name?: pulumi.Input; passwd?: pulumi.Input; passwdPolicy?: pulumi.Input; passwdTime?: pulumi.Input; ppkIdentity?: pulumi.Input; ppkSecret?: pulumi.Input; radiusServer?: pulumi.Input; smsCustomServer?: pulumi.Input; smsPhone?: pulumi.Input; smsServer?: pulumi.Input; status?: pulumi.Input; tacacsServer?: pulumi.Input; twoFactor?: pulumi.Input; twoFactorAuthentication?: pulumi.Input; twoFactorNotification?: pulumi.Input; type?: pulumi.Input; usernameCaseInsensitivity?: pulumi.Input; usernameCaseSensitivity?: pulumi.Input; usernameSensitivity?: pulumi.Input; vdomparam?: pulumi.Input; workstation?: pulumi.Input; } /** * The set of arguments for constructing a UserLocal resource. */ export interface UserLocalArgs { authConcurrentOverride?: pulumi.Input; authConcurrentValue?: pulumi.Input; authtimeout?: pulumi.Input; emailTo?: pulumi.Input; fortitoken?: pulumi.Input; fosid?: pulumi.Input; ldapServer?: pulumi.Input; name?: pulumi.Input; passwd?: pulumi.Input; passwdPolicy?: pulumi.Input; passwdTime?: pulumi.Input; ppkIdentity?: pulumi.Input; ppkSecret?: pulumi.Input; radiusServer?: pulumi.Input; smsCustomServer?: pulumi.Input; smsPhone?: pulumi.Input; smsServer?: pulumi.Input; status: pulumi.Input; tacacsServer?: pulumi.Input; twoFactor?: pulumi.Input; twoFactorAuthentication?: pulumi.Input; twoFactorNotification?: pulumi.Input; type: pulumi.Input; usernameCaseInsensitivity?: pulumi.Input; usernameCaseSensitivity?: pulumi.Input; usernameSensitivity?: pulumi.Input; vdomparam?: pulumi.Input; workstation?: pulumi.Input; }