import * as pulumi from "@pulumi/pulumi"; /** * Creates a User in your Redis Enterprise Cloud Account. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as rediscloud from "@rediscloud/pulumi-rediscloud"; * * const user_resource = new rediscloud.AclUser("user-resource", { * role: rediscloud_acl_role["role-resource"].name, * password: "mY.passw0rd", * }); * ``` * * ## Import * * `rediscloud_acl_user` can be imported using the Identifier of the User, e.g. * * ```sh * $ pulumi import rediscloud:index/aclUser:AclUser user-resource 123456 * ``` */ export declare class AclUser extends pulumi.CustomResource { /** * Get an existing AclUser 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?: AclUserState, opts?: pulumi.CustomResourceOptions): AclUser; /** * Returns true if the given object is an instance of AclUser. 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 AclUser; /** * A meaningful name for the User. Must be unique. */ readonly name: pulumi.Output; /** * The password for this ACL User. Must contain a lower-case letter, a * upper-case letter, a * number and a special character. */ readonly password: pulumi.Output; /** * The name of the Role held by the User. */ readonly role: pulumi.Output; /** * Create a AclUser 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: AclUserArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AclUser resources. */ export interface AclUserState { /** * A meaningful name for the User. Must be unique. */ name?: pulumi.Input; /** * The password for this ACL User. Must contain a lower-case letter, a * upper-case letter, a * number and a special character. */ password?: pulumi.Input; /** * The name of the Role held by the User. */ role?: pulumi.Input; } /** * The set of arguments for constructing a AclUser resource. */ export interface AclUserArgs { /** * A meaningful name for the User. Must be unique. */ name?: pulumi.Input; /** * The password for this ACL User. Must contain a lower-case letter, a * upper-case letter, a * number and a special character. */ password: pulumi.Input; /** * The name of the Role held by the User. */ role: pulumi.Input; }