1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. getAutonomousDatabaseBackups
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.Database.getAutonomousDatabaseBackups

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

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

    Gets a list of Autonomous Database backups based on either the autonomousDatabaseId or compartmentId specified as a query parameter.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testAutonomousDatabaseBackups = oci.Database.getAutonomousDatabaseBackups({
        autonomousDatabaseId: oci_database_autonomous_database.test_autonomous_database.id,
        compartmentId: _var.compartment_id,
        displayName: _var.autonomous_database_backup_display_name,
        state: _var.autonomous_database_backup_state,
        type: _var.autonomous_database_backup_type,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_autonomous_database_backups = oci.Database.get_autonomous_database_backups(autonomous_database_id=oci_database_autonomous_database["test_autonomous_database"]["id"],
        compartment_id=var["compartment_id"],
        display_name=var["autonomous_database_backup_display_name"],
        state=var["autonomous_database_backup_state"],
        type=var["autonomous_database_backup_type"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Database"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Database.GetAutonomousDatabaseBackups(ctx, &database.GetAutonomousDatabaseBackupsArgs{
    			AutonomousDatabaseId: pulumi.StringRef(oci_database_autonomous_database.Test_autonomous_database.Id),
    			CompartmentId:        pulumi.StringRef(_var.Compartment_id),
    			DisplayName:          pulumi.StringRef(_var.Autonomous_database_backup_display_name),
    			State:                pulumi.StringRef(_var.Autonomous_database_backup_state),
    			Type:                 pulumi.StringRef(_var.Autonomous_database_backup_type),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testAutonomousDatabaseBackups = Oci.Database.GetAutonomousDatabaseBackups.Invoke(new()
        {
            AutonomousDatabaseId = oci_database_autonomous_database.Test_autonomous_database.Id,
            CompartmentId = @var.Compartment_id,
            DisplayName = @var.Autonomous_database_backup_display_name,
            State = @var.Autonomous_database_backup_state,
            Type = @var.Autonomous_database_backup_type,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Database.DatabaseFunctions;
    import com.pulumi.oci.Database.inputs.GetAutonomousDatabaseBackupsArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var testAutonomousDatabaseBackups = DatabaseFunctions.getAutonomousDatabaseBackups(GetAutonomousDatabaseBackupsArgs.builder()
                .autonomousDatabaseId(oci_database_autonomous_database.test_autonomous_database().id())
                .compartmentId(var_.compartment_id())
                .displayName(var_.autonomous_database_backup_display_name())
                .state(var_.autonomous_database_backup_state())
                .type(var_.autonomous_database_backup_type())
                .build());
    
        }
    }
    
    variables:
      testAutonomousDatabaseBackups:
        fn::invoke:
          Function: oci:Database:getAutonomousDatabaseBackups
          Arguments:
            autonomousDatabaseId: ${oci_database_autonomous_database.test_autonomous_database.id}
            compartmentId: ${var.compartment_id}
            displayName: ${var.autonomous_database_backup_display_name}
            state: ${var.autonomous_database_backup_state}
            type: ${var.autonomous_database_backup_type}
    

    Using getAutonomousDatabaseBackups

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getAutonomousDatabaseBackups(args: GetAutonomousDatabaseBackupsArgs, opts?: InvokeOptions): Promise<GetAutonomousDatabaseBackupsResult>
    function getAutonomousDatabaseBackupsOutput(args: GetAutonomousDatabaseBackupsOutputArgs, opts?: InvokeOptions): Output<GetAutonomousDatabaseBackupsResult>
    def get_autonomous_database_backups(autonomous_database_id: Optional[str] = None,
                                        compartment_id: Optional[str] = None,
                                        display_name: Optional[str] = None,
                                        filters: Optional[Sequence[_database.GetAutonomousDatabaseBackupsFilter]] = None,
                                        state: Optional[str] = None,
                                        type: Optional[str] = None,
                                        opts: Optional[InvokeOptions] = None) -> GetAutonomousDatabaseBackupsResult
    def get_autonomous_database_backups_output(autonomous_database_id: Optional[pulumi.Input[str]] = None,
                                        compartment_id: Optional[pulumi.Input[str]] = None,
                                        display_name: Optional[pulumi.Input[str]] = None,
                                        filters: Optional[pulumi.Input[Sequence[pulumi.Input[_database.GetAutonomousDatabaseBackupsFilterArgs]]]] = None,
                                        state: Optional[pulumi.Input[str]] = None,
                                        type: Optional[pulumi.Input[str]] = None,
                                        opts: Optional[InvokeOptions] = None) -> Output[GetAutonomousDatabaseBackupsResult]
    func GetAutonomousDatabaseBackups(ctx *Context, args *GetAutonomousDatabaseBackupsArgs, opts ...InvokeOption) (*GetAutonomousDatabaseBackupsResult, error)
    func GetAutonomousDatabaseBackupsOutput(ctx *Context, args *GetAutonomousDatabaseBackupsOutputArgs, opts ...InvokeOption) GetAutonomousDatabaseBackupsResultOutput

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

    public static class GetAutonomousDatabaseBackups 
    {
        public static Task<GetAutonomousDatabaseBackupsResult> InvokeAsync(GetAutonomousDatabaseBackupsArgs args, InvokeOptions? opts = null)
        public static Output<GetAutonomousDatabaseBackupsResult> Invoke(GetAutonomousDatabaseBackupsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetAutonomousDatabaseBackupsResult> getAutonomousDatabaseBackups(GetAutonomousDatabaseBackupsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Database/getAutonomousDatabaseBackups:getAutonomousDatabaseBackups
      arguments:
        # arguments dictionary

    The following arguments are supported:

    AutonomousDatabaseId string
    The database OCID.
    CompartmentId string
    The compartment OCID.
    DisplayName string
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    Filters List<GetAutonomousDatabaseBackupsFilter>
    State string
    A filter to return only resources that match the given lifecycle state exactly.
    Type string
    A filter to return only backups that matches with the given type of Backup.
    AutonomousDatabaseId string
    The database OCID.
    CompartmentId string
    The compartment OCID.
    DisplayName string
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    Filters []GetAutonomousDatabaseBackupsFilter
    State string
    A filter to return only resources that match the given lifecycle state exactly.
    Type string
    A filter to return only backups that matches with the given type of Backup.
    autonomousDatabaseId String
    The database OCID.
    compartmentId String
    The compartment OCID.
    displayName String
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    filters List<GetAutonomousBackupsFilter>
    state String
    A filter to return only resources that match the given lifecycle state exactly.
    type String
    A filter to return only backups that matches with the given type of Backup.
    autonomousDatabaseId string
    The database OCID.
    compartmentId string
    The compartment OCID.
    displayName string
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    filters GetAutonomousDatabaseBackupsFilter[]
    state string
    A filter to return only resources that match the given lifecycle state exactly.
    type string
    A filter to return only backups that matches with the given type of Backup.
    autonomous_database_id str
    The database OCID.
    compartment_id str
    The compartment OCID.
    display_name str
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    filters Sequence[database.GetAutonomousDatabaseBackupsFilter]
    state str
    A filter to return only resources that match the given lifecycle state exactly.
    type str
    A filter to return only backups that matches with the given type of Backup.
    autonomousDatabaseId String
    The database OCID.
    compartmentId String
    The compartment OCID.
    displayName String
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    filters List<Property Map>
    state String
    A filter to return only resources that match the given lifecycle state exactly.
    type String
    A filter to return only backups that matches with the given type of Backup.

    getAutonomousDatabaseBackups Result

    The following output properties are available:

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

    Supporting Types

    GetAutonomousDatabaseBackupsAutonomousDatabaseBackup

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

    GetAutonomousDatabaseBackupsAutonomousDatabaseBackupBackupDestinationDetail

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

    GetAutonomousDatabaseBackupsFilter

    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 v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi