1. Packages
  2. Opentelekomcloud Provider
  3. API Docs
  4. DdsBackupV3
opentelekomcloud 1.36.37 published on Thursday, Apr 24, 2025 by opentelekomcloud

opentelekomcloud.DdsBackupV3

Explore with Pulumi AI

opentelekomcloud logo
opentelekomcloud 1.36.37 published on Thursday, Apr 24, 2025 by opentelekomcloud

    Up-to-date reference of API arguments for DDS instance you can get at documentation portal

    Manages a DDS backup resource within OpenTelekomCloud.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as opentelekomcloud from "@pulumi/opentelekomcloud";
    
    const config = new pulumi.Config();
    const instanceId = config.requireObject("instanceId");
    const name = config.requireObject("name");
    const backup = new opentelekomcloud.DdsBackupV3("backup", {instanceId: instanceId});
    
    import pulumi
    import pulumi_opentelekomcloud as opentelekomcloud
    
    config = pulumi.Config()
    instance_id = config.require_object("instanceId")
    name = config.require_object("name")
    backup = opentelekomcloud.DdsBackupV3("backup", instance_id=instance_id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
    	"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, "")
    		instanceId := cfg.RequireObject("instanceId")
    		name := cfg.RequireObject("name")
    		_, err := opentelekomcloud.NewDdsBackupV3(ctx, "backup", &opentelekomcloud.DdsBackupV3Args{
    			InstanceId: pulumi.Any(instanceId),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Opentelekomcloud = Pulumi.Opentelekomcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var instanceId = config.RequireObject<dynamic>("instanceId");
        var name = config.RequireObject<dynamic>("name");
        var backup = new Opentelekomcloud.DdsBackupV3("backup", new()
        {
            InstanceId = instanceId,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.opentelekomcloud.DdsBackupV3;
    import com.pulumi.opentelekomcloud.DdsBackupV3Args;
    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 instanceId = config.get("instanceId");
            final var name = config.get("name");
            var backup = new DdsBackupV3("backup", DdsBackupV3Args.builder()
                .instanceId(instanceId)
                .build());
    
        }
    }
    
    configuration:
      instanceId:
        type: dynamic
      name:
        type: dynamic
    resources:
      backup:
        type: opentelekomcloud:DdsBackupV3
        properties:
          instanceId: ${instanceId}
    

    Create DdsBackupV3 Resource

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

    Constructor syntax

    new DdsBackupV3(name: string, args: DdsBackupV3Args, opts?: CustomResourceOptions);
    @overload
    def DdsBackupV3(resource_name: str,
                    args: DdsBackupV3Args,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def DdsBackupV3(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    instance_id: Optional[str] = None,
                    dds_backup_v3_id: Optional[str] = None,
                    description: Optional[str] = None,
                    name: Optional[str] = None,
                    timeouts: Optional[DdsBackupV3TimeoutsArgs] = None)
    func NewDdsBackupV3(ctx *Context, name string, args DdsBackupV3Args, opts ...ResourceOption) (*DdsBackupV3, error)
    public DdsBackupV3(string name, DdsBackupV3Args args, CustomResourceOptions? opts = null)
    public DdsBackupV3(String name, DdsBackupV3Args args)
    public DdsBackupV3(String name, DdsBackupV3Args args, CustomResourceOptions options)
    
    type: opentelekomcloud:DdsBackupV3
    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 DdsBackupV3Args
    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 DdsBackupV3Args
    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 DdsBackupV3Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DdsBackupV3Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DdsBackupV3Args
    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 ddsBackupV3Resource = new Opentelekomcloud.DdsBackupV3("ddsBackupV3Resource", new()
    {
        InstanceId = "string",
        DdsBackupV3Id = "string",
        Description = "string",
        Name = "string",
        Timeouts = new Opentelekomcloud.Inputs.DdsBackupV3TimeoutsArgs
        {
            Create = "string",
            Delete = "string",
        },
    });
    
    example, err := opentelekomcloud.NewDdsBackupV3(ctx, "ddsBackupV3Resource", &opentelekomcloud.DdsBackupV3Args{
    	InstanceId:    pulumi.String("string"),
    	DdsBackupV3Id: pulumi.String("string"),
    	Description:   pulumi.String("string"),
    	Name:          pulumi.String("string"),
    	Timeouts: &opentelekomcloud.DdsBackupV3TimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    	},
    })
    
    var ddsBackupV3Resource = new DdsBackupV3("ddsBackupV3Resource", DdsBackupV3Args.builder()
        .instanceId("string")
        .ddsBackupV3Id("string")
        .description("string")
        .name("string")
        .timeouts(DdsBackupV3TimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .build())
        .build());
    
    dds_backup_v3_resource = opentelekomcloud.DdsBackupV3("ddsBackupV3Resource",
        instance_id="string",
        dds_backup_v3_id="string",
        description="string",
        name="string",
        timeouts={
            "create": "string",
            "delete": "string",
        })
    
    const ddsBackupV3Resource = new opentelekomcloud.DdsBackupV3("ddsBackupV3Resource", {
        instanceId: "string",
        ddsBackupV3Id: "string",
        description: "string",
        name: "string",
        timeouts: {
            create: "string",
            "delete": "string",
        },
    });
    
    type: opentelekomcloud:DdsBackupV3
    properties:
        ddsBackupV3Id: string
        description: string
        instanceId: string
        name: string
        timeouts:
            create: string
            delete: string
    

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

    InstanceId string
    Specifies the ID of a DDS instance.
    DdsBackupV3Id string
    The resource ID.
    Description string
    Specifies the manual backup description.
    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 (_).
    Timeouts DdsBackupV3Timeouts
    InstanceId string
    Specifies the ID of a DDS instance.
    DdsBackupV3Id string
    The resource ID.
    Description string
    Specifies the manual backup description.
    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 (_).
    Timeouts DdsBackupV3TimeoutsArgs
    instanceId String
    Specifies the ID of a DDS instance.
    ddsBackupV3Id String
    The resource ID.
    description String
    Specifies the manual backup description.
    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 (_).
    timeouts DdsBackupV3Timeouts
    instanceId string
    Specifies the ID of a DDS instance.
    ddsBackupV3Id string
    The resource ID.
    description string
    Specifies the manual backup description.
    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 (_).
    timeouts DdsBackupV3Timeouts
    instance_id str
    Specifies the ID of a DDS instance.
    dds_backup_v3_id str
    The resource ID.
    description str
    Specifies the manual backup description.
    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 (_).
    timeouts DdsBackupV3TimeoutsArgs
    instanceId String
    Specifies the ID of a DDS instance.
    ddsBackupV3Id String
    The resource ID.
    description String
    Specifies the manual backup description.
    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 (_).
    timeouts Property Map

    Outputs

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

    BeginTime 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<DdsBackupV3Datastore>
    Indicates the database version. The datastore structure is documented below.
    EndTime 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.
    InstanceName string
    Indicates the name of a DDS instance.
    Region string
    Indicates the region in which resource was created.
    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.
    BeginTime string
    Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
    Datastores []DdsBackupV3Datastore
    Indicates the database version. The datastore structure is documented below.
    EndTime 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.
    InstanceName string
    Indicates the name of a DDS instance.
    Region string
    Indicates the region in which resource was created.
    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.
    beginTime 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<DdsBackupV3Datastore>
    Indicates the database version. The datastore structure is documented below.
    endTime 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.
    instanceName String
    Indicates the name of a DDS instance.
    region String
    Indicates the region in which resource was created.
    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.
    beginTime string
    Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
    datastores DdsBackupV3Datastore[]
    Indicates the database version. The datastore structure is documented below.
    endTime 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.
    instanceName string
    Indicates the name of a DDS instance.
    region string
    Indicates the region in which resource was created.
    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[DdsBackupV3Datastore]
    Indicates the database version. The datastore 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.
    region str
    Indicates the region in which resource was created.
    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.
    beginTime 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 structure is documented below.
    endTime 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.
    instanceName String
    Indicates the name of a DDS instance.
    region String
    Indicates the region in which resource was created.
    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 DdsBackupV3 Resource

    Get an existing DdsBackupV3 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?: DdsBackupV3State, opts?: CustomResourceOptions): DdsBackupV3
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            begin_time: Optional[str] = None,
            datastores: Optional[Sequence[DdsBackupV3DatastoreArgs]] = None,
            dds_backup_v3_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[DdsBackupV3TimeoutsArgs] = None,
            type: Optional[str] = None) -> DdsBackupV3
    func GetDdsBackupV3(ctx *Context, name string, id IDInput, state *DdsBackupV3State, opts ...ResourceOption) (*DdsBackupV3, error)
    public static DdsBackupV3 Get(string name, Input<string> id, DdsBackupV3State? state, CustomResourceOptions? opts = null)
    public static DdsBackupV3 get(String name, Output<String> id, DdsBackupV3State state, CustomResourceOptions options)
    resources:  _:    type: opentelekomcloud:DdsBackupV3    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    BeginTime 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<DdsBackupV3Datastore>
    Indicates the database version. The datastore structure is documented below.
    DdsBackupV3Id string
    The resource ID.
    Description string
    Specifies the manual backup description.
    EndTime string
    Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
    InstanceId string
    Specifies the ID of a DDS instance.
    InstanceName 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 (_).
    Region string
    Indicates the region in which resource was created.
    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 DdsBackupV3Timeouts
    Type string
    Indicates the DB engine.
    BeginTime string
    Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
    Datastores []DdsBackupV3DatastoreArgs
    Indicates the database version. The datastore structure is documented below.
    DdsBackupV3Id string
    The resource ID.
    Description string
    Specifies the manual backup description.
    EndTime string
    Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
    InstanceId string
    Specifies the ID of a DDS instance.
    InstanceName 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 (_).
    Region string
    Indicates the region in which resource was created.
    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 DdsBackupV3TimeoutsArgs
    Type string
    Indicates the DB engine.
    beginTime 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<DdsBackupV3Datastore>
    Indicates the database version. The datastore structure is documented below.
    ddsBackupV3Id String
    The resource ID.
    description String
    Specifies the manual backup description.
    endTime String
    Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
    instanceId String
    Specifies the ID of a DDS instance.
    instanceName 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 (_).
    region String
    Indicates the region in which resource was created.
    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 DdsBackupV3Timeouts
    type String
    Indicates the DB engine.
    beginTime string
    Indicates the start time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
    datastores DdsBackupV3Datastore[]
    Indicates the database version. The datastore structure is documented below.
    ddsBackupV3Id string
    The resource ID.
    description string
    Specifies the manual backup description.
    endTime string
    Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
    instanceId string
    Specifies the ID of a DDS instance.
    instanceName 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 (_).
    region string
    Indicates the region in which resource was created.
    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 DdsBackupV3Timeouts
    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[DdsBackupV3DatastoreArgs]
    Indicates the database version. The datastore structure is documented below.
    dds_backup_v3_id str
    The resource ID.
    description str
    Specifies the manual backup description.
    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.
    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 (_).
    region str
    Indicates the region in which resource was created.
    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 DdsBackupV3TimeoutsArgs
    type str
    Indicates the DB engine.
    beginTime 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 structure is documented below.
    ddsBackupV3Id String
    The resource ID.
    description String
    Specifies the manual backup description.
    endTime String
    Indicates the end time of the backup. The format is yyyy-mm-dd hh:mm:ss. The value is in UTC format.
    instanceId String
    Specifies the ID of a DDS instance.
    instanceName 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 (_).
    region String
    Indicates the region in which resource was created.
    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

    DdsBackupV3Datastore, DdsBackupV3DatastoreArgs

    StorageEngine string
    Indicates the database storage engine.
    Type string
    Indicates the DB engine.
    Version string
    Indicates the database version.
    StorageEngine string
    Indicates the database storage engine.
    Type string
    Indicates the DB engine.
    Version string
    Indicates the database version.
    storageEngine String
    Indicates the database storage engine.
    type String
    Indicates the DB engine.
    version String
    Indicates the database version.
    storageEngine string
    Indicates the database storage engine.
    type string
    Indicates the DB engine.
    version string
    Indicates the database version.
    storage_engine str
    Indicates the database storage engine.
    type str
    Indicates the DB engine.
    version str
    Indicates the database version.
    storageEngine String
    Indicates the database storage engine.
    type String
    Indicates the DB engine.
    version String
    Indicates the database version.

    DdsBackupV3Timeouts, DdsBackupV3TimeoutsArgs

    Create string
    Delete string
    Create string
    Delete string
    create String
    delete String
    create string
    delete string
    create str
    delete str
    create String
    delete String

    Import

    The DDS backup can be imported using the instance_id and the id separated by a slash, e.g.:

    bash

    $ pulumi import opentelekomcloud:index/ddsBackupV3:DdsBackupV3 backup <instance_id>/<id>
    

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

    Package Details

    Repository
    opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
    License
    Notes
    This Pulumi package is based on the opentelekomcloud Terraform Provider.
    opentelekomcloud logo
    opentelekomcloud 1.36.37 published on Thursday, Apr 24, 2025 by opentelekomcloud