import * as pulumi from "@pulumi/pulumi"; /** * ## Import * * OVHcloud Managed MongoDB clusters users can be imported using the `service_name`, `cluster_id` and `id` of the user, separated by "/" E.g., * * bash * * ```sh * $ pulumi import ovh:CloudProjectDatabase/mongoDbUser:MongoDbUser my_user service_name/cluster_id/id * ``` */ export declare class MongoDbUser extends pulumi.CustomResource { /** * Get an existing MongoDbUser 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?: MongoDbUserState, opts?: pulumi.CustomResourceOptions): MongoDbUser; /** * Returns true if the given object is an instance of MongoDbUser. 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 MongoDbUser; /** * Cluster ID. */ readonly clusterId: pulumi.Output; /** * Date of the creation of the user. */ readonly createdAt: pulumi.Output; /** * Name of the user. A user named "admin" is mapped with already created admin@admin user instead of creating a new user. */ readonly name: pulumi.Output; /** * (Sensitive) Password of the user. */ readonly password: pulumi.Output; /** * Arbitrary string to change to trigger a password update */ readonly passwordReset: pulumi.Output; /** * Roles the user belongs to. Since version 0.37.0, the authentication database must be indicated for all roles. Available roles: * * `backup@admin` * * `clusterAdmin@admin` * * `clusterManager@admin` * * `clusterMonitor@admin` * * `dbAdmin@(defined db)` * * `dbAdminAnyDatabase@admin` * * `dbOwner@(defined db)` * * `enableSharding@(defined db)` * * `hostManager@admin` * * `read@(defined db)` * * `readAnyDatabase@admin` * * `readWrite@(defined db)` * * `readWriteAnyDatabase@admin` * * `restore@admin` * * `root@admin` * * `userAdmin@(defined db)` * * `userAdminAnyDatabase@admin` */ readonly roles: pulumi.Output; /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ readonly serviceName: pulumi.Output; /** * Current status of the user. */ readonly status: pulumi.Output; /** * Create a MongoDbUser 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: MongoDbUserArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering MongoDbUser resources. */ export interface MongoDbUserState { /** * Cluster ID. */ clusterId?: pulumi.Input; /** * Date of the creation of the user. */ createdAt?: pulumi.Input; /** * Name of the user. A user named "admin" is mapped with already created admin@admin user instead of creating a new user. */ name?: pulumi.Input; /** * (Sensitive) Password of the user. */ password?: pulumi.Input; /** * Arbitrary string to change to trigger a password update */ passwordReset?: pulumi.Input; /** * Roles the user belongs to. Since version 0.37.0, the authentication database must be indicated for all roles. Available roles: * * `backup@admin` * * `clusterAdmin@admin` * * `clusterManager@admin` * * `clusterMonitor@admin` * * `dbAdmin@(defined db)` * * `dbAdminAnyDatabase@admin` * * `dbOwner@(defined db)` * * `enableSharding@(defined db)` * * `hostManager@admin` * * `read@(defined db)` * * `readAnyDatabase@admin` * * `readWrite@(defined db)` * * `readWriteAnyDatabase@admin` * * `restore@admin` * * `root@admin` * * `userAdmin@(defined db)` * * `userAdminAnyDatabase@admin` */ roles?: pulumi.Input[]>; /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName?: pulumi.Input; /** * Current status of the user. */ status?: pulumi.Input; } /** * The set of arguments for constructing a MongoDbUser resource. */ export interface MongoDbUserArgs { /** * Cluster ID. */ clusterId: pulumi.Input; /** * Name of the user. A user named "admin" is mapped with already created admin@admin user instead of creating a new user. */ name?: pulumi.Input; /** * Arbitrary string to change to trigger a password update */ passwordReset?: pulumi.Input; /** * Roles the user belongs to. Since version 0.37.0, the authentication database must be indicated for all roles. Available roles: * * `backup@admin` * * `clusterAdmin@admin` * * `clusterManager@admin` * * `clusterMonitor@admin` * * `dbAdmin@(defined db)` * * `dbAdminAnyDatabase@admin` * * `dbOwner@(defined db)` * * `enableSharding@(defined db)` * * `hostManager@admin` * * `read@(defined db)` * * `readAnyDatabase@admin` * * `readWrite@(defined db)` * * `readWriteAnyDatabase@admin` * * `restore@admin` * * `root@admin` * * `userAdmin@(defined db)` * * `userAdminAnyDatabase@admin` */ roles?: pulumi.Input[]>; /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName?: pulumi.Input; }