import * as pulumi from "@pulumi/pulumi"; /** * The User data source allows access to an existing Rule within your Redis Enterprise Cloud Account. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as rediscloud from "@pulumi/rediscloud"; * * const example = rediscloud.getAclUser({ * name: "fast-admin-john", * }); * export const rediscloudAclUser = example.then(example => example.id); * ``` */ export declare function getAclUser(args: GetAclUserArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAclUser. */ export interface GetAclUserArgs { /** * The name of the User to filter returned subscriptions */ name: string; } /** * A collection of values returned by getAclUser. */ export interface GetAclUserResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The User's name. */ readonly name: string; /** * The name of the User's Role. */ readonly role: string; } /** * The User data source allows access to an existing Rule within your Redis Enterprise Cloud Account. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as rediscloud from "@pulumi/rediscloud"; * * const example = rediscloud.getAclUser({ * name: "fast-admin-john", * }); * export const rediscloudAclUser = example.then(example => example.id); * ``` */ export declare function getAclUserOutput(args: GetAclUserOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getAclUser. */ export interface GetAclUserOutputArgs { /** * The name of the User to filter returned subscriptions */ name: pulumi.Input; }