Volcengine v0.0.34 published on Wednesday, Jul 2, 2025 by Volcengine
volcengine.rds_mysql.getInstances
Explore with Pulumi AI
Use this data source to query detailed information of rds mysql instances
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-project1",
cidrBlock: "172.16.0.0/16",
});
const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
subnetName: "acc-subnet-test-2",
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", {
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,
instanceName: "acc-test",
lowerCaseTableNames: "1",
chargeInfo: {
chargeType: "PostPaid",
},
parameters: [
{
parameterName: "auto_increment_increment",
parameterValue: "2",
},
{
parameterName: "auto_increment_offset",
parameterValue: "4",
},
],
});
const fooInstances = volcengine.rds_mysql.getInstancesOutput({
instanceId: fooInstance.id,
});
import pulumi
import pulumi_volcengine as volcengine
foo_zones = volcengine.ecs.get_zones()
foo_vpc = volcengine.vpc.Vpc("fooVpc",
vpc_name="acc-test-project1",
cidr_block="172.16.0.0/16")
foo_subnet = volcengine.vpc.Subnet("fooSubnet",
subnet_name="acc-subnet-test-2",
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",
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,
instance_name="acc-test",
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",
),
])
foo_instances = volcengine.rds_mysql.get_instances_output(instance_id=foo_instance.id)
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-project1"),
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-subnet-test-2"),
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{
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(),
InstanceName: pulumi.String("acc-test"),
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
}
_ = rds_mysql.GetInstancesOutput(ctx, rds_mysql.GetInstancesOutputArgs{
InstanceId: fooInstance.ID(),
}, nil)
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-project1",
CidrBlock = "172.16.0.0/16",
});
var fooSubnet = new Volcengine.Vpc.Subnet("fooSubnet", new()
{
SubnetName = "acc-subnet-test-2",
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()
{
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,
InstanceName = "acc-test",
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 fooInstances = Volcengine.Rds_mysql.GetInstances.Invoke(new()
{
InstanceId = fooInstance.Id,
});
});
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.Rds_mysqlFunctions;
import com.pulumi.volcengine.rds_mysql.inputs.GetInstancesArgs;
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-project1")
.cidrBlock("172.16.0.0/16")
.build());
var fooSubnet = new Subnet("fooSubnet", SubnetArgs.builder()
.subnetName("acc-subnet-test-2")
.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()
.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())
.instanceName("acc-test")
.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());
final var fooInstances = Rds_mysqlFunctions.getInstances(GetInstancesArgs.builder()
.instanceId(fooInstance.id())
.build());
}
}
resources:
fooVpc:
type: volcengine:vpc:Vpc
properties:
vpcName: acc-test-project1
cidrBlock: 172.16.0.0/16
fooSubnet:
type: volcengine:vpc:Subnet
properties:
subnetName: acc-subnet-test-2
cidrBlock: 172.16.0.0/24
zoneId: ${fooZones.zones[0].id}
vpcId: ${fooVpc.id}
fooInstance:
type: volcengine:rds_mysql:Instance
properties:
dbEngineVersion: MySQL_5_7
nodeSpec: rds.mysql.1c2g
primaryZoneId: ${fooZones.zones[0].id}
secondaryZoneId: ${fooZones.zones[0].id}
storageSpace: 80
subnetId: ${fooSubnet.id}
instanceName: acc-test
lowerCaseTableNames: '1'
chargeInfo:
chargeType: PostPaid
parameters:
- parameterName: auto_increment_increment
parameterValue: '2'
- parameterName: auto_increment_offset
parameterValue: '4'
variables:
fooZones:
fn::invoke:
Function: volcengine:ecs:getZones
Arguments: {}
fooInstances:
fn::invoke:
Function: volcengine:rds_mysql:getInstances
Arguments:
instanceId: ${fooInstance.id}
Using getInstances
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getInstances(args: GetInstancesArgs, opts?: InvokeOptions): Promise<GetInstancesResult>
function getInstancesOutput(args: GetInstancesOutputArgs, opts?: InvokeOptions): Output<GetInstancesResult>
def get_instances(charge_type: Optional[str] = None,
create_time_end: Optional[str] = None,
create_time_start: Optional[str] = None,
db_engine_version: Optional[str] = None,
instance_id: Optional[str] = None,
instance_name: Optional[str] = None,
instance_status: Optional[str] = None,
instance_type: Optional[str] = None,
kernel_versions: Optional[Sequence[str]] = None,
name_regex: Optional[str] = None,
node_spec: Optional[str] = None,
output_file: Optional[str] = None,
private_network_ip_address: Optional[str] = None,
private_network_vpc_id: Optional[str] = None,
project_name: Optional[str] = None,
storage_type: Optional[str] = None,
tags: Optional[Sequence[GetInstancesTag]] = None,
zone_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetInstancesResult
def get_instances_output(charge_type: Optional[pulumi.Input[str]] = None,
create_time_end: Optional[pulumi.Input[str]] = None,
create_time_start: Optional[pulumi.Input[str]] = None,
db_engine_version: Optional[pulumi.Input[str]] = None,
instance_id: Optional[pulumi.Input[str]] = None,
instance_name: Optional[pulumi.Input[str]] = None,
instance_status: Optional[pulumi.Input[str]] = None,
instance_type: Optional[pulumi.Input[str]] = None,
kernel_versions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
name_regex: Optional[pulumi.Input[str]] = None,
node_spec: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
private_network_ip_address: Optional[pulumi.Input[str]] = None,
private_network_vpc_id: Optional[pulumi.Input[str]] = None,
project_name: Optional[pulumi.Input[str]] = None,
storage_type: Optional[pulumi.Input[str]] = None,
tags: Optional[pulumi.Input[Sequence[pulumi.Input[GetInstancesTagArgs]]]] = None,
zone_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetInstancesResult]
func GetInstances(ctx *Context, args *GetInstancesArgs, opts ...InvokeOption) (*GetInstancesResult, error)
func GetInstancesOutput(ctx *Context, args *GetInstancesOutputArgs, opts ...InvokeOption) GetInstancesResultOutput
> Note: This function is named GetInstances
in the Go SDK.
public static class GetInstances
{
public static Task<GetInstancesResult> InvokeAsync(GetInstancesArgs args, InvokeOptions? opts = null)
public static Output<GetInstancesResult> Invoke(GetInstancesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetInstancesResult> getInstances(GetInstancesArgs args, InvokeOptions options)
public static Output<GetInstancesResult> getInstances(GetInstancesArgs args, InvokeOptions options)
fn::invoke:
function: volcengine:rds_mysql/getInstances:getInstances
arguments:
# arguments dictionary
The following arguments are supported:
- Charge
Type string - The charge type of the RDS instance.
- Create
Time stringEnd - The end time of creating RDS instance.
- Create
Time stringStart - The start time of creating RDS instance.
- Db
Engine stringVersion - The version of the RDS instance.
- Instance
Id string - The id of the RDS instance.
- Instance
Name string - The name of the RDS instance.
- Instance
Status string - The status of the RDS instance.
- Instance
Type string - Instance type. The value is DoubleNode.
- Kernel
Versions List<string> - The kernel version of the instance.
- Name
Regex string - A Name Regex of RDS instance.
- Node
Spec string - Primary node specification. For detailed information about the node specifications, please refer to Product Specifications.
- Output
File string - File name where to save data source results.
- Private
Network stringIp Address - The IP address of the instance's default terminal, used to query the instance by IP address.
- Private
Network stringVpc Id - The ID of the private network. Instances using the specified private network can be filtered by this field.
- Project
Name string - The project name of the RDS instance.
- Storage
Type string - Instance storage type. The value is LocalSSD, indicating a local SSD disk.
- List<Get
Instances Tag> - Tags.
- Zone
Id string - The available zone of the RDS instance.
- Charge
Type string - The charge type of the RDS instance.
- Create
Time stringEnd - The end time of creating RDS instance.
- Create
Time stringStart - The start time of creating RDS instance.
- Db
Engine stringVersion - The version of the RDS instance.
- Instance
Id string - The id of the RDS instance.
- Instance
Name string - The name of the RDS instance.
- Instance
Status string - The status of the RDS instance.
- Instance
Type string - Instance type. The value is DoubleNode.
- Kernel
Versions []string - The kernel version of the instance.
- Name
Regex string - A Name Regex of RDS instance.
- Node
Spec string - Primary node specification. For detailed information about the node specifications, please refer to Product Specifications.
- Output
File string - File name where to save data source results.
- Private
Network stringIp Address - The IP address of the instance's default terminal, used to query the instance by IP address.
- Private
Network stringVpc Id - The ID of the private network. Instances using the specified private network can be filtered by this field.
- Project
Name string - The project name of the RDS instance.
- Storage
Type string - Instance storage type. The value is LocalSSD, indicating a local SSD disk.
- []Get
Instances Tag - Tags.
- Zone
Id string - The available zone of the RDS instance.
- charge
Type String - The charge type of the RDS instance.
- create
Time StringEnd - The end time of creating RDS instance.
- create
Time StringStart - The start time of creating RDS instance.
- db
Engine StringVersion - The version of the RDS instance.
- instance
Id String - The id of the RDS instance.
- instance
Name String - The name of the RDS instance.
- instance
Status String - The status of the RDS instance.
- instance
Type String - Instance type. The value is DoubleNode.
- kernel
Versions List<String> - The kernel version of the instance.
- name
Regex String - A Name Regex of RDS instance.
- node
Spec String - Primary node specification. For detailed information about the node specifications, please refer to Product Specifications.
- output
File String - File name where to save data source results.
- private
Network StringIp Address - The IP address of the instance's default terminal, used to query the instance by IP address.
- private
Network StringVpc Id - The ID of the private network. Instances using the specified private network can be filtered by this field.
- project
Name String - The project name of the RDS instance.
- storage
Type String - Instance storage type. The value is LocalSSD, indicating a local SSD disk.
- List<Get
Instances Tag> - Tags.
- zone
Id String - The available zone of the RDS instance.
- charge
Type string - The charge type of the RDS instance.
- create
Time stringEnd - The end time of creating RDS instance.
- create
Time stringStart - The start time of creating RDS instance.
- db
Engine stringVersion - The version of the RDS instance.
- instance
Id string - The id of the RDS instance.
- instance
Name string - The name of the RDS instance.
- instance
Status string - The status of the RDS instance.
- instance
Type string - Instance type. The value is DoubleNode.
- kernel
Versions string[] - The kernel version of the instance.
- name
Regex string - A Name Regex of RDS instance.
- node
Spec string - Primary node specification. For detailed information about the node specifications, please refer to Product Specifications.
- output
File string - File name where to save data source results.
- private
Network stringIp Address - The IP address of the instance's default terminal, used to query the instance by IP address.
- private
Network stringVpc Id - The ID of the private network. Instances using the specified private network can be filtered by this field.
- project
Name string - The project name of the RDS instance.
- storage
Type string - Instance storage type. The value is LocalSSD, indicating a local SSD disk.
- Get
Instances Tag[] - Tags.
- zone
Id string - The available zone of the RDS instance.
- charge_
type str - The charge type of the RDS instance.
- create_
time_ strend - The end time of creating RDS instance.
- create_
time_ strstart - The start time of creating RDS instance.
- db_
engine_ strversion - The version of the RDS instance.
- instance_
id str - The id of the RDS instance.
- instance_
name str - The name of the RDS instance.
- instance_
status str - The status of the RDS instance.
- instance_
type str - Instance type. The value is DoubleNode.
- kernel_
versions Sequence[str] - The kernel version of the instance.
- name_
regex str - A Name Regex of RDS instance.
- node_
spec str - Primary node specification. For detailed information about the node specifications, please refer to Product Specifications.
- output_
file str - File name where to save data source results.
- private_
network_ strip_ address - The IP address of the instance's default terminal, used to query the instance by IP address.
- private_
network_ strvpc_ id - The ID of the private network. Instances using the specified private network can be filtered by this field.
- project_
name str - The project name of the RDS instance.
- storage_
type str - Instance storage type. The value is LocalSSD, indicating a local SSD disk.
- Sequence[Get
Instances Tag] - Tags.
- zone_
id str - The available zone of the RDS instance.
- charge
Type String - The charge type of the RDS instance.
- create
Time StringEnd - The end time of creating RDS instance.
- create
Time StringStart - The start time of creating RDS instance.
- db
Engine StringVersion - The version of the RDS instance.
- instance
Id String - The id of the RDS instance.
- instance
Name String - The name of the RDS instance.
- instance
Status String - The status of the RDS instance.
- instance
Type String - Instance type. The value is DoubleNode.
- kernel
Versions List<String> - The kernel version of the instance.
- name
Regex String - A Name Regex of RDS instance.
- node
Spec String - Primary node specification. For detailed information about the node specifications, please refer to Product Specifications.
- output
File String - File name where to save data source results.
- private
Network StringIp Address - The IP address of the instance's default terminal, used to query the instance by IP address.
- private
Network StringVpc Id - The ID of the private network. Instances using the specified private network can be filtered by this field.
- project
Name String - The project name of the RDS instance.
- storage
Type String - Instance storage type. The value is LocalSSD, indicating a local SSD disk.
- List<Property Map>
- Tags.
- zone
Id String - The available zone of the RDS instance.
getInstances Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Rds
Mysql List<GetInstances Instances Rds Mysql Instance> - The collection of RDS instance query.
- Total
Count int - The total count of RDS instance query.
- Charge
Type string - Payment type. Value: PostPaid - Pay-As-You-Go PrePaid - Yearly and monthly (default).
- Create
Time stringEnd - Create
Time stringStart - Db
Engine stringVersion - The engine version of the RDS instance.
- Instance
Id string - Instance ID.
- Instance
Name string - The name of the RDS instance.
- Instance
Status string - The status of the RDS instance.
- Instance
Type string - Kernel
Versions List<string> - The current kernel version of the RDS instance.
- Name
Regex string - Node
Spec string - General instance type, different from Custom instance type.
- Output
File string - Private
Network stringIp Address - Private
Network stringVpc Id - Project
Name string - The project name of the RDS instance.
- Storage
Type string - Instance storage type.
- List<Get
Instances Tag> - Tags.
- Zone
Id string - The available zone of the RDS instance.
- Id string
- The provider-assigned unique ID for this managed resource.
- Rds
Mysql []GetInstances Instances Rds Mysql Instance - The collection of RDS instance query.
- Total
Count int - The total count of RDS instance query.
- Charge
Type string - Payment type. Value: PostPaid - Pay-As-You-Go PrePaid - Yearly and monthly (default).
- Create
Time stringEnd - Create
Time stringStart - Db
Engine stringVersion - The engine version of the RDS instance.
- Instance
Id string - Instance ID.
- Instance
Name string - The name of the RDS instance.
- Instance
Status string - The status of the RDS instance.
- Instance
Type string - Kernel
Versions []string - The current kernel version of the RDS instance.
- Name
Regex string - Node
Spec string - General instance type, different from Custom instance type.
- Output
File string - Private
Network stringIp Address - Private
Network stringVpc Id - Project
Name string - The project name of the RDS instance.
- Storage
Type string - Instance storage type.
- []Get
Instances Tag - Tags.
- Zone
Id string - The available zone of the RDS instance.
- id String
- The provider-assigned unique ID for this managed resource.
- rds
Mysql List<GetInstances Instances Rds Mysql Instance> - The collection of RDS instance query.
- total
Count Integer - The total count of RDS instance query.
- charge
Type String - Payment type. Value: PostPaid - Pay-As-You-Go PrePaid - Yearly and monthly (default).
- create
Time StringEnd - create
Time StringStart - db
Engine StringVersion - The engine version of the RDS instance.
- instance
Id String - Instance ID.
- instance
Name String - The name of the RDS instance.
- instance
Status String - The status of the RDS instance.
- instance
Type String - kernel
Versions List<String> - The current kernel version of the RDS instance.
- name
Regex String - node
Spec String - General instance type, different from Custom instance type.
- output
File String - private
Network StringIp Address - private
Network StringVpc Id - project
Name String - The project name of the RDS instance.
- storage
Type String - Instance storage type.
- List<Get
Instances Tag> - Tags.
- zone
Id String - The available zone of the RDS instance.
- id string
- The provider-assigned unique ID for this managed resource.
- rds
Mysql GetInstances Instances Rds Mysql Instance[] - The collection of RDS instance query.
- total
Count number - The total count of RDS instance query.
- charge
Type string - Payment type. Value: PostPaid - Pay-As-You-Go PrePaid - Yearly and monthly (default).
- create
Time stringEnd - create
Time stringStart - db
Engine stringVersion - The engine version of the RDS instance.
- instance
Id string - Instance ID.
- instance
Name string - The name of the RDS instance.
- instance
Status string - The status of the RDS instance.
- instance
Type string - kernel
Versions string[] - The current kernel version of the RDS instance.
- name
Regex string - node
Spec string - General instance type, different from Custom instance type.
- output
File string - private
Network stringIp Address - private
Network stringVpc Id - project
Name string - The project name of the RDS instance.
- storage
Type string - Instance storage type.
- Get
Instances Tag[] - Tags.
- zone
Id string - The available zone of the RDS instance.
- id str
- The provider-assigned unique ID for this managed resource.
- rds_
mysql_ Sequence[Getinstances Instances Rds Mysql Instance] - The collection of RDS instance query.
- total_
count int - The total count of RDS instance query.
- charge_
type str - Payment type. Value: PostPaid - Pay-As-You-Go PrePaid - Yearly and monthly (default).
- create_
time_ strend - create_
time_ strstart - db_
engine_ strversion - The engine version of the RDS instance.
- instance_
id str - Instance ID.
- instance_
name str - The name of the RDS instance.
- instance_
status str - The status of the RDS instance.
- instance_
type str - kernel_
versions Sequence[str] - The current kernel version of the RDS instance.
- name_
regex str - node_
spec str - General instance type, different from Custom instance type.
- output_
file str - private_
network_ strip_ address - private_
network_ strvpc_ id - project_
name str - The project name of the RDS instance.
- storage_
type str - Instance storage type.
- Sequence[Get
Instances Tag] - Tags.
- zone_
id str - The available zone of the RDS instance.
- id String
- The provider-assigned unique ID for this managed resource.
- rds
Mysql List<Property Map>Instances - The collection of RDS instance query.
- total
Count Number - The total count of RDS instance query.
- charge
Type String - Payment type. Value: PostPaid - Pay-As-You-Go PrePaid - Yearly and monthly (default).
- create
Time StringEnd - create
Time StringStart - db
Engine StringVersion - The engine version of the RDS instance.
- instance
Id String - Instance ID.
- instance
Name String - The name of the RDS instance.
- instance
Status String - The status of the RDS instance.
- instance
Type String - kernel
Versions List<String> - The current kernel version of the RDS instance.
- name
Regex String - node
Spec String - General instance type, different from Custom instance type.
- output
File String - private
Network StringIp Address - private
Network StringVpc Id - project
Name String - The project name of the RDS instance.
- storage
Type String - Instance storage type.
- List<Property Map>
- Tags.
- zone
Id String - The available zone of the RDS instance.
Supporting Types
GetInstancesRdsMysqlInstance
- Allow
List stringVersion - The version of allow list.
- Auto
Storage List<GetScaling Configs Instances Rds Mysql Instance Auto Storage Scaling Config> - Auto - storage scaling configuration.
- Auto
Upgrade stringMinor Version - The upgrade strategy for the minor version of the instance kernel. Values: Auto: Auto upgrade. Manual: Manual upgrade.
- Backup
Use int - The instance has used backup space. Unit: GB.
- Binlog
Dump bool - Does it support the binlog capability? This parameter is returned only when the database proxy is enabled. Values: true: Yes. false: No.
- Charge
Detail GetInstances Rds Mysql Instance Charge Detail - Payment methods.
- Connection
Pool stringType - Connection pool type.
- Create
Time string - Node creation local time.
- Data
Sync stringMode - Data synchronization mode.
- Db
Engine stringVersion - The version of the RDS instance.
- Db
Proxy stringStatus - The running status of the proxy instance. This parameter is returned only when the database proxy is enabled. Values: Creating: The proxy is being started. Running: The proxy is running. Shutdown: The proxy is closed. Deleting: The proxy is being closed.
- Deletion
Protection string - Whether to enable the deletion protection function. Values: Enabled: Yes. Disabled: No.
- Dr
Dts stringTask Id - The ID of the data synchronization task in DTS for the data synchronization link between the primary instance and the disaster recovery instance.
- Dr
Dts stringTask Name - The name of the DTS data synchronization task for the data synchronization link between the primary instance and the disaster recovery instance.
- Dr
Dts stringTask Status - The status of the DTS data synchronization task for the data synchronization link between the primary instance and the disaster recovery instance.
- Dr
Seconds intBehind Master - The number of seconds that the disaster recovery instance is behind the primary instance.
- Endpoints
List<Get
Instances Rds Mysql Instance Endpoint> - The endpoint info of the RDS instance.
- Feature
States List<GetInstances Rds Mysql Instance Feature State> - Feature status.
- Global
Read boolOnly - Whether to enable global read-only. true: Yes. false: No.
- Id string
- The ID of the RDS instance.
- Instance
Id string - The id of the RDS instance.
- Instance
Name string - The name of the RDS instance.
- Instance
Status string - The status of the RDS instance.
- Kernel
Version string - The kernel version of the instance.
- Lower
Case stringTable Names - Whether the table name is case sensitive, the default value is 1. Ranges: 0: Table names are stored as fixed and table names are case-sensitive. 1: Table names will be stored in lowercase and table names are not case sensitive.
- Maintenance
Windows List<GetInstances Rds Mysql Instance Maintenance Window> - Maintenance Window.
- Master
Instance stringId - The ID of the primary instance of the disaster recovery instance.
- Master
Instance stringName - The name of the primary instance of the disaster recovery instance.
- Master
Region string - The region where the primary instance of the disaster recovery instance is located.
- Memory int
- Memory size in GB.
- Node
Cpu doubleUsed Percentage - Average CPU usage of the instance master node in nearly one minute.
- Node
Memory doubleUsed Percentage - Average memory usage of the instance master node in nearly one minute.
- Node
Number int - The number of nodes.
- Node
Space doubleUsed Percentage - Average disk usage of the instance master node in nearly one minute.
- Node
Spec string - Primary node specification. For detailed information about the node specifications, please refer to Product Specifications.
- Nodes
List<Get
Instances Rds Mysql Instance Node> - Instance node information.
- Project
Name string - The project name of the RDS instance.
- Region
Id string - The region of the RDS instance.
- Storage
Max intCapacity - The upper limit of the storage space that can be set for automatic expansion. The value is the upper limit of the storage space value range corresponding to the instance master node specification, with the unit being GB. For detailed information on the selectable storage space value ranges of different specifications, please refer to Product Specifications.
- Storage
Max intTrigger Threshold - The upper limit of the proportion of available storage space that triggers automatic expansion. When supported, the value is 50%.
- Storage
Min intCapacity - The lower limit of the storage space that can be set for automatic expansion. The value is the lower limit of the storage space value range corresponding to the instance master node specification, with the unit being GB. For detailed information on the selectable storage space value ranges of different specifications, please refer to Product Specifications.
- Storage
Min intTrigger Threshold - The lower limit of the proportion of available storage space that triggers automatic expansion. When supported, the value is 10%.
- Storage
Space int - Total instance storage space. Unit: GB.
- Storage
Type string - Instance storage type. The value is LocalSSD, indicating a local SSD disk.
- Storage
Use int - The instance has used storage space. Unit: GB.
- Subnet
Id string - The subnet ID of the RDS instance.
- List<Get
Instances Rds Mysql Instance Tag> - Tags.
- Time
Zone string - Time zone.
- Update
Time string - The update time of the RDS instance.
- VCpu int
- CPU size.
- Vpc
Id string - The vpc ID of the RDS instance.
- Zone
Id string - The available zone of the RDS instance.
- Zone
Ids List<string> - List of availability zones where each node of the instance is located.
- Allow
List stringVersion - The version of allow list.
- Auto
Storage []GetScaling Configs Instances Rds Mysql Instance Auto Storage Scaling Config - Auto - storage scaling configuration.
- Auto
Upgrade stringMinor Version - The upgrade strategy for the minor version of the instance kernel. Values: Auto: Auto upgrade. Manual: Manual upgrade.
- Backup
Use int - The instance has used backup space. Unit: GB.
- Binlog
Dump bool - Does it support the binlog capability? This parameter is returned only when the database proxy is enabled. Values: true: Yes. false: No.
- Charge
Detail GetInstances Rds Mysql Instance Charge Detail - Payment methods.
- Connection
Pool stringType - Connection pool type.
- Create
Time string - Node creation local time.
- Data
Sync stringMode - Data synchronization mode.
- Db
Engine stringVersion - The version of the RDS instance.
- Db
Proxy stringStatus - The running status of the proxy instance. This parameter is returned only when the database proxy is enabled. Values: Creating: The proxy is being started. Running: The proxy is running. Shutdown: The proxy is closed. Deleting: The proxy is being closed.
- Deletion
Protection string - Whether to enable the deletion protection function. Values: Enabled: Yes. Disabled: No.
- Dr
Dts stringTask Id - The ID of the data synchronization task in DTS for the data synchronization link between the primary instance and the disaster recovery instance.
- Dr
Dts stringTask Name - The name of the DTS data synchronization task for the data synchronization link between the primary instance and the disaster recovery instance.
- Dr
Dts stringTask Status - The status of the DTS data synchronization task for the data synchronization link between the primary instance and the disaster recovery instance.
- Dr
Seconds intBehind Master - The number of seconds that the disaster recovery instance is behind the primary instance.
- Endpoints
[]Get
Instances Rds Mysql Instance Endpoint - The endpoint info of the RDS instance.
- Feature
States []GetInstances Rds Mysql Instance Feature State - Feature status.
- Global
Read boolOnly - Whether to enable global read-only. true: Yes. false: No.
- Id string
- The ID of the RDS instance.
- Instance
Id string - The id of the RDS instance.
- Instance
Name string - The name of the RDS instance.
- Instance
Status string - The status of the RDS instance.
- Kernel
Version string - The kernel version of the instance.
- Lower
Case stringTable Names - Whether the table name is case sensitive, the default value is 1. Ranges: 0: Table names are stored as fixed and table names are case-sensitive. 1: Table names will be stored in lowercase and table names are not case sensitive.
- Maintenance
Windows []GetInstances Rds Mysql Instance Maintenance Window - Maintenance Window.
- Master
Instance stringId - The ID of the primary instance of the disaster recovery instance.
- Master
Instance stringName - The name of the primary instance of the disaster recovery instance.
- Master
Region string - The region where the primary instance of the disaster recovery instance is located.
- Memory int
- Memory size in GB.
- Node
Cpu float64Used Percentage - Average CPU usage of the instance master node in nearly one minute.
- Node
Memory float64Used Percentage - Average memory usage of the instance master node in nearly one minute.
- Node
Number int - The number of nodes.
- Node
Space float64Used Percentage - Average disk usage of the instance master node in nearly one minute.
- Node
Spec string - Primary node specification. For detailed information about the node specifications, please refer to Product Specifications.
- Nodes
[]Get
Instances Rds Mysql Instance Node - Instance node information.
- Project
Name string - The project name of the RDS instance.
- Region
Id string - The region of the RDS instance.
- Storage
Max intCapacity - The upper limit of the storage space that can be set for automatic expansion. The value is the upper limit of the storage space value range corresponding to the instance master node specification, with the unit being GB. For detailed information on the selectable storage space value ranges of different specifications, please refer to Product Specifications.
- Storage
Max intTrigger Threshold - The upper limit of the proportion of available storage space that triggers automatic expansion. When supported, the value is 50%.
- Storage
Min intCapacity - The lower limit of the storage space that can be set for automatic expansion. The value is the lower limit of the storage space value range corresponding to the instance master node specification, with the unit being GB. For detailed information on the selectable storage space value ranges of different specifications, please refer to Product Specifications.
- Storage
Min intTrigger Threshold - The lower limit of the proportion of available storage space that triggers automatic expansion. When supported, the value is 10%.
- Storage
Space int - Total instance storage space. Unit: GB.
- Storage
Type string - Instance storage type. The value is LocalSSD, indicating a local SSD disk.
- Storage
Use int - The instance has used storage space. Unit: GB.
- Subnet
Id string - The subnet ID of the RDS instance.
- []Get
Instances Rds Mysql Instance Tag - Tags.
- Time
Zone string - Time zone.
- Update
Time string - The update time of the RDS instance.
- VCpu int
- CPU size.
- Vpc
Id string - The vpc ID of the RDS instance.
- Zone
Id string - The available zone of the RDS instance.
- Zone
Ids []string - List of availability zones where each node of the instance is located.
- allow
List StringVersion - The version of allow list.
- auto
Storage List<GetScaling Configs Instances Rds Mysql Instance Auto Storage Scaling Config> - Auto - storage scaling configuration.
- auto
Upgrade StringMinor Version - The upgrade strategy for the minor version of the instance kernel. Values: Auto: Auto upgrade. Manual: Manual upgrade.
- backup
Use Integer - The instance has used backup space. Unit: GB.
- binlog
Dump Boolean - Does it support the binlog capability? This parameter is returned only when the database proxy is enabled. Values: true: Yes. false: No.
- charge
Detail GetInstances Rds Mysql Instance Charge Detail - Payment methods.
- connection
Pool StringType - Connection pool type.
- create
Time String - Node creation local time.
- data
Sync StringMode - Data synchronization mode.
- db
Engine StringVersion - The version of the RDS instance.
- db
Proxy StringStatus - The running status of the proxy instance. This parameter is returned only when the database proxy is enabled. Values: Creating: The proxy is being started. Running: The proxy is running. Shutdown: The proxy is closed. Deleting: The proxy is being closed.
- deletion
Protection String - Whether to enable the deletion protection function. Values: Enabled: Yes. Disabled: No.
- dr
Dts StringTask Id - The ID of the data synchronization task in DTS for the data synchronization link between the primary instance and the disaster recovery instance.
- dr
Dts StringTask Name - The name of the DTS data synchronization task for the data synchronization link between the primary instance and the disaster recovery instance.
- dr
Dts StringTask Status - The status of the DTS data synchronization task for the data synchronization link between the primary instance and the disaster recovery instance.
- dr
Seconds IntegerBehind Master - The number of seconds that the disaster recovery instance is behind the primary instance.
- endpoints
List<Get
Instances Rds Mysql Instance Endpoint> - The endpoint info of the RDS instance.
- feature
States List<GetInstances Rds Mysql Instance Feature State> - Feature status.
- global
Read BooleanOnly - Whether to enable global read-only. true: Yes. false: No.
- id String
- The ID of the RDS instance.
- instance
Id String - The id of the RDS instance.
- instance
Name String - The name of the RDS instance.
- instance
Status String - The status of the RDS instance.
- kernel
Version String - The kernel version of the instance.
- lower
Case StringTable Names - Whether the table name is case sensitive, the default value is 1. Ranges: 0: Table names are stored as fixed and table names are case-sensitive. 1: Table names will be stored in lowercase and table names are not case sensitive.
- maintenance
Windows List<GetInstances Rds Mysql Instance Maintenance Window> - Maintenance Window.
- master
Instance StringId - The ID of the primary instance of the disaster recovery instance.
- master
Instance StringName - The name of the primary instance of the disaster recovery instance.
- master
Region String - The region where the primary instance of the disaster recovery instance is located.
- memory Integer
- Memory size in GB.
- node
Cpu DoubleUsed Percentage - Average CPU usage of the instance master node in nearly one minute.
- node
Memory DoubleUsed Percentage - Average memory usage of the instance master node in nearly one minute.
- node
Number Integer - The number of nodes.
- node
Space DoubleUsed Percentage - Average disk usage of the instance master node in nearly one minute.
- node
Spec String - Primary node specification. For detailed information about the node specifications, please refer to Product Specifications.
- nodes
List<Get
Instances Rds Mysql Instance Node> - Instance node information.
- project
Name String - The project name of the RDS instance.
- region
Id String - The region of the RDS instance.
- storage
Max IntegerCapacity - The upper limit of the storage space that can be set for automatic expansion. The value is the upper limit of the storage space value range corresponding to the instance master node specification, with the unit being GB. For detailed information on the selectable storage space value ranges of different specifications, please refer to Product Specifications.
- storage
Max IntegerTrigger Threshold - The upper limit of the proportion of available storage space that triggers automatic expansion. When supported, the value is 50%.
- storage
Min IntegerCapacity - The lower limit of the storage space that can be set for automatic expansion. The value is the lower limit of the storage space value range corresponding to the instance master node specification, with the unit being GB. For detailed information on the selectable storage space value ranges of different specifications, please refer to Product Specifications.
- storage
Min IntegerTrigger Threshold - The lower limit of the proportion of available storage space that triggers automatic expansion. When supported, the value is 10%.
- storage
Space Integer - Total instance storage space. Unit: GB.
- storage
Type String - Instance storage type. The value is LocalSSD, indicating a local SSD disk.
- storage
Use Integer - The instance has used storage space. Unit: GB.
- subnet
Id String - The subnet ID of the RDS instance.
- List<Get
Instances Rds Mysql Instance Tag> - Tags.
- time
Zone String - Time zone.
- update
Time String - The update time of the RDS instance.
- v
Cpu Integer - CPU size.
- vpc
Id String - The vpc ID of the RDS instance.
- zone
Id String - The available zone of the RDS instance.
- zone
Ids List<String> - List of availability zones where each node of the instance is located.
- allow
List stringVersion - The version of allow list.
- auto
Storage GetScaling Configs Instances Rds Mysql Instance Auto Storage Scaling Config[] - Auto - storage scaling configuration.
- auto
Upgrade stringMinor Version - The upgrade strategy for the minor version of the instance kernel. Values: Auto: Auto upgrade. Manual: Manual upgrade.
- backup
Use number - The instance has used backup space. Unit: GB.
- binlog
Dump boolean - Does it support the binlog capability? This parameter is returned only when the database proxy is enabled. Values: true: Yes. false: No.
- charge
Detail GetInstances Rds Mysql Instance Charge Detail - Payment methods.
- connection
Pool stringType - Connection pool type.
- create
Time string - Node creation local time.
- data
Sync stringMode - Data synchronization mode.
- db
Engine stringVersion - The version of the RDS instance.
- db
Proxy stringStatus - The running status of the proxy instance. This parameter is returned only when the database proxy is enabled. Values: Creating: The proxy is being started. Running: The proxy is running. Shutdown: The proxy is closed. Deleting: The proxy is being closed.
- deletion
Protection string - Whether to enable the deletion protection function. Values: Enabled: Yes. Disabled: No.
- dr
Dts stringTask Id - The ID of the data synchronization task in DTS for the data synchronization link between the primary instance and the disaster recovery instance.
- dr
Dts stringTask Name - The name of the DTS data synchronization task for the data synchronization link between the primary instance and the disaster recovery instance.
- dr
Dts stringTask Status - The status of the DTS data synchronization task for the data synchronization link between the primary instance and the disaster recovery instance.
- dr
Seconds numberBehind Master - The number of seconds that the disaster recovery instance is behind the primary instance.
- endpoints
Get
Instances Rds Mysql Instance Endpoint[] - The endpoint info of the RDS instance.
- feature
States GetInstances Rds Mysql Instance Feature State[] - Feature status.
- global
Read booleanOnly - Whether to enable global read-only. true: Yes. false: No.
- id string
- The ID of the RDS instance.
- instance
Id string - The id of the RDS instance.
- instance
Name string - The name of the RDS instance.
- instance
Status string - The status of the RDS instance.
- kernel
Version string - The kernel version of the instance.
- lower
Case stringTable Names - Whether the table name is case sensitive, the default value is 1. Ranges: 0: Table names are stored as fixed and table names are case-sensitive. 1: Table names will be stored in lowercase and table names are not case sensitive.
- maintenance
Windows GetInstances Rds Mysql Instance Maintenance Window[] - Maintenance Window.
- master
Instance stringId - The ID of the primary instance of the disaster recovery instance.
- master
Instance stringName - The name of the primary instance of the disaster recovery instance.
- master
Region string - The region where the primary instance of the disaster recovery instance is located.
- memory number
- Memory size in GB.
- node
Cpu numberUsed Percentage - Average CPU usage of the instance master node in nearly one minute.
- node
Memory numberUsed Percentage - Average memory usage of the instance master node in nearly one minute.
- node
Number number - The number of nodes.
- node
Space numberUsed Percentage - Average disk usage of the instance master node in nearly one minute.
- node
Spec string - Primary node specification. For detailed information about the node specifications, please refer to Product Specifications.
- nodes
Get
Instances Rds Mysql Instance Node[] - Instance node information.
- project
Name string - The project name of the RDS instance.
- region
Id string - The region of the RDS instance.
- storage
Max numberCapacity - The upper limit of the storage space that can be set for automatic expansion. The value is the upper limit of the storage space value range corresponding to the instance master node specification, with the unit being GB. For detailed information on the selectable storage space value ranges of different specifications, please refer to Product Specifications.
- storage
Max numberTrigger Threshold - The upper limit of the proportion of available storage space that triggers automatic expansion. When supported, the value is 50%.
- storage
Min numberCapacity - The lower limit of the storage space that can be set for automatic expansion. The value is the lower limit of the storage space value range corresponding to the instance master node specification, with the unit being GB. For detailed information on the selectable storage space value ranges of different specifications, please refer to Product Specifications.
- storage
Min numberTrigger Threshold - The lower limit of the proportion of available storage space that triggers automatic expansion. When supported, the value is 10%.
- storage
Space number - Total instance storage space. Unit: GB.
- storage
Type string - Instance storage type. The value is LocalSSD, indicating a local SSD disk.
- storage
Use number - The instance has used storage space. Unit: GB.
- subnet
Id string - The subnet ID of the RDS instance.
- Get
Instances Rds Mysql Instance Tag[] - Tags.
- time
Zone string - Time zone.
- update
Time string - The update time of the RDS instance.
- v
Cpu number - CPU size.
- vpc
Id string - The vpc ID of the RDS instance.
- zone
Id string - The available zone of the RDS instance.
- zone
Ids string[] - List of availability zones where each node of the instance is located.
- allow_
list_ strversion - The version of allow list.
- auto_
storage_ Sequence[Getscaling_ configs Instances Rds Mysql Instance Auto Storage Scaling Config] - Auto - storage scaling configuration.
- auto_
upgrade_ strminor_ version - The upgrade strategy for the minor version of the instance kernel. Values: Auto: Auto upgrade. Manual: Manual upgrade.
- backup_
use int - The instance has used backup space. Unit: GB.
- binlog_
dump bool - Does it support the binlog capability? This parameter is returned only when the database proxy is enabled. Values: true: Yes. false: No.
- charge_
detail GetInstances Rds Mysql Instance Charge Detail - Payment methods.
- connection_
pool_ strtype - Connection pool type.
- create_
time str - Node creation local time.
- data_
sync_ strmode - Data synchronization mode.
- db_
engine_ strversion - The version of the RDS instance.
- db_
proxy_ strstatus - The running status of the proxy instance. This parameter is returned only when the database proxy is enabled. Values: Creating: The proxy is being started. Running: The proxy is running. Shutdown: The proxy is closed. Deleting: The proxy is being closed.
- deletion_
protection str - Whether to enable the deletion protection function. Values: Enabled: Yes. Disabled: No.
- dr_
dts_ strtask_ id - The ID of the data synchronization task in DTS for the data synchronization link between the primary instance and the disaster recovery instance.
- dr_
dts_ strtask_ name - The name of the DTS data synchronization task for the data synchronization link between the primary instance and the disaster recovery instance.
- dr_
dts_ strtask_ status - The status of the DTS data synchronization task for the data synchronization link between the primary instance and the disaster recovery instance.
- dr_
seconds_ intbehind_ master - The number of seconds that the disaster recovery instance is behind the primary instance.
- endpoints
Sequence[Get
Instances Rds Mysql Instance Endpoint] - The endpoint info of the RDS instance.
- feature_
states Sequence[GetInstances Rds Mysql Instance Feature State] - Feature status.
- global_
read_ boolonly - Whether to enable global read-only. true: Yes. false: No.
- id str
- The ID of the RDS instance.
- instance_
id str - The id of the RDS instance.
- instance_
name str - The name of the RDS instance.
- instance_
status str - The status of the RDS instance.
- kernel_
version str - The kernel version of the instance.
- lower_
case_ strtable_ names - Whether the table name is case sensitive, the default value is 1. Ranges: 0: Table names are stored as fixed and table names are case-sensitive. 1: Table names will be stored in lowercase and table names are not case sensitive.
- maintenance_
windows Sequence[GetInstances Rds Mysql Instance Maintenance Window] - Maintenance Window.
- master_
instance_ strid - The ID of the primary instance of the disaster recovery instance.
- master_
instance_ strname - The name of the primary instance of the disaster recovery instance.
- master_
region str - The region where the primary instance of the disaster recovery instance is located.
- memory int
- Memory size in GB.
- node_
cpu_ floatused_ percentage - Average CPU usage of the instance master node in nearly one minute.
- node_
memory_ floatused_ percentage - Average memory usage of the instance master node in nearly one minute.
- node_
number int - The number of nodes.
- node_
space_ floatused_ percentage - Average disk usage of the instance master node in nearly one minute.
- node_
spec str - Primary node specification. For detailed information about the node specifications, please refer to Product Specifications.
- nodes
Sequence[Get
Instances Rds Mysql Instance Node] - Instance node information.
- project_
name str - The project name of the RDS instance.
- region_
id str - The region of the RDS instance.
- storage_
max_ intcapacity - The upper limit of the storage space that can be set for automatic expansion. The value is the upper limit of the storage space value range corresponding to the instance master node specification, with the unit being GB. For detailed information on the selectable storage space value ranges of different specifications, please refer to Product Specifications.
- storage_
max_ inttrigger_ threshold - The upper limit of the proportion of available storage space that triggers automatic expansion. When supported, the value is 50%.
- storage_
min_ intcapacity - The lower limit of the storage space that can be set for automatic expansion. The value is the lower limit of the storage space value range corresponding to the instance master node specification, with the unit being GB. For detailed information on the selectable storage space value ranges of different specifications, please refer to Product Specifications.
- storage_
min_ inttrigger_ threshold - The lower limit of the proportion of available storage space that triggers automatic expansion. When supported, the value is 10%.
- storage_
space int - Total instance storage space. Unit: GB.
- storage_
type str - Instance storage type. The value is LocalSSD, indicating a local SSD disk.
- storage_
use int - The instance has used storage space. Unit: GB.
- subnet_
id str - The subnet ID of the RDS instance.
- Sequence[Get
Instances Rds Mysql Instance Tag] - Tags.
- time_
zone str - Time zone.
- update_
time str - The update time of the RDS instance.
- v_
cpu int - CPU size.
- vpc_
id str - The vpc ID of the RDS instance.
- zone_
id str - The available zone of the RDS instance.
- zone_
ids Sequence[str] - List of availability zones where each node of the instance is located.
- allow
List StringVersion - The version of allow list.
- auto
Storage List<Property Map>Scaling Configs - Auto - storage scaling configuration.
- auto
Upgrade StringMinor Version - The upgrade strategy for the minor version of the instance kernel. Values: Auto: Auto upgrade. Manual: Manual upgrade.
- backup
Use Number - The instance has used backup space. Unit: GB.
- binlog
Dump Boolean - Does it support the binlog capability? This parameter is returned only when the database proxy is enabled. Values: true: Yes. false: No.
- charge
Detail Property Map - Payment methods.
- connection
Pool StringType - Connection pool type.
- create
Time String - Node creation local time.
- data
Sync StringMode - Data synchronization mode.
- db
Engine StringVersion - The version of the RDS instance.
- db
Proxy StringStatus - The running status of the proxy instance. This parameter is returned only when the database proxy is enabled. Values: Creating: The proxy is being started. Running: The proxy is running. Shutdown: The proxy is closed. Deleting: The proxy is being closed.
- deletion
Protection String - Whether to enable the deletion protection function. Values: Enabled: Yes. Disabled: No.
- dr
Dts StringTask Id - The ID of the data synchronization task in DTS for the data synchronization link between the primary instance and the disaster recovery instance.
- dr
Dts StringTask Name - The name of the DTS data synchronization task for the data synchronization link between the primary instance and the disaster recovery instance.
- dr
Dts StringTask Status - The status of the DTS data synchronization task for the data synchronization link between the primary instance and the disaster recovery instance.
- dr
Seconds NumberBehind Master - The number of seconds that the disaster recovery instance is behind the primary instance.
- endpoints List<Property Map>
- The endpoint info of the RDS instance.
- feature
States List<Property Map> - Feature status.
- global
Read BooleanOnly - Whether to enable global read-only. true: Yes. false: No.
- id String
- The ID of the RDS instance.
- instance
Id String - The id of the RDS instance.
- instance
Name String - The name of the RDS instance.
- instance
Status String - The status of the RDS instance.
- kernel
Version String - The kernel version of the instance.
- lower
Case StringTable Names - Whether the table name is case sensitive, the default value is 1. Ranges: 0: Table names are stored as fixed and table names are case-sensitive. 1: Table names will be stored in lowercase and table names are not case sensitive.
- maintenance
Windows List<Property Map> - Maintenance Window.
- master
Instance StringId - The ID of the primary instance of the disaster recovery instance.
- master
Instance StringName - The name of the primary instance of the disaster recovery instance.
- master
Region String - The region where the primary instance of the disaster recovery instance is located.
- memory Number
- Memory size in GB.
- node
Cpu NumberUsed Percentage - Average CPU usage of the instance master node in nearly one minute.
- node
Memory NumberUsed Percentage - Average memory usage of the instance master node in nearly one minute.
- node
Number Number - The number of nodes.
- node
Space NumberUsed Percentage - Average disk usage of the instance master node in nearly one minute.
- node
Spec String - Primary node specification. For detailed information about the node specifications, please refer to Product Specifications.
- nodes List<Property Map>
- Instance node information.
- project
Name String - The project name of the RDS instance.
- region
Id String - The region of the RDS instance.
- storage
Max NumberCapacity - The upper limit of the storage space that can be set for automatic expansion. The value is the upper limit of the storage space value range corresponding to the instance master node specification, with the unit being GB. For detailed information on the selectable storage space value ranges of different specifications, please refer to Product Specifications.
- storage
Max NumberTrigger Threshold - The upper limit of the proportion of available storage space that triggers automatic expansion. When supported, the value is 50%.
- storage
Min NumberCapacity - The lower limit of the storage space that can be set for automatic expansion. The value is the lower limit of the storage space value range corresponding to the instance master node specification, with the unit being GB. For detailed information on the selectable storage space value ranges of different specifications, please refer to Product Specifications.
- storage
Min NumberTrigger Threshold - The lower limit of the proportion of available storage space that triggers automatic expansion. When supported, the value is 10%.
- storage
Space Number - Total instance storage space. Unit: GB.
- storage
Type String - Instance storage type. The value is LocalSSD, indicating a local SSD disk.
- storage
Use Number - The instance has used storage space. Unit: GB.
- subnet
Id String - The subnet ID of the RDS instance.
- List<Property Map>
- Tags.
- time
Zone String - Time zone.
- update
Time String - The update time of the RDS instance.
- v
Cpu Number - CPU size.
- vpc
Id String - The vpc ID of the RDS instance.
- zone
Id String - The available zone of the RDS instance.
- zone
Ids List<String> - List of availability zones where each node of the instance is located.
GetInstancesRdsMysqlInstanceAutoStorageScalingConfig
- Enable
Storage boolAuto Scale - Whether to enable the instance's auto - scaling function. Values: true: Yes. false: No. Description: When StorageConfig is used as a request parameter, if the value of EnableStorageAutoScale is false, the StorageThreshold and StorageUpperBound parameters do not need to be passed in.
- Storage
Threshold int - The proportion of available storage space that triggers automatic expansion. The value range is 10 to 50, and the default value is 10, with the unit being %.
- Storage
Upper intBound - The upper limit of the storage space that can be automatically expanded. The lower limit of the value of this field is the instance storage space + 20GB; the upper limit of the value is the upper limit of the storage space value range corresponding to the instance master node specification, with the unit being GB. For detailed information on the selectable storage space value range of different specifications, please refer to Product Specifications.
- Enable
Storage boolAuto Scale - Whether to enable the instance's auto - scaling function. Values: true: Yes. false: No. Description: When StorageConfig is used as a request parameter, if the value of EnableStorageAutoScale is false, the StorageThreshold and StorageUpperBound parameters do not need to be passed in.
- Storage
Threshold int - The proportion of available storage space that triggers automatic expansion. The value range is 10 to 50, and the default value is 10, with the unit being %.
- Storage
Upper intBound - The upper limit of the storage space that can be automatically expanded. The lower limit of the value of this field is the instance storage space + 20GB; the upper limit of the value is the upper limit of the storage space value range corresponding to the instance master node specification, with the unit being GB. For detailed information on the selectable storage space value range of different specifications, please refer to Product Specifications.
- enable
Storage BooleanAuto Scale - Whether to enable the instance's auto - scaling function. Values: true: Yes. false: No. Description: When StorageConfig is used as a request parameter, if the value of EnableStorageAutoScale is false, the StorageThreshold and StorageUpperBound parameters do not need to be passed in.
- storage
Threshold Integer - The proportion of available storage space that triggers automatic expansion. The value range is 10 to 50, and the default value is 10, with the unit being %.
- storage
Upper IntegerBound - The upper limit of the storage space that can be automatically expanded. The lower limit of the value of this field is the instance storage space + 20GB; the upper limit of the value is the upper limit of the storage space value range corresponding to the instance master node specification, with the unit being GB. For detailed information on the selectable storage space value range of different specifications, please refer to Product Specifications.
- enable
Storage booleanAuto Scale - Whether to enable the instance's auto - scaling function. Values: true: Yes. false: No. Description: When StorageConfig is used as a request parameter, if the value of EnableStorageAutoScale is false, the StorageThreshold and StorageUpperBound parameters do not need to be passed in.
- storage
Threshold number - The proportion of available storage space that triggers automatic expansion. The value range is 10 to 50, and the default value is 10, with the unit being %.
- storage
Upper numberBound - The upper limit of the storage space that can be automatically expanded. The lower limit of the value of this field is the instance storage space + 20GB; the upper limit of the value is the upper limit of the storage space value range corresponding to the instance master node specification, with the unit being GB. For detailed information on the selectable storage space value range of different specifications, please refer to Product Specifications.
- enable_
storage_ boolauto_ scale - Whether to enable the instance's auto - scaling function. Values: true: Yes. false: No. Description: When StorageConfig is used as a request parameter, if the value of EnableStorageAutoScale is false, the StorageThreshold and StorageUpperBound parameters do not need to be passed in.
- storage_
threshold int - The proportion of available storage space that triggers automatic expansion. The value range is 10 to 50, and the default value is 10, with the unit being %.
- storage_
upper_ intbound - The upper limit of the storage space that can be automatically expanded. The lower limit of the value of this field is the instance storage space + 20GB; the upper limit of the value is the upper limit of the storage space value range corresponding to the instance master node specification, with the unit being GB. For detailed information on the selectable storage space value range of different specifications, please refer to Product Specifications.
- enable
Storage BooleanAuto Scale - Whether to enable the instance's auto - scaling function. Values: true: Yes. false: No. Description: When StorageConfig is used as a request parameter, if the value of EnableStorageAutoScale is false, the StorageThreshold and StorageUpperBound parameters do not need to be passed in.
- storage
Threshold Number - The proportion of available storage space that triggers automatic expansion. The value range is 10 to 50, and the default value is 10, with the unit being %.
- storage
Upper NumberBound - The upper limit of the storage space that can be automatically expanded. The lower limit of the value of this field is the instance storage space + 20GB; the upper limit of the value is the upper limit of the storage space value range corresponding to the instance master node specification, with the unit being GB. For detailed information on the selectable storage space value range of different specifications, please refer to Product Specifications.
GetInstancesRdsMysqlInstanceChargeDetail
- Auto
Renew bool - Whether to automatically renew in prepaid scenarios. Autorenew_Enable Autorenew_Disable (default).
- Charge
End stringTime - Billing expiry time (yearly and monthly only).
- Charge
Start stringTime - Billing start time (pay-as-you-go & monthly subscription).
- Charge
Status string - Pay status. Value: normal - normal overdue - overdue .
- Charge
Type string - The charge type of the RDS instance.
- Overdue
Reclaim stringTime - Estimated release time when arrears are closed (pay-as-you-go & monthly subscription).
- Overdue
Time string - Shutdown time in arrears (pay-as-you-go & monthly subscription).
- Period int
- Purchase duration in prepaid scenarios. Default: 1.
- Period
Unit string - The purchase cycle in the prepaid scenario. Month - monthly subscription (default) Year - Package year.
- Temp
Modify stringEnd Time - Restore time of temporary upgrade.
- Temp
Modify stringStart Time - Temporary upgrade start time.
- Auto
Renew bool - Whether to automatically renew in prepaid scenarios. Autorenew_Enable Autorenew_Disable (default).
- Charge
End stringTime - Billing expiry time (yearly and monthly only).
- Charge
Start stringTime - Billing start time (pay-as-you-go & monthly subscription).
- Charge
Status string - Pay status. Value: normal - normal overdue - overdue .
- Charge
Type string - The charge type of the RDS instance.
- Overdue
Reclaim stringTime - Estimated release time when arrears are closed (pay-as-you-go & monthly subscription).
- Overdue
Time string - Shutdown time in arrears (pay-as-you-go & monthly subscription).
- Period int
- Purchase duration in prepaid scenarios. Default: 1.
- Period
Unit string - The purchase cycle in the prepaid scenario. Month - monthly subscription (default) Year - Package year.
- Temp
Modify stringEnd Time - Restore time of temporary upgrade.
- Temp
Modify stringStart Time - Temporary upgrade start time.
- auto
Renew Boolean - Whether to automatically renew in prepaid scenarios. Autorenew_Enable Autorenew_Disable (default).
- charge
End StringTime - Billing expiry time (yearly and monthly only).
- charge
Start StringTime - Billing start time (pay-as-you-go & monthly subscription).
- charge
Status String - Pay status. Value: normal - normal overdue - overdue .
- charge
Type String - The charge type of the RDS instance.
- overdue
Reclaim StringTime - Estimated release time when arrears are closed (pay-as-you-go & monthly subscription).
- overdue
Time String - Shutdown time in arrears (pay-as-you-go & monthly subscription).
- period Integer
- Purchase duration in prepaid scenarios. Default: 1.
- period
Unit String - The purchase cycle in the prepaid scenario. Month - monthly subscription (default) Year - Package year.
- temp
Modify StringEnd Time - Restore time of temporary upgrade.
- temp
Modify StringStart Time - Temporary upgrade start time.
- auto
Renew boolean - Whether to automatically renew in prepaid scenarios. Autorenew_Enable Autorenew_Disable (default).
- charge
End stringTime - Billing expiry time (yearly and monthly only).
- charge
Start stringTime - Billing start time (pay-as-you-go & monthly subscription).
- charge
Status string - Pay status. Value: normal - normal overdue - overdue .
- charge
Type string - The charge type of the RDS instance.
- overdue
Reclaim stringTime - Estimated release time when arrears are closed (pay-as-you-go & monthly subscription).
- overdue
Time string - Shutdown time in arrears (pay-as-you-go & monthly subscription).
- period number
- Purchase duration in prepaid scenarios. Default: 1.
- period
Unit string - The purchase cycle in the prepaid scenario. Month - monthly subscription (default) Year - Package year.
- temp
Modify stringEnd Time - Restore time of temporary upgrade.
- temp
Modify stringStart Time - Temporary upgrade start time.
- auto_
renew bool - Whether to automatically renew in prepaid scenarios. Autorenew_Enable Autorenew_Disable (default).
- charge_
end_ strtime - Billing expiry time (yearly and monthly only).
- charge_
start_ strtime - Billing start time (pay-as-you-go & monthly subscription).
- charge_
status str - Pay status. Value: normal - normal overdue - overdue .
- charge_
type str - The charge type of the RDS instance.
- overdue_
reclaim_ strtime - Estimated release time when arrears are closed (pay-as-you-go & monthly subscription).
- overdue_
time str - Shutdown time in arrears (pay-as-you-go & monthly subscription).
- period int
- Purchase duration in prepaid scenarios. Default: 1.
- period_
unit str - The purchase cycle in the prepaid scenario. Month - monthly subscription (default) Year - Package year.
- temp_
modify_ strend_ time - Restore time of temporary upgrade.
- temp_
modify_ strstart_ time - Temporary upgrade start time.
- auto
Renew Boolean - Whether to automatically renew in prepaid scenarios. Autorenew_Enable Autorenew_Disable (default).
- charge
End StringTime - Billing expiry time (yearly and monthly only).
- charge
Start StringTime - Billing start time (pay-as-you-go & monthly subscription).
- charge
Status String - Pay status. Value: normal - normal overdue - overdue .
- charge
Type String - The charge type of the RDS instance.
- overdue
Reclaim StringTime - Estimated release time when arrears are closed (pay-as-you-go & monthly subscription).
- overdue
Time String - Shutdown time in arrears (pay-as-you-go & monthly subscription).
- period Number
- Purchase duration in prepaid scenarios. Default: 1.
- period
Unit String - The purchase cycle in the prepaid scenario. Month - monthly subscription (default) Year - Package year.
- temp
Modify StringEnd Time - Restore time of temporary upgrade.
- temp
Modify StringStart Time - Temporary upgrade start time.
GetInstancesRdsMysqlInstanceEndpoint
- Addresses
List<Get
Instances Rds Mysql Instance Endpoint Address> - Address list.
- Auto
Add stringNew Nodes - When the terminal type is read-write terminal or read-only terminal, it supports setting whether new nodes are automatically added.
- Description string
- Address description.
- Enable
Read stringOnly - Whether global read-only is enabled, value: Enable: Enable. Disable: Disabled.
- Enable
Read stringWrite Splitting - Whether read-write separation is enabled, value: Enable: Enable. Disable: Disabled.
- Endpoint
Id string - Instance connection terminal ID.
- Endpoint
Name string - The instance connection terminal name.
- Endpoint
Type string - Terminal type: Cluster: The default terminal. (created by default) Primary: Primary node terminal. Custom: Custom terminal. Direct: Direct connection to the terminal. (Only the operation and maintenance side) AllNode: All node terminals. (Only the operation and maintenance side).
- Idle
Connection boolReclaim - Whether the idle connection reclaim function is enabled. true: Enabled. false: Disabled.
- Node
Weights List<GetInstances Rds Mysql Instance Endpoint Node Weight> - The list of nodes configured by the connection terminal and the corresponding read-only weights.
- Read
Write stringMode - Read and write mode: ReadWrite: read and write ReadOnly: read only (default).
- Addresses
[]Get
Instances Rds Mysql Instance Endpoint Address - Address list.
- Auto
Add stringNew Nodes - When the terminal type is read-write terminal or read-only terminal, it supports setting whether new nodes are automatically added.
- Description string
- Address description.
- Enable
Read stringOnly - Whether global read-only is enabled, value: Enable: Enable. Disable: Disabled.
- Enable
Read stringWrite Splitting - Whether read-write separation is enabled, value: Enable: Enable. Disable: Disabled.
- Endpoint
Id string - Instance connection terminal ID.
- Endpoint
Name string - The instance connection terminal name.
- Endpoint
Type string - Terminal type: Cluster: The default terminal. (created by default) Primary: Primary node terminal. Custom: Custom terminal. Direct: Direct connection to the terminal. (Only the operation and maintenance side) AllNode: All node terminals. (Only the operation and maintenance side).
- Idle
Connection boolReclaim - Whether the idle connection reclaim function is enabled. true: Enabled. false: Disabled.
- Node
Weights []GetInstances Rds Mysql Instance Endpoint Node Weight - The list of nodes configured by the connection terminal and the corresponding read-only weights.
- Read
Write stringMode - Read and write mode: ReadWrite: read and write ReadOnly: read only (default).
- addresses
List<Get
Instances Rds Mysql Instance Endpoint Address> - Address list.
- auto
Add StringNew Nodes - When the terminal type is read-write terminal or read-only terminal, it supports setting whether new nodes are automatically added.
- description String
- Address description.
- enable
Read StringOnly - Whether global read-only is enabled, value: Enable: Enable. Disable: Disabled.
- enable
Read StringWrite Splitting - Whether read-write separation is enabled, value: Enable: Enable. Disable: Disabled.
- endpoint
Id String - Instance connection terminal ID.
- endpoint
Name String - The instance connection terminal name.
- endpoint
Type String - Terminal type: Cluster: The default terminal. (created by default) Primary: Primary node terminal. Custom: Custom terminal. Direct: Direct connection to the terminal. (Only the operation and maintenance side) AllNode: All node terminals. (Only the operation and maintenance side).
- idle
Connection BooleanReclaim - Whether the idle connection reclaim function is enabled. true: Enabled. false: Disabled.
- node
Weights List<GetInstances Rds Mysql Instance Endpoint Node Weight> - The list of nodes configured by the connection terminal and the corresponding read-only weights.
- read
Write StringMode - Read and write mode: ReadWrite: read and write ReadOnly: read only (default).
- addresses
Get
Instances Rds Mysql Instance Endpoint Address[] - Address list.
- auto
Add stringNew Nodes - When the terminal type is read-write terminal or read-only terminal, it supports setting whether new nodes are automatically added.
- description string
- Address description.
- enable
Read stringOnly - Whether global read-only is enabled, value: Enable: Enable. Disable: Disabled.
- enable
Read stringWrite Splitting - Whether read-write separation is enabled, value: Enable: Enable. Disable: Disabled.
- endpoint
Id string - Instance connection terminal ID.
- endpoint
Name string - The instance connection terminal name.
- endpoint
Type string - Terminal type: Cluster: The default terminal. (created by default) Primary: Primary node terminal. Custom: Custom terminal. Direct: Direct connection to the terminal. (Only the operation and maintenance side) AllNode: All node terminals. (Only the operation and maintenance side).
- idle
Connection booleanReclaim - Whether the idle connection reclaim function is enabled. true: Enabled. false: Disabled.
- node
Weights GetInstances Rds Mysql Instance Endpoint Node Weight[] - The list of nodes configured by the connection terminal and the corresponding read-only weights.
- read
Write stringMode - Read and write mode: ReadWrite: read and write ReadOnly: read only (default).
- addresses
Sequence[Get
Instances Rds Mysql Instance Endpoint Address] - Address list.
- auto_
add_ strnew_ nodes - When the terminal type is read-write terminal or read-only terminal, it supports setting whether new nodes are automatically added.
- description str
- Address description.
- enable_
read_ stronly - Whether global read-only is enabled, value: Enable: Enable. Disable: Disabled.
- enable_
read_ strwrite_ splitting - Whether read-write separation is enabled, value: Enable: Enable. Disable: Disabled.
- endpoint_
id str - Instance connection terminal ID.
- endpoint_
name str - The instance connection terminal name.
- endpoint_
type str - Terminal type: Cluster: The default terminal. (created by default) Primary: Primary node terminal. Custom: Custom terminal. Direct: Direct connection to the terminal. (Only the operation and maintenance side) AllNode: All node terminals. (Only the operation and maintenance side).
- idle_
connection_ boolreclaim - Whether the idle connection reclaim function is enabled. true: Enabled. false: Disabled.
- node_
weights Sequence[GetInstances Rds Mysql Instance Endpoint Node Weight] - The list of nodes configured by the connection terminal and the corresponding read-only weights.
- read_
write_ strmode - Read and write mode: ReadWrite: read and write ReadOnly: read only (default).
- addresses List<Property Map>
- Address list.
- auto
Add StringNew Nodes - When the terminal type is read-write terminal or read-only terminal, it supports setting whether new nodes are automatically added.
- description String
- Address description.
- enable
Read StringOnly - Whether global read-only is enabled, value: Enable: Enable. Disable: Disabled.
- enable
Read StringWrite Splitting - Whether read-write separation is enabled, value: Enable: Enable. Disable: Disabled.
- endpoint
Id String - Instance connection terminal ID.
- endpoint
Name String - The instance connection terminal name.
- endpoint
Type String - Terminal type: Cluster: The default terminal. (created by default) Primary: Primary node terminal. Custom: Custom terminal. Direct: Direct connection to the terminal. (Only the operation and maintenance side) AllNode: All node terminals. (Only the operation and maintenance side).
- idle
Connection BooleanReclaim - Whether the idle connection reclaim function is enabled. true: Enabled. false: Disabled.
- node
Weights List<Property Map> - The list of nodes configured by the connection terminal and the corresponding read-only weights.
- read
Write StringMode - Read and write mode: ReadWrite: read and write ReadOnly: read only (default).
GetInstancesRdsMysqlInstanceEndpointAddress
- Dns
Visibility bool - DNS Visibility.
- Domain string
- Connect domain name.
- Eip
Id string - The ID of the EIP, only valid for Public addresses.
- Ip
Address string - The IP Address.
- Network
Type string - Network address type, temporarily Private, Public, PublicService.
- Port string
- The Port.
- Subnet
Id string - The subnet ID of the RDS instance.
- Dns
Visibility bool - DNS Visibility.
- Domain string
- Connect domain name.
- Eip
Id string - The ID of the EIP, only valid for Public addresses.
- Ip
Address string - The IP Address.
- Network
Type string - Network address type, temporarily Private, Public, PublicService.
- Port string
- The Port.
- Subnet
Id string - The subnet ID of the RDS instance.
- dns
Visibility Boolean - DNS Visibility.
- domain String
- Connect domain name.
- eip
Id String - The ID of the EIP, only valid for Public addresses.
- ip
Address String - The IP Address.
- network
Type String - Network address type, temporarily Private, Public, PublicService.
- port String
- The Port.
- subnet
Id String - The subnet ID of the RDS instance.
- dns
Visibility boolean - DNS Visibility.
- domain string
- Connect domain name.
- eip
Id string - The ID of the EIP, only valid for Public addresses.
- ip
Address string - The IP Address.
- network
Type string - Network address type, temporarily Private, Public, PublicService.
- port string
- The Port.
- subnet
Id string - The subnet ID of the RDS instance.
- dns_
visibility bool - DNS Visibility.
- domain str
- Connect domain name.
- eip_
id str - The ID of the EIP, only valid for Public addresses.
- ip_
address str - The IP Address.
- network_
type str - Network address type, temporarily Private, Public, PublicService.
- port str
- The Port.
- subnet_
id str - The subnet ID of the RDS instance.
- dns
Visibility Boolean - DNS Visibility.
- domain String
- Connect domain name.
- eip
Id String - The ID of the EIP, only valid for Public addresses.
- ip
Address String - The IP Address.
- network
Type String - Network address type, temporarily Private, Public, PublicService.
- port String
- The Port.
- subnet
Id String - The subnet ID of the RDS instance.
GetInstancesRdsMysqlInstanceEndpointNodeWeight
GetInstancesRdsMysqlInstanceFeatureState
- Enable bool
- Whether it is enabled. Values: true: Enabled. false: Disabled.
- Feature
Name string - Feature name.
- Support bool
- Whether it support this function. Value: true: Supported. false: Not supported.
- Enable bool
- Whether it is enabled. Values: true: Enabled. false: Disabled.
- Feature
Name string - Feature name.
- Support bool
- Whether it support this function. Value: true: Supported. false: Not supported.
- enable Boolean
- Whether it is enabled. Values: true: Enabled. false: Disabled.
- feature
Name String - Feature name.
- support Boolean
- Whether it support this function. Value: true: Supported. false: Not supported.
- enable boolean
- Whether it is enabled. Values: true: Enabled. false: Disabled.
- feature
Name string - Feature name.
- support boolean
- Whether it support this function. Value: true: Supported. false: Not supported.
- enable bool
- Whether it is enabled. Values: true: Enabled. false: Disabled.
- feature_
name str - Feature name.
- support bool
- Whether it support this function. Value: true: Supported. false: Not supported.
- enable Boolean
- Whether it is enabled. Values: true: Enabled. false: Disabled.
- feature
Name String - Feature name.
- support Boolean
- Whether it support this function. Value: true: Supported. false: Not supported.
GetInstancesRdsMysqlInstanceMaintenanceWindow
- Day
Kind string - DayKind of maintainable window. Value: Week. Month.
- Day
Of List<int>Months - Days of maintainable window of the month.
- Day
Of List<string>Weeks - Days of maintainable window of the week.
- Maintenance
Time string - The maintainable time of the RDS instance.
- Day
Kind string - DayKind of maintainable window. Value: Week. Month.
- Day
Of []intMonths - Days of maintainable window of the month.
- Day
Of []stringWeeks - Days of maintainable window of the week.
- Maintenance
Time string - The maintainable time of the RDS instance.
- day
Kind String - DayKind of maintainable window. Value: Week. Month.
- day
Of List<Integer>Months - Days of maintainable window of the month.
- day
Of List<String>Weeks - Days of maintainable window of the week.
- maintenance
Time String - The maintainable time of the RDS instance.
- day
Kind string - DayKind of maintainable window. Value: Week. Month.
- day
Of number[]Months - Days of maintainable window of the month.
- day
Of string[]Weeks - Days of maintainable window of the week.
- maintenance
Time string - The maintainable time of the RDS instance.
- day_
kind str - DayKind of maintainable window. Value: Week. Month.
- day_
of_ Sequence[int]months - Days of maintainable window of the month.
- day_
of_ Sequence[str]weeks - Days of maintainable window of the week.
- maintenance_
time str - The maintainable time of the RDS instance.
- day
Kind String - DayKind of maintainable window. Value: Week. Month.
- day
Of List<Number>Months - Days of maintainable window of the month.
- day
Of List<String>Weeks - Days of maintainable window of the week.
- maintenance
Time String - The maintainable time of the RDS instance.
GetInstancesRdsMysqlInstanceNode
- Create
Time string - Node creation local time.
- Instance
Id string - The id of the RDS instance.
- Memory int
- Memory size in GB.
- Node
Id string - Node ID.
- Node
Spec string - Primary node specification. For detailed information about the node specifications, please refer to Product Specifications.
- Node
Status string - Node state, value: aligned with instance state.
- Node
Type string - Node type. Value: Primary: Primary node. Secondary: Standby node. ReadOnly: Read-only node.
- Region
Id string - The region of the RDS instance.
- Update
Time string - The update time of the RDS instance.
- VCpu int
- CPU size.
- Zone
Id string - The available zone of the RDS instance.
- Create
Time string - Node creation local time.
- Instance
Id string - The id of the RDS instance.
- Memory int
- Memory size in GB.
- Node
Id string - Node ID.
- Node
Spec string - Primary node specification. For detailed information about the node specifications, please refer to Product Specifications.
- Node
Status string - Node state, value: aligned with instance state.
- Node
Type string - Node type. Value: Primary: Primary node. Secondary: Standby node. ReadOnly: Read-only node.
- Region
Id string - The region of the RDS instance.
- Update
Time string - The update time of the RDS instance.
- VCpu int
- CPU size.
- Zone
Id string - The available zone of the RDS instance.
- create
Time String - Node creation local time.
- instance
Id String - The id of the RDS instance.
- memory Integer
- Memory size in GB.
- node
Id String - Node ID.
- node
Spec String - Primary node specification. For detailed information about the node specifications, please refer to Product Specifications.
- node
Status String - Node state, value: aligned with instance state.
- node
Type String - Node type. Value: Primary: Primary node. Secondary: Standby node. ReadOnly: Read-only node.
- region
Id String - The region of the RDS instance.
- update
Time String - The update time of the RDS instance.
- v
Cpu Integer - CPU size.
- zone
Id String - The available zone of the RDS instance.
- create
Time string - Node creation local time.
- instance
Id string - The id of the RDS instance.
- memory number
- Memory size in GB.
- node
Id string - Node ID.
- node
Spec string - Primary node specification. For detailed information about the node specifications, please refer to Product Specifications.
- node
Status string - Node state, value: aligned with instance state.
- node
Type string - Node type. Value: Primary: Primary node. Secondary: Standby node. ReadOnly: Read-only node.
- region
Id string - The region of the RDS instance.
- update
Time string - The update time of the RDS instance.
- v
Cpu number - CPU size.
- zone
Id string - The available zone of the RDS instance.
- create_
time str - Node creation local time.
- instance_
id str - The id of the RDS instance.
- memory int
- Memory size in GB.
- node_
id str - Node ID.
- node_
spec str - Primary node specification. For detailed information about the node specifications, please refer to Product Specifications.
- node_
status str - Node state, value: aligned with instance state.
- node_
type str - Node type. Value: Primary: Primary node. Secondary: Standby node. ReadOnly: Read-only node.
- region_
id str - The region of the RDS instance.
- update_
time str - The update time of the RDS instance.
- v_
cpu int - CPU size.
- zone_
id str - The available zone of the RDS instance.
- create
Time String - Node creation local time.
- instance
Id String - The id of the RDS instance.
- memory Number
- Memory size in GB.
- node
Id String - Node ID.
- node
Spec String - Primary node specification. For detailed information about the node specifications, please refer to Product Specifications.
- node
Status String - Node state, value: aligned with instance state.
- node
Type String - Node type. Value: Primary: Primary node. Secondary: Standby node. ReadOnly: Read-only node.
- region
Id String - The region of the RDS instance.
- update
Time String - The update time of the RDS instance.
- v
Cpu Number - CPU size.
- zone
Id String - The available zone of the RDS instance.
GetInstancesRdsMysqlInstanceTag
GetInstancesTag
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
volcengine
Terraform Provider.