Oracle Cloud Infrastructure v3.9.0 published on Wednesday, Sep 24, 2025 by Pulumi
oci.Psql.getBackups
This data source provides the list of Backups in Oracle Cloud Infrastructure Psql service.
Returns a list of backups.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testBackups = oci.Psql.getBackups({
    backupId: testBackup.id,
    compartmentId: compartmentId,
    displayName: backupDisplayName,
    id: backupId,
    state: backupState,
    timeEnded: backupTimeEnded,
    timeStarted: backupTimeStarted,
});
import pulumi
import pulumi_oci as oci
test_backups = oci.Psql.get_backups(backup_id=test_backup["id"],
    compartment_id=compartment_id,
    display_name=backup_display_name,
    id=backup_id,
    state=backup_state,
    time_ended=backup_time_ended,
    time_started=backup_time_started)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/psql"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := psql.GetBackups(ctx, &psql.GetBackupsArgs{
			BackupId:      pulumi.StringRef(testBackup.Id),
			CompartmentId: pulumi.StringRef(compartmentId),
			DisplayName:   pulumi.StringRef(backupDisplayName),
			Id:            pulumi.StringRef(backupId),
			State:         pulumi.StringRef(backupState),
			TimeEnded:     pulumi.StringRef(backupTimeEnded),
			TimeStarted:   pulumi.StringRef(backupTimeStarted),
		}, 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 testBackups = Oci.Psql.GetBackups.Invoke(new()
    {
        BackupId = testBackup.Id,
        CompartmentId = compartmentId,
        DisplayName = backupDisplayName,
        Id = backupId,
        State = backupState,
        TimeEnded = backupTimeEnded,
        TimeStarted = backupTimeStarted,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Psql.PsqlFunctions;
import com.pulumi.oci.Psql.inputs.GetBackupsArgs;
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 testBackups = PsqlFunctions.getBackups(GetBackupsArgs.builder()
            .backupId(testBackup.id())
            .compartmentId(compartmentId)
            .displayName(backupDisplayName)
            .id(backupId)
            .state(backupState)
            .timeEnded(backupTimeEnded)
            .timeStarted(backupTimeStarted)
            .build());
    }
}
variables:
  testBackups:
    fn::invoke:
      function: oci:Psql:getBackups
      arguments:
        backupId: ${testBackup.id}
        compartmentId: ${compartmentId}
        displayName: ${backupDisplayName}
        id: ${backupId}
        state: ${backupState}
        timeEnded: ${backupTimeEnded}
        timeStarted: ${backupTimeStarted}
Using getBackups
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 getBackups(args: GetBackupsArgs, opts?: InvokeOptions): Promise<GetBackupsResult>
function getBackupsOutput(args: GetBackupsOutputArgs, opts?: InvokeOptions): Output<GetBackupsResult>def get_backups(backup_id: Optional[str] = None,
                compartment_id: Optional[str] = None,
                display_name: Optional[str] = None,
                filters: Optional[Sequence[GetBackupsFilter]] = None,
                id: Optional[str] = None,
                state: Optional[str] = None,
                time_ended: Optional[str] = None,
                time_started: Optional[str] = None,
                opts: Optional[InvokeOptions] = None) -> GetBackupsResult
def get_backups_output(backup_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[GetBackupsFilterArgs]]]] = None,
                id: Optional[pulumi.Input[str]] = None,
                state: Optional[pulumi.Input[str]] = None,
                time_ended: Optional[pulumi.Input[str]] = None,
                time_started: Optional[pulumi.Input[str]] = None,
                opts: Optional[InvokeOptions] = None) -> Output[GetBackupsResult]func GetBackups(ctx *Context, args *GetBackupsArgs, opts ...InvokeOption) (*GetBackupsResult, error)
func GetBackupsOutput(ctx *Context, args *GetBackupsOutputArgs, opts ...InvokeOption) GetBackupsResultOutput> Note: This function is named GetBackups in the Go SDK.
public static class GetBackups 
{
    public static Task<GetBackupsResult> InvokeAsync(GetBackupsArgs args, InvokeOptions? opts = null)
    public static Output<GetBackupsResult> Invoke(GetBackupsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetBackupsResult> getBackups(GetBackupsArgs args, InvokeOptions options)
public static Output<GetBackupsResult> getBackups(GetBackupsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Psql/getBackups:getBackups
  arguments:
    # arguments dictionaryThe following arguments are supported:
- BackupId string
- A unique identifier for the backup.
- 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<GetBackups Filter> 
- Id string
- A unique identifier for the database system.
- State string
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- TimeEnded string
- The end date for getting backups. An RFC 3339 formatted datetime string.
- TimeStarted string
- The start date for getting backups. An RFC 3339 formatted datetime string.
- BackupId string
- A unique identifier for the backup.
- 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
[]GetBackups Filter 
- Id string
- A unique identifier for the database system.
- State string
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- TimeEnded string
- The end date for getting backups. An RFC 3339 formatted datetime string.
- TimeStarted string
- The start date for getting backups. An RFC 3339 formatted datetime string.
- backupId String
- A unique identifier for the backup.
- 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<GetBackups Filter> 
- id String
- A unique identifier for the database system.
- state String
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- timeEnded String
- The end date for getting backups. An RFC 3339 formatted datetime string.
- timeStarted String
- The start date for getting backups. An RFC 3339 formatted datetime string.
- backupId string
- A unique identifier for the backup.
- 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
GetBackups Filter[] 
- id string
- A unique identifier for the database system.
- state string
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- timeEnded string
- The end date for getting backups. An RFC 3339 formatted datetime string.
- timeStarted string
- The start date for getting backups. An RFC 3339 formatted datetime string.
- backup_id str
- A unique identifier for the backup.
- 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[GetBackups Filter] 
- id str
- A unique identifier for the database system.
- state str
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- time_ended str
- The end date for getting backups. An RFC 3339 formatted datetime string.
- time_started str
- The start date for getting backups. An RFC 3339 formatted datetime string.
- backupId String
- A unique identifier for the backup.
- 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>
- id String
- A unique identifier for the database system.
- state String
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- timeEnded String
- The end date for getting backups. An RFC 3339 formatted datetime string.
- timeStarted String
- The start date for getting backups. An RFC 3339 formatted datetime string.
getBackups Result
The following output properties are available:
- BackupCollections List<GetBackups Backup Collection> 
- The list of backup_collection.
- BackupId string
- The OCID of the backup in the source region
- CompartmentId string
- The OCID of the compartment that contains the backup.
- DisplayName string
- A user-friendly display name for the backup. Avoid entering confidential information.
- Filters
List<GetBackups Filter> 
- Id string
- The OCID of the backup.
- State string
- The current state of the backup.
- TimeEnded string
- TimeStarted string
- BackupCollections []GetBackups Backup Collection 
- The list of backup_collection.
- BackupId string
- The OCID of the backup in the source region
- CompartmentId string
- The OCID of the compartment that contains the backup.
- DisplayName string
- A user-friendly display name for the backup. Avoid entering confidential information.
- Filters
[]GetBackups Filter 
- Id string
- The OCID of the backup.
- State string
- The current state of the backup.
- TimeEnded string
- TimeStarted string
- backupCollections List<GetBackups Backup Collection> 
- The list of backup_collection.
- backupId String
- The OCID of the backup in the source region
- compartmentId String
- The OCID of the compartment that contains the backup.
- displayName String
- A user-friendly display name for the backup. Avoid entering confidential information.
- filters
List<GetBackups Filter> 
- id String
- The OCID of the backup.
- state String
- The current state of the backup.
- timeEnded String
- timeStarted String
- backupCollections GetBackups Backup Collection[] 
- The list of backup_collection.
- backupId string
- The OCID of the backup in the source region
- compartmentId string
- The OCID of the compartment that contains the backup.
- displayName string
- A user-friendly display name for the backup. Avoid entering confidential information.
- filters
GetBackups Filter[] 
- id string
- The OCID of the backup.
- state string
- The current state of the backup.
- timeEnded string
- timeStarted string
- backup_collections Sequence[GetBackups Backup Collection] 
- The list of backup_collection.
- backup_id str
- The OCID of the backup in the source region
- compartment_id str
- The OCID of the compartment that contains the backup.
- display_name str
- A user-friendly display name for the backup. Avoid entering confidential information.
- filters
Sequence[GetBackups Filter] 
- id str
- The OCID of the backup.
- state str
- The current state of the backup.
- time_ended str
- time_started str
- backupCollections List<Property Map>
- The list of backup_collection.
- backupId String
- The OCID of the backup in the source region
- compartmentId String
- The OCID of the compartment that contains the backup.
- displayName String
- A user-friendly display name for the backup. Avoid entering confidential information.
- filters List<Property Map>
- id String
- The OCID of the backup.
- state String
- The current state of the backup.
- timeEnded String
- timeStarted String
Supporting Types
GetBackupsBackupCollection   
GetBackupsBackupCollectionItem    
- BackupSize int
- The size of the backup, in gigabytes.
- CompartmentId string
- The ID of the compartment in which to list resources.
- CopyStatuses List<GetBackups Backup Collection Item Copy Status> 
- List of status for Backup Copy
- DbSystem List<GetDetails Backups Backup Collection Item Db System Detail> 
- Information about the database system associated with a backup.
- DbSystem stringId 
- The OCID of the backup's source database system.
- 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
- A description for the backup.
- DisplayName string
- A filter to return only resources that match the entire display name given.
- 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
- A unique identifier for the database system.
- LastAccepted stringRequest Token 
- lastAcceptedRequestToken from MP.
- LastCompleted stringRequest Token 
- lastCompletedRequestToken from MP.
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- RetentionPeriod int
- Backup retention period in days.
- SourceBackup List<GetDetails Backups Backup Collection Item Source Backup Detail> 
- Information about the Source Backup associated with a backup.
- SourceType string
- Specifies whether the backup was created manually, taken on schedule defined in the a backup policy, or copied from the remote location.
- State string
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the backup request was received, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- TimeCreated stringPrecise 
- The date and time the backup was created. This is the time the actual point-in-time data snapshot was taken, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- TimeUpdated string
- The date and time the backup was updated, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- BackupSize int
- The size of the backup, in gigabytes.
- CompartmentId string
- The ID of the compartment in which to list resources.
- CopyStatuses []GetBackups Backup Collection Item Copy Status 
- List of status for Backup Copy
- DbSystem []GetDetails Backups Backup Collection Item Db System Detail 
- Information about the database system associated with a backup.
- DbSystem stringId 
- The OCID of the backup's source database system.
- 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
- A description for the backup.
- DisplayName string
- A filter to return only resources that match the entire display name given.
- 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
- A unique identifier for the database system.
- LastAccepted stringRequest Token 
- lastAcceptedRequestToken from MP.
- LastCompleted stringRequest Token 
- lastCompletedRequestToken from MP.
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- RetentionPeriod int
- Backup retention period in days.
- SourceBackup []GetDetails Backups Backup Collection Item Source Backup Detail 
- Information about the Source Backup associated with a backup.
- SourceType string
- Specifies whether the backup was created manually, taken on schedule defined in the a backup policy, or copied from the remote location.
- State string
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the backup request was received, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- TimeCreated stringPrecise 
- The date and time the backup was created. This is the time the actual point-in-time data snapshot was taken, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- TimeUpdated string
- The date and time the backup was updated, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- backupSize Integer
- The size of the backup, in gigabytes.
- compartmentId String
- The ID of the compartment in which to list resources.
- copyStatuses List<GetBackups Backup Collection Item Copy Status> 
- List of status for Backup Copy
- dbSystem List<GetDetails Backups Backup Collection Item Db System Detail> 
- Information about the database system associated with a backup.
- dbSystem StringId 
- The OCID of the backup's source database system.
- 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
- A description for the backup.
- displayName String
- A filter to return only resources that match the entire display name given.
- 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
- A unique identifier for the database system.
- lastAccepted StringRequest Token 
- lastAcceptedRequestToken from MP.
- lastCompleted StringRequest Token 
- lastCompletedRequestToken from MP.
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- retentionPeriod Integer
- Backup retention period in days.
- sourceBackup List<GetDetails Backups Backup Collection Item Source Backup Detail> 
- Information about the Source Backup associated with a backup.
- sourceType String
- Specifies whether the backup was created manually, taken on schedule defined in the a backup policy, or copied from the remote location.
- state String
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the backup request was received, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- timeCreated StringPrecise 
- The date and time the backup was created. This is the time the actual point-in-time data snapshot was taken, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- timeUpdated String
- The date and time the backup was updated, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- backupSize number
- The size of the backup, in gigabytes.
- compartmentId string
- The ID of the compartment in which to list resources.
- copyStatuses GetBackups Backup Collection Item Copy Status[] 
- List of status for Backup Copy
- dbSystem GetDetails Backups Backup Collection Item Db System Detail[] 
- Information about the database system associated with a backup.
- dbSystem stringId 
- The OCID of the backup's source database system.
- {[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
- A description for the backup.
- displayName string
- A filter to return only resources that match the entire display name given.
- {[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
- A unique identifier for the database system.
- lastAccepted stringRequest Token 
- lastAcceptedRequestToken from MP.
- lastCompleted stringRequest Token 
- lastCompletedRequestToken from MP.
- lifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- retentionPeriod number
- Backup retention period in days.
- sourceBackup GetDetails Backups Backup Collection Item Source Backup Detail[] 
- Information about the Source Backup associated with a backup.
- sourceType string
- Specifies whether the backup was created manually, taken on schedule defined in the a backup policy, or copied from the remote location.
- state string
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The date and time the backup request was received, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- timeCreated stringPrecise 
- The date and time the backup was created. This is the time the actual point-in-time data snapshot was taken, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- timeUpdated string
- The date and time the backup was updated, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- backup_size int
- The size of the backup, in gigabytes.
- compartment_id str
- The ID of the compartment in which to list resources.
- copy_statuses Sequence[GetBackups Backup Collection Item Copy Status] 
- List of status for Backup Copy
- db_system_ Sequence[Getdetails Backups Backup Collection Item Db System Detail] 
- Information about the database system associated with a backup.
- db_system_ strid 
- The OCID of the backup's source database system.
- 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
- A description for the backup.
- display_name str
- A filter to return only resources that match the entire display name given.
- 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
- A unique identifier for the database system.
- last_accepted_ strrequest_ token 
- lastAcceptedRequestToken from MP.
- last_completed_ strrequest_ token 
- lastCompletedRequestToken from MP.
- lifecycle_details str
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- retention_period int
- Backup retention period in days.
- source_backup_ Sequence[Getdetails Backups Backup Collection Item Source Backup Detail] 
- Information about the Source Backup associated with a backup.
- source_type str
- Specifies whether the backup was created manually, taken on schedule defined in the a backup policy, or copied from the remote location.
- state str
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The date and time the backup request was received, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- time_created_ strprecise 
- The date and time the backup was created. This is the time the actual point-in-time data snapshot was taken, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- time_updated str
- The date and time the backup was updated, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- backupSize Number
- The size of the backup, in gigabytes.
- compartmentId String
- The ID of the compartment in which to list resources.
- copyStatuses List<Property Map>
- List of status for Backup Copy
- dbSystem List<Property Map>Details 
- Information about the database system associated with a backup.
- dbSystem StringId 
- The OCID of the backup's source database system.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- A description for the backup.
- displayName String
- A filter to return only resources that match the entire display name given.
- 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
- A unique identifier for the database system.
- lastAccepted StringRequest Token 
- lastAcceptedRequestToken from MP.
- lastCompleted StringRequest Token 
- lastCompletedRequestToken from MP.
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- retentionPeriod Number
- Backup retention period in days.
- sourceBackup List<Property Map>Details 
- Information about the Source Backup associated with a backup.
- sourceType String
- Specifies whether the backup was created manually, taken on schedule defined in the a backup policy, or copied from the remote location.
- state String
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the backup request was received, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- timeCreated StringPrecise 
- The date and time the backup was created. This is the time the actual point-in-time data snapshot was taken, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- timeUpdated String
- The date and time the backup was updated, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
GetBackupsBackupCollectionItemCopyStatus      
- BackupId string
- A unique identifier for the backup.
- Region string
- Region name of the remote region
- State string
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- StateDetails string
- A message describing the current state of copy in more detail
- BackupId string
- A unique identifier for the backup.
- Region string
- Region name of the remote region
- State string
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- StateDetails string
- A message describing the current state of copy in more detail
- backupId String
- A unique identifier for the backup.
- region String
- Region name of the remote region
- state String
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- stateDetails String
- A message describing the current state of copy in more detail
- backupId string
- A unique identifier for the backup.
- region string
- Region name of the remote region
- state string
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- stateDetails string
- A message describing the current state of copy in more detail
- backup_id str
- A unique identifier for the backup.
- region str
- Region name of the remote region
- state str
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- state_details str
- A message describing the current state of copy in more detail
- backupId String
- A unique identifier for the backup.
- region String
- Region name of the remote region
- state String
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- stateDetails String
- A message describing the current state of copy in more detail
GetBackupsBackupCollectionItemDbSystemDetail       
- ConfigId string
- OCID of the configuration that was applied on the source dbSystem at the time when backup was taken.
- DbVersion string
- The major and minor versions of the database system software.
- SystemType string
- Type of the database system.
- ConfigId string
- OCID of the configuration that was applied on the source dbSystem at the time when backup was taken.
- DbVersion string
- The major and minor versions of the database system software.
- SystemType string
- Type of the database system.
- configId String
- OCID of the configuration that was applied on the source dbSystem at the time when backup was taken.
- dbVersion String
- The major and minor versions of the database system software.
- systemType String
- Type of the database system.
- configId string
- OCID of the configuration that was applied on the source dbSystem at the time when backup was taken.
- dbVersion string
- The major and minor versions of the database system software.
- systemType string
- Type of the database system.
- config_id str
- OCID of the configuration that was applied on the source dbSystem at the time when backup was taken.
- db_version str
- The major and minor versions of the database system software.
- system_type str
- Type of the database system.
- configId String
- OCID of the configuration that was applied on the source dbSystem at the time when backup was taken.
- dbVersion String
- The major and minor versions of the database system software.
- systemType String
- Type of the database system.
GetBackupsBackupCollectionItemSourceBackupDetail       
- SourceBackup stringId 
- Backup ID of the COPY source type.
- SourceRegion string
- Backup Region of the COPY source type.
- SourceBackup stringId 
- Backup ID of the COPY source type.
- SourceRegion string
- Backup Region of the COPY source type.
- sourceBackup StringId 
- Backup ID of the COPY source type.
- sourceRegion String
- Backup Region of the COPY source type.
- sourceBackup stringId 
- Backup ID of the COPY source type.
- sourceRegion string
- Backup Region of the COPY source type.
- source_backup_ strid 
- Backup ID of the COPY source type.
- source_region str
- Backup Region of the COPY source type.
- sourceBackup StringId 
- Backup ID of the COPY source type.
- sourceRegion String
- Backup Region of the COPY source type.
GetBackupsFilter  
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.
