1. Packages
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. Redis
  6. getOciCacheBackups
Viewing docs for Oracle Cloud Infrastructure v4.11.0
published on Friday, May 15, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.11.0
published on Friday, May 15, 2026 by Pulumi

    This data source provides the list of Oci Cache Backups in Oracle Cloud Infrastructure Redis service.

    Returns a list of Oracle Cloud Infrastructure Cache Backups.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testOciCacheBackups = oci.redis.getOciCacheBackups({
        compartmentId: compartmentId,
        displayName: ociCacheBackupDisplayName,
        ociCacheBackupId: testOciCacheBackup.id,
        sourceClusterId: testRedisCluster.id,
        state: ociCacheBackupState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_oci_cache_backups = oci.redis.get_oci_cache_backups(compartment_id=compartment_id,
        display_name=oci_cache_backup_display_name,
        oci_cache_backup_id=test_oci_cache_backup["id"],
        source_cluster_id=test_redis_cluster["id"],
        state=oci_cache_backup_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/redis"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := redis.GetOciCacheBackups(ctx, &redis.GetOciCacheBackupsArgs{
    			CompartmentId:    pulumi.StringRef(compartmentId),
    			DisplayName:      pulumi.StringRef(ociCacheBackupDisplayName),
    			OciCacheBackupId: pulumi.StringRef(testOciCacheBackup.Id),
    			SourceClusterId:  pulumi.StringRef(testRedisCluster.Id),
    			State:            pulumi.StringRef(ociCacheBackupState),
    		}, 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 testOciCacheBackups = Oci.Redis.GetOciCacheBackups.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = ociCacheBackupDisplayName,
            OciCacheBackupId = testOciCacheBackup.Id,
            SourceClusterId = testRedisCluster.Id,
            State = ociCacheBackupState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Redis.RedisFunctions;
    import com.pulumi.oci.Redis.inputs.GetOciCacheBackupsArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 testOciCacheBackups = RedisFunctions.getOciCacheBackups(GetOciCacheBackupsArgs.builder()
                .compartmentId(compartmentId)
                .displayName(ociCacheBackupDisplayName)
                .ociCacheBackupId(testOciCacheBackup.id())
                .sourceClusterId(testRedisCluster.id())
                .state(ociCacheBackupState)
                .build());
    
        }
    }
    
    variables:
      testOciCacheBackups:
        fn::invoke:
          function: oci:Redis:getOciCacheBackups
          arguments:
            compartmentId: ${compartmentId}
            displayName: ${ociCacheBackupDisplayName}
            ociCacheBackupId: ${testOciCacheBackup.id}
            sourceClusterId: ${testRedisCluster.id}
            state: ${ociCacheBackupState}
    
    Example coming soon!
    

    Using getOciCacheBackups

    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 getOciCacheBackups(args: GetOciCacheBackupsArgs, opts?: InvokeOptions): Promise<GetOciCacheBackupsResult>
    function getOciCacheBackupsOutput(args: GetOciCacheBackupsOutputArgs, opts?: InvokeOptions): Output<GetOciCacheBackupsResult>
    def get_oci_cache_backups(compartment_id: Optional[str] = None,
                              display_name: Optional[str] = None,
                              filters: Optional[Sequence[GetOciCacheBackupsFilter]] = None,
                              oci_cache_backup_id: Optional[str] = None,
                              source_cluster_id: Optional[str] = None,
                              state: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetOciCacheBackupsResult
    def get_oci_cache_backups_output(compartment_id: pulumi.Input[Optional[str]] = None,
                              display_name: pulumi.Input[Optional[str]] = None,
                              filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetOciCacheBackupsFilterArgs]]]] = None,
                              oci_cache_backup_id: pulumi.Input[Optional[str]] = None,
                              source_cluster_id: pulumi.Input[Optional[str]] = None,
                              state: pulumi.Input[Optional[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetOciCacheBackupsResult]
    func GetOciCacheBackups(ctx *Context, args *GetOciCacheBackupsArgs, opts ...InvokeOption) (*GetOciCacheBackupsResult, error)
    func GetOciCacheBackupsOutput(ctx *Context, args *GetOciCacheBackupsOutputArgs, opts ...InvokeOption) GetOciCacheBackupsResultOutput

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

    public static class GetOciCacheBackups 
    {
        public static Task<GetOciCacheBackupsResult> InvokeAsync(GetOciCacheBackupsArgs args, InvokeOptions? opts = null)
        public static Output<GetOciCacheBackupsResult> Invoke(GetOciCacheBackupsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetOciCacheBackupsResult> getOciCacheBackups(GetOciCacheBackupsArgs args, InvokeOptions options)
    public static Output<GetOciCacheBackupsResult> getOciCacheBackups(GetOciCacheBackupsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:Redis/getOciCacheBackups:getOciCacheBackups
      arguments:
        # arguments dictionary
    data "oci_redis_getocicachebackups" "name" {
        # arguments
    }

    The following arguments are supported:

    CompartmentId string
    The ID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters List<GetOciCacheBackupsFilter>
    OciCacheBackupId string
    Unique Oracle Cloud Infrastructure Cache Backup identifier.
    SourceClusterId string
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose source cluster ID matches with the given source cluster ID.
    State string
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose lifecycle state matches with the given lifecycle state.
    CompartmentId string
    The ID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters []GetOciCacheBackupsFilter
    OciCacheBackupId string
    Unique Oracle Cloud Infrastructure Cache Backup identifier.
    SourceClusterId string
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose source cluster ID matches with the given source cluster ID.
    State string
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose lifecycle state matches with the given lifecycle state.
    compartment_id string
    The ID of the compartment in which to list resources.
    display_name string
    A filter to return only resources that match the entire display name given.
    filters list(object)
    oci_cache_backup_id string
    Unique Oracle Cloud Infrastructure Cache Backup identifier.
    source_cluster_id string
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose source cluster ID matches with the given source cluster ID.
    state string
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose lifecycle state matches with the given lifecycle state.
    compartmentId String
    The ID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<GetOciCacheBackupsFilter>
    ociCacheBackupId String
    Unique Oracle Cloud Infrastructure Cache Backup identifier.
    sourceClusterId String
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose source cluster ID matches with the given source cluster ID.
    state String
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose lifecycle state matches with the given lifecycle state.
    compartmentId string
    The ID of the compartment in which to list resources.
    displayName string
    A filter to return only resources that match the entire display name given.
    filters GetOciCacheBackupsFilter[]
    ociCacheBackupId string
    Unique Oracle Cloud Infrastructure Cache Backup identifier.
    sourceClusterId string
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose source cluster ID matches with the given source cluster ID.
    state string
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose lifecycle state matches with the given lifecycle state.
    compartment_id str
    The ID of the compartment in which to list resources.
    display_name str
    A filter to return only resources that match the entire display name given.
    filters Sequence[GetOciCacheBackupsFilter]
    oci_cache_backup_id str
    Unique Oracle Cloud Infrastructure Cache Backup identifier.
    source_cluster_id str
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose source cluster ID matches with the given source cluster ID.
    state str
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose lifecycle state matches with the given lifecycle state.
    compartmentId String
    The ID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<Property Map>
    ociCacheBackupId String
    Unique Oracle Cloud Infrastructure Cache Backup identifier.
    sourceClusterId String
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose source cluster ID matches with the given source cluster ID.
    state String
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose lifecycle state matches with the given lifecycle state.

    getOciCacheBackups Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    OciCacheBackupCollections List<GetOciCacheBackupsOciCacheBackupCollection>
    The list of oci_cache_backup_collection.
    CompartmentId string
    Backup compartment identifier
    DisplayName string
    Backup display name
    Filters List<GetOciCacheBackupsFilter>
    OciCacheBackupId string
    SourceClusterId string
    The source Oracle Cloud Infrastructure Cache Cluster OCID.
    State string
    The current state of the backup.
    Id string
    The provider-assigned unique ID for this managed resource.
    OciCacheBackupCollections []GetOciCacheBackupsOciCacheBackupCollection
    The list of oci_cache_backup_collection.
    CompartmentId string
    Backup compartment identifier
    DisplayName string
    Backup display name
    Filters []GetOciCacheBackupsFilter
    OciCacheBackupId string
    SourceClusterId string
    The source Oracle Cloud Infrastructure Cache Cluster OCID.
    State string
    The current state of the backup.
    id string
    The provider-assigned unique ID for this managed resource.
    oci_cache_backup_collections list(object)
    The list of oci_cache_backup_collection.
    compartment_id string
    Backup compartment identifier
    display_name string
    Backup display name
    filters list(object)
    oci_cache_backup_id string
    source_cluster_id string
    The source Oracle Cloud Infrastructure Cache Cluster OCID.
    state string
    The current state of the backup.
    id String
    The provider-assigned unique ID for this managed resource.
    ociCacheBackupCollections List<GetOciCacheBackupsOciCacheBackupCollection>
    The list of oci_cache_backup_collection.
    compartmentId String
    Backup compartment identifier
    displayName String
    Backup display name
    filters List<GetOciCacheBackupsFilter>
    ociCacheBackupId String
    sourceClusterId String
    The source Oracle Cloud Infrastructure Cache Cluster OCID.
    state String
    The current state of the backup.
    id string
    The provider-assigned unique ID for this managed resource.
    ociCacheBackupCollections GetOciCacheBackupsOciCacheBackupCollection[]
    The list of oci_cache_backup_collection.
    compartmentId string
    Backup compartment identifier
    displayName string
    Backup display name
    filters GetOciCacheBackupsFilter[]
    ociCacheBackupId string
    sourceClusterId string
    The source Oracle Cloud Infrastructure Cache Cluster OCID.
    state string
    The current state of the backup.
    id str
    The provider-assigned unique ID for this managed resource.
    oci_cache_backup_collections Sequence[GetOciCacheBackupsOciCacheBackupCollection]
    The list of oci_cache_backup_collection.
    compartment_id str
    Backup compartment identifier
    display_name str
    Backup display name
    filters Sequence[GetOciCacheBackupsFilter]
    oci_cache_backup_id str
    source_cluster_id str
    The source Oracle Cloud Infrastructure Cache Cluster OCID.
    state str
    The current state of the backup.
    id String
    The provider-assigned unique ID for this managed resource.
    ociCacheBackupCollections List<Property Map>
    The list of oci_cache_backup_collection.
    compartmentId String
    Backup compartment identifier
    displayName String
    Backup display name
    filters List<Property Map>
    ociCacheBackupId String
    sourceClusterId String
    The source Oracle Cloud Infrastructure Cache Cluster OCID.
    state String
    The current state of the backup.

    Supporting Types

    GetOciCacheBackupsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name string
    values list(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

    GetOciCacheBackupsOciCacheBackupCollection

    GetOciCacheBackupsOciCacheBackupCollectionItem

    BackupSizeInGbs double
    Backup size in GB.
    BackupSource string
    Specifies whether the backup was created from a replica or primary node
    BackupType string
    Backup Type.
    ClusterMemoryInGbs double
    The amount of memory allocated to the cluster, in gigabytes.
    ClusterMode string
    Specifies whether the cluster is sharded or non-sharded.
    CompartmentId string
    The ID of the compartment in which to list resources.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    Backup description
    DisplayName string
    A filter to return only resources that match the entire display name given.
    ExportToObjectStorageTrigger int
    FreeformTags Dictionary<string, string>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    Unique identifier that is immutable on creation
    RetentionPeriodInDays int
    Backup retention period in days.
    ShardCount int
    The number of shards in a sharded cluster. Only applicable when clusterMode is SHARDED.
    SoftwareVersion string
    The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
    SourceClusterId string
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose source cluster ID matches with the given source cluster ID.
    State string
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose lifecycle state matches with the given lifecycle state.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the backup was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The date and time the backup was updated. An RFC3339 formatted datetime string.
    BackupSizeInGbs float64
    Backup size in GB.
    BackupSource string
    Specifies whether the backup was created from a replica or primary node
    BackupType string
    Backup Type.
    ClusterMemoryInGbs float64
    The amount of memory allocated to the cluster, in gigabytes.
    ClusterMode string
    Specifies whether the cluster is sharded or non-sharded.
    CompartmentId string
    The ID of the compartment in which to list resources.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    Backup description
    DisplayName string
    A filter to return only resources that match the entire display name given.
    ExportToObjectStorageTrigger int
    FreeformTags map[string]string
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    Unique identifier that is immutable on creation
    RetentionPeriodInDays int
    Backup retention period in days.
    ShardCount int
    The number of shards in a sharded cluster. Only applicable when clusterMode is SHARDED.
    SoftwareVersion string
    The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
    SourceClusterId string
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose source cluster ID matches with the given source cluster ID.
    State string
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose lifecycle state matches with the given lifecycle state.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the backup was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The date and time the backup was updated. An RFC3339 formatted datetime string.
    backup_size_in_gbs number
    Backup size in GB.
    backup_source string
    Specifies whether the backup was created from a replica or primary node
    backup_type string
    Backup Type.
    cluster_memory_in_gbs number
    The amount of memory allocated to the cluster, in gigabytes.
    cluster_mode string
    Specifies whether the cluster is sharded or non-sharded.
    compartment_id string
    The ID of the compartment in which to list resources.
    defined_tags map(string)
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    Backup description
    display_name string
    A filter to return only resources that match the entire display name given.
    export_to_object_storage_trigger number
    freeform_tags map(string)
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id string
    Unique identifier that is immutable on creation
    retention_period_in_days number
    Backup retention period in days.
    shard_count number
    The number of shards in a sharded cluster. Only applicable when clusterMode is SHARDED.
    software_version string
    The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
    source_cluster_id string
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose source cluster ID matches with the given source cluster ID.
    state string
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose lifecycle state matches with the given lifecycle state.
    system_tags map(string)
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created string
    The date and time the backup was created. An RFC3339 formatted datetime string.
    time_updated string
    The date and time the backup was updated. An RFC3339 formatted datetime string.
    backupSizeInGbs Double
    Backup size in GB.
    backupSource String
    Specifies whether the backup was created from a replica or primary node
    backupType String
    Backup Type.
    clusterMemoryInGbs Double
    The amount of memory allocated to the cluster, in gigabytes.
    clusterMode String
    Specifies whether the cluster is sharded or non-sharded.
    compartmentId String
    The ID of the compartment in which to list resources.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    Backup description
    displayName String
    A filter to return only resources that match the entire display name given.
    exportToObjectStorageTrigger Integer
    freeformTags Map<String,String>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    Unique identifier that is immutable on creation
    retentionPeriodInDays Integer
    Backup retention period in days.
    shardCount Integer
    The number of shards in a sharded cluster. Only applicable when clusterMode is SHARDED.
    softwareVersion String
    The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
    sourceClusterId String
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose source cluster ID matches with the given source cluster ID.
    state String
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose lifecycle state matches with the given lifecycle state.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the backup was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The date and time the backup was updated. An RFC3339 formatted datetime string.
    backupSizeInGbs number
    Backup size in GB.
    backupSource string
    Specifies whether the backup was created from a replica or primary node
    backupType string
    Backup Type.
    clusterMemoryInGbs number
    The amount of memory allocated to the cluster, in gigabytes.
    clusterMode string
    Specifies whether the cluster is sharded or non-sharded.
    compartmentId string
    The ID of the compartment in which to list resources.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    Backup description
    displayName string
    A filter to return only resources that match the entire display name given.
    exportToObjectStorageTrigger number
    freeformTags {[key: string]: string}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id string
    Unique identifier that is immutable on creation
    retentionPeriodInDays number
    Backup retention period in days.
    shardCount number
    The number of shards in a sharded cluster. Only applicable when clusterMode is SHARDED.
    softwareVersion string
    The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
    sourceClusterId string
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose source cluster ID matches with the given source cluster ID.
    state string
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose lifecycle state matches with the given lifecycle state.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the backup was created. An RFC3339 formatted datetime string.
    timeUpdated string
    The date and time the backup was updated. An RFC3339 formatted datetime string.
    backup_size_in_gbs float
    Backup size in GB.
    backup_source str
    Specifies whether the backup was created from a replica or primary node
    backup_type str
    Backup Type.
    cluster_memory_in_gbs float
    The amount of memory allocated to the cluster, in gigabytes.
    cluster_mode str
    Specifies whether the cluster is sharded or non-sharded.
    compartment_id str
    The ID of the compartment in which to list resources.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str
    Backup description
    display_name str
    A filter to return only resources that match the entire display name given.
    export_to_object_storage_trigger int
    freeform_tags Mapping[str, str]
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id str
    Unique identifier that is immutable on creation
    retention_period_in_days int
    Backup retention period in days.
    shard_count int
    The number of shards in a sharded cluster. Only applicable when clusterMode is SHARDED.
    software_version str
    The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
    source_cluster_id str
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose source cluster ID matches with the given source cluster ID.
    state str
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose lifecycle state matches with the given lifecycle state.
    system_tags Mapping[str, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the backup was created. An RFC3339 formatted datetime string.
    time_updated str
    The date and time the backup was updated. An RFC3339 formatted datetime string.
    backupSizeInGbs Number
    Backup size in GB.
    backupSource String
    Specifies whether the backup was created from a replica or primary node
    backupType String
    Backup Type.
    clusterMemoryInGbs Number
    The amount of memory allocated to the cluster, in gigabytes.
    clusterMode String
    Specifies whether the cluster is sharded or non-sharded.
    compartmentId String
    The ID of the compartment in which to list resources.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    Backup description
    displayName String
    A filter to return only resources that match the entire display name given.
    exportToObjectStorageTrigger Number
    freeformTags Map<String>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    Unique identifier that is immutable on creation
    retentionPeriodInDays Number
    Backup retention period in days.
    shardCount Number
    The number of shards in a sharded cluster. Only applicable when clusterMode is SHARDED.
    softwareVersion String
    The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
    sourceClusterId String
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose source cluster ID matches with the given source cluster ID.
    state String
    A filter to return the Oracle Cloud Infrastructure Cache Backup resources, whose lifecycle state matches with the given lifecycle state.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the backup was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The date and time the backup was updated. An RFC3339 formatted datetime string.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Viewing docs for Oracle Cloud Infrastructure v4.11.0
    published on Friday, May 15, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.