1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. MysqlDatabase
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.MysqlDatabase

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Provides a resource to create a mysql database

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const database = new tencentcloud.MysqlDatabase("database", {
        characterSetName: "utf8",
        dbName: "for_tf_test",
        instanceId: "cdb-i9xfdf7z",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    database = tencentcloud.MysqlDatabase("database",
        character_set_name="utf8",
        db_name="for_tf_test",
        instance_id="cdb-i9xfdf7z")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.NewMysqlDatabase(ctx, "database", &tencentcloud.MysqlDatabaseArgs{
    			CharacterSetName: pulumi.String("utf8"),
    			DbName:           pulumi.String("for_tf_test"),
    			InstanceId:       pulumi.String("cdb-i9xfdf7z"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var database = new Tencentcloud.MysqlDatabase("database", new()
        {
            CharacterSetName = "utf8",
            DbName = "for_tf_test",
            InstanceId = "cdb-i9xfdf7z",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.MysqlDatabase;
    import com.pulumi.tencentcloud.MysqlDatabaseArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var database = new MysqlDatabase("database", MysqlDatabaseArgs.builder()
                .characterSetName("utf8")
                .dbName("for_tf_test")
                .instanceId("cdb-i9xfdf7z")
                .build());
    
        }
    }
    
    resources:
      database:
        type: tencentcloud:MysqlDatabase
        properties:
          characterSetName: utf8
          dbName: for_tf_test
          instanceId: cdb-i9xfdf7z
    

    Create MysqlDatabase Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new MysqlDatabase(name: string, args: MysqlDatabaseArgs, opts?: CustomResourceOptions);
    @overload
    def MysqlDatabase(resource_name: str,
                      args: MysqlDatabaseArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def MysqlDatabase(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      character_set_name: Optional[str] = None,
                      db_name: Optional[str] = None,
                      instance_id: Optional[str] = None,
                      mysql_database_id: Optional[str] = None)
    func NewMysqlDatabase(ctx *Context, name string, args MysqlDatabaseArgs, opts ...ResourceOption) (*MysqlDatabase, error)
    public MysqlDatabase(string name, MysqlDatabaseArgs args, CustomResourceOptions? opts = null)
    public MysqlDatabase(String name, MysqlDatabaseArgs args)
    public MysqlDatabase(String name, MysqlDatabaseArgs args, CustomResourceOptions options)
    
    type: tencentcloud:MysqlDatabase
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args MysqlDatabaseArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args MysqlDatabaseArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args MysqlDatabaseArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MysqlDatabaseArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MysqlDatabaseArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    MysqlDatabase Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The MysqlDatabase resource accepts the following input properties:

    CharacterSetName string
    Character set. Valid values: utf8, gbk, latin1, utf8mb4.
    DbName string
    Name of Database.
    InstanceId string
    Instance ID in the format of cdb-c1nl9rpv, which is the same as the one displayed in the TencentDB console.
    MysqlDatabaseId string
    ID of the resource.
    CharacterSetName string
    Character set. Valid values: utf8, gbk, latin1, utf8mb4.
    DbName string
    Name of Database.
    InstanceId string
    Instance ID in the format of cdb-c1nl9rpv, which is the same as the one displayed in the TencentDB console.
    MysqlDatabaseId string
    ID of the resource.
    characterSetName String
    Character set. Valid values: utf8, gbk, latin1, utf8mb4.
    dbName String
    Name of Database.
    instanceId String
    Instance ID in the format of cdb-c1nl9rpv, which is the same as the one displayed in the TencentDB console.
    mysqlDatabaseId String
    ID of the resource.
    characterSetName string
    Character set. Valid values: utf8, gbk, latin1, utf8mb4.
    dbName string
    Name of Database.
    instanceId string
    Instance ID in the format of cdb-c1nl9rpv, which is the same as the one displayed in the TencentDB console.
    mysqlDatabaseId string
    ID of the resource.
    character_set_name str
    Character set. Valid values: utf8, gbk, latin1, utf8mb4.
    db_name str
    Name of Database.
    instance_id str
    Instance ID in the format of cdb-c1nl9rpv, which is the same as the one displayed in the TencentDB console.
    mysql_database_id str
    ID of the resource.
    characterSetName String
    Character set. Valid values: utf8, gbk, latin1, utf8mb4.
    dbName String
    Name of Database.
    instanceId String
    Instance ID in the format of cdb-c1nl9rpv, which is the same as the one displayed in the TencentDB console.
    mysqlDatabaseId String
    ID of the resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the MysqlDatabase resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing MysqlDatabase Resource

    Get an existing MysqlDatabase resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: MysqlDatabaseState, opts?: CustomResourceOptions): MysqlDatabase
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            character_set_name: Optional[str] = None,
            db_name: Optional[str] = None,
            instance_id: Optional[str] = None,
            mysql_database_id: Optional[str] = None) -> MysqlDatabase
    func GetMysqlDatabase(ctx *Context, name string, id IDInput, state *MysqlDatabaseState, opts ...ResourceOption) (*MysqlDatabase, error)
    public static MysqlDatabase Get(string name, Input<string> id, MysqlDatabaseState? state, CustomResourceOptions? opts = null)
    public static MysqlDatabase get(String name, Output<String> id, MysqlDatabaseState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:MysqlDatabase    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CharacterSetName string
    Character set. Valid values: utf8, gbk, latin1, utf8mb4.
    DbName string
    Name of Database.
    InstanceId string
    Instance ID in the format of cdb-c1nl9rpv, which is the same as the one displayed in the TencentDB console.
    MysqlDatabaseId string
    ID of the resource.
    CharacterSetName string
    Character set. Valid values: utf8, gbk, latin1, utf8mb4.
    DbName string
    Name of Database.
    InstanceId string
    Instance ID in the format of cdb-c1nl9rpv, which is the same as the one displayed in the TencentDB console.
    MysqlDatabaseId string
    ID of the resource.
    characterSetName String
    Character set. Valid values: utf8, gbk, latin1, utf8mb4.
    dbName String
    Name of Database.
    instanceId String
    Instance ID in the format of cdb-c1nl9rpv, which is the same as the one displayed in the TencentDB console.
    mysqlDatabaseId String
    ID of the resource.
    characterSetName string
    Character set. Valid values: utf8, gbk, latin1, utf8mb4.
    dbName string
    Name of Database.
    instanceId string
    Instance ID in the format of cdb-c1nl9rpv, which is the same as the one displayed in the TencentDB console.
    mysqlDatabaseId string
    ID of the resource.
    character_set_name str
    Character set. Valid values: utf8, gbk, latin1, utf8mb4.
    db_name str
    Name of Database.
    instance_id str
    Instance ID in the format of cdb-c1nl9rpv, which is the same as the one displayed in the TencentDB console.
    mysql_database_id str
    ID of the resource.
    characterSetName String
    Character set. Valid values: utf8, gbk, latin1, utf8mb4.
    dbName String
    Name of Database.
    instanceId String
    Instance ID in the format of cdb-c1nl9rpv, which is the same as the one displayed in the TencentDB console.
    mysqlDatabaseId String
    ID of the resource.

    Import

    mysql database can be imported using the id, e.g.

    $ pulumi import tencentcloud:index/mysqlDatabase:MysqlDatabase database instanceId#dbName
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack