import * as pulumi from "@pulumi/pulumi"; /** * ## Import * * OVHcloud Managed MongoDB clusters prometheus can be imported using the `service_name` and `cluster_id`, separated by "/" E.g., * * bash * * ```sh * $ pulumi import ovh:CloudProjectDatabase/mongoDbPrometheus:MongoDbPrometheus my_prometheus service_name/engine/cluster_id * ``` */ export declare class MongoDbPrometheus extends pulumi.CustomResource { /** * Get an existing MongoDbPrometheus 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?: MongoDbPrometheusState, opts?: pulumi.CustomResourceOptions): MongoDbPrometheus; /** * Returns true if the given object is an instance of MongoDbPrometheus. 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 MongoDbPrometheus; /** * Cluster ID. */ readonly clusterId: pulumi.Output; /** * (Sensitive) Password of the user. */ readonly password: pulumi.Output; /** * Arbitrary string to change to trigger a password update */ readonly passwordReset: pulumi.Output; /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ readonly serviceName: pulumi.Output; /** * Name of the srv domain endpoint. */ readonly srvDomain: pulumi.Output; /** * name of the prometheus user. */ readonly username: pulumi.Output; /** * Create a MongoDbPrometheus 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: MongoDbPrometheusArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering MongoDbPrometheus resources. */ export interface MongoDbPrometheusState { /** * Cluster ID. */ clusterId?: pulumi.Input; /** * (Sensitive) Password of the user. */ password?: pulumi.Input; /** * Arbitrary string to change to trigger a password update */ passwordReset?: pulumi.Input; /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName?: pulumi.Input; /** * Name of the srv domain endpoint. */ srvDomain?: pulumi.Input; /** * name of the prometheus user. */ username?: pulumi.Input; } /** * The set of arguments for constructing a MongoDbPrometheus resource. */ export interface MongoDbPrometheusArgs { /** * Cluster ID. */ clusterId: pulumi.Input; /** * Arbitrary string to change to trigger a password update */ passwordReset?: pulumi.Input; /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName?: pulumi.Input; }