1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. AutonomousDatabaseBackup
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

oci.Database.AutonomousDatabaseBackup

Get Started
oci logo
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

    Example Usage

    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    resources:
      testAutonomousDatabaseBackup:
        type: oci:Database:AutonomousDatabaseBackup
        name: test_autonomous_database_backup
        properties:
          autonomousDatabaseId: ${testAutonomousDatabase.id}
          backupDestinationDetails:
            type: ${autonomousDatabaseBackupBackupDestinationDetailsType}
            backupRetentionPolicyOnTerminate: ${autonomousDatabaseBackupBackupDestinationDetailsBackupRetentionPolicyOnTerminate}
            dbrsPolicyId: ${testPolicy.id}
            id: ${autonomousDatabaseBackupBackupDestinationDetailsId}
            internetProxy: ${autonomousDatabaseBackupBackupDestinationDetailsInternetProxy}
            isRemote: ${autonomousDatabaseBackupBackupDestinationDetailsIsRemote}
            isRetentionLockEnabled: ${autonomousDatabaseBackupBackupDestinationDetailsIsRetentionLockEnabled}
            remoteRegion: ${autonomousDatabaseBackupBackupDestinationDetailsRemoteRegion}
            vpcPassword: ${autonomousDatabaseBackupBackupDestinationDetailsVpcPassword}
            vpcUser: ${autonomousDatabaseBackupBackupDestinationDetailsVpcUser}
          displayName: ${autonomousDatabaseBackupDisplayName}
          isLongTermBackup: ${autonomousDatabaseBackupIsLongTermBackup}
          retentionPeriodInDays: ${autonomousDatabaseBackupRetentionPeriodInDays}
    

    Create AutonomousDatabaseBackup Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AutonomousDatabaseBackup(name: string, args: AutonomousDatabaseBackupArgs, opts?: CustomResourceOptions);
    @overload
    def AutonomousDatabaseBackup(resource_name: str,
                                 args: AutonomousDatabaseBackupArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def AutonomousDatabaseBackup(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 autonomous_database_id: Optional[str] = None,
                                 backup_destination_details: Optional[AutonomousDatabaseBackupBackupDestinationDetailsArgs] = None,
                                 display_name: Optional[str] = None,
                                 is_long_term_backup: Optional[bool] = None,
                                 retention_period_in_days: Optional[int] = None)
    func NewAutonomousDatabaseBackup(ctx *Context, name string, args AutonomousDatabaseBackupArgs, opts ...ResourceOption) (*AutonomousDatabaseBackup, error)
    public AutonomousDatabaseBackup(string name, AutonomousDatabaseBackupArgs args, CustomResourceOptions? opts = null)
    public AutonomousDatabaseBackup(String name, AutonomousDatabaseBackupArgs args)
    public AutonomousDatabaseBackup(String name, AutonomousDatabaseBackupArgs args, CustomResourceOptions options)
    
    type: oci:Database:AutonomousDatabaseBackup
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args AutonomousDatabaseBackupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AutonomousDatabaseBackupArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AutonomousDatabaseBackupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AutonomousDatabaseBackupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AutonomousDatabaseBackupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var autonomousDatabaseBackupResource = new Oci.Database.AutonomousDatabaseBackup("autonomousDatabaseBackupResource", new()
    {
        AutonomousDatabaseId = "string",
        BackupDestinationDetails = new Oci.Database.Inputs.AutonomousDatabaseBackupBackupDestinationDetailsArgs
        {
            Type = "string",
            BackupRetentionPolicyOnTerminate = "string",
            Id = "string",
            InternetProxy = "string",
            IsRemote = false,
            IsRetentionLockEnabled = false,
            RemoteRegion = "string",
            VpcPassword = "string",
            VpcUser = "string",
        },
        DisplayName = "string",
        IsLongTermBackup = false,
        RetentionPeriodInDays = 0,
    });
    
    example, err := database.NewAutonomousDatabaseBackup(ctx, "autonomousDatabaseBackupResource", &database.AutonomousDatabaseBackupArgs{
    	AutonomousDatabaseId: pulumi.String("string"),
    	BackupDestinationDetails: &database.AutonomousDatabaseBackupBackupDestinationDetailsArgs{
    		Type:                             pulumi.String("string"),
    		BackupRetentionPolicyOnTerminate: pulumi.String("string"),
    		Id:                               pulumi.String("string"),
    		InternetProxy:                    pulumi.String("string"),
    		IsRemote:                         pulumi.Bool(false),
    		IsRetentionLockEnabled:           pulumi.Bool(false),
    		RemoteRegion:                     pulumi.String("string"),
    		VpcPassword:                      pulumi.String("string"),
    		VpcUser:                          pulumi.String("string"),
    	},
    	DisplayName:           pulumi.String("string"),
    	IsLongTermBackup:      pulumi.Bool(false),
    	RetentionPeriodInDays: pulumi.Int(0),
    })
    
    var autonomousDatabaseBackupResource = new AutonomousDatabaseBackup("autonomousDatabaseBackupResource", AutonomousDatabaseBackupArgs.builder()
        .autonomousDatabaseId("string")
        .backupDestinationDetails(AutonomousDatabaseBackupBackupDestinationDetailsArgs.builder()
            .type("string")
            .backupRetentionPolicyOnTerminate("string")
            .id("string")
            .internetProxy("string")
            .isRemote(false)
            .isRetentionLockEnabled(false)
            .remoteRegion("string")
            .vpcPassword("string")
            .vpcUser("string")
            .build())
        .displayName("string")
        .isLongTermBackup(false)
        .retentionPeriodInDays(0)
        .build());
    
    autonomous_database_backup_resource = oci.database.AutonomousDatabaseBackup("autonomousDatabaseBackupResource",
        autonomous_database_id="string",
        backup_destination_details={
            "type": "string",
            "backup_retention_policy_on_terminate": "string",
            "id": "string",
            "internet_proxy": "string",
            "is_remote": False,
            "is_retention_lock_enabled": False,
            "remote_region": "string",
            "vpc_password": "string",
            "vpc_user": "string",
        },
        display_name="string",
        is_long_term_backup=False,
        retention_period_in_days=0)
    
    const autonomousDatabaseBackupResource = new oci.database.AutonomousDatabaseBackup("autonomousDatabaseBackupResource", {
        autonomousDatabaseId: "string",
        backupDestinationDetails: {
            type: "string",
            backupRetentionPolicyOnTerminate: "string",
            id: "string",
            internetProxy: "string",
            isRemote: false,
            isRetentionLockEnabled: false,
            remoteRegion: "string",
            vpcPassword: "string",
            vpcUser: "string",
        },
        displayName: "string",
        isLongTermBackup: false,
        retentionPeriodInDays: 0,
    });
    
    type: oci:Database:AutonomousDatabaseBackup
    properties:
        autonomousDatabaseId: string
        backupDestinationDetails:
            backupRetentionPolicyOnTerminate: string
            id: string
            internetProxy: string
            isRemote: false
            isRetentionLockEnabled: false
            remoteRegion: string
            type: string
            vpcPassword: string
            vpcUser: string
        displayName: string
        isLongTermBackup: false
        retentionPeriodInDays: 0
    

    AutonomousDatabaseBackup Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The AutonomousDatabaseBackup resource accepts the following input properties:

    AutonomousDatabaseId string
    The OCID of the Autonomous AI Database backup.
    BackupDestinationDetails AutonomousDatabaseBackupBackupDestinationDetails
    Backup destination details
    DisplayName string
    The user-friendly name for the backup. The name does not have to be unique.
    IsLongTermBackup bool
    Indicates whether the backup is long-term
    RetentionPeriodInDays int

    (Updatable) Retention period, in days, for long-term backups

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    AutonomousDatabaseId string
    The OCID of the Autonomous AI Database backup.
    BackupDestinationDetails AutonomousDatabaseBackupBackupDestinationDetailsArgs
    Backup destination details
    DisplayName string
    The user-friendly name for the backup. The name does not have to be unique.
    IsLongTermBackup bool
    Indicates whether the backup is long-term
    RetentionPeriodInDays int

    (Updatable) Retention period, in days, for long-term backups

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    autonomousDatabaseId String
    The OCID of the Autonomous AI Database backup.
    backupDestinationDetails AutonomousBackupBackupDestinationDetails
    Backup destination details
    displayName String
    The user-friendly name for the backup. The name does not have to be unique.
    isLongTermBackup Boolean
    Indicates whether the backup is long-term
    retentionPeriodInDays Integer

    (Updatable) Retention period, in days, for long-term backups

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    autonomousDatabaseId string
    The OCID of the Autonomous AI Database backup.
    backupDestinationDetails AutonomousDatabaseBackupBackupDestinationDetails
    Backup destination details
    displayName string
    The user-friendly name for the backup. The name does not have to be unique.
    isLongTermBackup boolean
    Indicates whether the backup is long-term
    retentionPeriodInDays number

    (Updatable) Retention period, in days, for long-term backups

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    autonomous_database_id str
    The OCID of the Autonomous AI Database backup.
    backup_destination_details AutonomousDatabaseBackupBackupDestinationDetailsArgs
    Backup destination details
    display_name str
    The user-friendly name for the backup. The name does not have to be unique.
    is_long_term_backup bool
    Indicates whether the backup is long-term
    retention_period_in_days int

    (Updatable) Retention period, in days, for long-term backups

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    autonomousDatabaseId String
    The OCID of the Autonomous AI Database backup.
    backupDestinationDetails Property Map
    Backup destination details
    displayName String
    The user-friendly name for the backup. The name does not have to be unique.
    isLongTermBackup Boolean
    Indicates whether the backup is long-term
    retentionPeriodInDays Number

    (Updatable) Retention period, in days, for long-term backups

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AutonomousDatabaseBackup resource produces the following output properties:

    CompartmentId string
    The OCID of the compartment.
    DatabaseSizeInTbs double
    The size of the database in terabytes at the time the backup was taken.
    DbVersion string
    A valid Oracle AI Database version for Autonomous AI Database.
    Id string
    The provider-assigned unique ID for this managed resource.
    InfrastructureType string
    The infrastructure type this resource belongs to.
    IsAutomatic bool
    Indicates whether the backup is user-initiated or automatic.
    IsRestorable bool
    Indicates whether the backup can be used to restore the associated Autonomous AI Database.
    KeyStoreId string
    The OCID of the key store of Oracle Vault.
    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. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    Region string
    Name of the region in which backup is taken in.
    SizeInTbs double
    The backup size in terrabytes (TB).
    SourceDatabaseDetails List<AutonomousDatabaseBackupSourceDatabaseDetail>
    Source Autonomous Database details.
    State string
    The current state of the backup.
    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
    The type of backup.
    VaultId string
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    CompartmentId string
    The OCID of the compartment.
    DatabaseSizeInTbs float64
    The size of the database in terabytes at the time the backup was taken.
    DbVersion string
    A valid Oracle AI Database version for Autonomous AI Database.
    Id string
    The provider-assigned unique ID for this managed resource.
    InfrastructureType string
    The infrastructure type this resource belongs to.
    IsAutomatic bool
    Indicates whether the backup is user-initiated or automatic.
    IsRestorable bool
    Indicates whether the backup can be used to restore the associated Autonomous AI Database.
    KeyStoreId string
    The OCID of the key store of Oracle Vault.
    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. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    Region string
    Name of the region in which backup is taken in.
    SizeInTbs float64
    The backup size in terrabytes (TB).
    SourceDatabaseDetails []AutonomousDatabaseBackupSourceDatabaseDetail
    Source Autonomous Database details.
    State string
    The current state of the backup.
    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
    The type of backup.
    VaultId string
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    compartmentId String
    The OCID of the compartment.
    databaseSizeInTbs Double
    The size of the database in terabytes at the time the backup was taken.
    dbVersion String
    A valid Oracle AI Database version for Autonomous AI Database.
    id String
    The provider-assigned unique ID for this managed resource.
    infrastructureType String
    The infrastructure type this resource belongs to.
    isAutomatic Boolean
    Indicates whether the backup is user-initiated or automatic.
    isRestorable Boolean
    Indicates whether the backup can be used to restore the associated Autonomous AI Database.
    keyStoreId String
    The OCID of the key store of Oracle Vault.
    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. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    region String
    Name of the region in which backup is taken in.
    sizeInTbs Double
    The backup size in terrabytes (TB).
    sourceDatabaseDetails List<AutonomousBackupSourceDetail>
    Source Autonomous Database details.
    state String
    The current state of the backup.
    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
    The type of backup.
    vaultId String
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    compartmentId string
    The OCID of the compartment.
    databaseSizeInTbs number
    The size of the database in terabytes at the time the backup was taken.
    dbVersion string
    A valid Oracle AI Database version for Autonomous AI Database.
    id string
    The provider-assigned unique ID for this managed resource.
    infrastructureType string
    The infrastructure type this resource belongs to.
    isAutomatic boolean
    Indicates whether the backup is user-initiated or automatic.
    isRestorable boolean
    Indicates whether the backup can be used to restore the associated Autonomous AI Database.
    keyStoreId string
    The OCID of the key store of Oracle Vault.
    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. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    region string
    Name of the region in which backup is taken in.
    sizeInTbs number
    The backup size in terrabytes (TB).
    sourceDatabaseDetails AutonomousDatabaseBackupSourceDatabaseDetail[]
    Source Autonomous Database details.
    state string
    The current state of the backup.
    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
    The type of backup.
    vaultId string
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    compartment_id str
    The OCID of the compartment.
    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 AI Database version for Autonomous AI Database.
    id str
    The provider-assigned unique ID for this managed resource.
    infrastructure_type str
    The infrastructure type this resource belongs to.
    is_automatic bool
    Indicates whether the backup is user-initiated or automatic.
    is_restorable bool
    Indicates whether the backup can be used to restore the associated Autonomous AI Database.
    key_store_id str
    The OCID of the key store of Oracle Vault.
    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. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.
    lifecycle_details str
    Additional information about the current lifecycle state.
    region str
    Name of the region in which backup is taken in.
    size_in_tbs float
    The backup size in terrabytes (TB).
    source_database_details Sequence[AutonomousDatabaseBackupSourceDatabaseDetail]
    Source Autonomous Database details.
    state str
    The current state of the backup.
    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
    The type of backup.
    vault_id str
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    compartmentId String
    The OCID of the compartment.
    databaseSizeInTbs Number
    The size of the database in terabytes at the time the backup was taken.
    dbVersion String
    A valid Oracle AI Database version for Autonomous AI Database.
    id String
    The provider-assigned unique ID for this managed resource.
    infrastructureType String
    The infrastructure type this resource belongs to.
    isAutomatic Boolean
    Indicates whether the backup is user-initiated or automatic.
    isRestorable Boolean
    Indicates whether the backup can be used to restore the associated Autonomous AI Database.
    keyStoreId String
    The OCID of the key store of Oracle Vault.
    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. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    region String
    Name of the region in which backup is taken in.
    sizeInTbs Number
    The backup size in terrabytes (TB).
    sourceDatabaseDetails List<Property Map>
    Source Autonomous Database details.
    state String
    The current state of the backup.
    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
    The type of backup.
    vaultId String
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.

    Look up Existing AutonomousDatabaseBackup Resource

    Get an existing AutonomousDatabaseBackup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AutonomousDatabaseBackupState, opts?: CustomResourceOptions): AutonomousDatabaseBackup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            autonomous_database_id: Optional[str] = None,
            backup_destination_details: Optional[AutonomousDatabaseBackupBackupDestinationDetailsArgs] = None,
            compartment_id: Optional[str] = None,
            database_size_in_tbs: Optional[float] = None,
            db_version: Optional[str] = None,
            display_name: Optional[str] = None,
            infrastructure_type: Optional[str] = None,
            is_automatic: Optional[bool] = None,
            is_long_term_backup: Optional[bool] = None,
            is_restorable: Optional[bool] = None,
            key_store_id: Optional[str] = None,
            key_store_wallet_name: Optional[str] = None,
            kms_key_id: Optional[str] = None,
            kms_key_version_id: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            region: Optional[str] = None,
            retention_period_in_days: Optional[int] = None,
            size_in_tbs: Optional[float] = None,
            source_database_details: Optional[Sequence[AutonomousDatabaseBackupSourceDatabaseDetailArgs]] = None,
            state: Optional[str] = None,
            time_available_till: Optional[str] = None,
            time_ended: Optional[str] = None,
            time_started: Optional[str] = None,
            type: Optional[str] = None,
            vault_id: Optional[str] = None) -> AutonomousDatabaseBackup
    func GetAutonomousDatabaseBackup(ctx *Context, name string, id IDInput, state *AutonomousDatabaseBackupState, opts ...ResourceOption) (*AutonomousDatabaseBackup, error)
    public static AutonomousDatabaseBackup Get(string name, Input<string> id, AutonomousDatabaseBackupState? state, CustomResourceOptions? opts = null)
    public static AutonomousDatabaseBackup get(String name, Output<String> id, AutonomousDatabaseBackupState state, CustomResourceOptions options)
    resources:  _:    type: oci:Database:AutonomousDatabaseBackup    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AutonomousDatabaseId string
    The OCID of the Autonomous AI Database backup.
    BackupDestinationDetails AutonomousDatabaseBackupBackupDestinationDetails
    Backup destination details
    CompartmentId string
    The OCID of the compartment.
    DatabaseSizeInTbs double
    The size of the database in terabytes at the time the backup was taken.
    DbVersion string
    A valid Oracle AI Database version for Autonomous AI Database.
    DisplayName string
    The user-friendly name for the backup. The name does not have to be unique.
    InfrastructureType string
    The infrastructure type this resource belongs to.
    IsAutomatic bool
    Indicates whether the backup is user-initiated or automatic.
    IsLongTermBackup bool
    Indicates whether the backup is long-term
    IsRestorable bool
    Indicates whether the backup can be used to restore the associated Autonomous AI Database.
    KeyStoreId string
    The OCID of the key store of Oracle Vault.
    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. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    Region string
    Name of the region in which backup is taken in.
    RetentionPeriodInDays int

    (Updatable) Retention period, in days, for long-term backups

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    SizeInTbs double
    The backup size in terrabytes (TB).
    SourceDatabaseDetails List<AutonomousDatabaseBackupSourceDatabaseDetail>
    Source Autonomous Database details.
    State string
    The current state of the backup.
    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
    The type of backup.
    VaultId string
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    AutonomousDatabaseId string
    The OCID of the Autonomous AI Database backup.
    BackupDestinationDetails AutonomousDatabaseBackupBackupDestinationDetailsArgs
    Backup destination details
    CompartmentId string
    The OCID of the compartment.
    DatabaseSizeInTbs float64
    The size of the database in terabytes at the time the backup was taken.
    DbVersion string
    A valid Oracle AI Database version for Autonomous AI Database.
    DisplayName string
    The user-friendly name for the backup. The name does not have to be unique.
    InfrastructureType string
    The infrastructure type this resource belongs to.
    IsAutomatic bool
    Indicates whether the backup is user-initiated or automatic.
    IsLongTermBackup bool
    Indicates whether the backup is long-term
    IsRestorable bool
    Indicates whether the backup can be used to restore the associated Autonomous AI Database.
    KeyStoreId string
    The OCID of the key store of Oracle Vault.
    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. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    Region string
    Name of the region in which backup is taken in.
    RetentionPeriodInDays int

    (Updatable) Retention period, in days, for long-term backups

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    SizeInTbs float64
    The backup size in terrabytes (TB).
    SourceDatabaseDetails []AutonomousDatabaseBackupSourceDatabaseDetailArgs
    Source Autonomous Database details.
    State string
    The current state of the backup.
    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
    The type of backup.
    VaultId string
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    autonomousDatabaseId String
    The OCID of the Autonomous AI Database backup.
    backupDestinationDetails AutonomousBackupBackupDestinationDetails
    Backup destination details
    compartmentId String
    The OCID of the compartment.
    databaseSizeInTbs Double
    The size of the database in terabytes at the time the backup was taken.
    dbVersion String
    A valid Oracle AI Database version for Autonomous AI Database.
    displayName String
    The user-friendly name for the backup. The name does not have to be unique.
    infrastructureType String
    The infrastructure type this resource belongs to.
    isAutomatic Boolean
    Indicates whether the backup is user-initiated or automatic.
    isLongTermBackup Boolean
    Indicates whether the backup is long-term
    isRestorable Boolean
    Indicates whether the backup can be used to restore the associated Autonomous AI Database.
    keyStoreId String
    The OCID of the key store of Oracle Vault.
    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. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    region String
    Name of the region in which backup is taken in.
    retentionPeriodInDays Integer

    (Updatable) Retention period, in days, for long-term backups

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    sizeInTbs Double
    The backup size in terrabytes (TB).
    sourceDatabaseDetails List<AutonomousBackupSourceDetail>
    Source Autonomous Database details.
    state String
    The current state of the backup.
    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
    The type of backup.
    vaultId String
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    autonomousDatabaseId string
    The OCID of the Autonomous AI Database backup.
    backupDestinationDetails AutonomousDatabaseBackupBackupDestinationDetails
    Backup destination details
    compartmentId string
    The OCID of the compartment.
    databaseSizeInTbs number
    The size of the database in terabytes at the time the backup was taken.
    dbVersion string
    A valid Oracle AI Database version for Autonomous AI Database.
    displayName string
    The user-friendly name for the backup. The name does not have to be unique.
    infrastructureType string
    The infrastructure type this resource belongs to.
    isAutomatic boolean
    Indicates whether the backup is user-initiated or automatic.
    isLongTermBackup boolean
    Indicates whether the backup is long-term
    isRestorable boolean
    Indicates whether the backup can be used to restore the associated Autonomous AI Database.
    keyStoreId string
    The OCID of the key store of Oracle Vault.
    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. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    region string
    Name of the region in which backup is taken in.
    retentionPeriodInDays number

    (Updatable) Retention period, in days, for long-term backups

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    sizeInTbs number
    The backup size in terrabytes (TB).
    sourceDatabaseDetails AutonomousDatabaseBackupSourceDatabaseDetail[]
    Source Autonomous Database details.
    state string
    The current state of the backup.
    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
    The type of backup.
    vaultId string
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    autonomous_database_id str
    The OCID of the Autonomous AI Database backup.
    backup_destination_details AutonomousDatabaseBackupBackupDestinationDetailsArgs
    Backup destination details
    compartment_id str
    The OCID of the compartment.
    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 AI Database version for Autonomous AI Database.
    display_name str
    The user-friendly name for the backup. The name does not have to be unique.
    infrastructure_type str
    The infrastructure type this resource belongs to.
    is_automatic bool
    Indicates whether the backup is user-initiated or automatic.
    is_long_term_backup bool
    Indicates whether the backup is long-term
    is_restorable bool
    Indicates whether the backup can be used to restore the associated Autonomous AI Database.
    key_store_id str
    The OCID of the key store of Oracle Vault.
    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. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.
    lifecycle_details str
    Additional information about the current lifecycle state.
    region str
    Name of the region in which backup is taken in.
    retention_period_in_days int

    (Updatable) Retention period, in days, for long-term backups

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    size_in_tbs float
    The backup size in terrabytes (TB).
    source_database_details Sequence[AutonomousDatabaseBackupSourceDatabaseDetailArgs]
    Source Autonomous Database details.
    state str
    The current state of the backup.
    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
    The type of backup.
    vault_id str
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    autonomousDatabaseId String
    The OCID of the Autonomous AI Database backup.
    backupDestinationDetails Property Map
    Backup destination details
    compartmentId String
    The OCID of the compartment.
    databaseSizeInTbs Number
    The size of the database in terabytes at the time the backup was taken.
    dbVersion String
    A valid Oracle AI Database version for Autonomous AI Database.
    displayName String
    The user-friendly name for the backup. The name does not have to be unique.
    infrastructureType String
    The infrastructure type this resource belongs to.
    isAutomatic Boolean
    Indicates whether the backup is user-initiated or automatic.
    isLongTermBackup Boolean
    Indicates whether the backup is long-term
    isRestorable Boolean
    Indicates whether the backup can be used to restore the associated Autonomous AI Database.
    keyStoreId String
    The OCID of the key store of Oracle Vault.
    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. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    region String
    Name of the region in which backup is taken in.
    retentionPeriodInDays Number

    (Updatable) Retention period, in days, for long-term backups

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    sizeInTbs Number
    The backup size in terrabytes (TB).
    sourceDatabaseDetails List<Property Map>
    Source Autonomous Database details.
    state String
    The current state of the backup.
    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
    The type of backup.
    vaultId String
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.

    Supporting Types

    AutonomousDatabaseBackupBackupDestinationDetails, AutonomousDatabaseBackupBackupDestinationDetailsArgs

    Type string
    Type of the database backup destination.
    BackupRetentionPolicyOnTerminate string
    Defines the automatic and manual backup retention policy for the Autonomous Database termination. The retention policy set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination. Options are 'RETAIN_PER_RETENTION_WINDOW' or 'RETAIN_FOR_72_HOURS'.The default value is 'RETAIN_FOR_72_HOURS'.
    Id string
    The OCID of the backup destination.
    InternetProxy string
    Proxy URL to connect to object store.
    IsRemote bool
    Indicates whether the backup destination is cross-region or local.
    IsRetentionLockEnabled bool
    Indicates if backup retention is locked for all the database backups in the Autonomous Container Database (ACD). The retention window cannot be decreased if the backup retention lock is enabled. Once applied on the Autonomous Container Database, the retention lock cannot be removed, or the retention period cannot be decreased after a 14-day period. If the backup is a Long Term Backup and retention lock is enabled, the backup cannot be deleted and must expire. The retention lock set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination.
    RemoteRegion string
    The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see Regions and Availability Domains.
    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.
    Type string
    Type of the database backup destination.
    BackupRetentionPolicyOnTerminate string
    Defines the automatic and manual backup retention policy for the Autonomous Database termination. The retention policy set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination. Options are 'RETAIN_PER_RETENTION_WINDOW' or 'RETAIN_FOR_72_HOURS'.The default value is 'RETAIN_FOR_72_HOURS'.
    Id string
    The OCID of the backup destination.
    InternetProxy string
    Proxy URL to connect to object store.
    IsRemote bool
    Indicates whether the backup destination is cross-region or local.
    IsRetentionLockEnabled bool
    Indicates if backup retention is locked for all the database backups in the Autonomous Container Database (ACD). The retention window cannot be decreased if the backup retention lock is enabled. Once applied on the Autonomous Container Database, the retention lock cannot be removed, or the retention period cannot be decreased after a 14-day period. If the backup is a Long Term Backup and retention lock is enabled, the backup cannot be deleted and must expire. The retention lock set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination.
    RemoteRegion string
    The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see Regions and Availability Domains.
    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.
    type String
    Type of the database backup destination.
    backupRetentionPolicyOnTerminate String
    Defines the automatic and manual backup retention policy for the Autonomous Database termination. The retention policy set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination. Options are 'RETAIN_PER_RETENTION_WINDOW' or 'RETAIN_FOR_72_HOURS'.The default value is 'RETAIN_FOR_72_HOURS'.
    id String
    The OCID of the backup destination.
    internetProxy String
    Proxy URL to connect to object store.
    isRemote Boolean
    Indicates whether the backup destination is cross-region or local.
    isRetentionLockEnabled Boolean
    Indicates if backup retention is locked for all the database backups in the Autonomous Container Database (ACD). The retention window cannot be decreased if the backup retention lock is enabled. Once applied on the Autonomous Container Database, the retention lock cannot be removed, or the retention period cannot be decreased after a 14-day period. If the backup is a Long Term Backup and retention lock is enabled, the backup cannot be deleted and must expire. The retention lock set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination.
    remoteRegion String
    The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see Regions and Availability Domains.
    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.
    type string
    Type of the database backup destination.
    backupRetentionPolicyOnTerminate string
    Defines the automatic and manual backup retention policy for the Autonomous Database termination. The retention policy set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination. Options are 'RETAIN_PER_RETENTION_WINDOW' or 'RETAIN_FOR_72_HOURS'.The default value is 'RETAIN_FOR_72_HOURS'.
    id string
    The OCID of the backup destination.
    internetProxy string
    Proxy URL to connect to object store.
    isRemote boolean
    Indicates whether the backup destination is cross-region or local.
    isRetentionLockEnabled boolean
    Indicates if backup retention is locked for all the database backups in the Autonomous Container Database (ACD). The retention window cannot be decreased if the backup retention lock is enabled. Once applied on the Autonomous Container Database, the retention lock cannot be removed, or the retention period cannot be decreased after a 14-day period. If the backup is a Long Term Backup and retention lock is enabled, the backup cannot be deleted and must expire. The retention lock set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination.
    remoteRegion string
    The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see Regions and Availability Domains.
    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.
    type str
    Type of the database backup destination.
    backup_retention_policy_on_terminate str
    Defines the automatic and manual backup retention policy for the Autonomous Database termination. The retention policy set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination. Options are 'RETAIN_PER_RETENTION_WINDOW' or 'RETAIN_FOR_72_HOURS'.The default value is 'RETAIN_FOR_72_HOURS'.
    id str
    The OCID of the backup destination.
    internet_proxy str
    Proxy URL to connect to object store.
    is_remote bool
    Indicates whether the backup destination is cross-region or local.
    is_retention_lock_enabled bool
    Indicates if backup retention is locked for all the database backups in the Autonomous Container Database (ACD). The retention window cannot be decreased if the backup retention lock is enabled. Once applied on the Autonomous Container Database, the retention lock cannot be removed, or the retention period cannot be decreased after a 14-day period. If the backup is a Long Term Backup and retention lock is enabled, the backup cannot be deleted and must expire. The retention lock set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination.
    remote_region str
    The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see Regions and Availability Domains.
    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.
    type String
    Type of the database backup destination.
    backupRetentionPolicyOnTerminate String
    Defines the automatic and manual backup retention policy for the Autonomous Database termination. The retention policy set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination. Options are 'RETAIN_PER_RETENTION_WINDOW' or 'RETAIN_FOR_72_HOURS'.The default value is 'RETAIN_FOR_72_HOURS'.
    id String
    The OCID of the backup destination.
    internetProxy String
    Proxy URL to connect to object store.
    isRemote Boolean
    Indicates whether the backup destination is cross-region or local.
    isRetentionLockEnabled Boolean
    Indicates if backup retention is locked for all the database backups in the Autonomous Container Database (ACD). The retention window cannot be decreased if the backup retention lock is enabled. Once applied on the Autonomous Container Database, the retention lock cannot be removed, or the retention period cannot be decreased after a 14-day period. If the backup is a Long Term Backup and retention lock is enabled, the backup cannot be deleted and must expire. The retention lock set on the Autonomous Container Database is not applicable for cross region remote backups and backups hosted on recovery Appliance backup destination.
    remoteRegion String
    The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see Regions and Availability Domains.
    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.

    AutonomousDatabaseBackupSourceDatabaseDetail, AutonomousDatabaseBackupSourceDatabaseDetailArgs

    AutonomousContainerDatabaseCustomerContacts List<AutonomousDatabaseBackupSourceDatabaseDetailAutonomousContainerDatabaseCustomerContact>
    Customer Contacts for the Autonomous Container Database. Setting this to an empty list removes all customer contacts.
    AutonomousContainerDatabaseDisplayName string
    The user-provided name for the Autonomous Container Database.
    AutonomousContainerDatabaseDstFileVersion string
    DST Time-Zone File version of the Autonomous Container Database.
    AutonomousContainerDatabaseName string
    Autonomous Container Database name.
    AutonomousDatabaseCustomerContacts List<AutonomousDatabaseBackupSourceDatabaseDetailAutonomousDatabaseCustomerContact>
    Customer Contacts for the Autonomous database.
    AutonomousDatabaseName string
    Autonomous Database's name.
    AutonomousVmClusterDisplayName string
    Autonomous VM cluster's user-friendly name.
    DbWorkload string
    The Autonomous Database workload type. The following values are valid:

    • OLTP - indicates an Autonomous Transaction Processing database
    • DW - indicates an Autonomous Data Warehouse database
    • AJD - indicates an Autonomous JSON Database
    • APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
    AutonomousContainerDatabaseCustomerContacts []AutonomousDatabaseBackupSourceDatabaseDetailAutonomousContainerDatabaseCustomerContact
    Customer Contacts for the Autonomous Container Database. Setting this to an empty list removes all customer contacts.
    AutonomousContainerDatabaseDisplayName string
    The user-provided name for the Autonomous Container Database.
    AutonomousContainerDatabaseDstFileVersion string
    DST Time-Zone File version of the Autonomous Container Database.
    AutonomousContainerDatabaseName string
    Autonomous Container Database name.
    AutonomousDatabaseCustomerContacts []AutonomousDatabaseBackupSourceDatabaseDetailAutonomousDatabaseCustomerContact
    Customer Contacts for the Autonomous database.
    AutonomousDatabaseName string
    Autonomous Database's name.
    AutonomousVmClusterDisplayName string
    Autonomous VM cluster's user-friendly name.
    DbWorkload string
    The Autonomous Database workload type. The following values are valid:

    • OLTP - indicates an Autonomous Transaction Processing database
    • DW - indicates an Autonomous Data Warehouse database
    • AJD - indicates an Autonomous JSON Database
    • APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
    autonomousContainerDatabaseCustomerContacts List<AutonomousBackupSourceDetailAutonomousContainerCustomerContact>
    Customer Contacts for the Autonomous Container Database. Setting this to an empty list removes all customer contacts.
    autonomousContainerDatabaseDisplayName String
    The user-provided name for the Autonomous Container Database.
    autonomousContainerDatabaseDstFileVersion String
    DST Time-Zone File version of the Autonomous Container Database.
    autonomousContainerDatabaseName String
    Autonomous Container Database name.
    autonomousDatabaseCustomerContacts List<AutonomousBackupSourceDetailAutonomousCustomerContact>
    Customer Contacts for the Autonomous database.
    autonomousDatabaseName String
    Autonomous Database's name.
    autonomousVmClusterDisplayName String
    Autonomous VM cluster's user-friendly name.
    dbWorkload String
    The Autonomous Database workload type. The following values are valid:

    • OLTP - indicates an Autonomous Transaction Processing database
    • DW - indicates an Autonomous Data Warehouse database
    • AJD - indicates an Autonomous JSON Database
    • APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
    autonomousContainerDatabaseCustomerContacts AutonomousDatabaseBackupSourceDatabaseDetailAutonomousContainerDatabaseCustomerContact[]
    Customer Contacts for the Autonomous Container Database. Setting this to an empty list removes all customer contacts.
    autonomousContainerDatabaseDisplayName string
    The user-provided name for the Autonomous Container Database.
    autonomousContainerDatabaseDstFileVersion string
    DST Time-Zone File version of the Autonomous Container Database.
    autonomousContainerDatabaseName string
    Autonomous Container Database name.
    autonomousDatabaseCustomerContacts AutonomousDatabaseBackupSourceDatabaseDetailAutonomousDatabaseCustomerContact[]
    Customer Contacts for the Autonomous database.
    autonomousDatabaseName string
    Autonomous Database's name.
    autonomousVmClusterDisplayName string
    Autonomous VM cluster's user-friendly name.
    dbWorkload string
    The Autonomous Database workload type. The following values are valid:

    • OLTP - indicates an Autonomous Transaction Processing database
    • DW - indicates an Autonomous Data Warehouse database
    • AJD - indicates an Autonomous JSON Database
    • APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
    autonomous_container_database_customer_contacts Sequence[AutonomousDatabaseBackupSourceDatabaseDetailAutonomousContainerDatabaseCustomerContact]
    Customer Contacts for the Autonomous Container Database. Setting this to an empty list removes all customer contacts.
    autonomous_container_database_display_name str
    The user-provided name for the Autonomous Container Database.
    autonomous_container_database_dst_file_version str
    DST Time-Zone File version of the Autonomous Container Database.
    autonomous_container_database_name str
    Autonomous Container Database name.
    autonomous_database_customer_contacts Sequence[AutonomousDatabaseBackupSourceDatabaseDetailAutonomousDatabaseCustomerContact]
    Customer Contacts for the Autonomous database.
    autonomous_database_name str
    Autonomous Database's name.
    autonomous_vm_cluster_display_name str
    Autonomous VM cluster's user-friendly name.
    db_workload str
    The Autonomous Database workload type. The following values are valid:

    • OLTP - indicates an Autonomous Transaction Processing database
    • DW - indicates an Autonomous Data Warehouse database
    • AJD - indicates an Autonomous JSON Database
    • APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
    autonomousContainerDatabaseCustomerContacts List<Property Map>
    Customer Contacts for the Autonomous Container Database. Setting this to an empty list removes all customer contacts.
    autonomousContainerDatabaseDisplayName String
    The user-provided name for the Autonomous Container Database.
    autonomousContainerDatabaseDstFileVersion String
    DST Time-Zone File version of the Autonomous Container Database.
    autonomousContainerDatabaseName String
    Autonomous Container Database name.
    autonomousDatabaseCustomerContacts List<Property Map>
    Customer Contacts for the Autonomous database.
    autonomousDatabaseName String
    Autonomous Database's name.
    autonomousVmClusterDisplayName String
    Autonomous VM cluster's user-friendly name.
    dbWorkload String
    The Autonomous Database workload type. The following values are valid:

    • OLTP - indicates an Autonomous Transaction Processing database
    • DW - indicates an Autonomous Data Warehouse database
    • AJD - indicates an Autonomous JSON Database
    • APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.

    AutonomousDatabaseBackupSourceDatabaseDetailAutonomousContainerDatabaseCustomerContact, AutonomousDatabaseBackupSourceDatabaseDetailAutonomousContainerDatabaseCustomerContactArgs

    Email string
    The email address used by Oracle to send notifications regarding databases and infrastructure.
    Email string
    The email address used by Oracle to send notifications regarding databases and infrastructure.
    email String
    The email address used by Oracle to send notifications regarding databases and infrastructure.
    email string
    The email address used by Oracle to send notifications regarding databases and infrastructure.
    email str
    The email address used by Oracle to send notifications regarding databases and infrastructure.
    email String
    The email address used by Oracle to send notifications regarding databases and infrastructure.

    AutonomousDatabaseBackupSourceDatabaseDetailAutonomousDatabaseCustomerContact, AutonomousDatabaseBackupSourceDatabaseDetailAutonomousDatabaseCustomerContactArgs

    Email string
    The email address used by Oracle to send notifications regarding databases and infrastructure.
    Email string
    The email address used by Oracle to send notifications regarding databases and infrastructure.
    email String
    The email address used by Oracle to send notifications regarding databases and infrastructure.
    email string
    The email address used by Oracle to send notifications regarding databases and infrastructure.
    email str
    The email address used by Oracle to send notifications regarding databases and infrastructure.
    email String
    The email address used by Oracle to send notifications regarding databases and infrastructure.

    Import

    AutonomousDatabaseBackups can be imported using the id, e.g.

    $ pulumi import oci:Database/autonomousDatabaseBackup:AutonomousDatabaseBackup test_autonomous_database_backup "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate