1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. getAutonomousDatabaseBackups
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

oci.Database.getAutonomousDatabaseBackups

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

This data source provides the list of Autonomous Database Backups in Oracle Cloud Infrastructure Database service.

Gets a list of Autonomous 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,
    compartmentId: compartmentId,
    displayName: autonomousDatabaseBackupDisplayName,
    state: autonomousDatabaseBackupState,
    type: autonomousDatabaseBackupType,
});
Copy
import pulumi
import pulumi_oci as oci

test_autonomous_database_backups = oci.Database.get_autonomous_database_backups(autonomous_database_id=test_autonomous_database["id"],
    compartment_id=compartment_id,
    display_name=autonomous_database_backup_display_name,
    state=autonomous_database_backup_state,
    type=autonomous_database_backup_type)
Copy
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.GetAutonomousDatabaseBackups(ctx, &database.GetAutonomousDatabaseBackupsArgs{
			AutonomousDatabaseId: pulumi.StringRef(testAutonomousDatabase.Id),
			CompartmentId:        pulumi.StringRef(compartmentId),
			DisplayName:          pulumi.StringRef(autonomousDatabaseBackupDisplayName),
			State:                pulumi.StringRef(autonomousDatabaseBackupState),
			Type:                 pulumi.StringRef(autonomousDatabaseBackupType),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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,
        CompartmentId = compartmentId,
        DisplayName = autonomousDatabaseBackupDisplayName,
        State = autonomousDatabaseBackupState,
        Type = autonomousDatabaseBackupType,
    });

});
Copy
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())
            .compartmentId(compartmentId)
            .displayName(autonomousDatabaseBackupDisplayName)
            .state(autonomousDatabaseBackupState)
            .type(autonomousDatabaseBackupType)
            .build());

    }
}
Copy
variables:
  testAutonomousDatabaseBackups:
    fn::invoke:
      function: oci:Database:getAutonomousDatabaseBackups
      arguments:
        autonomousDatabaseId: ${testAutonomousDatabase.id}
        compartmentId: ${compartmentId}
        displayName: ${autonomousDatabaseBackupDisplayName}
        state: ${autonomousDatabaseBackupState}
        type: ${autonomousDatabaseBackupType}
Copy

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>
Copy
def get_autonomous_database_backups(autonomous_database_id: Optional[str] = None,
                                    compartment_id: Optional[str] = None,
                                    display_name: Optional[str] = None,
                                    filters: Optional[Sequence[_database.GetAutonomousDatabaseBackupsFilter]] = 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,
                                    compartment_id: Optional[pulumi.Input[str]] = None,
                                    display_name: Optional[pulumi.Input[str]] = None,
                                    filters: Optional[pulumi.Input[Sequence[pulumi.Input[_database.GetAutonomousDatabaseBackupsFilterArgs]]]] = None,
                                    state: Optional[pulumi.Input[str]] = None,
                                    type: Optional[pulumi.Input[str]] = None,
                                    opts: Optional[InvokeOptions] = None) -> Output[GetAutonomousDatabaseBackupsResult]
Copy
func GetAutonomousDatabaseBackups(ctx *Context, args *GetAutonomousDatabaseBackupsArgs, opts ...InvokeOption) (*GetAutonomousDatabaseBackupsResult, error)
func GetAutonomousDatabaseBackupsOutput(ctx *Context, args *GetAutonomousDatabaseBackupsOutputArgs, opts ...InvokeOption) GetAutonomousDatabaseBackupsResultOutput
Copy

