flexibleengine.DdsBackup
Explore with Pulumi AI
Manages a DDS backup resource within FlexibleEngine.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as flexibleengine from "@pulumi/flexibleengine";
const config = new pulumi.Config();
const ddsInstanceId = config.requireObject("ddsInstanceId");
const name = config.requireObject("name");
const test = new flexibleengine.DdsBackup("test", {instanceId: ddsInstanceId});
import pulumi
import pulumi_flexibleengine as flexibleengine
config = pulumi.Config()
dds_instance_id = config.require_object("ddsInstanceId")
name = config.require_object("name")
test = flexibleengine.DdsBackup("test", instance_id=dds_instance_id)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/flexibleengine/flexibleengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
ddsInstanceId := cfg.RequireObject("ddsInstanceId")
name := cfg.RequireObject("name")
_, err := flexibleengine.NewDdsBackup(ctx, "test", &flexibleengine.DdsBackupArgs{
InstanceId: pulumi.Any(ddsInstanceId),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Flexibleengine = Pulumi.Flexibleengine;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var ddsInstanceId = config.RequireObject<dynamic>("ddsInstanceId");
var name = config.RequireObject<dynamic>("name");
var test = new Flexibleengine.DdsBackup("test", new()
{
InstanceId = ddsInstanceId,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.flexibleengine.DdsBackup;
import com.pulumi.flexibleengine.DdsBackupArgs;
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 config = ctx.config();
final var ddsInstanceId = config.get("ddsInstanceId");
final var name = config.get("name");
var test = new DdsBackup("test", DdsBackupArgs.builder()
.instanceId(ddsInstanceId)
.build());
}
}
configuration:
ddsInstanceId:
type: dynamic
name:
type: dynamic
resources:
test:
type: flexibleengine:DdsBackup
properties:
instanceId: ${ddsInstanceId}
Create DdsBackup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DdsBackup(name: string, args: DdsBackupArgs, opts?: CustomResourceOptions);
@overload
def DdsBackup(resource_name: str,
args: DdsBackupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DdsBackup(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
dds_backup_id: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
region: Optional[str] = None,
timeouts: Optional[DdsBackupTimeoutsArgs] = None)
func NewDdsBackup(ctx *Context, name string, args DdsBackupArgs, opts ...ResourceOption) (*DdsBackup, error)
public DdsBackup(string name, DdsBackupArgs args, CustomResourceOptions? opts = null)
public DdsBackup(String name, DdsBackupArgs args)
public DdsBackup(String name, DdsBackupArgs args, CustomResourceOptions options)
type: flexibleengine:DdsBackup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DdsBackupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DdsBackupArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DdsBackupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DdsBackupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DdsBackupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var ddsBackupResource = new Flexibleengine.DdsBackup("ddsBackupResource", new()
{
InstanceId = "string",
DdsBackupId = "string",
Description = "string",
Name = "string",
Region = "string",
Timeouts = new Flexibleengine.Inputs.DdsBackupTimeoutsArgs
{
Create = "string",
Delete = "string",
},
});
example, err := flexibleengine.NewDdsBackup(ctx, "ddsBackupResource", &flexibleengine.DdsBackupArgs{
InstanceId: pulumi.String("string"),
DdsBackupId: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Region: pulumi.String("string"),
Timeouts: &flexibleengine.DdsBackupTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
},
})
var ddsBackupResource = new DdsBackup("ddsBackupResource", DdsBackupArgs.builder()
.instanceId("string")
.ddsBackupId("string")
.description("string")
.name("string")
.region("string")
.timeouts(DdsBackupTimeoutsArgs.builder()
.create("string")
.delete("string")
.build())
.build());
dds_backup_resource = flexibleengine.DdsBackup("ddsBackupResource",
instance_id="string",
dds_backup_id="string",
description="string",
name="string",
region="string",
timeouts={
"create": "string",
"delete": "string",
})
const ddsBackupResource = new flexibleengine.DdsBackup("ddsBackupResource", {
instanceId: "string",
ddsBackupId: "string",
description: "string",
name: "string",
region: "string",
timeouts: {
create: "string",
"delete": "string",
},
});
type: flexibleengine:DdsBackup
properties:
ddsBackupId: string
description: string
instanceId: string
name: string
region: string
timeouts:
create: string
delete: string
DdsBackup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DdsBackup resource accepts the following input properties:
- Instance
Id string - Specifies the ID of a DDS instance. Changing this parameter will create a new resource.
- Dds
Backup stringId - The resource ID.
- Description string
- Specifies the manual backup description. Changing this parameter will create a new resource.
- Name string
- Specifies the manual backup name. The value must be 4 to 64 characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). Changing this parameter will create a new resource.
- Region string
- Specifies the region in which to create the resource. If omitted, the provider-level region will be used. Changing this parameter will create a new resource.
- Timeouts
Dds
Backup Timeouts
- Instance
Id string - Specifies the ID of a DDS instance. Changing this parameter will create a new resource.
- Dds
Backup stringId - The resource ID.
- Description string
- Specifies the manual backup description. Changing this parameter will create a new resource.
- Name string
- Specifies the manual backup name. The value must be 4 to 64 characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). Changing this parameter will create a new resource.
- Region string
- Specifies the region in which to create the resource. If omitted, the provider-level region will be used. Changing this parameter will create a new resource.
- Timeouts
Dds
Backup Timeouts Args
- instance
Id String - Specifies the ID of a DDS instance. Changing this parameter will create a new resource.
- dds
Backup StringId - The resource ID.
- description String
- Specifies the manual backup description. Changing this parameter will create a new resource.
- name String
- Specifies the manual backup name. The value must be 4 to 64 characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). Changing this parameter will create a new resource.
- region String
- Specifies the region in which to create the resource. If omitted, the provider-level region will be used. Changing this parameter will create a new resource.
- timeouts
Dds
Backup Timeouts
- instance
Id string - Specifies the ID of a DDS instance. Changing this parameter will create a new resource.
- dds
Backup stringId - The resource ID.
- description string
- Specifies the manual backup description. Changing this parameter will create a new resource.
- name string
- Specifies the manual backup name. The value must be 4 to 64 characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). Changing this parameter will create a new resource.
- region string
- Specifies the region in which to create the resource. If omitted, the provider-level region will be used. Changing this parameter will create a new resource.
- timeouts
Dds
Backup Timeouts
- instance_
id str - Specifies the ID of a DDS instance. Changing this parameter will create a new resource.
- dds_
backup_ strid - The resource ID.
- description str
- Specifies the manual backup description. Changing this parameter will create a new resource.
- name str
- Specifies the manual backup name. The value must be 4 to 64 characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). Changing this parameter will create a new resource.
- region str
- Specifies the region in which to create the resource. If omitted, the provider-level region will be used. Changing this parameter will create a new resource.
- timeouts
Dds
Backup Timeouts Args
- instance
Id String - Specifies the ID of a DDS instance. Changing this parameter will create a new resource.
- dds
Backup StringId - The resource ID.
- description String
- Specifies the manual backup description. Changing this parameter will create a new resource.
- name String
- Specifies the manual backup name. The value must be 4 to 64 characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). Changing this parameter will create a new resource.
- region String
- Specifies the region in which to create the resource. If omitted, the provider-level region will be used. Changing this parameter will create a new resource.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the DdsBackup resource produces the following output properties:
- Begin
Time string - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- Datastores
List<Dds
Backup Datastore> - Indicates the database version. The datastore object structure is documented below.
- End
Time string - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Name string - Indicates the name of a DDS instance.
- Size double
- Indicates the backup size in KB.
- Status string
- Indicates the backup status. Valid value:
- BUILDING: Backup in progress.
- COMPLETED: Backup completed.
- FAILED: Backup failed.
- DISABLED: Backup being deleted.
- Type string
- Indicates the DB engine.
- Begin
Time string - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- Datastores
[]Dds
Backup Datastore - Indicates the database version. The datastore object structure is documented below.
- End
Time string - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Name string - Indicates the name of a DDS instance.
- Size float64
- Indicates the backup size in KB.
- Status string
- Indicates the backup status. Valid value:
- BUILDING: Backup in progress.
- COMPLETED: Backup completed.
- FAILED: Backup failed.
- DISABLED: Backup being deleted.
- Type string
- Indicates the DB engine.
- begin
Time String - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- datastores
List<Dds
Backup Datastore> - Indicates the database version. The datastore object structure is documented below.
- end
Time String - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Name String - Indicates the name of a DDS instance.
- size Double
- Indicates the backup size in KB.
- status String
- Indicates the backup status. Valid value:
- BUILDING: Backup in progress.
- COMPLETED: Backup completed.
- FAILED: Backup failed.
- DISABLED: Backup being deleted.
- type String
- Indicates the DB engine.
- begin
Time string - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- datastores
Dds
Backup Datastore[] - Indicates the database version. The datastore object structure is documented below.
- end
Time string - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- id string
- The provider-assigned unique ID for this managed resource.
- instance
Name string - Indicates the name of a DDS instance.
- size number
- Indicates the backup size in KB.
- status string
- Indicates the backup status. Valid value:
- BUILDING: Backup in progress.
- COMPLETED: Backup completed.
- FAILED: Backup failed.
- DISABLED: Backup being deleted.
- type string
- Indicates the DB engine.
- begin_
time str - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- datastores
Sequence[Dds
Backup Datastore] - Indicates the database version. The datastore object structure is documented below.
- end_
time str - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- id str
- The provider-assigned unique ID for this managed resource.
- instance_
name str - Indicates the name of a DDS instance.
- size float
- Indicates the backup size in KB.
- status str
- Indicates the backup status. Valid value:
- BUILDING: Backup in progress.
- COMPLETED: Backup completed.
- FAILED: Backup failed.
- DISABLED: Backup being deleted.
- type str
- Indicates the DB engine.
- begin
Time String - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- datastores List<Property Map>
- Indicates the database version. The datastore object structure is documented below.
- end
Time String - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Name String - Indicates the name of a DDS instance.
- size Number
- Indicates the backup size in KB.
- status String
- Indicates the backup status. Valid value:
- BUILDING: Backup in progress.
- COMPLETED: Backup completed.
- FAILED: Backup failed.
- DISABLED: Backup being deleted.
- type String
- Indicates the DB engine.
Look up Existing DdsBackup Resource
Get an existing DdsBackup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: DdsBackupState, opts?: CustomResourceOptions): DdsBackup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
begin_time: Optional[str] = None,
datastores: Optional[Sequence[DdsBackupDatastoreArgs]] = None,
dds_backup_id: Optional[str] = None,
description: Optional[str] = None,
end_time: Optional[str] = None,
instance_id: Optional[str] = None,
instance_name: Optional[str] = None,
name: Optional[str] = None,
region: Optional[str] = None,
size: Optional[float] = None,
status: Optional[str] = None,
timeouts: Optional[DdsBackupTimeoutsArgs] = None,
type: Optional[str] = None) -> DdsBackup
func GetDdsBackup(ctx *Context, name string, id IDInput, state *DdsBackupState, opts ...ResourceOption) (*DdsBackup, error)
public static DdsBackup Get(string name, Input<string> id, DdsBackupState? state, CustomResourceOptions? opts = null)
public static DdsBackup get(String name, Output<String> id, DdsBackupState state, CustomResourceOptions options)
resources: _: type: flexibleengine:DdsBackup get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Begin
Time string - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- Datastores
List<Dds
Backup Datastore> - Indicates the database version. The datastore object structure is documented below.
- Dds
Backup stringId - The resource ID.
- Description string
- Specifies the manual backup description. Changing this parameter will create a new resource.
- End
Time string - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- Instance
Id string - Specifies the ID of a DDS instance. Changing this parameter will create a new resource.
- Instance
Name string - Indicates the name of a DDS instance.
- Name string
- Specifies the manual backup name. The value must be 4 to 64 characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). Changing this parameter will create a new resource.
- Region string
- Specifies the region in which to create the resource. If omitted, the provider-level region will be used. Changing this parameter will create a new resource.
- Size double
- Indicates the backup size in KB.
- Status string
- Indicates the backup status. Valid value:
- BUILDING: Backup in progress.
- COMPLETED: Backup completed.
- FAILED: Backup failed.
- DISABLED: Backup being deleted.
- Timeouts
Dds
Backup Timeouts - Type string
- Indicates the DB engine.
- Begin
Time string - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- Datastores
[]Dds
Backup Datastore Args - Indicates the database version. The datastore object structure is documented below.
- Dds
Backup stringId - The resource ID.
- Description string
- Specifies the manual backup description. Changing this parameter will create a new resource.
- End
Time string - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- Instance
Id string - Specifies the ID of a DDS instance. Changing this parameter will create a new resource.
- Instance
Name string - Indicates the name of a DDS instance.
- Name string
- Specifies the manual backup name. The value must be 4 to 64 characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). Changing this parameter will create a new resource.
- Region string
- Specifies the region in which to create the resource. If omitted, the provider-level region will be used. Changing this parameter will create a new resource.
- Size float64
- Indicates the backup size in KB.
- Status string
- Indicates the backup status. Valid value:
- BUILDING: Backup in progress.
- COMPLETED: Backup completed.
- FAILED: Backup failed.
- DISABLED: Backup being deleted.
- Timeouts
Dds
Backup Timeouts Args - Type string
- Indicates the DB engine.
- begin
Time String - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- datastores
List<Dds
Backup Datastore> - Indicates the database version. The datastore object structure is documented below.
- dds
Backup StringId - The resource ID.
- description String
- Specifies the manual backup description. Changing this parameter will create a new resource.
- end
Time String - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- instance
Id String - Specifies the ID of a DDS instance. Changing this parameter will create a new resource.
- instance
Name String - Indicates the name of a DDS instance.
- name String
- Specifies the manual backup name. The value must be 4 to 64 characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). Changing this parameter will create a new resource.
- region String
- Specifies the region in which to create the resource. If omitted, the provider-level region will be used. Changing this parameter will create a new resource.
- size Double
- Indicates the backup size in KB.
- status String
- Indicates the backup status. Valid value:
- BUILDING: Backup in progress.
- COMPLETED: Backup completed.
- FAILED: Backup failed.
- DISABLED: Backup being deleted.
- timeouts
Dds
Backup Timeouts - type String
- Indicates the DB engine.
- begin
Time string - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- datastores
Dds
Backup Datastore[] - Indicates the database version. The datastore object structure is documented below.
- dds
Backup stringId - The resource ID.
- description string
- Specifies the manual backup description. Changing this parameter will create a new resource.
- end
Time string - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- instance
Id string - Specifies the ID of a DDS instance. Changing this parameter will create a new resource.
- instance
Name string - Indicates the name of a DDS instance.
- name string
- Specifies the manual backup name. The value must be 4 to 64 characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). Changing this parameter will create a new resource.
- region string
- Specifies the region in which to create the resource. If omitted, the provider-level region will be used. Changing this parameter will create a new resource.
- size number
- Indicates the backup size in KB.
- status string
- Indicates the backup status. Valid value:
- BUILDING: Backup in progress.
- COMPLETED: Backup completed.
- FAILED: Backup failed.
- DISABLED: Backup being deleted.
- timeouts
Dds
Backup Timeouts - type string
- Indicates the DB engine.
- begin_
time str - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- datastores
Sequence[Dds
Backup Datastore Args] - Indicates the database version. The datastore object structure is documented below.
- dds_
backup_ strid - The resource ID.
- description str
- Specifies the manual backup description. Changing this parameter will create a new resource.
- end_
time str - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- instance_
id str - Specifies the ID of a DDS instance. Changing this parameter will create a new resource.
- instance_
name str - Indicates the name of a DDS instance.
- name str
- Specifies the manual backup name. The value must be 4 to 64 characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). Changing this parameter will create a new resource.
- region str
- Specifies the region in which to create the resource. If omitted, the provider-level region will be used. Changing this parameter will create a new resource.
- size float
- Indicates the backup size in KB.
- status str
- Indicates the backup status. Valid value:
- BUILDING: Backup in progress.
- COMPLETED: Backup completed.
- FAILED: Backup failed.
- DISABLED: Backup being deleted.
- timeouts
Dds
Backup Timeouts Args - type str
- Indicates the DB engine.
- begin
Time String - Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- datastores List<Property Map>
- Indicates the database version. The datastore object structure is documented below.
- dds
Backup StringId - The resource ID.
- description String
- Specifies the manual backup description. Changing this parameter will create a new resource.
- end
Time String - Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
- instance
Id String - Specifies the ID of a DDS instance. Changing this parameter will create a new resource.
- instance
Name String - Indicates the name of a DDS instance.
- name String
- Specifies the manual backup name. The value must be 4 to 64 characters in length and start with a letter (from A to Z or from a to z). It is case-sensitive and can contain only letters, digits (from 0 to 9), hyphens (-), and underscores (_). Changing this parameter will create a new resource.
- region String
- Specifies the region in which to create the resource. If omitted, the provider-level region will be used. Changing this parameter will create a new resource.
- size Number
- Indicates the backup size in KB.
- status String
- Indicates the backup status. Valid value:
- BUILDING: Backup in progress.
- COMPLETED: Backup completed.
- FAILED: Backup failed.
- DISABLED: Backup being deleted.
- timeouts Property Map
- type String
- Indicates the DB engine.
Supporting Types
DdsBackupDatastore, DdsBackupDatastoreArgs
DdsBackupTimeouts, DdsBackupTimeoutsArgs
Import
The DDS backup can be imported using the instance ID and the backup ID separated by a slash, e.g.:
$ pulumi import flexibleengine:index/ddsBackup:DdsBackup test 6fb8b99944c7459da32f751f0edea756br02/0ce123456a00f2591fabc00385ff1234
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- flexibleengine flexibleenginecloud/terraform-provider-flexibleengine
- License
- Notes
- This Pulumi package is based on the
flexibleengine
Terraform Provider.