1. Packages
  2. Scaleway
  3. API Docs
  4. DatabaseBackup
Scaleway v1.12.1 published on Monday, Apr 15, 2024 by pulumiverse

scaleway.DatabaseBackup

Explore with Pulumi AI

scaleway logo
Scaleway v1.12.1 published on Monday, Apr 15, 2024 by pulumiverse

    Creates and manages Scaleway RDB database backup. For more information, see the documentation.

    Example Usage

    Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const main = new scaleway.DatabaseBackup("main", {
        instanceId: data.scaleway_rdb_instance.main.id,
        databaseName: data.scaleway_rdb_database.main.name,
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    main = scaleway.DatabaseBackup("main",
        instance_id=data["scaleway_rdb_instance"]["main"]["id"],
        database_name=data["scaleway_rdb_database"]["main"]["name"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := scaleway.NewDatabaseBackup(ctx, "main", &scaleway.DatabaseBackupArgs{
    			InstanceId:   pulumi.Any(data.Scaleway_rdb_instance.Main.Id),
    			DatabaseName: pulumi.Any(data.Scaleway_rdb_database.Main.Name),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumiverse.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        var main = new Scaleway.DatabaseBackup("main", new()
        {
            InstanceId = data.Scaleway_rdb_instance.Main.Id,
            DatabaseName = data.Scaleway_rdb_database.Main.Name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.DatabaseBackup;
    import com.pulumi.scaleway.DatabaseBackupArgs;
    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) {
            var main = new DatabaseBackup("main", DatabaseBackupArgs.builder()        
                .instanceId(data.scaleway_rdb_instance().main().id())
                .databaseName(data.scaleway_rdb_database().main().name())
                .build());
    
        }
    }
    
    resources:
      main:
        type: scaleway:DatabaseBackup
        properties:
          instanceId: ${data.scaleway_rdb_instance.main.id}
          databaseName: ${data.scaleway_rdb_database.main.name}
    

    With expiration

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const main = new scaleway.DatabaseBackup("main", {
        instanceId: data.scaleway_rdb_instance.main.id,
        databaseName: data.scaleway_rdb_database.main.name,
        expiresAt: "2022-06-16T07:48:44Z",
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    main = scaleway.DatabaseBackup("main",
        instance_id=data["scaleway_rdb_instance"]["main"]["id"],
        database_name=data["scaleway_rdb_database"]["main"]["name"],
        expires_at="2022-06-16T07:48:44Z")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := scaleway.NewDatabaseBackup(ctx, "main", &scaleway.DatabaseBackupArgs{
    			InstanceId:   pulumi.Any(data.Scaleway_rdb_instance.Main.Id),
    			DatabaseName: pulumi.Any(data.Scaleway_rdb_database.Main.Name),
    			ExpiresAt:    pulumi.String("2022-06-16T07:48:44Z"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumiverse.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        var main = new Scaleway.DatabaseBackup("main", new()
        {
            InstanceId = data.Scaleway_rdb_instance.Main.Id,
            DatabaseName = data.Scaleway_rdb_database.Main.Name,
            ExpiresAt = "2022-06-16T07:48:44Z",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.DatabaseBackup;
    import com.pulumi.scaleway.DatabaseBackupArgs;
    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) {
            var main = new DatabaseBackup("main", DatabaseBackupArgs.builder()        
                .instanceId(data.scaleway_rdb_instance().main().id())
                .databaseName(data.scaleway_rdb_database().main().name())
                .expiresAt("2022-06-16T07:48:44Z")
                .build());
    
        }
    }
    
    resources:
      main:
        type: scaleway:DatabaseBackup
        properties:
          instanceId: ${data.scaleway_rdb_instance.main.id}
          databaseName: ${data.scaleway_rdb_database.main.name}
          expiresAt: 2022-06-16T07:48:44Z
    

    Create DatabaseBackup Resource

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

    Constructor syntax

    new DatabaseBackup(name: string, args: DatabaseBackupArgs, opts?: CustomResourceOptions);
    @overload
    def DatabaseBackup(resource_name: str,
                       args: DatabaseBackupArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def DatabaseBackup(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       database_name: Optional[str] = None,
                       instance_id: Optional[str] = None,
                       expires_at: Optional[str] = None,
                       name: Optional[str] = None,
                       region: Optional[str] = None)
    func NewDatabaseBackup(ctx *Context, name string, args DatabaseBackupArgs, opts ...ResourceOption) (*DatabaseBackup, error)
    public DatabaseBackup(string name, DatabaseBackupArgs args, CustomResourceOptions? opts = null)
    public DatabaseBackup(String name, DatabaseBackupArgs args)
    public DatabaseBackup(String name, DatabaseBackupArgs args, CustomResourceOptions options)
    
    type: scaleway:DatabaseBackup
    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 DatabaseBackupArgs
    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 DatabaseBackupArgs
    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 DatabaseBackupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DatabaseBackupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DatabaseBackupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var databaseBackupResource = new Scaleway.DatabaseBackup("databaseBackupResource", new()
    {
        DatabaseName = "string",
        InstanceId = "string",
        ExpiresAt = "string",
        Name = "string",
        Region = "string",
    });
    
    example, err := scaleway.NewDatabaseBackup(ctx, "databaseBackupResource", &scaleway.DatabaseBackupArgs{
    	DatabaseName: pulumi.String("string"),
    	InstanceId:   pulumi.String("string"),
    	ExpiresAt:    pulumi.String("string"),
    	Name:         pulumi.String("string"),
    	Region:       pulumi.String("string"),
    })
    
    var databaseBackupResource = new DatabaseBackup("databaseBackupResource", DatabaseBackupArgs.builder()        
        .databaseName("string")
        .instanceId("string")
        .expiresAt("string")
        .name("string")
        .region("string")
        .build());
    
    database_backup_resource = scaleway.DatabaseBackup("databaseBackupResource",
        database_name="string",
        instance_id="string",
        expires_at="string",
        name="string",
        region="string")
    
    const databaseBackupResource = new scaleway.DatabaseBackup("databaseBackupResource", {
        databaseName: "string",
        instanceId: "string",
        expiresAt: "string",
        name: "string",
        region: "string",
    });
    
    type: scaleway:DatabaseBackup
    properties:
        databaseName: string
        expiresAt: string
        instanceId: string
        name: string
        region: string
    

    DatabaseBackup Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The DatabaseBackup resource accepts the following input properties:

    DatabaseName string
    Name of the database of this backup.
    InstanceId string

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Backup.

    ExpiresAt string

    Expiration date (Format ISO 8601).

    Important: expires_at cannot be removed after being set.

    Name string
    Name of the database (e.g. my-database).
    Region string
    region) The region in which the resource exists.
    DatabaseName string
    Name of the database of this backup.
    InstanceId string

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Backup.

    ExpiresAt string

    Expiration date (Format ISO 8601).

    Important: expires_at cannot be removed after being set.

    Name string
    Name of the database (e.g. my-database).
    Region string
    region) The region in which the resource exists.
    databaseName String
    Name of the database of this backup.
    instanceId String

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Backup.

    expiresAt String

    Expiration date (Format ISO 8601).

    Important: expires_at cannot be removed after being set.

    name String
    Name of the database (e.g. my-database).
    region String
    region) The region in which the resource exists.
    databaseName string
    Name of the database of this backup.
    instanceId string

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Backup.

    expiresAt string

    Expiration date (Format ISO 8601).

    Important: expires_at cannot be removed after being set.

    name string
    Name of the database (e.g. my-database).
    region string
    region) The region in which the resource exists.
    database_name str
    Name of the database of this backup.
    instance_id str

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Backup.

    expires_at str

    Expiration date (Format ISO 8601).

    Important: expires_at cannot be removed after being set.

    name str
    Name of the database (e.g. my-database).
    region str
    region) The region in which the resource exists.
    databaseName String
    Name of the database of this backup.
    instanceId String

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Backup.

    expiresAt String

    Expiration date (Format ISO 8601).

    Important: expires_at cannot be removed after being set.

    name String
    Name of the database (e.g. my-database).
    region String
    region) The region in which the resource exists.

    Outputs

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

    CreatedAt string
    Creation date (Format ISO 8601).
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceName string
    Name of the instance of the backup.
    Size int
    Size of the backup (in bytes).
    UpdatedAt string
    Updated date (Format ISO 8601).
    CreatedAt string
    Creation date (Format ISO 8601).
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceName string
    Name of the instance of the backup.
    Size int
    Size of the backup (in bytes).
    UpdatedAt string
    Updated date (Format ISO 8601).
    createdAt String
    Creation date (Format ISO 8601).
    id String
    The provider-assigned unique ID for this managed resource.
    instanceName String
    Name of the instance of the backup.
    size Integer
    Size of the backup (in bytes).
    updatedAt String
    Updated date (Format ISO 8601).
    createdAt string
    Creation date (Format ISO 8601).
    id string
    The provider-assigned unique ID for this managed resource.
    instanceName string
    Name of the instance of the backup.
    size number
    Size of the backup (in bytes).
    updatedAt string
    Updated date (Format ISO 8601).
    created_at str
    Creation date (Format ISO 8601).
    id str
    The provider-assigned unique ID for this managed resource.
    instance_name str
    Name of the instance of the backup.
    size int
    Size of the backup (in bytes).
    updated_at str
    Updated date (Format ISO 8601).
    createdAt String
    Creation date (Format ISO 8601).
    id String
    The provider-assigned unique ID for this managed resource.
    instanceName String
    Name of the instance of the backup.
    size Number
    Size of the backup (in bytes).
    updatedAt String
    Updated date (Format ISO 8601).

    Look up Existing DatabaseBackup Resource

    Get an existing DatabaseBackup 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?: DatabaseBackupState, opts?: CustomResourceOptions): DatabaseBackup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            database_name: Optional[str] = None,
            expires_at: Optional[str] = None,
            instance_id: Optional[str] = None,
            instance_name: Optional[str] = None,
            name: Optional[str] = None,
            region: Optional[str] = None,
            size: Optional[int] = None,
            updated_at: Optional[str] = None) -> DatabaseBackup
    func GetDatabaseBackup(ctx *Context, name string, id IDInput, state *DatabaseBackupState, opts ...ResourceOption) (*DatabaseBackup, error)
    public static DatabaseBackup Get(string name, Input<string> id, DatabaseBackupState? state, CustomResourceOptions? opts = null)
    public static DatabaseBackup get(String name, Output<String> id, DatabaseBackupState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    CreatedAt string
    Creation date (Format ISO 8601).
    DatabaseName string
    Name of the database of this backup.
    ExpiresAt string

    Expiration date (Format ISO 8601).

    Important: expires_at cannot be removed after being set.

    InstanceId string

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Backup.

    InstanceName string
    Name of the instance of the backup.
    Name string
    Name of the database (e.g. my-database).
    Region string
    region) The region in which the resource exists.
    Size int
    Size of the backup (in bytes).
    UpdatedAt string
    Updated date (Format ISO 8601).
    CreatedAt string
    Creation date (Format ISO 8601).
    DatabaseName string
    Name of the database of this backup.
    ExpiresAt string

    Expiration date (Format ISO 8601).

    Important: expires_at cannot be removed after being set.

    InstanceId string

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Backup.

    InstanceName string
    Name of the instance of the backup.
    Name string
    Name of the database (e.g. my-database).
    Region string
    region) The region in which the resource exists.
    Size int
    Size of the backup (in bytes).
    UpdatedAt string
    Updated date (Format ISO 8601).
    createdAt String
    Creation date (Format ISO 8601).
    databaseName String
    Name of the database of this backup.
    expiresAt String

    Expiration date (Format ISO 8601).

    Important: expires_at cannot be removed after being set.

    instanceId String

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Backup.

    instanceName String
    Name of the instance of the backup.
    name String
    Name of the database (e.g. my-database).
    region String
    region) The region in which the resource exists.
    size Integer
    Size of the backup (in bytes).
    updatedAt String
    Updated date (Format ISO 8601).
    createdAt string
    Creation date (Format ISO 8601).
    databaseName string
    Name of the database of this backup.
    expiresAt string

    Expiration date (Format ISO 8601).

    Important: expires_at cannot be removed after being set.

    instanceId string

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Backup.

    instanceName string
    Name of the instance of the backup.
    name string
    Name of the database (e.g. my-database).
    region string
    region) The region in which the resource exists.
    size number
    Size of the backup (in bytes).
    updatedAt string
    Updated date (Format ISO 8601).
    created_at str
    Creation date (Format ISO 8601).
    database_name str
    Name of the database of this backup.
    expires_at str

    Expiration date (Format ISO 8601).

    Important: expires_at cannot be removed after being set.

    instance_id str

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Backup.

    instance_name str
    Name of the instance of the backup.
    name str
    Name of the database (e.g. my-database).
    region str
    region) The region in which the resource exists.
    size int
    Size of the backup (in bytes).
    updated_at str
    Updated date (Format ISO 8601).
    createdAt String
    Creation date (Format ISO 8601).
    databaseName String
    Name of the database of this backup.
    expiresAt String

    Expiration date (Format ISO 8601).

    Important: expires_at cannot be removed after being set.

    instanceId String

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Backup.

    instanceName String
    Name of the instance of the backup.
    name String
    Name of the database (e.g. my-database).
    region String
    region) The region in which the resource exists.
    size Number
    Size of the backup (in bytes).
    updatedAt String
    Updated date (Format ISO 8601).

    Import

    RDB Database can be imported using the {region}/{id}, e.g.

    bash

    $ pulumi import scaleway:index/databaseBackup:DatabaseBackup mybackup fr-par/11111111-1111-1111-1111-111111111111
    

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

    Package Details

    Repository
    scaleway pulumiverse/pulumi-scaleway
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scaleway Terraform Provider.
    scaleway logo
    Scaleway v1.12.1 published on Monday, Apr 15, 2024 by pulumiverse