> 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)
}
Copy
public static CompletableFuture<GetAutonomousDatabaseBackupsResult> getAutonomousDatabaseBackups(GetAutonomousDatabaseBackupsArgs args, InvokeOptions options)
public static Output<GetAutonomousDatabaseBackupsResult> getAutonomousDatabaseBackups(GetAutonomousDatabaseBackupsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Database/getAutonomousDatabaseBackups:getAutonomousDatabaseBackups
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

AutonomousDatabaseId string
The database OCID.
CompartmentId string
The compartment OCID.
DisplayName string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
Filters Changes to this property will trigger replacement. List<GetAutonomousDatabaseBackupsFilter>
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.
AutonomousDatabaseId string
The database OCID.
CompartmentId string
The compartment OCID.
DisplayName string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
Filters Changes to this property will trigger replacement. []GetAutonomousDatabaseBackupsFilter
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.
autonomousDatabaseId String
The database OCID.
compartmentId String
The compartment OCID.
displayName String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
filters Changes to this property will trigger replacement. List<GetAutonomousBackupsFilter>
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.
autonomousDatabaseId string
The database OCID.
compartmentId string
The compartment OCID.
displayName string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
filters Changes to this property will trigger replacement. GetAutonomousDatabaseBackupsFilter[]
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_id str
The database OCID.
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 Changes to this property will trigger replacement. Sequence[database.GetAutonomousDatabaseBackupsFilter]
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.
autonomousDatabaseId String
The database OCID.
compartmentId String
The compartment OCID.
displayName String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
filters Changes to this property will trigger replacement. List<Property Map>
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:

AutonomousDatabaseBackups List<GetAutonomousDatabaseBackupsAutonomousDatabaseBackup>
The list of autonomous_database_backups.
Id string
The provider-assigned unique ID for this managed resource.
AutonomousDatabaseId string
The OCID of the Autonomous Database.
CompartmentId string
The OCID of the compartment.
DisplayName string
The user-friendly name for the backup. The name does not have to be unique.
Filters List<GetAutonomousDatabaseBackupsFilter>
State string
The current state of the backup.
Type string
The type of backup.
AutonomousDatabaseBackups []GetAutonomousDatabaseBackupsAutonomousDatabaseBackup
The list of autonomous_database_backups.
Id string
The provider-assigned unique ID for this managed resource.
AutonomousDatabaseId string
The OCID of the Autonomous Database.
CompartmentId string
The OCID of the compartment.
DisplayName string
The user-friendly name for the backup. The name does not have to be unique.
Filters []GetAutonomousDatabaseBackupsFilter
State string
The current state of the backup.
Type string
The type of backup.
autonomousDatabaseBackups List<GetAutonomousBackupsAutonomousBackup>
The list of autonomous_database_backups.
id String
The provider-assigned unique ID for this managed resource.
autonomousDatabaseId String
The OCID of the Autonomous Database.
compartmentId String
The OCID of the compartment.
displayName String
The user-friendly name for the backup. The name does not have to be unique.
filters List<GetAutonomousBackupsFilter>
state String
The current state of the backup.
type String
The type of backup.
autonomousDatabaseBackups GetAutonomousDatabaseBackupsAutonomousDatabaseBackup[]
The list of autonomous_database_backups.
id string
The provider-assigned unique ID for this managed resource.
autonomousDatabaseId string
The OCID of the Autonomous Database.
compartmentId string
The OCID of the compartment.
displayName string
The user-friendly name for the backup. The name does not have to be unique.
filters GetAutonomousDatabaseBackupsFilter[]
state string
The current state of the backup.
type string
The type of backup.
autonomous_database_backups Sequence[database.GetAutonomousDatabaseBackupsAutonomousDatabaseBackup]
The list of autonomous_database_backups.
id str
The provider-assigned unique ID for this managed resource.
autonomous_database_id str
The OCID of the Autonomous Database.
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[database.GetAutonomousDatabaseBackupsFilter]
state str
The current state of the backup.
type str
The type of backup.
autonomousDatabaseBackups List<Property Map>
The list of autonomous_database_backups.
id String
The provider-assigned unique ID for this managed resource.
autonomousDatabaseId String
The OCID of the Autonomous Database.
compartmentId String
The OCID of the compartment.
displayName String
The user-friendly name for the backup. The name does not have to be unique.
filters List<Property Map>
state String
The current state of the backup.
type String
The type of backup.

Supporting Types

GetAutonomousDatabaseBackupsAutonomousDatabaseBackup

AutonomousDatabaseId This property is required. string
The database OCID.
BackupDestinationDetails This property is required. List<GetAutonomousDatabaseBackupsAutonomousDatabaseBackupBackupDestinationDetail>
Backup destination details
CompartmentId This property is required. string
The compartment OCID.
DatabaseSizeInTbs This property is required. double
The size of the database in terabytes at the time the backup was taken.
DbVersion This property is required. string
A valid Oracle Database version for Autonomous Database.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
Id This property is required. string
The OCID of the Autonomous Database backup.
IsAutomatic This property is required. bool
Indicates whether the backup is user-initiated or automatic.
IsLongTermBackup This property is required. bool
IsRestorable This property is required. bool
Indicates whether the backup can be used to restore the associated Autonomous Database.
KeyStoreId This property is required. string
The OCID of the key store of Oracle Vault.
KeyStoreWalletName This property is required. string
The wallet name for Oracle Key Vault.
KmsKeyId This property is required. string
The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
KmsKeyVersionId This property is required. string
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 Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
RetentionPeriodInDays This property is required. int
Retention period, in days, for long-term backups
SizeInTbs This property is required. double
The backup size in terrabytes (TB).
State This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
TimeAvailableTill This property is required. string
Timestamp until when the backup will be available
TimeEnded This property is required. string
The date and time the backup completed.
TimeStarted This property is required. string
The date and time the backup started.
Type This property is required. string
A filter to return only backups that matches with the given type of Backup.
VaultId This property is required. string
The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
AutonomousDatabaseId This property is required. string
The database OCID.
BackupDestinationDetails This property is required. []GetAutonomousDatabaseBackupsAutonomousDatabaseBackupBackupDestinationDetail
Backup destination details
CompartmentId This property is required. string
The compartment OCID.
DatabaseSizeInTbs This property is required. float64
The size of the database in terabytes at the time the backup was taken.
DbVersion This property is required. string
A valid Oracle Database version for Autonomous Database.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
Id This property is required. string
The OCID of the Autonomous Database backup.
IsAutomatic This property is required. bool
Indicates whether the backup is user-initiated or automatic.
IsLongTermBackup This property is required. bool
IsRestorable This property is required. bool
Indicates whether the backup can be used to restore the associated Autonomous Database.
KeyStoreId This property is required. string
The OCID of the key store of Oracle Vault.
KeyStoreWalletName This property is required. string
The wallet name for Oracle Key Vault.
KmsKeyId This property is required. string
The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
KmsKeyVersionId This property is required. string
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 Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
RetentionPeriodInDays This property is required. int
Retention period, in days, for long-term backups
SizeInTbs This property is required. float64
The backup size in terrabytes (TB).
State This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
TimeAvailableTill This property is required. string
Timestamp until when the backup will be available
TimeEnded This property is required. string
The date and time the backup completed.
TimeStarted This property is required. string
The date and time the backup started.
Type This property is required. string
A filter to return only backups that matches with the given type of Backup.
VaultId This property is required. string
The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
autonomousDatabaseId This property is required. String
The database OCID.
backupDestinationDetails This property is required. List<GetAutonomousBackupsAutonomousBackupBackupDestinationDetail>
Backup destination details
compartmentId This property is required. String
The compartment OCID.
databaseSizeInTbs This property is required. Double
The size of the database in terabytes at the time the backup was taken.
dbVersion This property is required. String
A valid Oracle Database version for Autonomous Database.
displayName This property is required. String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
id This property is required. String
The OCID of the Autonomous Database backup.
isAutomatic This property is required. Boolean
Indicates whether the backup is user-initiated or automatic.
isLongTermBackup This property is required. Boolean
isRestorable This property is required. Boolean
Indicates whether the backup can be used to restore the associated Autonomous Database.
keyStoreId This property is required. String
The OCID of the key store of Oracle Vault.
keyStoreWalletName This property is required. String
The wallet name for Oracle Key Vault.
kmsKeyId This property is required. String
The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
kmsKeyVersionId This property is required. String
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 Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
retentionPeriodInDays This property is required. Integer
Retention period, in days, for long-term backups
sizeInTbs This property is required. Double
The backup size in terrabytes (TB).
state This property is required. String
A filter to return only resources that match the given lifecycle state exactly.
timeAvailableTill This property is required. String
Timestamp until when the backup will be available
timeEnded This property is required. String
The date and time the backup completed.
timeStarted This property is required. String
The date and time the backup started.
type This property is required. String
A filter to return only backups that matches with the given type of Backup.
vaultId This property is required. String
The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
autonomousDatabaseId This property is required. string
The database OCID.
backupDestinationDetails This property is required. GetAutonomousDatabaseBackupsAutonomousDatabaseBackupBackupDestinationDetail[]
Backup destination details
compartmentId This property is required. string
The compartment OCID.
databaseSizeInTbs This property is required. number
The size of the database in terabytes at the time the backup was taken.
dbVersion This property is required. string
A valid Oracle Database version for Autonomous Database.
displayName This property is required. string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
id This property is required. string
The OCID of the Autonomous Database backup.
isAutomatic This property is required. boolean
Indicates whether the backup is user-initiated or automatic.
isLongTermBackup This property is required. boolean
isRestorable This property is required. boolean
Indicates whether the backup can be used to restore the associated Autonomous Database.
keyStoreId This property is required. string
The OCID of the key store of Oracle Vault.
keyStoreWalletName This property is required. string
The wallet name for Oracle Key Vault.
kmsKeyId This property is required. string
The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
kmsKeyVersionId This property is required. string
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 Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
lifecycleDetails This property is required. string
Additional information about the current lifecycle state.
retentionPeriodInDays This property is required. number
Retention period, in days, for long-term backups
sizeInTbs This property is required. number
The backup size in terrabytes (TB).
state This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
timeAvailableTill This property is required. string
Timestamp until when the backup will be available
timeEnded This property is required. string
The date and time the backup completed.
timeStarted This property is required. string
The date and time the backup started.
type This property is required. string
A filter to return only backups that matches with the given type of Backup.
vaultId This property is required. string
The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
autonomous_database_id This property is required. str
The database OCID.
backup_destination_details This property is required. Sequence[database.GetAutonomousDatabaseBackupsAutonomousDatabaseBackupBackupDestinationDetail]
Backup destination details
compartment_id This property is required. str
The compartment OCID.
database_size_in_tbs This property is required. float
The size of the database in terabytes at the time the backup was taken.
db_version This property is required. str
A valid Oracle Database version for Autonomous Database.
display_name This property is required. str
A filter to return only resources that match the entire display name given. The match is not case sensitive.
id This property is required. str
The OCID of the Autonomous Database backup.
is_automatic This property is required. bool
Indicates whether the backup is user-initiated or automatic.
is_long_term_backup This property is required. bool
is_restorable This property is required. bool
Indicates whether the backup can be used to restore the associated Autonomous Database.
key_store_id This property is required. str
The OCID of the key store of Oracle Vault.
key_store_wallet_name This property is required. str
The wallet name for Oracle Key Vault.
kms_key_id This property is required. str
The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
kms_key_version_id This property is required. str
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 Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
lifecycle_details This property is required. str
Additional information about the current lifecycle state.
retention_period_in_days This property is required. int
Retention period, in days, for long-term backups
size_in_tbs This property is required. float
The backup size in terrabytes (TB).
state This property is required. str
A filter to return only resources that match the given lifecycle state exactly.
time_available_till This property is required. str
Timestamp until when the backup will be available
time_ended This property is required. str
The date and time the backup completed.
time_started This property is required. str
The date and time the backup started.
type This property is required. str
A filter to return only backups that matches with the given type of Backup.
vault_id This property is required. str
The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
autonomousDatabaseId This property is required. String
The database OCID.
backupDestinationDetails This property is required. List<Property Map>
Backup destination details
compartmentId This property is required. String
The compartment OCID.
databaseSizeInTbs This property is required. Number
The size of the database in terabytes at the time the backup was taken.
dbVersion This property is required. String
A valid Oracle Database version for Autonomous Database.
displayName This property is required. String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
id This property is required. String
The OCID of the Autonomous Database backup.
isAutomatic This property is required. Boolean
Indicates whether the backup is user-initiated or automatic.
isLongTermBackup This property is required. Boolean
isRestorable This property is required. Boolean
Indicates whether the backup can be used to restore the associated Autonomous Database.
keyStoreId This property is required. String
The OCID of the key store of Oracle Vault.
keyStoreWalletName This property is required. String
The wallet name for Oracle Key Vault.
kmsKeyId This property is required. String
The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
kmsKeyVersionId This property is required. String
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 Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
retentionPeriodInDays This property is required. Number
Retention period, in days, for long-term backups
sizeInTbs This property is required. Number
The backup size in terrabytes (TB).
state This property is required. String
A filter to return only resources that match the given lifecycle state exactly.
timeAvailableTill This property is required. String
Timestamp until when the backup will be available
timeEnded This property is required. String
The date and time the backup completed.
timeStarted This property is required. String
The date and time the backup started.
type This property is required. String
A filter to return only backups that matches with the given type of Backup.
vaultId This property is required. String
The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.

GetAutonomousDatabaseBackupsAutonomousDatabaseBackupBackupDestinationDetail

Id This property is required. string
The OCID of the Autonomous Database backup.
InternetProxy This property is required. string
Proxy URL to connect to object store.
Type This property is required. string
A filter to return only backups that matches with the given type of Backup.
VpcPassword This property is required. string
For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
VpcUser This property is required. string
For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
Id This property is required. string
The OCID of the Autonomous Database backup.
InternetProxy This property is required. string
Proxy URL to connect to object store.
Type This property is required. string
A filter to return only backups that matches with the given type of Backup.
VpcPassword This property is required. string
For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
VpcUser This property is required. string
For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
id This property is required. String
The OCID of the Autonomous Database backup.
internetProxy This property is required. String
Proxy URL to connect to object store.
type This property is required. String
A filter to return only backups that matches with the given type of Backup.
vpcPassword This property is required. String
For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
vpcUser This property is required. String
For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
id This property is required. string
The OCID of the Autonomous Database backup.
internetProxy This property is required. string
Proxy URL to connect to object store.
type This property is required. string
A filter to return only backups that matches with the given type of Backup.
vpcPassword This property is required. string
For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
vpcUser This property is required. string
For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
id This property is required. str
The OCID of the Autonomous Database backup.
internet_proxy This property is required. str
Proxy URL to connect to object store.
type This property is required. str
A filter to return only backups that matches with the given type of Backup.
vpc_password This property is required. str
For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
vpc_user This property is required. str
For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
id This property is required. String
The OCID of the Autonomous Database backup.
internetProxy This property is required. String
Proxy URL to connect to object store.
type This property is required. String
A filter to return only backups that matches with the given type of Backup.
vpcPassword This property is required. String
For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
vpcUser This property is required. String
For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.

GetAutonomousDatabaseBackupsFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi