Volcengine v0.0.38 published on Friday, Oct 31, 2025 by Volcengine
Volcengine v0.0.38 published on Friday, Oct 31, 2025 by Volcengine
Use this data source to query detailed information of vedb mysql backups
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?.[2]?.id),
vpcId: fooVpc.id,
});
const fooInstance = new volcengine.vedb_mysql.Instance("fooInstance", {
chargeType: "PostPaid",
storageChargeType: "PostPaid",
dbEngineVersion: "MySQL_8_0",
dbMinorVersion: "3.0",
nodeNumber: 2,
nodeSpec: "vedb.mysql.x4.large",
subnetId: fooSubnet.id,
instanceName: "tf-test",
projectName: "testA",
tags: [
{
key: "tftest",
value: "tftest",
},
{
key: "tftest2",
value: "tftest2",
},
],
});
const fooBackup = new volcengine.vedb_mysql.Backup("fooBackup", {
instanceId: fooInstance.id,
backupPolicy: {
backupTime: "18:00Z-20:00Z",
fullBackupPeriod: "Monday,Tuesday,Wednesday",
backupRetentionPeriod: 8,
},
});
const fooBackups = volcengine.vedb_mysql.getBackupsOutput({
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-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[2].id,
vpc_id=foo_vpc.id)
foo_instance = volcengine.vedb_mysql.Instance("fooInstance",
charge_type="PostPaid",
storage_charge_type="PostPaid",
db_engine_version="MySQL_8_0",
db_minor_version="3.0",
node_number=2,
node_spec="vedb.mysql.x4.large",
subnet_id=foo_subnet.id,
instance_name="tf-test",
project_name="testA",
tags=[
volcengine.vedb_mysql.InstanceTagArgs(
key="tftest",
value="tftest",
),
volcengine.vedb_mysql.InstanceTagArgs(
key="tftest2",
value="tftest2",
),
])
foo_backup = volcengine.vedb_mysql.Backup("fooBackup",
instance_id=foo_instance.id,
backup_policy=volcengine.vedb_mysql.BackupBackupPolicyArgs(
backup_time="18:00Z-20:00Z",
full_backup_period="Monday,Tuesday,Wednesday",
backup_retention_period=8,
))
foo_backups = volcengine.vedb_mysql.get_backups_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/vedb_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[2].Id),
VpcId: fooVpc.ID(),
})
if err != nil {
return err
}
fooInstance, err := vedb_mysql.NewInstance(ctx, "fooInstance", &vedb_mysql.InstanceArgs{
ChargeType: pulumi.String("PostPaid"),
StorageChargeType: pulumi.String("PostPaid"),
DbEngineVersion: pulumi.String("MySQL_8_0"),
DbMinorVersion: pulumi.String("3.0"),
NodeNumber: pulumi.Int(2),
NodeSpec: pulumi.String("vedb.mysql.x4.large"),
SubnetId: fooSubnet.ID(),
InstanceName: pulumi.String("tf-test"),
ProjectName: pulumi.String("testA"),
Tags: vedb_mysql.InstanceTagArray{
&vedb_mysql.InstanceTagArgs{
Key: pulumi.String("tftest"),
Value: pulumi.String("tftest"),
},
&vedb_mysql.InstanceTagArgs{
Key: pulumi.String("tftest2"),
Value: pulumi.String("tftest2"),
},
},
})
if err != nil {
return err
}
_, err = vedb_mysql.NewBackup(ctx, "fooBackup", &vedb_mysql.BackupArgs{
InstanceId: fooInstance.ID(),
BackupPolicy: &vedb_mysql.BackupBackupPolicyArgs{
BackupTime: pulumi.String("18:00Z-20:00Z"),
FullBackupPeriod: pulumi.String("Monday,Tuesday,Wednesday"),
BackupRetentionPeriod: pulumi.Int(8),
},
})
if err != nil {
return err
}
_ = vedb_mysql.GetBackupsOutput(ctx, vedb_mysql.GetBackupsOutputArgs{
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-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[2]?.Id),
VpcId = fooVpc.Id,
});
var fooInstance = new Volcengine.Vedb_mysql.Instance("fooInstance", new()
{
ChargeType = "PostPaid",
StorageChargeType = "PostPaid",
DbEngineVersion = "MySQL_8_0",
DbMinorVersion = "3.0",
NodeNumber = 2,
NodeSpec = "vedb.mysql.x4.large",
SubnetId = fooSubnet.Id,
InstanceName = "tf-test",
ProjectName = "testA",
Tags = new[]
{
new Volcengine.Vedb_mysql.Inputs.InstanceTagArgs
{
Key = "tftest",
Value = "tftest",
},
new Volcengine.Vedb_mysql.Inputs.InstanceTagArgs
{
Key = "tftest2",
Value = "tftest2",
},
},
});
var fooBackup = new Volcengine.Vedb_mysql.Backup("fooBackup", new()
{
InstanceId = fooInstance.Id,
BackupPolicy = new Volcengine.Vedb_mysql.Inputs.BackupBackupPolicyArgs
{
BackupTime = "18:00Z-20:00Z",
FullBackupPeriod = "Monday,Tuesday,Wednesday",
BackupRetentionPeriod = 8,
},
});
var fooBackups = Volcengine.Vedb_mysql.GetBackups.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.vedb_mysql.Instance;
import com.pulumi.volcengine.vedb_mysql.InstanceArgs;
import com.pulumi.volcengine.vedb_mysql.inputs.InstanceTagArgs;
import com.pulumi.volcengine.vedb_mysql.Backup;
import com.pulumi.volcengine.vedb_mysql.BackupArgs;
import com.pulumi.volcengine.vedb_mysql.inputs.BackupBackupPolicyArgs;
import com.pulumi.volcengine.vedb_mysql.Vedb_mysqlFunctions;
import com.pulumi.volcengine.vedb_mysql.inputs.GetBackupsArgs;
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()[2].id()))
.vpcId(fooVpc.id())
.build());
var fooInstance = new Instance("fooInstance", InstanceArgs.builder()
.chargeType("PostPaid")
.storageChargeType("PostPaid")
.dbEngineVersion("MySQL_8_0")
.dbMinorVersion("3.0")
.nodeNumber(2)
.nodeSpec("vedb.mysql.x4.large")
.subnetId(fooSubnet.id())
.instanceName("tf-test")
.projectName("testA")
.tags(
InstanceTagArgs.builder()
.key("tftest")
.value("tftest")
.build(),
InstanceTagArgs.builder()
.key("tftest2")
.value("tftest2")
.build())
.build());
var fooBackup = new Backup("fooBackup", BackupArgs.builder()
.instanceId(fooInstance.id())
.backupPolicy(BackupBackupPolicyArgs.builder()
.backupTime("18:00Z-20:00Z")
.fullBackupPeriod("Monday,Tuesday,Wednesday")
.backupRetentionPeriod(8)
.build())
.build());
final var fooBackups = Vedb_mysqlFunctions.getBackups(GetBackupsArgs.builder()
.instanceId(fooInstance.id())
.build());
}
}
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[2].id}
vpcId: ${fooVpc.id}
fooInstance:
type: volcengine:vedb_mysql:Instance
properties:
chargeType: PostPaid
storageChargeType: PostPaid
dbEngineVersion: MySQL_8_0
dbMinorVersion: '3.0'
nodeNumber: 2
nodeSpec: vedb.mysql.x4.large
subnetId: ${fooSubnet.id}
instanceName: tf-test
projectName: testA
tags:
- key: tftest
value: tftest
- key: tftest2
value: tftest2
fooBackup:
type: volcengine:vedb_mysql:Backup
properties:
instanceId: ${fooInstance.id}
backupPolicy:
backupTime: 18:00Z-20:00Z
fullBackupPeriod: Monday,Tuesday,Wednesday
backupRetentionPeriod: 8
variables:
fooZones:
fn::invoke:
Function: volcengine:ecs:getZones
Arguments: {}
fooBackups:
fn::invoke:
Function: volcengine:vedb_mysql:getBackups
Arguments:
instanceId: ${fooInstance.id}
Using getBackups
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 getBackups(args: GetBackupsArgs, opts?: InvokeOptions): Promise<GetBackupsResult>
function getBackupsOutput(args: GetBackupsOutputArgs, opts?: InvokeOptions): Output<GetBackupsResult>def get_backups(backup_end_time: Optional[str] = None,
backup_method: Optional[str] = None,
backup_start_time: Optional[str] = None,
backup_status: Optional[str] = None,
backup_type: Optional[str] = None,
instance_id: Optional[str] = None,
output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetBackupsResult
def get_backups_output(backup_end_time: Optional[pulumi.Input[str]] = None,
backup_method: Optional[pulumi.Input[str]] = None,
backup_start_time: Optional[pulumi.Input[str]] = None,
backup_status: Optional[pulumi.Input[str]] = None,
backup_type: Optional[pulumi.Input[str]] = None,
instance_id: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetBackupsResult]func GetBackups(ctx *Context, args *GetBackupsArgs, opts ...InvokeOption) (*GetBackupsResult, error)
func GetBackupsOutput(ctx *Context, args *GetBackupsOutputArgs, opts ...InvokeOption) GetBackupsResultOutput> Note: This function is named GetBackups in the Go SDK.
public static class GetBackups
{
public static Task<GetBackupsResult> InvokeAsync(GetBackupsArgs args, InvokeOptions? opts = null)
public static Output<GetBackupsResult> Invoke(GetBackupsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetBackupsResult> getBackups(GetBackupsArgs args, InvokeOptions options)
public static Output<GetBackupsResult> getBackups(GetBackupsArgs args, InvokeOptions options)
fn::invoke:
function: volcengine:vedb_mysql/getBackups:getBackups
arguments:
# arguments dictionaryThe following arguments are supported:
- Instance
Id string - The id of the instance.
- Backup
End stringTime - The end time of the backup.
- Backup
Method string - Backup method. Currently, only physical backup is supported. The value is Physical.
- Backup
Start stringTime - The start time of the backup.
- Backup
Status string - The status of the backup.
- Backup
Type string - The type of the backup.
- Output
File string - File name where to save data source results.
- Instance
Id string - The id of the instance.
- Backup
End stringTime - The end time of the backup.
- Backup
Method string - Backup method. Currently, only physical backup is supported. The value is Physical.
- Backup
Start stringTime - The start time of the backup.
- Backup
Status string - The status of the backup.
- Backup
Type string - The type of the backup.
- Output
File string - File name where to save data source results.
- instance
Id String - The id of the instance.
- backup
End StringTime - The end time of the backup.
- backup
Method String - Backup method. Currently, only physical backup is supported. The value is Physical.
- backup
Start StringTime - The start time of the backup.
- backup
Status String - The status of the backup.
- backup
Type String - The type of the backup.
- output
File String - File name where to save data source results.
- instance
Id string - The id of the instance.
- backup
End stringTime - The end time of the backup.
- backup
Method string - Backup method. Currently, only physical backup is supported. The value is Physical.
- backup
Start stringTime - The start time of the backup.
- backup
Status string - The status of the backup.
- backup
Type string - The type of the backup.
- output
File string - File name where to save data source results.
- instance_
id str - The id of the instance.
- backup_
end_ strtime - The end time of the backup.
- backup_
method str - Backup method. Currently, only physical backup is supported. The value is Physical.
- backup_
start_ strtime - The start time of the backup.
- backup_
status str - The status of the backup.
- backup_
type str - The type of the backup.
- output_
file str - File name where to save data source results.
- instance
Id String - The id of the instance.
- backup
End StringTime - The end time of the backup.
- backup
Method String - Backup method. Currently, only physical backup is supported. The value is Physical.
- backup
Start StringTime - The start time of the backup.
- backup
Status String - The status of the backup.
- backup
Type String - The type of the backup.
- output
File String - File name where to save data source results.
getBackups Result
The following output properties are available:
- Backups
List<Get
Backups Backup> - The collection of query.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Id string - The id of the instance.
- Total
Count int - The total count of query.
- Backup
End stringTime - The end time of the backup.
- Backup
Method string - The name of the backup method.
- Backup
Start stringTime - The start time of the backup.
- Backup
Status string - The status of the backup.
- Backup
Type string - The type of the backup.
- Output
File string
- Backups
[]Get
Backups Backup - The collection of query.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Id string - The id of the instance.
- Total
Count int - The total count of query.
- Backup
End stringTime - The end time of the backup.
- Backup
Method string - The name of the backup method.
- Backup
Start stringTime - The start time of the backup.
- Backup
Status string - The status of the backup.
- Backup
Type string - The type of the backup.
- Output
File string
- backups
List<Get
Backups Backup> - The collection of query.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Id String - The id of the instance.
- total
Count Integer - The total count of query.
- backup
End StringTime - The end time of the backup.
- backup
Method String - The name of the backup method.
- backup
Start StringTime - The start time of the backup.
- backup
Status String - The status of the backup.
- backup
Type String - The type of the backup.
- output
File String
- backups
Get
Backups Backup[] - The collection of query.
- id string
- The provider-assigned unique ID for this managed resource.
- instance
Id string - The id of the instance.
- total
Count number - The total count of query.
- backup
End stringTime - The end time of the backup.
- backup
Method string - The name of the backup method.
- backup
Start stringTime - The start time of the backup.
- backup
Status string - The status of the backup.
- backup
Type string - The type of the backup.
- output
File string
- backups
Sequence[Get
Backups Backup] - The collection of query.
- id str
- The provider-assigned unique ID for this managed resource.
- instance_
id str - The id of the instance.
- total_
count int - The total count of query.
- backup_
end_ strtime - The end time of the backup.
- backup_
method str - The name of the backup method.
- backup_
start_ strtime - The start time of the backup.
- backup_
status str - The status of the backup.
- backup_
type str - The type of the backup.
- output_
file str
- backups List<Property Map>
- The collection of query.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Id String - The id of the instance.
- total
Count Number - The total count of query.
- backup
End StringTime - The end time of the backup.
- backup
Method String - The name of the backup method.
- backup
Start StringTime - The start time of the backup.
- backup
Status String - The status of the backup.
- backup
Type String - The type of the backup.
- output
File String
Supporting Types
GetBackupsBackup
- Backup
End stringTime - The end time of the backup.
- Backup
File intSize - The size of the backup file.
- Backup
Id string - The id of the backup.
- Backup
Method string - Backup method. Currently, only physical backup is supported. The value is Physical.
- Backup
Policies List<GetBackups Backup Backup Policy> - Data backup strategy for instances.
- Backup
Start stringTime - The start time of the backup.
- Backup
Status string - The status of the backup.
- Backup
Type string - The type of the backup.
- Consistent
Time string - The time point of consistent backup, in the format: yyyy-MM-ddTHH:mm:ssZ (UTC time).
- Create
Type string - The type of the backup create.
- Id string
- The id of the backup.
- Backup
End stringTime - The end time of the backup.
- Backup
File intSize - The size of the backup file.
- Backup
Id string - The id of the backup.
- Backup
Method string - Backup method. Currently, only physical backup is supported. The value is Physical.
- Backup
Policies []GetBackups Backup Backup Policy - Data backup strategy for instances.
- Backup
Start stringTime - The start time of the backup.
- Backup
Status string - The status of the backup.
- Backup
Type string - The type of the backup.
- Consistent
Time string - The time point of consistent backup, in the format: yyyy-MM-ddTHH:mm:ssZ (UTC time).
- Create
Type string - The type of the backup create.
- Id string
- The id of the backup.
- backup
End StringTime - The end time of the backup.
- backup
File IntegerSize - The size of the backup file.
- backup
Id String - The id of the backup.
- backup
Method String - Backup method. Currently, only physical backup is supported. The value is Physical.
- backup
Policies List<GetBackups Backup Backup Policy> - Data backup strategy for instances.
- backup
Start StringTime - The start time of the backup.
- backup
Status String - The status of the backup.
- backup
Type String - The type of the backup.
- consistent
Time String - The time point of consistent backup, in the format: yyyy-MM-ddTHH:mm:ssZ (UTC time).
- create
Type String - The type of the backup create.
- id String
- The id of the backup.
- backup
End stringTime - The end time of the backup.
- backup
File numberSize - The size of the backup file.
- backup
Id string - The id of the backup.
- backup
Method string - Backup method. Currently, only physical backup is supported. The value is Physical.
- backup
Policies GetBackups Backup Backup Policy[] - Data backup strategy for instances.
- backup
Start stringTime - The start time of the backup.
- backup
Status string - The status of the backup.
- backup
Type string - The type of the backup.
- consistent
Time string - The time point of consistent backup, in the format: yyyy-MM-ddTHH:mm:ssZ (UTC time).
- create
Type string - The type of the backup create.
- id string
- The id of the backup.
- backup_
end_ strtime - The end time of the backup.
- backup_
file_ intsize - The size of the backup file.
- backup_
id str - The id of the backup.
- backup_
method str - Backup method. Currently, only physical backup is supported. The value is Physical.
- backup_
policies Sequence[GetBackups Backup Backup Policy] - Data backup strategy for instances.
- backup_
start_ strtime - The start time of the backup.
- backup_
status str - The status of the backup.
- backup_
type str - The type of the backup.
- consistent_
time str - The time point of consistent backup, in the format: yyyy-MM-ddTHH:mm:ssZ (UTC time).
- create_
type str - The type of the backup create.
- id str
- The id of the backup.
- backup
End StringTime - The end time of the backup.
- backup
File NumberSize - The size of the backup file.
- backup
Id String - The id of the backup.
- backup
Method String - Backup method. Currently, only physical backup is supported. The value is Physical.
- backup
Policies List<Property Map> - Data backup strategy for instances.
- backup
Start StringTime - The start time of the backup.
- backup
Status String - The status of the backup.
- backup
Type String - The type of the backup.
- consistent
Time String - The time point of consistent backup, in the format: yyyy-MM-ddTHH:mm:ssZ (UTC time).
- create
Type String - The type of the backup create.
- id String
- The id of the backup.
GetBackupsBackupBackupPolicy
- Backup
Retention intPeriod - Data backup retention period, value: 7 to 30 days.
- Backup
Time string - The time for executing the backup task. The interval window is two hours. Format: HH:mmZ-HH:mmZ (UTC time).
- Continue
Backup bool - Whether to enable continuous backup. The value is fixed as true.
- Full
Backup stringPeriod - Full backup period. Multiple values are separated by English commas (,). Values: Monday: Monday. Tuesday: Tuesday. Wednesday: Wednesday. Thursday: Thursday. Friday: Friday. Saturday: Saturday. Sunday: Sunday.
- Instance
Id string - The id of the instance.
- Backup
Retention intPeriod - Data backup retention period, value: 7 to 30 days.
- Backup
Time string - The time for executing the backup task. The interval window is two hours. Format: HH:mmZ-HH:mmZ (UTC time).
- Continue
Backup bool - Whether to enable continuous backup. The value is fixed as true.
- Full
Backup stringPeriod - Full backup period. Multiple values are separated by English commas (,). Values: Monday: Monday. Tuesday: Tuesday. Wednesday: Wednesday. Thursday: Thursday. Friday: Friday. Saturday: Saturday. Sunday: Sunday.
- Instance
Id string - The id of the instance.
- backup
Retention IntegerPeriod - Data backup retention period, value: 7 to 30 days.
- backup
Time String - The time for executing the backup task. The interval window is two hours. Format: HH:mmZ-HH:mmZ (UTC time).
- continue
Backup Boolean - Whether to enable continuous backup. The value is fixed as true.
- full
Backup StringPeriod - Full backup period. Multiple values are separated by English commas (,). Values: Monday: Monday. Tuesday: Tuesday. Wednesday: Wednesday. Thursday: Thursday. Friday: Friday. Saturday: Saturday. Sunday: Sunday.
- instance
Id String - The id of the instance.
- backup
Retention numberPeriod - Data backup retention period, value: 7 to 30 days.
- backup
Time string - The time for executing the backup task. The interval window is two hours. Format: HH:mmZ-HH:mmZ (UTC time).
- continue
Backup boolean - Whether to enable continuous backup. The value is fixed as true.
- full
Backup stringPeriod - Full backup period. Multiple values are separated by English commas (,). Values: Monday: Monday. Tuesday: Tuesday. Wednesday: Wednesday. Thursday: Thursday. Friday: Friday. Saturday: Saturday. Sunday: Sunday.
- instance
Id string - The id of the instance.
- backup_
retention_ intperiod - Data backup retention period, value: 7 to 30 days.
- backup_
time str - The time for executing the backup task. The interval window is two hours. Format: HH:mmZ-HH:mmZ (UTC time).
- continue_
backup bool - Whether to enable continuous backup. The value is fixed as true.
- full_
backup_ strperiod - Full backup period. Multiple values are separated by English commas (,). Values: Monday: Monday. Tuesday: Tuesday. Wednesday: Wednesday. Thursday: Thursday. Friday: Friday. Saturday: Saturday. Sunday: Sunday.
- instance_
id str - The id of the instance.
- backup
Retention NumberPeriod - Data backup retention period, value: 7 to 30 days.
- backup
Time String - The time for executing the backup task. The interval window is two hours. Format: HH:mmZ-HH:mmZ (UTC time).
- continue
Backup Boolean - Whether to enable continuous backup. The value is fixed as true.
- full
Backup StringPeriod - Full backup period. Multiple values are separated by English commas (,). Values: Monday: Monday. Tuesday: Tuesday. Wednesday: Wednesday. Thursday: Thursday. Friday: Friday. Saturday: Saturday. Sunday: Sunday.
- instance
Id String - The id of the instance.
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
volcengineTerraform Provider.
Volcengine v0.0.38 published on Friday, Oct 31, 2025 by Volcengine
