import * as pulumi from "@pulumi/pulumi"; /** * Creates a database for a database cluster associated with a public cloud project. * * With this resource you can create a database for the following database engine: * * * `clickhouse` * * `mysql` * * `postgresql` * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const db = ovh.CloudProjectDatabase.getDatabase({ * serviceName: "XXXX", * engine: "YYYY", * id: "ZZZZ", * }); * const database = new ovh.cloudprojectdatabase.DatabaseInstance("database", { * serviceName: db.then(db => db.serviceName), * engine: db.then(db => db.engine), * clusterId: db.then(db => db.id), * name: "mydatabase", * }); * ``` * * ## Import * * OVHcloud Managed database clusters databases can be imported using the `service_name`, `engine`, `cluster_id` and `id` of the database, separated by "/" E.g., * * bash * * ```sh * $ pulumi import ovh:CloudProjectDatabase/databaseInstance:DatabaseInstance my_database service_name/engine/cluster_id/id * ``` */ export declare class DatabaseInstance extends pulumi.CustomResource { /** * Get an existing DatabaseInstance 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?: DatabaseInstanceState, opts?: pulumi.CustomResourceOptions): DatabaseInstance; /** * Returns true if the given object is an instance of DatabaseInstance. 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 DatabaseInstance; /** * Cluster ID. */ readonly clusterId: pulumi.Output; /** * Defines if the database has been created by default. */ readonly default: pulumi.Output; /** * The engine of the database cluster you want to add. You can find the complete list of available engine in the [public documentation](https://docs.ovh.com/gb/en/publiccloud/databases). Available engines: */ readonly engine: pulumi.Output; /** * Name of the database. */ readonly name: pulumi.Output; /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ readonly serviceName: pulumi.Output; /** * Create a DatabaseInstance 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: DatabaseInstanceArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DatabaseInstance resources. */ export interface DatabaseInstanceState { /** * Cluster ID. */ clusterId?: pulumi.Input; /** * Defines if the database has been created by default. */ default?: pulumi.Input; /** * The engine of the database cluster you want to add. You can find the complete list of available engine in the [public documentation](https://docs.ovh.com/gb/en/publiccloud/databases). Available engines: */ engine?: pulumi.Input; /** * Name of the database. */ name?: pulumi.Input; /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName?: pulumi.Input; } /** * The set of arguments for constructing a DatabaseInstance resource. */ export interface DatabaseInstanceArgs { /** * Cluster ID. */ clusterId: pulumi.Input; /** * The engine of the database cluster you want to add. You can find the complete list of available engine in the [public documentation](https://docs.ovh.com/gb/en/publiccloud/databases). Available engines: */ engine: pulumi.Input; /** * Name of the database. */ name?: pulumi.Input; /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName?: pulumi.Input; }