1. Packages
  2. Volcengine
  3. API Docs
  4. rds_mysql
  5. Account
Volcengine v0.0.34 published on Wednesday, Jul 2, 2025 by Volcengine

volcengine.rds_mysql.Account

Explore with Pulumi AI

volcengine logo
Volcengine v0.0.34 published on Wednesday, Jul 2, 2025 by Volcengine

    Provides a resource to manage rds mysql account

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@pulumi/volcengine";
    import * as volcengine from "@volcengine/pulumi";
    
    const fooZones = volcengine.ecs.getZones({});
    const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
        vpcName: "acc-test-vpc",
        cidrBlock: "172.16.0.0/16",
    });
    const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
        subnetName: "acc-test-subnet",
        cidrBlock: "172.16.0.0/24",
        zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
        vpcId: fooVpc.id,
    });
    const fooInstance = new volcengine.rds_mysql.Instance("fooInstance", {
        instanceName: "acc-test-rds-mysql",
        dbEngineVersion: "MySQL_5_7",
        nodeSpec: "rds.mysql.1c2g",
        primaryZoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
        secondaryZoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
        storageSpace: 80,
        subnetId: fooSubnet.id,
        lowerCaseTableNames: "1",
        chargeInfo: {
            chargeType: "PostPaid",
        },
        parameters: [
            {
                parameterName: "auto_increment_increment",
                parameterValue: "2",
            },
            {
                parameterName: "auto_increment_offset",
                parameterValue: "4",
            },
        ],
    });
    const foo1 = new volcengine.rds_mysql.Database("foo1", {
        dbName: "acc-test-db1",
        instanceId: fooInstance.id,
    });
    //instance_id = "mysql-b51d37110dd1"
    const fooDatabase = new volcengine.rds_mysql.Database("fooDatabase", {
        dbName: "acc-test-db",
        instanceId: fooInstance.id,
    });
    const fooAccount = new volcengine.rds_mysql.Account("fooAccount", {
        accountName: "acc-test-account",
        accountPassword: "93f0cb0614Aab12",
        accountType: "Normal",
        instanceId: fooInstance.id,
        accountPrivileges: [
            {
                dbName: fooDatabase.dbName,
                accountPrivilege: "Custom",
                accountPrivilegeDetail: "SELECT,INSERT,UPDATE",
            },
            {
                dbName: foo1.dbName,
                accountPrivilege: "DDLOnly",
            },
        ],
        host: "192.10.10.%",
    });
    //     table_column_privileges {
    //          db_name = volcengine_rds_mysql_database.foo.db_name
    //          table_privileges {
    //               table_name = "test"
    //               account_privilege_detail = "SELECT,INSERT,UPDATE"
    //          }
    //          column_privileges {
    //               table_name = "test"
    //               column_name = "test"
    //               account_privilege_detail = "SELECT,INSERT,UPDATE"
    //          }
    //     }
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    foo_zones = volcengine.ecs.get_zones()
    foo_vpc = volcengine.vpc.Vpc("fooVpc",
        vpc_name="acc-test-vpc",
        cidr_block="172.16.0.0/16")
    foo_subnet = volcengine.vpc.Subnet("fooSubnet",
        subnet_name="acc-test-subnet",
        cidr_block="172.16.0.0/24",
        zone_id=foo_zones.zones[0].id,
        vpc_id=foo_vpc.id)
    foo_instance = volcengine.rds_mysql.Instance("fooInstance",
        instance_name="acc-test-rds-mysql",
        db_engine_version="MySQL_5_7",
        node_spec="rds.mysql.1c2g",
        primary_zone_id=foo_zones.zones[0].id,
        secondary_zone_id=foo_zones.zones[0].id,
        storage_space=80,
        subnet_id=foo_subnet.id,
        lower_case_table_names="1",
        charge_info=volcengine.rds_mysql.InstanceChargeInfoArgs(
            charge_type="PostPaid",
        ),
        parameters=[
            volcengine.rds_mysql.InstanceParameterArgs(
                parameter_name="auto_increment_increment",
                parameter_value="2",
            ),
            volcengine.rds_mysql.InstanceParameterArgs(
                parameter_name="auto_increment_offset",
                parameter_value="4",
            ),
        ])
    foo1 = volcengine.rds_mysql.Database("foo1",
        db_name="acc-test-db1",
        instance_id=foo_instance.id)
    #instance_id = "mysql-b51d37110dd1"
    foo_database = volcengine.rds_mysql.Database("fooDatabase",
        db_name="acc-test-db",
        instance_id=foo_instance.id)
    foo_account = volcengine.rds_mysql.Account("fooAccount",
        account_name="acc-test-account",
        account_password="93f0cb0614Aab12",
        account_type="Normal",
        instance_id=foo_instance.id,
        account_privileges=[
            volcengine.rds_mysql.AccountAccountPrivilegeArgs(
                db_name=foo_database.db_name,
                account_privilege="Custom",
                account_privilege_detail="SELECT,INSERT,UPDATE",
            ),
            volcengine.rds_mysql.AccountAccountPrivilegeArgs(
                db_name=foo1.db_name,
                account_privilege="DDLOnly",
            ),
        ],
        host="192.10.10.%")
    #     table_column_privileges {
    #          db_name = volcengine_rds_mysql_database.foo.db_name
    #          table_privileges {
    #               table_name = "test"
    #               account_privilege_detail = "SELECT,INSERT,UPDATE"
    #          }
    #          column_privileges {
    #               table_name = "test"
    #               column_name = "test"
    #               account_privilege_detail = "SELECT,INSERT,UPDATE"
    #          }
    #     }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/ecs"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/rds_mysql"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpc"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		fooZones, err := ecs.GetZones(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		fooVpc, err := vpc.NewVpc(ctx, "fooVpc", &vpc.VpcArgs{
    			VpcName:   pulumi.String("acc-test-vpc"),
    			CidrBlock: pulumi.String("172.16.0.0/16"),
    		})
    		if err != nil {
    			return err
    		}
    		fooSubnet, err := vpc.NewSubnet(ctx, "fooSubnet", &vpc.SubnetArgs{
    			SubnetName: pulumi.String("acc-test-subnet"),
    			CidrBlock:  pulumi.String("172.16.0.0/24"),
    			ZoneId:     pulumi.String(fooZones.Zones[0].Id),
    			VpcId:      fooVpc.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		fooInstance, err := rds_mysql.NewInstance(ctx, "fooInstance", &rds_mysql.InstanceArgs{
    			InstanceName:        pulumi.String("acc-test-rds-mysql"),
    			DbEngineVersion:     pulumi.String("MySQL_5_7"),
    			NodeSpec:            pulumi.String("rds.mysql.1c2g"),
    			PrimaryZoneId:       pulumi.String(fooZones.Zones[0].Id),
    			SecondaryZoneId:     pulumi.String(fooZones.Zones[0].Id),
    			StorageSpace:        pulumi.Int(80),
    			SubnetId:            fooSubnet.ID(),
    			LowerCaseTableNames: pulumi.String("1"),
    			ChargeInfo: &rds_mysql.InstanceChargeInfoArgs{
    				ChargeType: pulumi.String("PostPaid"),
    			},
    			Parameters: rds_mysql.InstanceParameterArray{
    				&rds_mysql.InstanceParameterArgs{
    					ParameterName:  pulumi.String("auto_increment_increment"),
    					ParameterValue: pulumi.String("2"),
    				},
    				&rds_mysql.InstanceParameterArgs{
    					ParameterName:  pulumi.String("auto_increment_offset"),
    					ParameterValue: pulumi.String("4"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		foo1, err := rds_mysql.NewDatabase(ctx, "foo1", &rds_mysql.DatabaseArgs{
    			DbName:     pulumi.String("acc-test-db1"),
    			InstanceId: fooInstance.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		fooDatabase, err := rds_mysql.NewDatabase(ctx, "fooDatabase", &rds_mysql.DatabaseArgs{
    			DbName:     pulumi.String("acc-test-db"),
    			InstanceId: fooInstance.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = rds_mysql.NewAccount(ctx, "fooAccount", &rds_mysql.AccountArgs{
    			AccountName:     pulumi.String("acc-test-account"),
    			AccountPassword: pulumi.String("93f0cb0614Aab12"),
    			AccountType:     pulumi.String("Normal"),
    			InstanceId:      fooInstance.ID(),
    			AccountPrivileges: rds_mysql.AccountAccountPrivilegeArray{
    				&rds_mysql.AccountAccountPrivilegeArgs{
    					DbName:                 fooDatabase.DbName,
    					AccountPrivilege:       pulumi.String("Custom"),
    					AccountPrivilegeDetail: pulumi.String("SELECT,INSERT,UPDATE"),
    				},
    				&rds_mysql.AccountAccountPrivilegeArgs{
    					DbName:           foo1.DbName,
    					AccountPrivilege: pulumi.String("DDLOnly"),
    				},
    			},
    			Host: pulumi.String("192.10.10.%"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcengine = Pulumi.Volcengine;
    
    return await Deployment.RunAsync(() => 
    {
        var fooZones = Volcengine.Ecs.GetZones.Invoke();
    
        var fooVpc = new Volcengine.Vpc.Vpc("fooVpc", new()
        {
            VpcName = "acc-test-vpc",
            CidrBlock = "172.16.0.0/16",
        });
    
        var fooSubnet = new Volcengine.Vpc.Subnet("fooSubnet", new()
        {
            SubnetName = "acc-test-subnet",
            CidrBlock = "172.16.0.0/24",
            ZoneId = fooZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
            VpcId = fooVpc.Id,
        });
    
        var fooInstance = new Volcengine.Rds_mysql.Instance("fooInstance", new()
        {
            InstanceName = "acc-test-rds-mysql",
            DbEngineVersion = "MySQL_5_7",
            NodeSpec = "rds.mysql.1c2g",
            PrimaryZoneId = fooZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
            SecondaryZoneId = fooZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
            StorageSpace = 80,
            SubnetId = fooSubnet.Id,
            LowerCaseTableNames = "1",
            ChargeInfo = new Volcengine.Rds_mysql.Inputs.InstanceChargeInfoArgs
            {
                ChargeType = "PostPaid",
            },
            Parameters = new[]
            {
                new Volcengine.Rds_mysql.Inputs.InstanceParameterArgs
                {
                    ParameterName = "auto_increment_increment",
                    ParameterValue = "2",
                },
                new Volcengine.Rds_mysql.Inputs.InstanceParameterArgs
                {
                    ParameterName = "auto_increment_offset",
                    ParameterValue = "4",
                },
            },
        });
    
        var foo1 = new Volcengine.Rds_mysql.Database("foo1", new()
        {
            DbName = "acc-test-db1",
            InstanceId = fooInstance.Id,
        });
    
        //instance_id = "mysql-b51d37110dd1"
        var fooDatabase = new Volcengine.Rds_mysql.Database("fooDatabase", new()
        {
            DbName = "acc-test-db",
            InstanceId = fooInstance.Id,
        });
    
        var fooAccount = new Volcengine.Rds_mysql.Account("fooAccount", new()
        {
            AccountName = "acc-test-account",
            AccountPassword = "93f0cb0614Aab12",
            AccountType = "Normal",
            InstanceId = fooInstance.Id,
            AccountPrivileges = new[]
            {
                new Volcengine.Rds_mysql.Inputs.AccountAccountPrivilegeArgs
                {
                    DbName = fooDatabase.DbName,
                    AccountPrivilege = "Custom",
                    AccountPrivilegeDetail = "SELECT,INSERT,UPDATE",
                },
                new Volcengine.Rds_mysql.Inputs.AccountAccountPrivilegeArgs
                {
                    DbName = foo1.DbName,
                    AccountPrivilege = "DDLOnly",
                },
            },
            Host = "192.10.10.%",
        });
    
        //     table_column_privileges {
        //          db_name = volcengine_rds_mysql_database.foo.db_name
        //          table_privileges {
        //               table_name = "test"
        //               account_privilege_detail = "SELECT,INSERT,UPDATE"
        //          }
        //          column_privileges {
        //               table_name = "test"
        //               column_name = "test"
        //               account_privilege_detail = "SELECT,INSERT,UPDATE"
        //          }
        //     }
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.volcengine.ecs.EcsFunctions;
    import com.pulumi.volcengine.ecs.inputs.GetZonesArgs;
    import com.pulumi.volcengine.vpc.Vpc;
    import com.pulumi.volcengine.vpc.VpcArgs;
    import com.pulumi.volcengine.vpc.Subnet;
    import com.pulumi.volcengine.vpc.SubnetArgs;
    import com.pulumi.volcengine.rds_mysql.Instance;
    import com.pulumi.volcengine.rds_mysql.InstanceArgs;
    import com.pulumi.volcengine.rds_mysql.inputs.InstanceChargeInfoArgs;
    import com.pulumi.volcengine.rds_mysql.inputs.InstanceParameterArgs;
    import com.pulumi.volcengine.rds_mysql.Database;
    import com.pulumi.volcengine.rds_mysql.DatabaseArgs;
    import com.pulumi.volcengine.rds_mysql.Account;
    import com.pulumi.volcengine.rds_mysql.AccountArgs;
    import com.pulumi.volcengine.rds_mysql.inputs.AccountAccountPrivilegeArgs;
    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) {
            final var fooZones = EcsFunctions.getZones();
    
            var fooVpc = new Vpc("fooVpc", VpcArgs.builder()        
                .vpcName("acc-test-vpc")
                .cidrBlock("172.16.0.0/16")
                .build());
    
            var fooSubnet = new Subnet("fooSubnet", SubnetArgs.builder()        
                .subnetName("acc-test-subnet")
                .cidrBlock("172.16.0.0/24")
                .zoneId(fooZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
                .vpcId(fooVpc.id())
                .build());
    
            var fooInstance = new Instance("fooInstance", InstanceArgs.builder()        
                .instanceName("acc-test-rds-mysql")
                .dbEngineVersion("MySQL_5_7")
                .nodeSpec("rds.mysql.1c2g")
                .primaryZoneId(fooZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
                .secondaryZoneId(fooZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
                .storageSpace(80)
                .subnetId(fooSubnet.id())
                .lowerCaseTableNames("1")
                .chargeInfo(InstanceChargeInfoArgs.builder()
                    .chargeType("PostPaid")
                    .build())
                .parameters(            
                    InstanceParameterArgs.builder()
                        .parameterName("auto_increment_increment")
                        .parameterValue("2")
                        .build(),
                    InstanceParameterArgs.builder()
                        .parameterName("auto_increment_offset")
                        .parameterValue("4")
                        .build())
                .build());
    
            var foo1 = new Database("foo1", DatabaseArgs.builder()        
                .dbName("acc-test-db1")
                .instanceId(fooInstance.id())
                .build());
    
            //instance_id = "mysql-b51d37110dd1"
            var fooDatabase = new Database("fooDatabase", DatabaseArgs.builder()        
                .dbName("acc-test-db")
                .instanceId(fooInstance.id())
                .build());
    
            var fooAccount = new Account("fooAccount", AccountArgs.builder()        
                .accountName("acc-test-account")
                .accountPassword("93f0cb0614Aab12")
                .accountType("Normal")
                .instanceId(fooInstance.id())
                .accountPrivileges(            
                    AccountAccountPrivilegeArgs.builder()
                        .dbName(fooDatabase.dbName())
                        .accountPrivilege("Custom")
                        .accountPrivilegeDetail("SELECT,INSERT,UPDATE")
                        .build(),
                    AccountAccountPrivilegeArgs.builder()
                        .dbName(foo1.dbName())
                        .accountPrivilege("DDLOnly")
                        .build())
                .host("192.10.10.%")
                .build());
    
            //     table_column_privileges {
            //          db_name = volcengine_rds_mysql_database.foo.db_name
            //          table_privileges {
            //               table_name = "test"
            //               account_privilege_detail = "SELECT,INSERT,UPDATE"
            //          }
            //          column_privileges {
            //               table_name = "test"
            //               column_name = "test"
            //               account_privilege_detail = "SELECT,INSERT,UPDATE"
            //          }
            //     }
        }
    }
    
    resources:
      fooVpc:
        type: volcengine:vpc:Vpc
        properties:
          vpcName: acc-test-vpc
          cidrBlock: 172.16.0.0/16
      fooSubnet:
        type: volcengine:vpc:Subnet
        properties:
          subnetName: acc-test-subnet
          cidrBlock: 172.16.0.0/24
          zoneId: ${fooZones.zones[0].id}
          vpcId: ${fooVpc.id}
      fooInstance:
        type: volcengine:rds_mysql:Instance
        properties:
          instanceName: acc-test-rds-mysql
          dbEngineVersion: MySQL_5_7
          nodeSpec: rds.mysql.1c2g
          primaryZoneId: ${fooZones.zones[0].id}
          secondaryZoneId: ${fooZones.zones[0].id}
          storageSpace: 80
          subnetId: ${fooSubnet.id}
          lowerCaseTableNames: '1'
          chargeInfo:
            chargeType: PostPaid
          parameters:
            - parameterName: auto_increment_increment
              parameterValue: '2'
            - parameterName: auto_increment_offset
              parameterValue: '4'
      foo1:
        type: volcengine:rds_mysql:Database
        properties:
          dbName: acc-test-db1
          instanceId: ${fooInstance.id}
      fooDatabase:
        type: volcengine:rds_mysql:Database
        properties:
          dbName: acc-test-db
          instanceId: ${fooInstance.id}
      fooAccount:
        type: volcengine:rds_mysql:Account
        properties:
          accountName: acc-test-account
          accountPassword: 93f0cb0614Aab12
          accountType: Normal
          instanceId: ${fooInstance.id}
          accountPrivileges:
            - dbName: ${fooDatabase.dbName}
              accountPrivilege: Custom
              accountPrivilegeDetail: SELECT,INSERT,UPDATE
            - dbName: ${foo1.dbName}
              accountPrivilege: DDLOnly
          host: 192.10.10.%
    variables:
      fooZones:
        fn::invoke:
          Function: volcengine:ecs:getZones
          Arguments: {}
    

    Create Account Resource

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

    Constructor syntax

    new Account(name: string, args: AccountArgs, opts?: CustomResourceOptions);
    @overload
    def Account(resource_name: str,
                args: AccountArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Account(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                account_name: Optional[str] = None,
                account_password: Optional[str] = None,
                account_type: Optional[str] = None,
                instance_id: Optional[str] = None,
                account_desc: Optional[str] = None,
                account_privileges: Optional[Sequence[AccountAccountPrivilegeArgs]] = None,
                host: Optional[str] = None,
                table_column_privileges: Optional[Sequence[AccountTableColumnPrivilegeArgs]] = None)
    func NewAccount(ctx *Context, name string, args AccountArgs, opts ...ResourceOption) (*Account, error)
    public Account(string name, AccountArgs args, CustomResourceOptions? opts = null)
    public Account(String name, AccountArgs args)
    public Account(String name, AccountArgs args, CustomResourceOptions options)
    
    type: volcengine:rds_mysql:Account
    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 AccountArgs
    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 AccountArgs
    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 AccountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AccountArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var exampleaccountResourceResourceFromRds_mysqlaccount = new Volcengine.Rds_mysql.Account("exampleaccountResourceResourceFromRds_mysqlaccount", new()
    {
        AccountName = "string",
        AccountPassword = "string",
        AccountType = "string",
        InstanceId = "string",
        AccountDesc = "string",
        AccountPrivileges = new[]
        {
            new Volcengine.Rds_mysql.Inputs.AccountAccountPrivilegeArgs
            {
                AccountPrivilege = "string",
                DbName = "string",
                AccountPrivilegeDetail = "string",
            },
        },
        Host = "string",
        TableColumnPrivileges = new[]
        {
            new Volcengine.Rds_mysql.Inputs.AccountTableColumnPrivilegeArgs
            {
                DbName = "string",
                ColumnPrivileges = new[]
                {
                    new Volcengine.Rds_mysql.Inputs.AccountTableColumnPrivilegeColumnPrivilegeArgs
                    {
                        ColumnName = "string",
                        TableName = "string",
                        AccountPrivilegeDetail = "string",
                    },
                },
                TablePrivileges = new[]
                {
                    new Volcengine.Rds_mysql.Inputs.AccountTableColumnPrivilegeTablePrivilegeArgs
                    {
                        TableName = "string",
                        AccountPrivilegeDetail = "string",
                    },
                },
            },
        },
    });
    
    example, err := rds_mysql.NewAccount(ctx, "exampleaccountResourceResourceFromRds_mysqlaccount", &rds_mysql.AccountArgs{
    	AccountName:     pulumi.String("string"),
    	AccountPassword: pulumi.String("string"),
    	AccountType:     pulumi.String("string"),
    	InstanceId:      pulumi.String("string"),
    	AccountDesc:     pulumi.String("string"),
    	AccountPrivileges: rds_mysql.AccountAccountPrivilegeArray{
    		&rds_mysql.AccountAccountPrivilegeArgs{
    			AccountPrivilege:       pulumi.String("string"),
    			DbName:                 pulumi.String("string"),
    			AccountPrivilegeDetail: pulumi.String("string"),
    		},
    	},
    	Host: pulumi.String("string"),
    	TableColumnPrivileges: rds_mysql.AccountTableColumnPrivilegeArray{
    		&rds_mysql.AccountTableColumnPrivilegeArgs{
    			DbName: pulumi.String("string"),
    			ColumnPrivileges: rds_mysql.AccountTableColumnPrivilegeColumnPrivilegeArray{
    				&rds_mysql.AccountTableColumnPrivilegeColumnPrivilegeArgs{
    					ColumnName:             pulumi.String("string"),
    					TableName:              pulumi.String("string"),
    					AccountPrivilegeDetail: pulumi.String("string"),
    				},
    			},
    			TablePrivileges: rds_mysql.AccountTableColumnPrivilegeTablePrivilegeArray{
    				&rds_mysql.AccountTableColumnPrivilegeTablePrivilegeArgs{
    					TableName:              pulumi.String("string"),
    					AccountPrivilegeDetail: pulumi.String("string"),
    				},
    			},
    		},
    	},
    })
    
    var exampleaccountResourceResourceFromRds_mysqlaccount = new com.pulumi.volcengine.rds_mysql.Account("exampleaccountResourceResourceFromRds_mysqlaccount", com.pulumi.volcengine.rds_mysql.AccountArgs.builder()
        .accountName("string")
        .accountPassword("string")
        .accountType("string")
        .instanceId("string")
        .accountDesc("string")
        .accountPrivileges(AccountAccountPrivilegeArgs.builder()
            .accountPrivilege("string")
            .dbName("string")
            .accountPrivilegeDetail("string")
            .build())
        .host("string")
        .tableColumnPrivileges(AccountTableColumnPrivilegeArgs.builder()
            .dbName("string")
            .columnPrivileges(AccountTableColumnPrivilegeColumnPrivilegeArgs.builder()
                .columnName("string")
                .tableName("string")
                .accountPrivilegeDetail("string")
                .build())
            .tablePrivileges(AccountTableColumnPrivilegeTablePrivilegeArgs.builder()
                .tableName("string")
                .accountPrivilegeDetail("string")
                .build())
            .build())
        .build());
    
    exampleaccount_resource_resource_from_rds_mysqlaccount = volcengine.rds_mysql.Account("exampleaccountResourceResourceFromRds_mysqlaccount",
        account_name="string",
        account_password="string",
        account_type="string",
        instance_id="string",
        account_desc="string",
        account_privileges=[{
            "account_privilege": "string",
            "db_name": "string",
            "account_privilege_detail": "string",
        }],
        host="string",
        table_column_privileges=[{
            "db_name": "string",
            "column_privileges": [{
                "column_name": "string",
                "table_name": "string",
                "account_privilege_detail": "string",
            }],
            "table_privileges": [{
                "table_name": "string",
                "account_privilege_detail": "string",
            }],
        }])
    
    const exampleaccountResourceResourceFromRds_mysqlaccount = new volcengine.rds_mysql.Account("exampleaccountResourceResourceFromRds_mysqlaccount", {
        accountName: "string",
        accountPassword: "string",
        accountType: "string",
        instanceId: "string",
        accountDesc: "string",
        accountPrivileges: [{
            accountPrivilege: "string",
            dbName: "string",
            accountPrivilegeDetail: "string",
        }],
        host: "string",
        tableColumnPrivileges: [{
            dbName: "string",
            columnPrivileges: [{
                columnName: "string",
                tableName: "string",
                accountPrivilegeDetail: "string",
            }],
            tablePrivileges: [{
                tableName: "string",
                accountPrivilegeDetail: "string",
            }],
        }],
    });
    
    type: volcengine:rds_mysql:Account
    properties:
        accountDesc: string
        accountName: string
        accountPassword: string
        accountPrivileges:
            - accountPrivilege: string
              accountPrivilegeDetail: string
              dbName: string
        accountType: string
        host: string
        instanceId: string
        tableColumnPrivileges:
            - columnPrivileges:
                - accountPrivilegeDetail: string
                  columnName: string
                  tableName: string
              dbName: string
              tablePrivileges:
                - accountPrivilegeDetail: string
                  tableName: string
    

    Account 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 Account resource accepts the following input properties:

    AccountName string
    Database account name. The rules are as follows: Unique name. Start with a letter and end with a letter or number. Consists of lowercase letters, numbers, or underscores (_). The length is 2~32 characters. The keyword list is disabled for database accounts, and certain reserved words, including root, admin, etc., cannot be used.
    AccountPassword string
    The password of the database account. Illustrate: Cannot start with ! or @. The length is 8~32 characters. It consists of any three of uppercase letters, lowercase letters, numbers, and special characters. The special characters are !@#$%^*()_+-=. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    AccountType string
    Database account type, value: Super: A high-privilege account. Only one database account can be created for an instance. Normal: An account with ordinary privileges.
    InstanceId string
    The ID of the RDS instance.
    AccountDesc string
    Account information description. The length should not exceed 256 characters.
    AccountPrivileges List<AccountAccountPrivilege>
    The privilege information of account. Due to differences in the return structure of the query interface, it is necessary to use lifecycle_ignore to suppress changes when creating Global permissions.
    Host string
    Specify the IP address for the account to access the database. The default value is %. If the Host is specified as %, the account is allowed to access the database from any IP address. Wildcards are supported for setting the IP address range that can access the database. For example, if the Host is specified as 192.10.10.%, it means the account can access the database from IP addresses between 192.10.10.0 and 192.10.10.255. The specified Host needs to be added to the whitelist bound to the instance, otherwise the instance cannot be accessed normally. The ModifyAllowList interface can be called to add the Host to the whitelist. Note: If the created account type is a high-privilege account, the host IP can only be specified as %. That is, when the value of AccountType is Super, the value of Host can only be %.
    TableColumnPrivileges List<AccountTableColumnPrivilege>
    Settings for table column permissions of the account.
    AccountName string
    Database account name. The rules are as follows: Unique name. Start with a letter and end with a letter or number. Consists of lowercase letters, numbers, or underscores (_). The length is 2~32 characters. The keyword list is disabled for database accounts, and certain reserved words, including root, admin, etc., cannot be used.
    AccountPassword string
    The password of the database account. Illustrate: Cannot start with ! or @. The length is 8~32 characters. It consists of any three of uppercase letters, lowercase letters, numbers, and special characters. The special characters are !@#$%^*()_+-=. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    AccountType string
    Database account type, value: Super: A high-privilege account. Only one database account can be created for an instance. Normal: An account with ordinary privileges.
    InstanceId string
    The ID of the RDS instance.
    AccountDesc string
    Account information description. The length should not exceed 256 characters.
    AccountPrivileges []AccountAccountPrivilegeArgs
    The privilege information of account. Due to differences in the return structure of the query interface, it is necessary to use lifecycle_ignore to suppress changes when creating Global permissions.
    Host string
    Specify the IP address for the account to access the database. The default value is %. If the Host is specified as %, the account is allowed to access the database from any IP address. Wildcards are supported for setting the IP address range that can access the database. For example, if the Host is specified as 192.10.10.%, it means the account can access the database from IP addresses between 192.10.10.0 and 192.10.10.255. The specified Host needs to be added to the whitelist bound to the instance, otherwise the instance cannot be accessed normally. The ModifyAllowList interface can be called to add the Host to the whitelist. Note: If the created account type is a high-privilege account, the host IP can only be specified as %. That is, when the value of AccountType is Super, the value of Host can only be %.
    TableColumnPrivileges []AccountTableColumnPrivilegeArgs
    Settings for table column permissions of the account.
    accountName String
    Database account name. The rules are as follows: Unique name. Start with a letter and end with a letter or number. Consists of lowercase letters, numbers, or underscores (_). The length is 2~32 characters. The keyword list is disabled for database accounts, and certain reserved words, including root, admin, etc., cannot be used.
    accountPassword String
    The password of the database account. Illustrate: Cannot start with ! or @. The length is 8~32 characters. It consists of any three of uppercase letters, lowercase letters, numbers, and special characters. The special characters are !@#$%^*()_+-=. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    accountType String
    Database account type, value: Super: A high-privilege account. Only one database account can be created for an instance. Normal: An account with ordinary privileges.
    instanceId String
    The ID of the RDS instance.
    accountDesc String
    Account information description. The length should not exceed 256 characters.
    accountPrivileges List<AccountAccountPrivilege>
    The privilege information of account. Due to differences in the return structure of the query interface, it is necessary to use lifecycle_ignore to suppress changes when creating Global permissions.
    host String
    Specify the IP address for the account to access the database. The default value is %. If the Host is specified as %, the account is allowed to access the database from any IP address. Wildcards are supported for setting the IP address range that can access the database. For example, if the Host is specified as 192.10.10.%, it means the account can access the database from IP addresses between 192.10.10.0 and 192.10.10.255. The specified Host needs to be added to the whitelist bound to the instance, otherwise the instance cannot be accessed normally. The ModifyAllowList interface can be called to add the Host to the whitelist. Note: If the created account type is a high-privilege account, the host IP can only be specified as %. That is, when the value of AccountType is Super, the value of Host can only be %.
    tableColumnPrivileges List<AccountTableColumnPrivilege>
    Settings for table column permissions of the account.
    accountName string
    Database account name. The rules are as follows: Unique name. Start with a letter and end with a letter or number. Consists of lowercase letters, numbers, or underscores (_). The length is 2~32 characters. The keyword list is disabled for database accounts, and certain reserved words, including root, admin, etc., cannot be used.
    accountPassword string
    The password of the database account. Illustrate: Cannot start with ! or @. The length is 8~32 characters. It consists of any three of uppercase letters, lowercase letters, numbers, and special characters. The special characters are !@#$%^*()_+-=. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    accountType string
    Database account type, value: Super: A high-privilege account. Only one database account can be created for an instance. Normal: An account with ordinary privileges.
    instanceId string
    The ID of the RDS instance.
    accountDesc string
    Account information description. The length should not exceed 256 characters.
    accountPrivileges AccountAccountPrivilege[]
    The privilege information of account. Due to differences in the return structure of the query interface, it is necessary to use lifecycle_ignore to suppress changes when creating Global permissions.
    host string
    Specify the IP address for the account to access the database. The default value is %. If the Host is specified as %, the account is allowed to access the database from any IP address. Wildcards are supported for setting the IP address range that can access the database. For example, if the Host is specified as 192.10.10.%, it means the account can access the database from IP addresses between 192.10.10.0 and 192.10.10.255. The specified Host needs to be added to the whitelist bound to the instance, otherwise the instance cannot be accessed normally. The ModifyAllowList interface can be called to add the Host to the whitelist. Note: If the created account type is a high-privilege account, the host IP can only be specified as %. That is, when the value of AccountType is Super, the value of Host can only be %.
    tableColumnPrivileges AccountTableColumnPrivilege[]
    Settings for table column permissions of the account.
    account_name str
    Database account name. The rules are as follows: Unique name. Start with a letter and end with a letter or number. Consists of lowercase letters, numbers, or underscores (_). The length is 2~32 characters. The keyword list is disabled for database accounts, and certain reserved words, including root, admin, etc., cannot be used.
    account_password str
    The password of the database account. Illustrate: Cannot start with ! or @. The length is 8~32 characters. It consists of any three of uppercase letters, lowercase letters, numbers, and special characters. The special characters are !@#$%^*()_+-=. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    account_type str
    Database account type, value: Super: A high-privilege account. Only one database account can be created for an instance. Normal: An account with ordinary privileges.
    instance_id str
    The ID of the RDS instance.
    account_desc str
    Account information description. The length should not exceed 256 characters.
    account_privileges Sequence[AccountAccountPrivilegeArgs]
    The privilege information of account. Due to differences in the return structure of the query interface, it is necessary to use lifecycle_ignore to suppress changes when creating Global permissions.
    host str
    Specify the IP address for the account to access the database. The default value is %. If the Host is specified as %, the account is allowed to access the database from any IP address. Wildcards are supported for setting the IP address range that can access the database. For example, if the Host is specified as 192.10.10.%, it means the account can access the database from IP addresses between 192.10.10.0 and 192.10.10.255. The specified Host needs to be added to the whitelist bound to the instance, otherwise the instance cannot be accessed normally. The ModifyAllowList interface can be called to add the Host to the whitelist. Note: If the created account type is a high-privilege account, the host IP can only be specified as %. That is, when the value of AccountType is Super, the value of Host can only be %.
    table_column_privileges Sequence[AccountTableColumnPrivilegeArgs]
    Settings for table column permissions of the account.
    accountName String
    Database account name. The rules are as follows: Unique name. Start with a letter and end with a letter or number. Consists of lowercase letters, numbers, or underscores (_). The length is 2~32 characters. The keyword list is disabled for database accounts, and certain reserved words, including root, admin, etc., cannot be used.
    accountPassword String
    The password of the database account. Illustrate: Cannot start with ! or @. The length is 8~32 characters. It consists of any three of uppercase letters, lowercase letters, numbers, and special characters. The special characters are !@#$%^*()_+-=. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    accountType String
    Database account type, value: Super: A high-privilege account. Only one database account can be created for an instance. Normal: An account with ordinary privileges.
    instanceId String
    The ID of the RDS instance.
    accountDesc String
    Account information description. The length should not exceed 256 characters.
    accountPrivileges List<Property Map>
    The privilege information of account. Due to differences in the return structure of the query interface, it is necessary to use lifecycle_ignore to suppress changes when creating Global permissions.
    host String
    Specify the IP address for the account to access the database. The default value is %. If the Host is specified as %, the account is allowed to access the database from any IP address. Wildcards are supported for setting the IP address range that can access the database. For example, if the Host is specified as 192.10.10.%, it means the account can access the database from IP addresses between 192.10.10.0 and 192.10.10.255. The specified Host needs to be added to the whitelist bound to the instance, otherwise the instance cannot be accessed normally. The ModifyAllowList interface can be called to add the Host to the whitelist. Note: If the created account type is a high-privilege account, the host IP can only be specified as %. That is, when the value of AccountType is Super, the value of Host can only be %.
    tableColumnPrivileges List<Property Map>
    Settings for table column permissions of the account.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Account 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 Account Resource

    Get an existing Account 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?: AccountState, opts?: CustomResourceOptions): Account
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_desc: Optional[str] = None,
            account_name: Optional[str] = None,
            account_password: Optional[str] = None,
            account_privileges: Optional[Sequence[AccountAccountPrivilegeArgs]] = None,
            account_type: Optional[str] = None,
            host: Optional[str] = None,
            instance_id: Optional[str] = None,
            table_column_privileges: Optional[Sequence[AccountTableColumnPrivilegeArgs]] = None) -> Account
    func GetAccount(ctx *Context, name string, id IDInput, state *AccountState, opts ...ResourceOption) (*Account, error)
    public static Account Get(string name, Input<string> id, AccountState? state, CustomResourceOptions? opts = null)
    public static Account get(String name, Output<String> id, AccountState state, CustomResourceOptions options)
    resources:  _:    type: volcengine:rds_mysql:Account    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:
    AccountDesc string
    Account information description. The length should not exceed 256 characters.
    AccountName string
    Database account name. The rules are as follows: Unique name. Start with a letter and end with a letter or number. Consists of lowercase letters, numbers, or underscores (_). The length is 2~32 characters. The keyword list is disabled for database accounts, and certain reserved words, including root, admin, etc., cannot be used.
    AccountPassword string
    The password of the database account. Illustrate: Cannot start with ! or @. The length is 8~32 characters. It consists of any three of uppercase letters, lowercase letters, numbers, and special characters. The special characters are !@#$%^*()_+-=. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    AccountPrivileges List<AccountAccountPrivilege>
    The privilege information of account. Due to differences in the return structure of the query interface, it is necessary to use lifecycle_ignore to suppress changes when creating Global permissions.
    AccountType string
    Database account type, value: Super: A high-privilege account. Only one database account can be created for an instance. Normal: An account with ordinary privileges.
    Host string
    Specify the IP address for the account to access the database. The default value is %. If the Host is specified as %, the account is allowed to access the database from any IP address. Wildcards are supported for setting the IP address range that can access the database. For example, if the Host is specified as 192.10.10.%, it means the account can access the database from IP addresses between 192.10.10.0 and 192.10.10.255. The specified Host needs to be added to the whitelist bound to the instance, otherwise the instance cannot be accessed normally. The ModifyAllowList interface can be called to add the Host to the whitelist. Note: If the created account type is a high-privilege account, the host IP can only be specified as %. That is, when the value of AccountType is Super, the value of Host can only be %.
    InstanceId string
    The ID of the RDS instance.
    TableColumnPrivileges List<AccountTableColumnPrivilege>
    Settings for table column permissions of the account.
    AccountDesc string
    Account information description. The length should not exceed 256 characters.
    AccountName string
    Database account name. The rules are as follows: Unique name. Start with a letter and end with a letter or number. Consists of lowercase letters, numbers, or underscores (_). The length is 2~32 characters. The keyword list is disabled for database accounts, and certain reserved words, including root, admin, etc., cannot be used.
    AccountPassword string
    The password of the database account. Illustrate: Cannot start with ! or @. The length is 8~32 characters. It consists of any three of uppercase letters, lowercase letters, numbers, and special characters. The special characters are !@#$%^*()_+-=. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    AccountPrivileges []AccountAccountPrivilegeArgs
    The privilege information of account. Due to differences in the return structure of the query interface, it is necessary to use lifecycle_ignore to suppress changes when creating Global permissions.
    AccountType string
    Database account type, value: Super: A high-privilege account. Only one database account can be created for an instance. Normal: An account with ordinary privileges.
    Host string
    Specify the IP address for the account to access the database. The default value is %. If the Host is specified as %, the account is allowed to access the database from any IP address. Wildcards are supported for setting the IP address range that can access the database. For example, if the Host is specified as 192.10.10.%, it means the account can access the database from IP addresses between 192.10.10.0 and 192.10.10.255. The specified Host needs to be added to the whitelist bound to the instance, otherwise the instance cannot be accessed normally. The ModifyAllowList interface can be called to add the Host to the whitelist. Note: If the created account type is a high-privilege account, the host IP can only be specified as %. That is, when the value of AccountType is Super, the value of Host can only be %.
    InstanceId string
    The ID of the RDS instance.
    TableColumnPrivileges []AccountTableColumnPrivilegeArgs
    Settings for table column permissions of the account.
    accountDesc String
    Account information description. The length should not exceed 256 characters.
    accountName String
    Database account name. The rules are as follows: Unique name. Start with a letter and end with a letter or number. Consists of lowercase letters, numbers, or underscores (_). The length is 2~32 characters. The keyword list is disabled for database accounts, and certain reserved words, including root, admin, etc., cannot be used.
    accountPassword String
    The password of the database account. Illustrate: Cannot start with ! or @. The length is 8~32 characters. It consists of any three of uppercase letters, lowercase letters, numbers, and special characters. The special characters are !@#$%^*()_+-=. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    accountPrivileges List<AccountAccountPrivilege>
    The privilege information of account. Due to differences in the return structure of the query interface, it is necessary to use lifecycle_ignore to suppress changes when creating Global permissions.
    accountType String
    Database account type, value: Super: A high-privilege account. Only one database account can be created for an instance. Normal: An account with ordinary privileges.
    host String
    Specify the IP address for the account to access the database. The default value is %. If the Host is specified as %, the account is allowed to access the database from any IP address. Wildcards are supported for setting the IP address range that can access the database. For example, if the Host is specified as 192.10.10.%, it means the account can access the database from IP addresses between 192.10.10.0 and 192.10.10.255. The specified Host needs to be added to the whitelist bound to the instance, otherwise the instance cannot be accessed normally. The ModifyAllowList interface can be called to add the Host to the whitelist. Note: If the created account type is a high-privilege account, the host IP can only be specified as %. That is, when the value of AccountType is Super, the value of Host can only be %.
    instanceId String
    The ID of the RDS instance.
    tableColumnPrivileges List<AccountTableColumnPrivilege>
    Settings for table column permissions of the account.
    accountDesc string
    Account information description. The length should not exceed 256 characters.
    accountName string
    Database account name. The rules are as follows: Unique name. Start with a letter and end with a letter or number. Consists of lowercase letters, numbers, or underscores (_). The length is 2~32 characters. The keyword list is disabled for database accounts, and certain reserved words, including root, admin, etc., cannot be used.
    accountPassword string
    The password of the database account. Illustrate: Cannot start with ! or @. The length is 8~32 characters. It consists of any three of uppercase letters, lowercase letters, numbers, and special characters. The special characters are !@#$%^*()_+-=. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    accountPrivileges AccountAccountPrivilege[]
    The privilege information of account. Due to differences in the return structure of the query interface, it is necessary to use lifecycle_ignore to suppress changes when creating Global permissions.
    accountType string
    Database account type, value: Super: A high-privilege account. Only one database account can be created for an instance. Normal: An account with ordinary privileges.
    host string
    Specify the IP address for the account to access the database. The default value is %. If the Host is specified as %, the account is allowed to access the database from any IP address. Wildcards are supported for setting the IP address range that can access the database. For example, if the Host is specified as 192.10.10.%, it means the account can access the database from IP addresses between 192.10.10.0 and 192.10.10.255. The specified Host needs to be added to the whitelist bound to the instance, otherwise the instance cannot be accessed normally. The ModifyAllowList interface can be called to add the Host to the whitelist. Note: If the created account type is a high-privilege account, the host IP can only be specified as %. That is, when the value of AccountType is Super, the value of Host can only be %.
    instanceId string
    The ID of the RDS instance.
    tableColumnPrivileges AccountTableColumnPrivilege[]
    Settings for table column permissions of the account.
    account_desc str
    Account information description. The length should not exceed 256 characters.
    account_name str
    Database account name. The rules are as follows: Unique name. Start with a letter and end with a letter or number. Consists of lowercase letters, numbers, or underscores (_). The length is 2~32 characters. The keyword list is disabled for database accounts, and certain reserved words, including root, admin, etc., cannot be used.
    account_password str
    The password of the database account. Illustrate: Cannot start with ! or @. The length is 8~32 characters. It consists of any three of uppercase letters, lowercase letters, numbers, and special characters. The special characters are !@#$%^*()_+-=. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    account_privileges Sequence[AccountAccountPrivilegeArgs]
    The privilege information of account. Due to differences in the return structure of the query interface, it is necessary to use lifecycle_ignore to suppress changes when creating Global permissions.
    account_type str
    Database account type, value: Super: A high-privilege account. Only one database account can be created for an instance. Normal: An account with ordinary privileges.
    host str
    Specify the IP address for the account to access the database. The default value is %. If the Host is specified as %, the account is allowed to access the database from any IP address. Wildcards are supported for setting the IP address range that can access the database. For example, if the Host is specified as 192.10.10.%, it means the account can access the database from IP addresses between 192.10.10.0 and 192.10.10.255. The specified Host needs to be added to the whitelist bound to the instance, otherwise the instance cannot be accessed normally. The ModifyAllowList interface can be called to add the Host to the whitelist. Note: If the created account type is a high-privilege account, the host IP can only be specified as %. That is, when the value of AccountType is Super, the value of Host can only be %.
    instance_id str
    The ID of the RDS instance.
    table_column_privileges Sequence[AccountTableColumnPrivilegeArgs]
    Settings for table column permissions of the account.
    accountDesc String
    Account information description. The length should not exceed 256 characters.
    accountName String
    Database account name. The rules are as follows: Unique name. Start with a letter and end with a letter or number. Consists of lowercase letters, numbers, or underscores (_). The length is 2~32 characters. The keyword list is disabled for database accounts, and certain reserved words, including root, admin, etc., cannot be used.
    accountPassword String
    The password of the database account. Illustrate: Cannot start with ! or @. The length is 8~32 characters. It consists of any three of uppercase letters, lowercase letters, numbers, and special characters. The special characters are !@#$%^*()_+-=. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    accountPrivileges List<Property Map>
    The privilege information of account. Due to differences in the return structure of the query interface, it is necessary to use lifecycle_ignore to suppress changes when creating Global permissions.
    accountType String
    Database account type, value: Super: A high-privilege account. Only one database account can be created for an instance. Normal: An account with ordinary privileges.
    host String
    Specify the IP address for the account to access the database. The default value is %. If the Host is specified as %, the account is allowed to access the database from any IP address. Wildcards are supported for setting the IP address range that can access the database. For example, if the Host is specified as 192.10.10.%, it means the account can access the database from IP addresses between 192.10.10.0 and 192.10.10.255. The specified Host needs to be added to the whitelist bound to the instance, otherwise the instance cannot be accessed normally. The ModifyAllowList interface can be called to add the Host to the whitelist. Note: If the created account type is a high-privilege account, the host IP can only be specified as %. That is, when the value of AccountType is Super, the value of Host can only be %.
    instanceId String
    The ID of the RDS instance.
    tableColumnPrivileges List<Property Map>
    Settings for table column permissions of the account.

    Supporting Types

    AccountAccountPrivilege, AccountAccountPrivilegeArgs

    AccountPrivilege string
    The privilege type of the account.
    DbName string
    The name of database.
    AccountPrivilegeDetail string
    The privilege detail of the account.
    AccountPrivilege string
    The privilege type of the account.
    DbName string
    The name of database.
    AccountPrivilegeDetail string
    The privilege detail of the account.
    accountPrivilege String
    The privilege type of the account.
    dbName String
    The name of database.
    accountPrivilegeDetail String
    The privilege detail of the account.
    accountPrivilege string
    The privilege type of the account.
    dbName string
    The name of database.
    accountPrivilegeDetail string
    The privilege detail of the account.
    account_privilege str
    The privilege type of the account.
    db_name str
    The name of database.
    account_privilege_detail str
    The privilege detail of the account.
    accountPrivilege String
    The privilege type of the account.
    dbName String
    The name of database.
    accountPrivilegeDetail String
    The privilege detail of the account.

    AccountTableColumnPrivilege, AccountTableColumnPrivilegeArgs

    DbName string
    Settings for table column permissions of the account.
    ColumnPrivileges List<AccountTableColumnPrivilegeColumnPrivilege>
    Column permission information of the account.
    TablePrivileges List<AccountTableColumnPrivilegeTablePrivilege>
    Table permission information of the account.
    DbName string
    Settings for table column permissions of the account.
    ColumnPrivileges []AccountTableColumnPrivilegeColumnPrivilege
    Column permission information of the account.
    TablePrivileges []AccountTableColumnPrivilegeTablePrivilege
    Table permission information of the account.
    dbName String
    Settings for table column permissions of the account.
    columnPrivileges List<AccountTableColumnPrivilegeColumnPrivilege>
    Column permission information of the account.
    tablePrivileges List<AccountTableColumnPrivilegeTablePrivilege>
    Table permission information of the account.
    dbName string
    Settings for table column permissions of the account.
    columnPrivileges AccountTableColumnPrivilegeColumnPrivilege[]
    Column permission information of the account.
    tablePrivileges AccountTableColumnPrivilegeTablePrivilege[]
    Table permission information of the account.
    db_name str
    Settings for table column permissions of the account.
    column_privileges Sequence[AccountTableColumnPrivilegeColumnPrivilege]
    Column permission information of the account.
    table_privileges Sequence[AccountTableColumnPrivilegeTablePrivilege]
    Table permission information of the account.
    dbName String
    Settings for table column permissions of the account.
    columnPrivileges List<Property Map>
    Column permission information of the account.
    tablePrivileges List<Property Map>
    Table permission information of the account.

    AccountTableColumnPrivilegeColumnPrivilege, AccountTableColumnPrivilegeColumnPrivilegeArgs

    ColumnName string
    The name of the column for setting permissions on the account.
    TableName string
    The name of the table for setting permissions on the account.
    AccountPrivilegeDetail string
    Table privileges of the account.
    ColumnName string
    The name of the column for setting permissions on the account.
    TableName string
    The name of the table for setting permissions on the account.
    AccountPrivilegeDetail string
    Table privileges of the account.
    columnName String
    The name of the column for setting permissions on the account.
    tableName String
    The name of the table for setting permissions on the account.
    accountPrivilegeDetail String
    Table privileges of the account.
    columnName string
    The name of the column for setting permissions on the account.
    tableName string
    The name of the table for setting permissions on the account.
    accountPrivilegeDetail string
    Table privileges of the account.
    column_name str
    The name of the column for setting permissions on the account.
    table_name str
    The name of the table for setting permissions on the account.
    account_privilege_detail str
    Table privileges of the account.
    columnName String
    The name of the column for setting permissions on the account.
    tableName String
    The name of the table for setting permissions on the account.
    accountPrivilegeDetail String
    Table privileges of the account.

    AccountTableColumnPrivilegeTablePrivilege, AccountTableColumnPrivilegeTablePrivilegeArgs

    TableName string
    The name of the table for setting permissions on the account.
    AccountPrivilegeDetail string
    Table privileges of the account.
    TableName string
    The name of the table for setting permissions on the account.
    AccountPrivilegeDetail string
    Table privileges of the account.
    tableName String
    The name of the table for setting permissions on the account.
    accountPrivilegeDetail String
    Table privileges of the account.
    tableName string
    The name of the table for setting permissions on the account.
    accountPrivilegeDetail string
    Table privileges of the account.
    table_name str
    The name of the table for setting permissions on the account.
    account_privilege_detail str
    Table privileges of the account.
    tableName String
    The name of the table for setting permissions on the account.
    accountPrivilegeDetail String
    Table privileges of the account.

    Import

    RDS mysql account can be imported using the instance_id:account_name, e.g.

    $ pulumi import volcengine:rds_mysql/account:Account default mysql-42b38c769c4b:test
    

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

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.34 published on Wednesday, Jul 2, 2025 by Volcengine