oci.Database.AutonomousDatabaseBackup
Explore with Pulumi AI
This resource provides the Autonomous Database Backup resource in Oracle Cloud Infrastructure Database service.
Creates a new Autonomous Database backup for the specified database based on the provided request parameters.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAutonomousDatabaseBackup = new oci.database.AutonomousDatabaseBackup("test_autonomous_database_backup", {
autonomousDatabaseId: testAutonomousDatabase.id,
displayName: autonomousDatabaseBackupDisplayName,
isLongTermBackup: autonomousDatabaseBackupIsLongTermBackup,
retentionPeriodInDays: autonomousDatabaseBackupRetentionPeriodInDays,
});
import pulumi
import pulumi_oci as oci
test_autonomous_database_backup = oci.database.AutonomousDatabaseBackup("test_autonomous_database_backup",
autonomous_database_id=test_autonomous_database["id"],
display_name=autonomous_database_backup_display_name,
is_long_term_backup=autonomous_database_backup_is_long_term_backup,
retention_period_in_days=autonomous_database_backup_retention_period_in_days)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/Database"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Database.NewAutonomousDatabaseBackup(ctx, "test_autonomous_database_backup", &Database.AutonomousDatabaseBackupArgs{
AutonomousDatabaseId: pulumi.Any(testAutonomousDatabase.Id),
DisplayName: pulumi.Any(autonomousDatabaseBackupDisplayName),
IsLongTermBackup: pulumi.Any(autonomousDatabaseBackupIsLongTermBackup),
RetentionPeriodInDays: pulumi.Any(autonomousDatabaseBackupRetentionPeriodInDays),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testAutonomousDatabaseBackup = new Oci.Database.AutonomousDatabaseBackup("test_autonomous_database_backup", new()
{
AutonomousDatabaseId = testAutonomousDatabase.Id,
DisplayName = autonomousDatabaseBackupDisplayName,
IsLongTermBackup = autonomousDatabaseBackupIsLongTermBackup,
RetentionPeriodInDays = autonomousDatabaseBackupRetentionPeriodInDays,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.AutonomousDatabaseBackup;
import com.pulumi.oci.Database.AutonomousDatabaseBackupArgs;
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 testAutonomousDatabaseBackup = new AutonomousDatabaseBackup("testAutonomousDatabaseBackup", AutonomousDatabaseBackupArgs.builder()
.autonomousDatabaseId(testAutonomousDatabase.id())
.displayName(autonomousDatabaseBackupDisplayName)
.isLongTermBackup(autonomousDatabaseBackupIsLongTermBackup)
.retentionPeriodInDays(autonomousDatabaseBackupRetentionPeriodInDays)
.build());
}
}
resources:
testAutonomousDatabaseBackup:
type: oci:Database:AutonomousDatabaseBackup
name: test_autonomous_database_backup
properties:
autonomousDatabaseId: ${testAutonomousDatabase.id}
displayName: ${autonomousDatabaseBackupDisplayName}
isLongTermBackup: ${autonomousDatabaseBackupIsLongTermBackup}
retentionPeriodInDays: ${autonomousDatabaseBackupRetentionPeriodInDays}
Create AutonomousDatabaseBackup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AutonomousDatabaseBackup(name: string, args: AutonomousDatabaseBackupArgs, opts?: CustomResourceOptions);
@overload
def AutonomousDatabaseBackup(resource_name: str,
args: AutonomousDatabaseBackupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AutonomousDatabaseBackup(resource_name: str,
opts: Optional[ResourceOptions] = None,
autonomous_database_id: Optional[str] = None,
backup_destination_details: Optional[_database.AutonomousDatabaseBackupBackupDestinationDetailsArgs] = None,
display_name: Optional[str] = None,
is_long_term_backup: Optional[bool] = None,
retention_period_in_days: Optional[int] = None)
func NewAutonomousDatabaseBackup(ctx *Context, name string, args AutonomousDatabaseBackupArgs, opts ...ResourceOption) (*AutonomousDatabaseBackup, error)
public AutonomousDatabaseBackup(string name, AutonomousDatabaseBackupArgs args, CustomResourceOptions? opts = null)
public AutonomousDatabaseBackup(String name, AutonomousDatabaseBackupArgs args)
public AutonomousDatabaseBackup(String name, AutonomousDatabaseBackupArgs args, CustomResourceOptions options)
type: oci:Database:AutonomousDatabaseBackup
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 AutonomousDatabaseBackupArgs
- 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 AutonomousDatabaseBackupArgs
- 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 AutonomousDatabaseBackupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AutonomousDatabaseBackupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AutonomousDatabaseBackupArgs
- 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 autonomousDatabaseBackupResource = new Oci.Database.AutonomousDatabaseBackup("autonomousDatabaseBackupResource", new()
{
AutonomousDatabaseId = "string",
BackupDestinationDetails = new Oci.Database.Inputs.AutonomousDatabaseBackupBackupDestinationDetailsArgs
{
Type = "string",
Id = "string",
InternetProxy = "string",
VpcPassword = "string",
VpcUser = "string",
},
DisplayName = "string",
IsLongTermBackup = false,
RetentionPeriodInDays = 0,
});
example, err := Database.NewAutonomousDatabaseBackup(ctx, "autonomousDatabaseBackupResource", &Database.AutonomousDatabaseBackupArgs{
AutonomousDatabaseId: pulumi.String("string"),
BackupDestinationDetails: &database.AutonomousDatabaseBackupBackupDestinationDetailsArgs{
Type: pulumi.String("string"),
Id: pulumi.String("string"),
InternetProxy: pulumi.String("string"),
VpcPassword: pulumi.String("string"),
VpcUser: pulumi.String("string"),
},
DisplayName: pulumi.String("string"),
IsLongTermBackup: pulumi.Bool(false),
RetentionPeriodInDays: pulumi.Int(0),
})
var autonomousDatabaseBackupResource = new AutonomousDatabaseBackup("autonomousDatabaseBackupResource", AutonomousDatabaseBackupArgs.builder()
.autonomousDatabaseId("string")
.backupDestinationDetails(AutonomousDatabaseBackupBackupDestinationDetailsArgs.builder()
.type("string")
.id("string")
.internetProxy("string")
.vpcPassword("string")
.vpcUser("string")
.build())
.displayName("string")
.isLongTermBackup(false)
.retentionPeriodInDays(0)
.build());
autonomous_database_backup_resource = oci.database.AutonomousDatabaseBackup("autonomousDatabaseBackupResource",
autonomous_database_id="string",
backup_destination_details=oci.database.AutonomousDatabaseBackupBackupDestinationDetailsArgs(
type="string",
id="string",
internet_proxy="string",
vpc_password="string",
vpc_user="string",
),
display_name="string",
is_long_term_backup=False,
retention_period_in_days=0)
const autonomousDatabaseBackupResource = new oci.database.AutonomousDatabaseBackup("autonomousDatabaseBackupResource", {
autonomousDatabaseId: "string",
backupDestinationDetails: {
type: "string",
id: "string",
internetProxy: "string",
vpcPassword: "string",
vpcUser: "string",
},
displayName: "string",
isLongTermBackup: false,
retentionPeriodInDays: 0,
});
type: oci:Database:AutonomousDatabaseBackup
properties:
autonomousDatabaseId: string
backupDestinationDetails:
id: string
internetProxy: string
type: string
vpcPassword: string
vpcUser: string
displayName: string
isLongTermBackup: false
retentionPeriodInDays: 0
AutonomousDatabaseBackup 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 AutonomousDatabaseBackup resource accepts the following input properties:
- Autonomous
Database stringId - The OCID of the Autonomous Database backup.
- Backup
Destination AutonomousDetails Database Backup Backup Destination Details - Backup destination details
- Display
Name string - The user-friendly name for the backup. The name does not have to be unique.
- Is
Long boolTerm Backup - Indicates whether the backup is long-term
- Retention
Period intIn Days (Updatable) Retention period, in days, for long-term backups
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Autonomous
Database stringId - The OCID of the Autonomous Database backup.
- Backup
Destination AutonomousDetails Database Backup Backup Destination Details Args - Backup destination details
- Display
Name string - The user-friendly name for the backup. The name does not have to be unique.
- Is
Long boolTerm Backup - Indicates whether the backup is long-term
- Retention
Period intIn Days (Updatable) Retention period, in days, for long-term backups
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- autonomous
Database StringId - The OCID of the Autonomous Database backup.
- backup
Destination AutonomousDetails Backup Backup Destination Details - Backup destination details
- display
Name String - The user-friendly name for the backup. The name does not have to be unique.
- is
Long BooleanTerm Backup - Indicates whether the backup is long-term
- retention
Period IntegerIn Days (Updatable) Retention period, in days, for long-term backups
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- autonomous
Database stringId - The OCID of the Autonomous Database backup.
- backup
Destination AutonomousDetails Database Backup Backup Destination Details - Backup destination details
- display
Name string - The user-friendly name for the backup. The name does not have to be unique.
- is
Long booleanTerm Backup - Indicates whether the backup is long-term
- retention
Period numberIn Days (Updatable) Retention period, in days, for long-term backups
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- autonomous_
database_ strid - The OCID of the Autonomous Database backup.
- backup_
destination_ database.details Autonomous Database Backup Backup Destination Details Args - Backup destination details
- display_
name str - The user-friendly name for the backup. The name does not have to be unique.
- is_
long_ boolterm_ backup - Indicates whether the backup is long-term
- retention_
period_ intin_ days (Updatable) Retention period, in days, for long-term backups
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- autonomous
Database StringId - The OCID of the Autonomous Database backup.
- backup
Destination Property MapDetails - Backup destination details
- display
Name String - The user-friendly name for the backup. The name does not have to be unique.
- is
Long BooleanTerm Backup - Indicates whether the backup is long-term
- retention
Period NumberIn Days (Updatable) Retention period, in days, for long-term backups
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the AutonomousDatabaseBackup resource produces the following output properties:
- Compartment
Id string - The OCID of the compartment.
- Database
Size doubleIn Tbs - The size of the database in terabytes at the time the backup was taken.
- Db
Version string - A valid Oracle Database version for Autonomous Database.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Automatic bool - Indicates whether the backup is user-initiated or automatic.
- Is
Restorable bool - Indicates whether the backup can be used to restore the associated Autonomous Database.
- Key
Store stringId - The OCID of the key store.
- Key
Store stringWallet Name - The wallet name for Oracle Key Vault.
- Kms
Key stringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- Kms
Key stringVersion Id - The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Size
In doubleTbs - The backup size in terrabytes (TB).
- State string
- The current state of the backup.
- Time
Available stringTill - Timestamp until when the backup will be available
- Time
Ended string - The date and time the backup completed.
- Time
Started string - The date and time the backup started.
- Type string
- The type of backup.
- Vault
Id string - The OCID of the Oracle Cloud Infrastructure vault.
- Compartment
Id string - The OCID of the compartment.
- Database
Size float64In Tbs - The size of the database in terabytes at the time the backup was taken.
- Db
Version string - A valid Oracle Database version for Autonomous Database.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Automatic bool - Indicates whether the backup is user-initiated or automatic.
- Is
Restorable bool - Indicates whether the backup can be used to restore the associated Autonomous Database.
- Key
Store stringId - The OCID of the key store.
- Key
Store stringWallet Name - The wallet name for Oracle Key Vault.
- Kms
Key stringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- Kms
Key stringVersion Id - The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Size
In float64Tbs - The backup size in terrabytes (TB).
- State string
- The current state of the backup.
- Time
Available stringTill - Timestamp until when the backup will be available
- Time
Ended string - The date and time the backup completed.
- Time
Started string - The date and time the backup started.
- Type string
- The type of backup.
- Vault
Id string - The OCID of the Oracle Cloud Infrastructure vault.
- compartment
Id String - The OCID of the compartment.
- database
Size DoubleIn Tbs - The size of the database in terabytes at the time the backup was taken.
- db
Version String - A valid Oracle Database version for Autonomous Database.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Automatic Boolean - Indicates whether the backup is user-initiated or automatic.
- is
Restorable Boolean - Indicates whether the backup can be used to restore the associated Autonomous Database.
- key
Store StringId - The OCID of the key store.
- key
Store StringWallet Name - The wallet name for Oracle Key Vault.
- kms
Key StringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms
Key StringVersion Id - The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- lifecycle
Details String - Additional information about the current lifecycle state.
- size
In DoubleTbs - The backup size in terrabytes (TB).
- state String
- The current state of the backup.
- time
Available StringTill - Timestamp until when the backup will be available
- time
Ended String - The date and time the backup completed.
- time
Started String - The date and time the backup started.
- type String
- The type of backup.
- vault
Id String - The OCID of the Oracle Cloud Infrastructure vault.
- compartment
Id string - The OCID of the compartment.
- database
Size numberIn Tbs - The size of the database in terabytes at the time the backup was taken.
- db
Version string - A valid Oracle Database version for Autonomous Database.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Automatic boolean - Indicates whether the backup is user-initiated or automatic.
- is
Restorable boolean - Indicates whether the backup can be used to restore the associated Autonomous Database.
- key
Store stringId - The OCID of the key store.
- key
Store stringWallet Name - The wallet name for Oracle Key Vault.
- kms
Key stringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms
Key stringVersion Id - The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- lifecycle
Details string - Additional information about the current lifecycle state.
- size
In numberTbs - The backup size in terrabytes (TB).
- state string
- The current state of the backup.
- time
Available stringTill - Timestamp until when the backup will be available
- time
Ended string - The date and time the backup completed.
- time
Started string - The date and time the backup started.
- type string
- The type of backup.
- vault
Id string - The OCID of the Oracle Cloud Infrastructure vault.
- compartment_
id str - The OCID of the compartment.
- database_
size_ floatin_ tbs - The size of the database in terabytes at the time the backup was taken.
- db_
version str - A valid Oracle Database version for Autonomous Database.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
automatic bool - Indicates whether the backup is user-initiated or automatic.
- is_
restorable bool - Indicates whether the backup can be used to restore the associated Autonomous Database.
- key_
store_ strid - The OCID of the key store.
- key_
store_ strwallet_ name - The wallet name for Oracle Key Vault.
- kms_
key_ strid - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms_
key_ strversion_ id - The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- lifecycle_
details str - Additional information about the current lifecycle state.
- size_
in_ floattbs - The backup size in terrabytes (TB).
- state str
- The current state of the backup.
- time_
available_ strtill - Timestamp until when the backup will be available
- time_
ended str - The date and time the backup completed.
- time_
started str - The date and time the backup started.
- type str
- The type of backup.
- vault_
id str - The OCID of the Oracle Cloud Infrastructure vault.
- compartment
Id String - The OCID of the compartment.
- database
Size NumberIn Tbs - The size of the database in terabytes at the time the backup was taken.
- db
Version String - A valid Oracle Database version for Autonomous Database.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Automatic Boolean - Indicates whether the backup is user-initiated or automatic.
- is
Restorable Boolean - Indicates whether the backup can be used to restore the associated Autonomous Database.
- key
Store StringId - The OCID of the key store.
- key
Store StringWallet Name - The wallet name for Oracle Key Vault.
- kms
Key StringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms
Key StringVersion Id - The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- lifecycle
Details String - Additional information about the current lifecycle state.
- size
In NumberTbs - The backup size in terrabytes (TB).
- state String
- The current state of the backup.
- time
Available StringTill - Timestamp until when the backup will be available
- time
Ended String - The date and time the backup completed.
- time
Started String - The date and time the backup started.
- type String
- The type of backup.
- vault
Id String - The OCID of the Oracle Cloud Infrastructure vault.
Look up Existing AutonomousDatabaseBackup Resource
Get an existing AutonomousDatabaseBackup 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?: AutonomousDatabaseBackupState, opts?: CustomResourceOptions): AutonomousDatabaseBackup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
autonomous_database_id: Optional[str] = None,
backup_destination_details: Optional[_database.AutonomousDatabaseBackupBackupDestinationDetailsArgs] = None,
compartment_id: Optional[str] = None,
database_size_in_tbs: Optional[float] = None,
db_version: Optional[str] = None,
display_name: Optional[str] = None,
is_automatic: Optional[bool] = None,
is_long_term_backup: Optional[bool] = None,
is_restorable: Optional[bool] = None,
key_store_id: Optional[str] = None,
key_store_wallet_name: Optional[str] = None,
kms_key_id: Optional[str] = None,
kms_key_version_id: Optional[str] = None,
lifecycle_details: Optional[str] = None,
retention_period_in_days: Optional[int] = None,
size_in_tbs: Optional[float] = None,
state: Optional[str] = None,
time_available_till: Optional[str] = None,
time_ended: Optional[str] = None,
time_started: Optional[str] = None,
type: Optional[str] = None,
vault_id: Optional[str] = None) -> AutonomousDatabaseBackup
func GetAutonomousDatabaseBackup(ctx *Context, name string, id IDInput, state *AutonomousDatabaseBackupState, opts ...ResourceOption) (*AutonomousDatabaseBackup, error)
public static AutonomousDatabaseBackup Get(string name, Input<string> id, AutonomousDatabaseBackupState? state, CustomResourceOptions? opts = null)
public static AutonomousDatabaseBackup get(String name, Output<String> id, AutonomousDatabaseBackupState 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.
- Autonomous
Database stringId - The OCID of the Autonomous Database backup.
- Backup
Destination AutonomousDetails Database Backup Backup Destination Details - Backup destination details
- Compartment
Id string - The OCID of the compartment.
- Database
Size doubleIn Tbs - The size of the database in terabytes at the time the backup was taken.
- Db
Version string - A valid Oracle Database version for Autonomous Database.
- Display
Name string - The user-friendly name for the backup. The name does not have to be unique.
- Is
Automatic bool - Indicates whether the backup is user-initiated or automatic.
- Is
Long boolTerm Backup - Indicates whether the backup is long-term
- Is
Restorable bool - Indicates whether the backup can be used to restore the associated Autonomous Database.
- Key
Store stringId - The OCID of the key store.
- Key
Store stringWallet Name - The wallet name for Oracle Key Vault.
- Kms
Key stringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- Kms
Key stringVersion Id - The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Retention
Period intIn Days (Updatable) Retention period, in days, for long-term backups
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Size
In doubleTbs - The backup size in terrabytes (TB).
- State string
- The current state of the backup.
- Time
Available stringTill - Timestamp until when the backup will be available
- Time
Ended string - The date and time the backup completed.
- Time
Started string - The date and time the backup started.
- Type string
- The type of backup.
- Vault
Id string - The OCID of the Oracle Cloud Infrastructure vault.
- Autonomous
Database stringId - The OCID of the Autonomous Database backup.
- Backup
Destination AutonomousDetails Database Backup Backup Destination Details Args - Backup destination details
- Compartment
Id string - The OCID of the compartment.
- Database
Size float64In Tbs - The size of the database in terabytes at the time the backup was taken.
- Db
Version string - A valid Oracle Database version for Autonomous Database.
- Display
Name string - The user-friendly name for the backup. The name does not have to be unique.
- Is
Automatic bool - Indicates whether the backup is user-initiated or automatic.
- Is
Long boolTerm Backup - Indicates whether the backup is long-term
- Is
Restorable bool - Indicates whether the backup can be used to restore the associated Autonomous Database.
- Key
Store stringId - The OCID of the key store.
- Key
Store stringWallet Name - The wallet name for Oracle Key Vault.
- Kms
Key stringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- Kms
Key stringVersion Id - The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Retention
Period intIn Days (Updatable) Retention period, in days, for long-term backups
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Size
In float64Tbs - The backup size in terrabytes (TB).
- State string
- The current state of the backup.
- Time
Available stringTill - Timestamp until when the backup will be available
- Time
Ended string - The date and time the backup completed.
- Time
Started string - The date and time the backup started.
- Type string
- The type of backup.
- Vault
Id string - The OCID of the Oracle Cloud Infrastructure vault.
- autonomous
Database StringId - The OCID of the Autonomous Database backup.
- backup
Destination AutonomousDetails Backup Backup Destination Details - Backup destination details
- compartment
Id String - The OCID of the compartment.
- database
Size DoubleIn Tbs - The size of the database in terabytes at the time the backup was taken.
- db
Version String - A valid Oracle Database version for Autonomous Database.
- display
Name String - The user-friendly name for the backup. The name does not have to be unique.
- is
Automatic Boolean - Indicates whether the backup is user-initiated or automatic.
- is
Long BooleanTerm Backup - Indicates whether the backup is long-term
- is
Restorable Boolean - Indicates whether the backup can be used to restore the associated Autonomous Database.
- key
Store StringId - The OCID of the key store.
- key
Store StringWallet Name - The wallet name for Oracle Key Vault.
- kms
Key StringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms
Key StringVersion Id - The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- lifecycle
Details String - Additional information about the current lifecycle state.
- retention
Period IntegerIn Days (Updatable) Retention period, in days, for long-term backups
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- size
In DoubleTbs - The backup size in terrabytes (TB).
- state String
- The current state of the backup.
- time
Available StringTill - Timestamp until when the backup will be available
- time
Ended String - The date and time the backup completed.
- time
Started String - The date and time the backup started.
- type String
- The type of backup.
- vault
Id String - The OCID of the Oracle Cloud Infrastructure vault.
- autonomous
Database stringId - The OCID of the Autonomous Database backup.
- backup
Destination AutonomousDetails Database Backup Backup Destination Details - Backup destination details
- compartment
Id string - The OCID of the compartment.
- database
Size numberIn Tbs - The size of the database in terabytes at the time the backup was taken.
- db
Version string - A valid Oracle Database version for Autonomous Database.
- display
Name string - The user-friendly name for the backup. The name does not have to be unique.
- is
Automatic boolean - Indicates whether the backup is user-initiated or automatic.
- is
Long booleanTerm Backup - Indicates whether the backup is long-term
- is
Restorable boolean - Indicates whether the backup can be used to restore the associated Autonomous Database.
- key
Store stringId - The OCID of the key store.
- key
Store stringWallet Name - The wallet name for Oracle Key Vault.
- kms
Key stringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms
Key stringVersion Id - The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- lifecycle
Details string - Additional information about the current lifecycle state.
- retention
Period numberIn Days (Updatable) Retention period, in days, for long-term backups
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- size
In numberTbs - The backup size in terrabytes (TB).
- state string
- The current state of the backup.
- time
Available stringTill - Timestamp until when the backup will be available
- time
Ended string - The date and time the backup completed.
- time
Started string - The date and time the backup started.
- type string
- The type of backup.
- vault
Id string - The OCID of the Oracle Cloud Infrastructure vault.
- autonomous_
database_ strid - The OCID of the Autonomous Database backup.
- backup_
destination_ database.details Autonomous Database Backup Backup Destination Details Args - Backup destination details
- compartment_
id str - The OCID of the compartment.
- database_
size_ floatin_ tbs - The size of the database in terabytes at the time the backup was taken.
- db_
version str - A valid Oracle Database version for Autonomous Database.
- display_
name str - The user-friendly name for the backup. The name does not have to be unique.
- is_
automatic bool - Indicates whether the backup is user-initiated or automatic.
- is_
long_ boolterm_ backup - Indicates whether the backup is long-term
- is_
restorable bool - Indicates whether the backup can be used to restore the associated Autonomous Database.
- key_
store_ strid - The OCID of the key store.
- key_
store_ strwallet_ name - The wallet name for Oracle Key Vault.
- kms_
key_ strid - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms_
key_ strversion_ id - The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- lifecycle_
details str - Additional information about the current lifecycle state.
- retention_
period_ intin_ days (Updatable) Retention period, in days, for long-term backups
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- size_
in_ floattbs - The backup size in terrabytes (TB).
- state str
- The current state of the backup.
- time_
available_ strtill - Timestamp until when the backup will be available
- time_
ended str - The date and time the backup completed.
- time_
started str - The date and time the backup started.
- type str
- The type of backup.
- vault_
id str - The OCID of the Oracle Cloud Infrastructure vault.
- autonomous
Database StringId - The OCID of the Autonomous Database backup.
- backup
Destination Property MapDetails - Backup destination details
- compartment
Id String - The OCID of the compartment.
- database
Size NumberIn Tbs - The size of the database in terabytes at the time the backup was taken.
- db
Version String - A valid Oracle Database version for Autonomous Database.
- display
Name String - The user-friendly name for the backup. The name does not have to be unique.
- is
Automatic Boolean - Indicates whether the backup is user-initiated or automatic.
- is
Long BooleanTerm Backup - Indicates whether the backup is long-term
- is
Restorable Boolean - Indicates whether the backup can be used to restore the associated Autonomous Database.
- key
Store StringId - The OCID of the key store.
- key
Store StringWallet Name - The wallet name for Oracle Key Vault.
- kms
Key StringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms
Key StringVersion Id - The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- lifecycle
Details String - Additional information about the current lifecycle state.
- retention
Period NumberIn Days (Updatable) Retention period, in days, for long-term backups
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- size
In NumberTbs - The backup size in terrabytes (TB).
- state String
- The current state of the backup.
- time
Available StringTill - Timestamp until when the backup will be available
- time
Ended String - The date and time the backup completed.
- time
Started String - The date and time the backup started.
- type String
- The type of backup.
- vault
Id String - The OCID of the Oracle Cloud Infrastructure vault.
Supporting Types
AutonomousDatabaseBackupBackupDestinationDetails, AutonomousDatabaseBackupBackupDestinationDetailsArgs
- Type string
- The type of backup.
- Id string
- The OCID of the Autonomous Database backup.
- Internet
Proxy string - Proxy URL to connect to object store.
- Vpc
Password string - For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
- Vpc
User string - For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
- Type string
- The type of backup.
- Id string
- The OCID of the Autonomous Database backup.
- Internet
Proxy string - Proxy URL to connect to object store.
- Vpc
Password string - For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
- Vpc
User string - For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
- type String
- The type of backup.
- id String
- The OCID of the Autonomous Database backup.
- internet
Proxy String - Proxy URL to connect to object store.
- vpc
Password String - For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
- vpc
User String - For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
- type string
- The type of backup.
- id string
- The OCID of the Autonomous Database backup.
- internet
Proxy string - Proxy URL to connect to object store.
- vpc
Password string - For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
- vpc
User string - For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
- type str
- The type of backup.
- id str
- The OCID of the Autonomous Database backup.
- internet_
proxy str - Proxy URL to connect to object store.
- vpc_
password str - For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
- vpc_
user str - For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
- type String
- The type of backup.
- id String
- The OCID of the Autonomous Database backup.
- internet
Proxy String - Proxy URL to connect to object store.
- vpc
Password String - For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
- vpc
User String - For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
Import
AutonomousDatabaseBackups can be imported using the id
, e.g.
$ pulumi import oci:Database/autonomousDatabaseBackup:AutonomousDatabaseBackup test_autonomous_database_backup "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.