1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. getAutonomousContainerDatabaseBackups
Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi

oci.Database.getAutonomousContainerDatabaseBackups

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi

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

    Gets a list of Autonomous Container Database backups by using either the ‘autonomousDatabaseId’ or ‘compartmentId’ as your query parameter.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testAutonomousContainerDatabaseBackups = oci.Database.getAutonomousContainerDatabaseBackups({
        autonomousContainerDatabaseId: testAutonomousContainerDatabase.id,
        compartmentId: compartmentId,
        displayName: autonomousContainerDatabaseBackupDisplayName,
        infrastructureType: autonomousContainerDatabaseBackupInfrastructureType,
        isRemote: autonomousContainerDatabaseBackupIsRemote,
        state: autonomousContainerDatabaseBackupState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_autonomous_container_database_backups = oci.Database.get_autonomous_container_database_backups(autonomous_container_database_id=test_autonomous_container_database["id"],
        compartment_id=compartment_id,
        display_name=autonomous_container_database_backup_display_name,
        infrastructure_type=autonomous_container_database_backup_infrastructure_type,
        is_remote=autonomous_container_database_backup_is_remote,
        state=autonomous_container_database_backup_state)
    
    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.GetAutonomousContainerDatabaseBackups(ctx, &database.GetAutonomousContainerDatabaseBackupsArgs{
    			AutonomousContainerDatabaseId: pulumi.StringRef(testAutonomousContainerDatabase.Id),
    			CompartmentId:                 pulumi.StringRef(compartmentId),
    			DisplayName:                   pulumi.StringRef(autonomousContainerDatabaseBackupDisplayName),
    			InfrastructureType:            pulumi.StringRef(autonomousContainerDatabaseBackupInfrastructureType),
    			IsRemote:                      pulumi.BoolRef(autonomousContainerDatabaseBackupIsRemote),
    			State:                         pulumi.StringRef(autonomousContainerDatabaseBackupState),
    		}, 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 testAutonomousContainerDatabaseBackups = Oci.Database.GetAutonomousContainerDatabaseBackups.Invoke(new()
        {
            AutonomousContainerDatabaseId = testAutonomousContainerDatabase.Id,
            CompartmentId = compartmentId,
            DisplayName = autonomousContainerDatabaseBackupDisplayName,
            InfrastructureType = autonomousContainerDatabaseBackupInfrastructureType,
            IsRemote = autonomousContainerDatabaseBackupIsRemote,
            State = autonomousContainerDatabaseBackupState,
        });
    
    });
    
    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.GetAutonomousContainerDatabaseBackupsArgs;
    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 testAutonomousContainerDatabaseBackups = DatabaseFunctions.getAutonomousContainerDatabaseBackups(GetAutonomousContainerDatabaseBackupsArgs.builder()
                .autonomousContainerDatabaseId(testAutonomousContainerDatabase.id())
                .compartmentId(compartmentId)
                .displayName(autonomousContainerDatabaseBackupDisplayName)
                .infrastructureType(autonomousContainerDatabaseBackupInfrastructureType)
                .isRemote(autonomousContainerDatabaseBackupIsRemote)
                .state(autonomousContainerDatabaseBackupState)
                .build());
    
        }
    }
    
    variables:
      testAutonomousContainerDatabaseBackups:
        fn::invoke:
          function: oci:Database:getAutonomousContainerDatabaseBackups
          arguments:
            autonomousContainerDatabaseId: ${testAutonomousContainerDatabase.id}
            compartmentId: ${compartmentId}
            displayName: ${autonomousContainerDatabaseBackupDisplayName}
            infrastructureType: ${autonomousContainerDatabaseBackupInfrastructureType}
            isRemote: ${autonomousContainerDatabaseBackupIsRemote}
            state: ${autonomousContainerDatabaseBackupState}
    

    Using getAutonomousContainerDatabaseBackups

    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 getAutonomousContainerDatabaseBackups(args: GetAutonomousContainerDatabaseBackupsArgs, opts?: InvokeOptions): Promise<GetAutonomousContainerDatabaseBackupsResult>
    function getAutonomousContainerDatabaseBackupsOutput(args: GetAutonomousContainerDatabaseBackupsOutputArgs, opts?: InvokeOptions): Output<GetAutonomousContainerDatabaseBackupsResult>
    def get_autonomous_container_database_backups(autonomous_container_database_id: Optional[str] = None,
                                                  compartment_id: Optional[str] = None,
                                                  display_name: Optional[str] = None,
                                                  filters: Optional[Sequence[GetAutonomousContainerDatabaseBackupsFilter]] = None,
                                                  infrastructure_type: Optional[str] = None,
                                                  is_remote: Optional[bool] = None,
                                                  state: Optional[str] = None,
                                                  opts: Optional[InvokeOptions] = None) -> GetAutonomousContainerDatabaseBackupsResult
    def get_autonomous_container_database_backups_output(autonomous_container_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[GetAutonomousContainerDatabaseBackupsFilterArgs]]]] = None,
                                                  infrastructure_type: Optional[pulumi.Input[str]] = None,
                                                  is_remote: Optional[pulumi.Input[bool]] = None,
                                                  state: Optional[pulumi.Input[str]] = None,
                                                  opts: Optional[InvokeOptions] = None) -> Output[GetAutonomousContainerDatabaseBackupsResult]
    func GetAutonomousContainerDatabaseBackups(ctx *Context, args *GetAutonomousContainerDatabaseBackupsArgs, opts ...InvokeOption) (*GetAutonomousContainerDatabaseBackupsResult, error)
    func GetAutonomousContainerDatabaseBackupsOutput(ctx *Context, args *GetAutonomousContainerDatabaseBackupsOutputArgs, opts ...InvokeOption) GetAutonomousContainerDatabaseBackupsResultOutput

    > Note: This function is named GetAutonomousContainerDatabaseBackups in the Go SDK.

    public static class GetAutonomousContainerDatabaseBackups 
    {
        public static Task<GetAutonomousContainerDatabaseBackupsResult> InvokeAsync(GetAutonomousContainerDatabaseBackupsArgs args, InvokeOptions? opts = null)
        public static Output<GetAutonomousContainerDatabaseBackupsResult> Invoke(GetAutonomousContainerDatabaseBackupsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetAutonomousContainerDatabaseBackupsResult> getAutonomousContainerDatabaseBackups(GetAutonomousContainerDatabaseBackupsArgs args, InvokeOptions options)
    public static Output<GetAutonomousContainerDatabaseBackupsResult> getAutonomousContainerDatabaseBackups(GetAutonomousContainerDatabaseBackupsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:Database/getAutonomousContainerDatabaseBackups:getAutonomousContainerDatabaseBackups
      arguments:
        # arguments dictionary

    The following arguments are supported:

    AutonomousContainerDatabaseId string
    The Autonomous Container 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 List<GetAutonomousContainerDatabaseBackupsFilter>
    InfrastructureType string
    A filter to return only resources that match the given Infrastructure Type.
    IsRemote bool
    call for all remote backups
    State string
    A filter to return only resources that match the given lifecycle state exactly.
    AutonomousContainerDatabaseId string
    The Autonomous Container 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 []GetAutonomousContainerDatabaseBackupsFilter
    InfrastructureType string
    A filter to return only resources that match the given Infrastructure Type.
    IsRemote bool
    call for all remote backups
    State string
    A filter to return only resources that match the given lifecycle state exactly.
    autonomousContainerDatabaseId String
    The Autonomous Container 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 List<GetAutonomousContainerBackupsFilter>
    infrastructureType String
    A filter to return only resources that match the given Infrastructure Type.
    isRemote Boolean
    call for all remote backups
    state String
    A filter to return only resources that match the given lifecycle state exactly.
    autonomousContainerDatabaseId string
    The Autonomous Container 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 GetAutonomousContainerDatabaseBackupsFilter[]
    infrastructureType string
    A filter to return only resources that match the given Infrastructure Type.
    isRemote boolean
    call for all remote backups
    state string
    A filter to return only resources that match the given lifecycle state exactly.
    autonomous_container_database_id str
    The Autonomous Container 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 Sequence[GetAutonomousContainerDatabaseBackupsFilter]
    infrastructure_type str
    A filter to return only resources that match the given Infrastructure Type.
    is_remote bool
    call for all remote backups
    state str
    A filter to return only resources that match the given lifecycle state exactly.
    autonomousContainerDatabaseId String
    The Autonomous Container 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 List<Property Map>
    infrastructureType String
    A filter to return only resources that match the given Infrastructure Type.
    isRemote Boolean
    call for all remote backups
    state String
    A filter to return only resources that match the given lifecycle state exactly.

    getAutonomousContainerDatabaseBackups Result

    The following output properties are available:

    AutonomousContainerDatabaseBackupCollections List<GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollection>
    The list of autonomous_container_database_backup_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    AutonomousContainerDatabaseId string
    The OCID of the Autonomous Container Database.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A user-friendly name for the backup. This name need not be unique.
    Filters List<GetAutonomousContainerDatabaseBackupsFilter>
    InfrastructureType string
    The infrastructure type this resource belongs to.
    IsRemote bool
    State string
    The current state of the backup.
    AutonomousContainerDatabaseBackupCollections []GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollection
    The list of autonomous_container_database_backup_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    AutonomousContainerDatabaseId string
    The OCID of the Autonomous Container Database.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A user-friendly name for the backup. This name need not be unique.
    Filters []GetAutonomousContainerDatabaseBackupsFilter
    InfrastructureType string
    The infrastructure type this resource belongs to.
    IsRemote bool
    State string
    The current state of the backup.
    autonomousContainerDatabaseBackupCollections List<GetAutonomousContainerBackupsAutonomousContainerBackupCollection>
    The list of autonomous_container_database_backup_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    autonomousContainerDatabaseId String
    The OCID of the Autonomous Container Database.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A user-friendly name for the backup. This name need not be unique.
    filters List<GetAutonomousContainerBackupsFilter>
    infrastructureType String
    The infrastructure type this resource belongs to.
    isRemote Boolean
    state String
    The current state of the backup.
    autonomousContainerDatabaseBackupCollections GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollection[]
    The list of autonomous_container_database_backup_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    autonomousContainerDatabaseId string
    The OCID of the Autonomous Container Database.
    compartmentId string
    The OCID of the compartment.
    displayName string
    A user-friendly name for the backup. This name need not be unique.
    filters GetAutonomousContainerDatabaseBackupsFilter[]
    infrastructureType string
    The infrastructure type this resource belongs to.
    isRemote boolean
    state string
    The current state of the backup.
    autonomous_container_database_backup_collections Sequence[GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollection]
    The list of autonomous_container_database_backup_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    autonomous_container_database_id str
    The OCID of the Autonomous Container Database.
    compartment_id str
    The OCID of the compartment.
    display_name str
    A user-friendly name for the backup. This name need not be unique.
    filters Sequence[GetAutonomousContainerDatabaseBackupsFilter]
    infrastructure_type str
    The infrastructure type this resource belongs to.
    is_remote bool
    state str
    The current state of the backup.
    autonomousContainerDatabaseBackupCollections List<Property Map>
    The list of autonomous_container_database_backup_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    autonomousContainerDatabaseId String
    The OCID of the Autonomous Container Database.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A user-friendly name for the backup. This name need not be unique.
    filters List<Property Map>
    infrastructureType String
    The infrastructure type this resource belongs to.
    isRemote Boolean
    state String
    The current state of the backup.

    Supporting Types

    GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollection

    items List<Property Map>
    List of Autonomous container database backups.

    GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItem

    AcdDisplayName string
    The user-friendly name for the Autonomous Container Database when the Backup was initiated. This name need not be unique. This field captures the name at the time of backup creation, accounting for possible later updates to the display name.
    AutonomousContainerDatabaseId string
    The Autonomous Container Database OCID.
    AutonomousDatabases List<GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemAutonomousDatabase>
    List of Autonomous Databases that is part of this Autonomous Container Database Backup
    CompartmentId string
    The compartment OCID.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DisplayName string
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    FreeformTags Dictionary<string, string>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the Autonomous Database backup.
    InfrastructureType string
    A filter to return only resources that match the given Infrastructure Type.
    IsAutomatic bool
    Indicates whether the backup is user-initiated or automatic.
    IsRemoteBackup bool
    Whether backup is for remote-region or local region
    LifecycleDetails string
    Additional information about the current lifecycle state.
    RetentionPeriodInDays int
    Retention period, in days, for long-term backups
    State string
    A filter to return only resources that match the given lifecycle state exactly.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    TimeEnded string
    The date and time the backup completed.
    TimeStarted string
    The date and time the backup started.
    Type string
    The type of backup.
    AcdDisplayName string
    The user-friendly name for the Autonomous Container Database when the Backup was initiated. This name need not be unique. This field captures the name at the time of backup creation, accounting for possible later updates to the display name.
    AutonomousContainerDatabaseId string
    The Autonomous Container Database OCID.
    AutonomousDatabases []GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemAutonomousDatabase
    List of Autonomous Databases that is part of this Autonomous Container Database Backup
    CompartmentId string
    The compartment OCID.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DisplayName string
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    FreeformTags map[string]string
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the Autonomous Database backup.
    InfrastructureType string
    A filter to return only resources that match the given Infrastructure Type.
    IsAutomatic bool
    Indicates whether the backup is user-initiated or automatic.
    IsRemoteBackup bool
    Whether backup is for remote-region or local region
    LifecycleDetails string
    Additional information about the current lifecycle state.
    RetentionPeriodInDays int
    Retention period, in days, for long-term backups
    State string
    A filter to return only resources that match the given lifecycle state exactly.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    TimeEnded string
    The date and time the backup completed.
    TimeStarted string
    The date and time the backup started.
    Type string
    The type of backup.
    acdDisplayName String
    The user-friendly name for the Autonomous Container Database when the Backup was initiated. This name need not be unique. This field captures the name at the time of backup creation, accounting for possible later updates to the display name.
    autonomousContainerDatabaseId String
    The Autonomous Container Database OCID.
    autonomousDatabases List<GetAutonomousContainerBackupsAutonomousContainerBackupCollectionItemAutonomous>
    List of Autonomous Databases that is part of this Autonomous Container Database Backup
    compartmentId String
    The compartment OCID.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName String
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    freeformTags Map<String,String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the Autonomous Database backup.
    infrastructureType String
    A filter to return only resources that match the given Infrastructure Type.
    isAutomatic Boolean
    Indicates whether the backup is user-initiated or automatic.
    isRemoteBackup Boolean
    Whether backup is for remote-region or local region
    lifecycleDetails String
    Additional information about the current lifecycle state.
    retentionPeriodInDays Integer
    Retention period, in days, for long-term backups
    state String
    A filter to return only resources that match the given lifecycle state exactly.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeEnded String
    The date and time the backup completed.
    timeStarted String
    The date and time the backup started.
    type String
    The type of backup.
    acdDisplayName string
    The user-friendly name for the Autonomous Container Database when the Backup was initiated. This name need not be unique. This field captures the name at the time of backup creation, accounting for possible later updates to the display name.
    autonomousContainerDatabaseId string
    The Autonomous Container Database OCID.
    autonomousDatabases GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemAutonomousDatabase[]
    List of Autonomous Databases that is part of this Autonomous Container Database Backup
    compartmentId string
    The compartment OCID.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName string
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    freeformTags {[key: string]: string}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id string
    The OCID of the Autonomous Database backup.
    infrastructureType string
    A filter to return only resources that match the given Infrastructure Type.
    isAutomatic boolean
    Indicates whether the backup is user-initiated or automatic.
    isRemoteBackup boolean
    Whether backup is for remote-region or local region
    lifecycleDetails string
    Additional information about the current lifecycle state.
    retentionPeriodInDays number
    Retention period, in days, for long-term backups
    state string
    A filter to return only resources that match the given lifecycle state exactly.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeEnded string
    The date and time the backup completed.
    timeStarted string
    The date and time the backup started.
    type string
    The type of backup.
    acd_display_name str
    The user-friendly name for the Autonomous Container Database when the Backup was initiated. This name need not be unique. This field captures the name at the time of backup creation, accounting for possible later updates to the display name.
    autonomous_container_database_id str
    The Autonomous Container Database OCID.
    autonomous_databases Sequence[GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemAutonomousDatabase]
    List of Autonomous Databases that is part of this Autonomous Container Database Backup
    compartment_id str
    The compartment OCID.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    display_name str
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    freeform_tags Mapping[str, str]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id str
    The OCID of the Autonomous 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_remote_backup bool
    Whether backup is for remote-region or local region
    lifecycle_details str
    Additional information about the current lifecycle state.
    retention_period_in_days int
    Retention period, in days, for long-term backups
    state str
    A filter to return only resources that match the given lifecycle state exactly.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    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.
    acdDisplayName String
    The user-friendly name for the Autonomous Container Database when the Backup was initiated. This name need not be unique. This field captures the name at the time of backup creation, accounting for possible later updates to the display name.
    autonomousContainerDatabaseId String
    The Autonomous Container Database OCID.
    autonomousDatabases List<Property Map>
    List of Autonomous Databases that is part of this Autonomous Container Database Backup
    compartmentId String
    The compartment OCID.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName String
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    freeformTags Map<String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the Autonomous Database backup.
    infrastructureType String
    A filter to return only resources that match the given Infrastructure Type.
    isAutomatic Boolean
    Indicates whether the backup is user-initiated or automatic.
    isRemoteBackup Boolean
    Whether backup is for remote-region or local region
    lifecycleDetails String
    Additional information about the current lifecycle state.
    retentionPeriodInDays Number
    Retention period, in days, for long-term backups
    state String
    A filter to return only resources that match the given lifecycle state exactly.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeEnded String
    The date and time the backup completed.
    timeStarted String
    The date and time the backup started.
    type String
    The type of backup.

    GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemAutonomousDatabase

    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.
    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.
    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.
    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.
    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.
    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.

    GetAutonomousContainerDatabaseBackupsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values 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.
    oci logo
    Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi