Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
oci.Database.getAutonomousDatabaseBackups
Start a Neo task
Explain and create an oci.Database.getAutonomousDatabaseBackups resource
This data source provides the list of Autonomous Database Backups in Oracle Cloud Infrastructure Database service.
Gets a list of Autonomous AI Database backups based on either the autonomousDatabaseId or compartmentId specified as a query parameter.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAutonomousDatabaseBackups = oci.Database.getAutonomousDatabaseBackups({
autonomousDatabaseId: testAutonomousDatabase.id,
backupDestinationId: testBackupDestination.id,
compartmentId: compartmentId,
displayName: autonomousDatabaseBackupDisplayName,
infrastructureType: autonomousDatabaseBackupInfrastructureType,
keyStoreId: testKeyStore.id,
state: autonomousDatabaseBackupState,
type: autonomousDatabaseBackupType,
});
import pulumi
import pulumi_oci as oci
test_autonomous_database_backups = oci.Database.get_autonomous_database_backups(autonomous_database_id=test_autonomous_database["id"],
backup_destination_id=test_backup_destination["id"],
compartment_id=compartment_id,
display_name=autonomous_database_backup_display_name,
infrastructure_type=autonomous_database_backup_infrastructure_type,
key_store_id=test_key_store["id"],
state=autonomous_database_backup_state,
type=autonomous_database_backup_type)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/database"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := database.GetAutonomousDatabaseBackups(ctx, &database.GetAutonomousDatabaseBackupsArgs{
AutonomousDatabaseId: pulumi.StringRef(testAutonomousDatabase.Id),
BackupDestinationId: pulumi.StringRef(testBackupDestination.Id),
CompartmentId: pulumi.StringRef(compartmentId),
DisplayName: pulumi.StringRef(autonomousDatabaseBackupDisplayName),
InfrastructureType: pulumi.StringRef(autonomousDatabaseBackupInfrastructureType),
KeyStoreId: pulumi.StringRef(testKeyStore.Id),
State: pulumi.StringRef(autonomousDatabaseBackupState),
Type: pulumi.StringRef(autonomousDatabaseBackupType),
}, nil)
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 testAutonomousDatabaseBackups = Oci.Database.GetAutonomousDatabaseBackups.Invoke(new()
{
AutonomousDatabaseId = testAutonomousDatabase.Id,
BackupDestinationId = testBackupDestination.Id,
CompartmentId = compartmentId,
DisplayName = autonomousDatabaseBackupDisplayName,
InfrastructureType = autonomousDatabaseBackupInfrastructureType,
KeyStoreId = testKeyStore.Id,
State = autonomousDatabaseBackupState,
Type = autonomousDatabaseBackupType,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.DatabaseFunctions;
import com.pulumi.oci.Database.inputs.GetAutonomousDatabaseBackupsArgs;
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 testAutonomousDatabaseBackups = DatabaseFunctions.getAutonomousDatabaseBackups(GetAutonomousDatabaseBackupsArgs.builder()
.autonomousDatabaseId(testAutonomousDatabase.id())
.backupDestinationId(testBackupDestination.id())
.compartmentId(compartmentId)
.displayName(autonomousDatabaseBackupDisplayName)
.infrastructureType(autonomousDatabaseBackupInfrastructureType)
.keyStoreId(testKeyStore.id())
.state(autonomousDatabaseBackupState)
.type(autonomousDatabaseBackupType)
.build());
}
}
variables:
testAutonomousDatabaseBackups:
fn::invoke:
function: oci:Database:getAutonomousDatabaseBackups
arguments:
autonomousDatabaseId: ${testAutonomousDatabase.id}
backupDestinationId: ${testBackupDestination.id}
compartmentId: ${compartmentId}
displayName: ${autonomousDatabaseBackupDisplayName}
infrastructureType: ${autonomousDatabaseBackupInfrastructureType}
keyStoreId: ${testKeyStore.id}
state: ${autonomousDatabaseBackupState}
type: ${autonomousDatabaseBackupType}
Using getAutonomousDatabaseBackups
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getAutonomousDatabaseBackups(args: GetAutonomousDatabaseBackupsArgs, opts?: InvokeOptions): Promise<GetAutonomousDatabaseBackupsResult>
function getAutonomousDatabaseBackupsOutput(args: GetAutonomousDatabaseBackupsOutputArgs, opts?: InvokeOptions): Output<GetAutonomousDatabaseBackupsResult>def get_autonomous_database_backups(autonomous_database_id: Optional[str] = None,
backup_destination_id: Optional[str] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetAutonomousDatabaseBackupsFilter]] = None,
infrastructure_type: Optional[str] = None,
key_store_id: Optional[str] = None,
state: Optional[str] = None,
type: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAutonomousDatabaseBackupsResult
def get_autonomous_database_backups_output(autonomous_database_id: Optional[pulumi.Input[str]] = None,
backup_destination_id: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetAutonomousDatabaseBackupsFilterArgs]]]] = None,
infrastructure_type: Optional[pulumi.Input[str]] = None,
key_store_id: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
type: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAutonomousDatabaseBackupsResult]func GetAutonomousDatabaseBackups(ctx *Context, args *GetAutonomousDatabaseBackupsArgs, opts ...InvokeOption) (*GetAutonomousDatabaseBackupsResult, error)
func GetAutonomousDatabaseBackupsOutput(ctx *Context, args *GetAutonomousDatabaseBackupsOutputArgs, opts ...InvokeOption) GetAutonomousDatabaseBackupsResultOutput> Note: This function is named GetAutonomousDatabaseBackups in the Go SDK.
public static class GetAutonomousDatabaseBackups
{
public static Task<GetAutonomousDatabaseBackupsResult> InvokeAsync(GetAutonomousDatabaseBackupsArgs args, InvokeOptions? opts = null)
public static Output<GetAutonomousDatabaseBackupsResult> Invoke(GetAutonomousDatabaseBackupsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetAutonomousDatabaseBackupsResult> getAutonomousDatabaseBackups(GetAutonomousDatabaseBackupsArgs args, InvokeOptions options)
public static Output<GetAutonomousDatabaseBackupsResult> getAutonomousDatabaseBackups(GetAutonomousDatabaseBackupsArgs args, InvokeOptions options)
fn::invoke:
function: oci:Database/getAutonomousDatabaseBackups:getAutonomousDatabaseBackups
arguments:
# arguments dictionaryThe following arguments are supported:
- Autonomous
Database stringId - The database OCID.
- Backup
Destination stringId - A filter to return only resources that have the given backup destination id.
- Compartment
Id string - The compartment OCID.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Filters
List<Get
Autonomous Database Backups Filter> - Infrastructure
Type string - A filter to return only resources that match the given Infrastructure Type.
- Key
Store stringId - A filter to return only resources that have the given key store id.
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- Type string
- A filter to return only backups that matches with the given type of Backup.
- Autonomous
Database stringId - The database OCID.
- Backup
Destination stringId - A filter to return only resources that have the given backup destination id.
- Compartment
Id string - The compartment OCID.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Filters
[]Get
Autonomous Database Backups Filter - Infrastructure
Type string - A filter to return only resources that match the given Infrastructure Type.
- Key
Store stringId - A filter to return only resources that have the given key store id.
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- Type string
- A filter to return only backups that matches with the given type of Backup.
- autonomous
Database StringId - The database OCID.
- backup
Destination StringId - A filter to return only resources that have the given backup destination id.
- compartment
Id String - The compartment OCID.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
List<Get
Autonomous Backups Filter> - infrastructure
Type String - A filter to return only resources that match the given Infrastructure Type.
- key
Store StringId - A filter to return only resources that have the given key store id.
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- type String
- A filter to return only backups that matches with the given type of Backup.
- autonomous
Database stringId - The database OCID.
- backup
Destination stringId - A filter to return only resources that have the given backup destination id.
- compartment
Id string - The compartment OCID.
- display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
Get
Autonomous Database Backups Filter[] - infrastructure
Type string - A filter to return only resources that match the given Infrastructure Type.
- key
Store stringId - A filter to return only resources that have the given key store id.
- state string
- A filter to return only resources that match the given lifecycle state exactly.
- type string
- A filter to return only backups that matches with the given type of Backup.
- autonomous_
database_ strid - The database OCID.
- backup_
destination_ strid - A filter to return only resources that have the given backup destination id.
- compartment_
id str - The compartment OCID.
- display_
name str - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
Sequence[Get
Autonomous Database Backups Filter] - infrastructure_
type str - A filter to return only resources that match the given Infrastructure Type.
- key_
store_ strid - A filter to return only resources that have the given key store id.
- state str
- A filter to return only resources that match the given lifecycle state exactly.
- type str
- A filter to return only backups that matches with the given type of Backup.
- autonomous
Database StringId - The database OCID.
- backup
Destination StringId - A filter to return only resources that have the given backup destination id.
- compartment
Id String - The compartment OCID.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters List<Property Map>
- infrastructure
Type String - A filter to return only resources that match the given Infrastructure Type.
- key
Store StringId - A filter to return only resources that have the given key store id.
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- type String
- A filter to return only backups that matches with the given type of Backup.
getAutonomousDatabaseBackups Result
The following output properties are available:
- Autonomous
Database List<GetBackups Autonomous Database Backups Autonomous Database Backup> - The list of autonomous_database_backups.
- Id string
- The provider-assigned unique ID for this managed resource.
- Autonomous
Database stringId - The OCID of the Autonomous AI Database.
- Backup
Destination stringId - Compartment
Id string - The OCID of the compartment.
- Display
Name string - The user-friendly name for the backup. The name does not have to be unique.
- Filters
List<Get
Autonomous Database Backups Filter> - Infrastructure
Type string - The infrastructure type this resource belongs to.
- Key
Store stringId - The OCID of the key store of Oracle Vault.
- State string
- The current state of the backup.
- Type string
- The type of backup.
- Autonomous
Database []GetBackups Autonomous Database Backups Autonomous Database Backup - The list of autonomous_database_backups.
- Id string
- The provider-assigned unique ID for this managed resource.
- Autonomous
Database stringId - The OCID of the Autonomous AI Database.
- Backup
Destination stringId - Compartment
Id string - The OCID of the compartment.
- Display
Name string - The user-friendly name for the backup. The name does not have to be unique.
- Filters
[]Get
Autonomous Database Backups Filter - Infrastructure
Type string - The infrastructure type this resource belongs to.
- Key
Store stringId - The OCID of the key store of Oracle Vault.
- State string
- The current state of the backup.
- Type string
- The type of backup.
- autonomous
Database List<GetBackups Autonomous Backups Autonomous Backup> - The list of autonomous_database_backups.
- id String
- The provider-assigned unique ID for this managed resource.
- autonomous
Database StringId - The OCID of the Autonomous AI Database.
- backup
Destination StringId - compartment
Id String - The OCID of the compartment.
- display
Name String - The user-friendly name for the backup. The name does not have to be unique.
- filters
List<Get
Autonomous Backups Filter> - infrastructure
Type String - The infrastructure type this resource belongs to.
- key
Store StringId - The OCID of the key store of Oracle Vault.
- state String
- The current state of the backup.
- type String
- The type of backup.
- autonomous
Database GetBackups Autonomous Database Backups Autonomous Database Backup[] - The list of autonomous_database_backups.
- id string
- The provider-assigned unique ID for this managed resource.
- autonomous
Database stringId - The OCID of the Autonomous AI Database.
- backup
Destination stringId - compartment
Id string - The OCID of the compartment.
- display
Name string - The user-friendly name for the backup. The name does not have to be unique.
- filters
Get
Autonomous Database Backups Filter[] - infrastructure
Type string - The infrastructure type this resource belongs to.
- key
Store stringId - The OCID of the key store of Oracle Vault.
- state string
- The current state of the backup.
- type string
- The type of backup.
- autonomous_
database_ Sequence[Getbackups Autonomous Database Backups Autonomous Database Backup] - The list of autonomous_database_backups.
- id str
- The provider-assigned unique ID for this managed resource.
- autonomous_
database_ strid - The OCID of the Autonomous AI Database.
- backup_
destination_ strid - compartment_
id str - The OCID of the compartment.
- display_
name str - The user-friendly name for the backup. The name does not have to be unique.
- filters
Sequence[Get
Autonomous Database Backups Filter] - infrastructure_
type str - The infrastructure type this resource belongs to.
- key_
store_ strid - The OCID of the key store of Oracle Vault.
- state str
- The current state of the backup.
- type str
- The type of backup.
- autonomous
Database List<Property Map>Backups - The list of autonomous_database_backups.
- id String
- The provider-assigned unique ID for this managed resource.
- autonomous
Database StringId - The OCID of the Autonomous AI Database.
- backup
Destination StringId - compartment
Id String - The OCID of the compartment.
- display
Name String - The user-friendly name for the backup. The name does not have to be unique.
- filters List<Property Map>
- infrastructure
Type String - The infrastructure type this resource belongs to.
- key
Store StringId - The OCID of the key store of Oracle Vault.
- state String
- The current state of the backup.
- type String
- The type of backup.
Supporting Types
GetAutonomousDatabaseBackupsAutonomousDatabaseBackup
- Autonomous
Database stringId - The database OCID.
- Backup
Destination List<GetDetails Autonomous Database Backups Autonomous Database Backup Backup Destination Detail> - Backup destination details
- Compartment
Id string - The compartment OCID.
- Database
Size doubleIn Tbs - The size of the database in terabytes at the time the backup was taken.
- Db
Version string - A valid Oracle AI Database version for Autonomous AI Database.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Id string
- The OCID of the Autonomous AI Database backup.
- Infrastructure
Type string - A filter to return only resources that match the given Infrastructure Type.
- Is
Automatic bool - Indicates whether the backup is user-initiated or automatic.
- Is
Long boolTerm Backup - Is
Restorable bool - Indicates whether the backup can be used to restore the associated Autonomous AI Database.
- Key
Store stringId - A filter to return only resources that have the given key store id.
- 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. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Region string
- Name of the region in which backup is taken in.
- Retention
Period intIn Days - Retention period, in days, for long-term backups
- Size
In doubleTbs - The backup size in terrabytes (TB).
- Source
Database List<GetDetails Autonomous Database Backups Autonomous Database Backup Source Database Detail> - Source Autonomous Database details.
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- 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
- A filter to return only backups that matches with the given type of Backup.
- Vault
Id string - The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretIdare required for Customer Managed Keys.
- Autonomous
Database stringId - The database OCID.
- Backup
Destination []GetDetails Autonomous Database Backups Autonomous Database Backup Backup Destination Detail - Backup destination details
- Compartment
Id string - The compartment OCID.
- Database
Size float64In Tbs - The size of the database in terabytes at the time the backup was taken.
- Db
Version string - A valid Oracle AI Database version for Autonomous AI Database.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Id string
- The OCID of the Autonomous AI Database backup.
- Infrastructure
Type string - A filter to return only resources that match the given Infrastructure Type.
- Is
Automatic bool - Indicates whether the backup is user-initiated or automatic.
- Is
Long boolTerm Backup - Is
Restorable bool - Indicates whether the backup can be used to restore the associated Autonomous AI Database.
- Key
Store stringId - A filter to return only resources that have the given key store id.
- 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. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Region string
- Name of the region in which backup is taken in.
- Retention
Period intIn Days - Retention period, in days, for long-term backups
- Size
In float64Tbs - The backup size in terrabytes (TB).
- Source
Database []GetDetails Autonomous Database Backups Autonomous Database Backup Source Database Detail - Source Autonomous Database details.
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- 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
- A filter to return only backups that matches with the given type of Backup.
- Vault
Id string - The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretIdare required for Customer Managed Keys.
- autonomous
Database StringId - The database OCID.
- backup
Destination List<GetDetails Autonomous Backups Autonomous Backup Backup Destination Detail> - Backup destination details
- compartment
Id String - The compartment OCID.
- database
Size DoubleIn Tbs - The size of the database in terabytes at the time the backup was taken.
- db
Version String - A valid Oracle AI Database version for Autonomous AI Database.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- id String
- The OCID of the Autonomous AI Database backup.
- infrastructure
Type String - A filter to return only resources that match the given Infrastructure Type.
- is
Automatic Boolean - Indicates whether the backup is user-initiated or automatic.
- is
Long BooleanTerm Backup - is
Restorable Boolean - Indicates whether the backup can be used to restore the associated Autonomous AI Database.
- key
Store StringId - A filter to return only resources that have the given key store id.
- 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. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.
- lifecycle
Details String - Additional information about the current lifecycle state.
- region String
- Name of the region in which backup is taken in.
- retention
Period IntegerIn Days - Retention period, in days, for long-term backups
- size
In DoubleTbs - The backup size in terrabytes (TB).
- source
Database List<GetDetails Autonomous Backups Autonomous Backup Source Detail> - Source Autonomous Database details.
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- 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
- A filter to return only backups that matches with the given type of Backup.
- vault
Id String - The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretIdare required for Customer Managed Keys.
- autonomous
Database stringId - The database OCID.
- backup
Destination GetDetails Autonomous Database Backups Autonomous Database Backup Backup Destination Detail[] - Backup destination details
- compartment
Id string - The compartment OCID.
- database
Size numberIn Tbs - The size of the database in terabytes at the time the backup was taken.
- db
Version string - A valid Oracle AI Database version for Autonomous AI Database.
- display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- id string
- The OCID of the Autonomous AI Database backup.
- infrastructure
Type string - A filter to return only resources that match the given Infrastructure Type.
- is
Automatic boolean - Indicates whether the backup is user-initiated or automatic.
- is
Long booleanTerm Backup - is
Restorable boolean - Indicates whether the backup can be used to restore the associated Autonomous AI Database.
- key
Store stringId - A filter to return only resources that have the given key store id.
- 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. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.
- lifecycle
Details string - Additional information about the current lifecycle state.
- region string
- Name of the region in which backup is taken in.
- retention
Period numberIn Days - Retention period, in days, for long-term backups
- size
In numberTbs - The backup size in terrabytes (TB).
- source
Database GetDetails Autonomous Database Backups Autonomous Database Backup Source Database Detail[] - Source Autonomous Database details.
- state string
- A filter to return only resources that match the given lifecycle state exactly.
- 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
- A filter to return only backups that matches with the given type of Backup.
- vault
Id string - The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretIdare required for Customer Managed Keys.
- autonomous_
database_ strid - The database OCID.
- backup_
destination_ Sequence[Getdetails Autonomous Database Backups Autonomous Database Backup Backup Destination Detail] - Backup destination details
- compartment_
id str - The compartment OCID.
- database_
size_ floatin_ tbs - The size of the database in terabytes at the time the backup was taken.
- db_
version str - A valid Oracle AI Database version for Autonomous AI Database.
- display_
name str - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- id str
- The OCID of the Autonomous AI Database backup.
- infrastructure_
type str - A filter to return only resources that match the given Infrastructure Type.
- is_
automatic bool - Indicates whether the backup is user-initiated or automatic.
- is_
long_ boolterm_ backup - is_
restorable bool - Indicates whether the backup can be used to restore the associated Autonomous AI Database.
- key_
store_ strid - A filter to return only resources that have the given key store id.
- 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. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.
- lifecycle_
details str - Additional information about the current lifecycle state.
- region str
- Name of the region in which backup is taken in.
- retention_
period_ intin_ days - Retention period, in days, for long-term backups
- size_
in_ floattbs - The backup size in terrabytes (TB).
- source_
database_ Sequence[Getdetails Autonomous Database Backups Autonomous Database Backup Source Database Detail] - Source Autonomous Database details.
- state str
- A filter to return only resources that match the given lifecycle state exactly.
- 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
- A filter to return only backups that matches with the given type of Backup.
- vault_
id str - The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretIdare required for Customer Managed Keys.
- autonomous
Database StringId - The database OCID.
- backup
Destination List<Property Map>Details - Backup destination details
- compartment
Id String - The compartment OCID.
- database
Size NumberIn Tbs - The size of the database in terabytes at the time the backup was taken.
- db
Version String - A valid Oracle AI Database version for Autonomous AI Database.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- id String
- The OCID of the Autonomous AI Database backup.
- infrastructure
Type String - A filter to return only resources that match the given Infrastructure Type.
- is
Automatic Boolean - Indicates whether the backup is user-initiated or automatic.
- is
Long BooleanTerm Backup - is
Restorable Boolean - Indicates whether the backup can be used to restore the associated Autonomous AI Database.
- key
Store StringId - A filter to return only resources that have the given key store id.
- 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. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.
- lifecycle
Details String - Additional information about the current lifecycle state.
- region String
- Name of the region in which backup is taken in.
- retention
Period NumberIn Days - Retention period, in days, for long-term backups
- size
In NumberTbs - The backup size in terrabytes (TB).
- source
Database List<Property Map>Details - Source Autonomous Database details.
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- 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
- A filter to return only backups that matches with the given type of Backup.
- vault
Id String - The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretIdare required for Customer Managed Keys.
GetAutonomousDatabaseBackupsAutonomousDatabaseBackupBackupDestinationDetail
- Backup
Retention stringPolicy On Terminate - Defines the automatic and manual backup retention policy for the Autonomous Database termination. The retention policy set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination. Options are 'RETAIN_PER_RETENTION_WINDOW' or 'RETAIN_FOR_72_HOURS'.The default value is 'RETAIN_FOR_72_HOURS'.
- Id string
- The OCID of the Autonomous AI Database backup.
- Internet
Proxy string - Proxy URL to connect to object store.
- Is
Remote bool - Indicates whether the backup destination is cross-region or local.
- Is
Retention boolLock Enabled - Indicates if backup retention is locked for all the database backups in the Autonomous Container Database (ACD). The retention window cannot be decreased if the backup retention lock is enabled. Once applied on the Autonomous Container Database, the retention lock cannot be removed, or the retention period cannot be decreased after a 14-day period. If the backup is a Long Term Backup and retention lock is enabled, the backup cannot be deleted and must expire. The retention lock set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination.
- Remote
Region string - The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see Regions and Availability Domains.
- Type string
- A filter to return only backups that matches with the given type of Backup.
- 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.
- Backup
Retention stringPolicy On Terminate - Defines the automatic and manual backup retention policy for the Autonomous Database termination. The retention policy set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination. Options are 'RETAIN_PER_RETENTION_WINDOW' or 'RETAIN_FOR_72_HOURS'.The default value is 'RETAIN_FOR_72_HOURS'.
- Id string
- The OCID of the Autonomous AI Database backup.
- Internet
Proxy string - Proxy URL to connect to object store.
- Is
Remote bool - Indicates whether the backup destination is cross-region or local.
- Is
Retention boolLock Enabled - Indicates if backup retention is locked for all the database backups in the Autonomous Container Database (ACD). The retention window cannot be decreased if the backup retention lock is enabled. Once applied on the Autonomous Container Database, the retention lock cannot be removed, or the retention period cannot be decreased after a 14-day period. If the backup is a Long Term Backup and retention lock is enabled, the backup cannot be deleted and must expire. The retention lock set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination.
- Remote
Region string - The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see Regions and Availability Domains.
- Type string
- A filter to return only backups that matches with the given type of Backup.
- 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.
- backup
Retention StringPolicy On Terminate - Defines the automatic and manual backup retention policy for the Autonomous Database termination. The retention policy set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination. Options are 'RETAIN_PER_RETENTION_WINDOW' or 'RETAIN_FOR_72_HOURS'.The default value is 'RETAIN_FOR_72_HOURS'.
- id String
- The OCID of the Autonomous AI Database backup.
- internet
Proxy String - Proxy URL to connect to object store.
- is
Remote Boolean - Indicates whether the backup destination is cross-region or local.
- is
Retention BooleanLock Enabled - Indicates if backup retention is locked for all the database backups in the Autonomous Container Database (ACD). The retention window cannot be decreased if the backup retention lock is enabled. Once applied on the Autonomous Container Database, the retention lock cannot be removed, or the retention period cannot be decreased after a 14-day period. If the backup is a Long Term Backup and retention lock is enabled, the backup cannot be deleted and must expire. The retention lock set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination.
- remote
Region String - The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see Regions and Availability Domains.
- type String
- A filter to return only backups that matches with the given type of Backup.
- 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.
- backup
Retention stringPolicy On Terminate - Defines the automatic and manual backup retention policy for the Autonomous Database termination. The retention policy set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination. Options are 'RETAIN_PER_RETENTION_WINDOW' or 'RETAIN_FOR_72_HOURS'.The default value is 'RETAIN_FOR_72_HOURS'.
- id string
- The OCID of the Autonomous AI Database backup.
- internet
Proxy string - Proxy URL to connect to object store.
- is
Remote boolean - Indicates whether the backup destination is cross-region or local.
- is
Retention booleanLock Enabled - Indicates if backup retention is locked for all the database backups in the Autonomous Container Database (ACD). The retention window cannot be decreased if the backup retention lock is enabled. Once applied on the Autonomous Container Database, the retention lock cannot be removed, or the retention period cannot be decreased after a 14-day period. If the backup is a Long Term Backup and retention lock is enabled, the backup cannot be deleted and must expire. The retention lock set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination.
- remote
Region string - The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see Regions and Availability Domains.
- type string
- A filter to return only backups that matches with the given type of Backup.
- 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.
- backup_
retention_ strpolicy_ on_ terminate - Defines the automatic and manual backup retention policy for the Autonomous Database termination. The retention policy set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination. Options are 'RETAIN_PER_RETENTION_WINDOW' or 'RETAIN_FOR_72_HOURS'.The default value is 'RETAIN_FOR_72_HOURS'.
- id str
- The OCID of the Autonomous AI Database backup.
- internet_
proxy str - Proxy URL to connect to object store.
- is_
remote bool - Indicates whether the backup destination is cross-region or local.
- is_
retention_ boollock_ enabled - Indicates if backup retention is locked for all the database backups in the Autonomous Container Database (ACD). The retention window cannot be decreased if the backup retention lock is enabled. Once applied on the Autonomous Container Database, the retention lock cannot be removed, or the retention period cannot be decreased after a 14-day period. If the backup is a Long Term Backup and retention lock is enabled, the backup cannot be deleted and must expire. The retention lock set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination.
- remote_
region str - The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see Regions and Availability Domains.
- type str
- A filter to return only backups that matches with the given type of Backup.
- 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.
- backup
Retention StringPolicy On Terminate - Defines the automatic and manual backup retention policy for the Autonomous Database termination. The retention policy set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination. Options are 'RETAIN_PER_RETENTION_WINDOW' or 'RETAIN_FOR_72_HOURS'.The default value is 'RETAIN_FOR_72_HOURS'.
- id String
- The OCID of the Autonomous AI Database backup.
- internet
Proxy String - Proxy URL to connect to object store.
- is
Remote Boolean - Indicates whether the backup destination is cross-region or local.
- is
Retention BooleanLock Enabled - Indicates if backup retention is locked for all the database backups in the Autonomous Container Database (ACD). The retention window cannot be decreased if the backup retention lock is enabled. Once applied on the Autonomous Container Database, the retention lock cannot be removed, or the retention period cannot be decreased after a 14-day period. If the backup is a Long Term Backup and retention lock is enabled, the backup cannot be deleted and must expire. The retention lock set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination.
- remote
Region String - The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see Regions and Availability Domains.
- type String
- A filter to return only backups that matches with the given type of Backup.
- 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.
GetAutonomousDatabaseBackupsAutonomousDatabaseBackupSourceDatabaseDetail
- Autonomous
Container List<GetDatabase Customer Contacts Autonomous Database Backups Autonomous Database Backup Source Database Detail Autonomous Container Database Customer Contact> - Customer Contacts for the Autonomous Container Database. Setting this to an empty list removes all customer contacts.
- Autonomous
Container stringDatabase Display Name - The user-provided name for the Autonomous Container Database.
- Autonomous
Container stringDatabase Dst File Version - DST Time-Zone File version of the Autonomous Container Database.
- Autonomous
Container stringDatabase Name - Autonomous Container Database name.
- Autonomous
Database List<GetCustomer Contacts Autonomous Database Backups Autonomous Database Backup Source Database Detail Autonomous Database Customer Contact> - Customer Contacts for the Autonomous database.
- Autonomous
Database stringName - Autonomous Database's name.
- Autonomous
Vm stringCluster Display Name - Autonomous VM cluster's user-friendly name.
- Db
Workload string - The Autonomous Database workload type. The following values are valid:
- OLTP - indicates an Autonomous Transaction Processing database
- DW - indicates an Autonomous Data Warehouse database
- AJD - indicates an Autonomous JSON Database
- APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
- Autonomous
Container []GetDatabase Customer Contacts Autonomous Database Backups Autonomous Database Backup Source Database Detail Autonomous Container Database Customer Contact - Customer Contacts for the Autonomous Container Database. Setting this to an empty list removes all customer contacts.
- Autonomous
Container stringDatabase Display Name - The user-provided name for the Autonomous Container Database.
- Autonomous
Container stringDatabase Dst File Version - DST Time-Zone File version of the Autonomous Container Database.
- Autonomous
Container stringDatabase Name - Autonomous Container Database name.
- Autonomous
Database []GetCustomer Contacts Autonomous Database Backups Autonomous Database Backup Source Database Detail Autonomous Database Customer Contact - Customer Contacts for the Autonomous database.
- Autonomous
Database stringName - Autonomous Database's name.
- Autonomous
Vm stringCluster Display Name - Autonomous VM cluster's user-friendly name.
- Db
Workload string - The Autonomous Database workload type. The following values are valid:
- OLTP - indicates an Autonomous Transaction Processing database
- DW - indicates an Autonomous Data Warehouse database
- AJD - indicates an Autonomous JSON Database
- APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
- autonomous
Container List<GetDatabase Customer Contacts Autonomous Backups Autonomous Backup Source Detail Autonomous Container Customer Contact> - Customer Contacts for the Autonomous Container Database. Setting this to an empty list removes all customer contacts.
- autonomous
Container StringDatabase Display Name - The user-provided name for the Autonomous Container Database.
- autonomous
Container StringDatabase Dst File Version - DST Time-Zone File version of the Autonomous Container Database.
- autonomous
Container StringDatabase Name - Autonomous Container Database name.
- autonomous
Database List<GetCustomer Contacts Autonomous Backups Autonomous Backup Source Detail Autonomous Customer Contact> - Customer Contacts for the Autonomous database.
- autonomous
Database StringName - Autonomous Database's name.
- autonomous
Vm StringCluster Display Name - Autonomous VM cluster's user-friendly name.
- db
Workload String - The Autonomous Database workload type. The following values are valid:
- OLTP - indicates an Autonomous Transaction Processing database
- DW - indicates an Autonomous Data Warehouse database
- AJD - indicates an Autonomous JSON Database
- APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
- autonomous
Container GetDatabase Customer Contacts Autonomous Database Backups Autonomous Database Backup Source Database Detail Autonomous Container Database Customer Contact[] - Customer Contacts for the Autonomous Container Database. Setting this to an empty list removes all customer contacts.
- autonomous
Container stringDatabase Display Name - The user-provided name for the Autonomous Container Database.
- autonomous
Container stringDatabase Dst File Version - DST Time-Zone File version of the Autonomous Container Database.
- autonomous
Container stringDatabase Name - Autonomous Container Database name.
- autonomous
Database GetCustomer Contacts Autonomous Database Backups Autonomous Database Backup Source Database Detail Autonomous Database Customer Contact[] - Customer Contacts for the Autonomous database.
- autonomous
Database stringName - Autonomous Database's name.
- autonomous
Vm stringCluster Display Name - Autonomous VM cluster's user-friendly name.
- db
Workload string - The Autonomous Database workload type. The following values are valid:
- OLTP - indicates an Autonomous Transaction Processing database
- DW - indicates an Autonomous Data Warehouse database
- AJD - indicates an Autonomous JSON Database
- APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
- autonomous_
container_ Sequence[Getdatabase_ customer_ contacts Autonomous Database Backups Autonomous Database Backup Source Database Detail Autonomous Container Database Customer Contact] - Customer Contacts for the Autonomous Container Database. Setting this to an empty list removes all customer contacts.
- autonomous_
container_ strdatabase_ display_ name - The user-provided name for the Autonomous Container Database.
- autonomous_
container_ strdatabase_ dst_ file_ version - DST Time-Zone File version of the Autonomous Container Database.
- autonomous_
container_ strdatabase_ name - Autonomous Container Database name.
- autonomous_
database_ Sequence[Getcustomer_ contacts Autonomous Database Backups Autonomous Database Backup Source Database Detail Autonomous Database Customer Contact] - Customer Contacts for the Autonomous database.
- autonomous_
database_ strname - Autonomous Database's name.
- autonomous_
vm_ strcluster_ display_ name - Autonomous VM cluster's user-friendly name.
- db_
workload str - The Autonomous Database workload type. The following values are valid:
- OLTP - indicates an Autonomous Transaction Processing database
- DW - indicates an Autonomous Data Warehouse database
- AJD - indicates an Autonomous JSON Database
- APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
- autonomous
Container List<Property Map>Database Customer Contacts - Customer Contacts for the Autonomous Container Database. Setting this to an empty list removes all customer contacts.
- autonomous
Container StringDatabase Display Name - The user-provided name for the Autonomous Container Database.
- autonomous
Container StringDatabase Dst File Version - DST Time-Zone File version of the Autonomous Container Database.
- autonomous
Container StringDatabase Name - Autonomous Container Database name.
- autonomous
Database List<Property Map>Customer Contacts - Customer Contacts for the Autonomous database.
- autonomous
Database StringName - Autonomous Database's name.
- autonomous
Vm StringCluster Display Name - Autonomous VM cluster's user-friendly name.
- db
Workload String - The Autonomous Database workload type. The following values are valid:
- OLTP - indicates an Autonomous Transaction Processing database
- DW - indicates an Autonomous Data Warehouse database
- AJD - indicates an Autonomous JSON Database
- APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
GetAutonomousDatabaseBackupsAutonomousDatabaseBackupSourceDatabaseDetailAutonomousContainerDatabaseCustomerContact
- Email string
- The email address used by Oracle to send notifications regarding databases and infrastructure.
- Email string
- The email address used by Oracle to send notifications regarding databases and infrastructure.
- email String
- The email address used by Oracle to send notifications regarding databases and infrastructure.
- email string
- The email address used by Oracle to send notifications regarding databases and infrastructure.
- email str
- The email address used by Oracle to send notifications regarding databases and infrastructure.
- email String
- The email address used by Oracle to send notifications regarding databases and infrastructure.
GetAutonomousDatabaseBackupsAutonomousDatabaseBackupSourceDatabaseDetailAutonomousDatabaseCustomerContact
- Email string
- The email address used by Oracle to send notifications regarding databases and infrastructure.
- Email string
- The email address used by Oracle to send notifications regarding databases and infrastructure.
- email String
- The email address used by Oracle to send notifications regarding databases and infrastructure.
- email string
- The email address used by Oracle to send notifications regarding databases and infrastructure.
- email str
- The email address used by Oracle to send notifications regarding databases and infrastructure.
- email String
- The email address used by Oracle to send notifications regarding databases and infrastructure.
GetAutonomousDatabaseBackupsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
