Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi
oci.Database.getAutonomousContainerDatabaseBackups
Explore with Pulumi AI
This data source provides the list of Autonomous Container Database Backups in Oracle Cloud Infrastructure Database service.
Gets a list of Autonomous Container Database backups by using either the ‘autonomousDatabaseId’ or ‘compartmentId’ as your query parameter.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAutonomousContainerDatabaseBackups = oci.Database.getAutonomousContainerDatabaseBackups({
autonomousContainerDatabaseId: testAutonomousContainerDatabase.id,
compartmentId: compartmentId,
displayName: autonomousContainerDatabaseBackupDisplayName,
infrastructureType: autonomousContainerDatabaseBackupInfrastructureType,
isRemote: autonomousContainerDatabaseBackupIsRemote,
state: autonomousContainerDatabaseBackupState,
});
import pulumi
import pulumi_oci as oci
test_autonomous_container_database_backups = oci.Database.get_autonomous_container_database_backups(autonomous_container_database_id=test_autonomous_container_database["id"],
compartment_id=compartment_id,
display_name=autonomous_container_database_backup_display_name,
infrastructure_type=autonomous_container_database_backup_infrastructure_type,
is_remote=autonomous_container_database_backup_is_remote,
state=autonomous_container_database_backup_state)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/database"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := database.GetAutonomousContainerDatabaseBackups(ctx, &database.GetAutonomousContainerDatabaseBackupsArgs{
AutonomousContainerDatabaseId: pulumi.StringRef(testAutonomousContainerDatabase.Id),
CompartmentId: pulumi.StringRef(compartmentId),
DisplayName: pulumi.StringRef(autonomousContainerDatabaseBackupDisplayName),
InfrastructureType: pulumi.StringRef(autonomousContainerDatabaseBackupInfrastructureType),
IsRemote: pulumi.BoolRef(autonomousContainerDatabaseBackupIsRemote),
State: pulumi.StringRef(autonomousContainerDatabaseBackupState),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testAutonomousContainerDatabaseBackups = Oci.Database.GetAutonomousContainerDatabaseBackups.Invoke(new()
{
AutonomousContainerDatabaseId = testAutonomousContainerDatabase.Id,
CompartmentId = compartmentId,
DisplayName = autonomousContainerDatabaseBackupDisplayName,
InfrastructureType = autonomousContainerDatabaseBackupInfrastructureType,
IsRemote = autonomousContainerDatabaseBackupIsRemote,
State = autonomousContainerDatabaseBackupState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.DatabaseFunctions;
import com.pulumi.oci.Database.inputs.GetAutonomousContainerDatabaseBackupsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var testAutonomousContainerDatabaseBackups = DatabaseFunctions.getAutonomousContainerDatabaseBackups(GetAutonomousContainerDatabaseBackupsArgs.builder()
.autonomousContainerDatabaseId(testAutonomousContainerDatabase.id())
.compartmentId(compartmentId)
.displayName(autonomousContainerDatabaseBackupDisplayName)
.infrastructureType(autonomousContainerDatabaseBackupInfrastructureType)
.isRemote(autonomousContainerDatabaseBackupIsRemote)
.state(autonomousContainerDatabaseBackupState)
.build());
}
}
variables:
testAutonomousContainerDatabaseBackups:
fn::invoke:
function: oci:Database:getAutonomousContainerDatabaseBackups
arguments:
autonomousContainerDatabaseId: ${testAutonomousContainerDatabase.id}
compartmentId: ${compartmentId}
displayName: ${autonomousContainerDatabaseBackupDisplayName}
infrastructureType: ${autonomousContainerDatabaseBackupInfrastructureType}
isRemote: ${autonomousContainerDatabaseBackupIsRemote}
state: ${autonomousContainerDatabaseBackupState}
Using getAutonomousContainerDatabaseBackups
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getAutonomousContainerDatabaseBackups(args: GetAutonomousContainerDatabaseBackupsArgs, opts?: InvokeOptions): Promise<GetAutonomousContainerDatabaseBackupsResult>
function getAutonomousContainerDatabaseBackupsOutput(args: GetAutonomousContainerDatabaseBackupsOutputArgs, opts?: InvokeOptions): Output<GetAutonomousContainerDatabaseBackupsResult>
def get_autonomous_container_database_backups(autonomous_container_database_id: Optional[str] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetAutonomousContainerDatabaseBackupsFilter]] = None,
infrastructure_type: Optional[str] = None,
is_remote: Optional[bool] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAutonomousContainerDatabaseBackupsResult
def get_autonomous_container_database_backups_output(autonomous_container_database_id: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetAutonomousContainerDatabaseBackupsFilterArgs]]]] = None,
infrastructure_type: Optional[pulumi.Input[str]] = None,
is_remote: Optional[pulumi.Input[bool]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAutonomousContainerDatabaseBackupsResult]
func GetAutonomousContainerDatabaseBackups(ctx *Context, args *GetAutonomousContainerDatabaseBackupsArgs, opts ...InvokeOption) (*GetAutonomousContainerDatabaseBackupsResult, error)
func GetAutonomousContainerDatabaseBackupsOutput(ctx *Context, args *GetAutonomousContainerDatabaseBackupsOutputArgs, opts ...InvokeOption) GetAutonomousContainerDatabaseBackupsResultOutput
> Note: This function is named GetAutonomousContainerDatabaseBackups
in the Go SDK.
public static class GetAutonomousContainerDatabaseBackups
{
public static Task<GetAutonomousContainerDatabaseBackupsResult> InvokeAsync(GetAutonomousContainerDatabaseBackupsArgs args, InvokeOptions? opts = null)
public static Output<GetAutonomousContainerDatabaseBackupsResult> Invoke(GetAutonomousContainerDatabaseBackupsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAutonomousContainerDatabaseBackupsResult> getAutonomousContainerDatabaseBackups(GetAutonomousContainerDatabaseBackupsArgs args, InvokeOptions options)
public static Output<GetAutonomousContainerDatabaseBackupsResult> getAutonomousContainerDatabaseBackups(GetAutonomousContainerDatabaseBackupsArgs args, InvokeOptions options)
fn::invoke:
function: oci:Database/getAutonomousContainerDatabaseBackups:getAutonomousContainerDatabaseBackups
arguments:
# arguments dictionary
The following arguments are supported:
- Autonomous
Container stringDatabase Id - The Autonomous Container Database OCID.
- Compartment
Id string - The compartment OCID.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Filters
List<Get
Autonomous Container Database Backups Filter> - Infrastructure
Type string - A filter to return only resources that match the given Infrastructure Type.
- Is
Remote bool - call for all remote backups
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- Autonomous
Container stringDatabase Id - The Autonomous Container Database OCID.
- Compartment
Id string - The compartment OCID.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Filters
[]Get
Autonomous Container Database Backups Filter - Infrastructure
Type string - A filter to return only resources that match the given Infrastructure Type.
- Is
Remote bool - call for all remote backups
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- autonomous
Container StringDatabase Id - The Autonomous Container Database OCID.
- compartment
Id String - The compartment OCID.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
List<Get
Autonomous Container Backups Filter> - infrastructure
Type String - A filter to return only resources that match the given Infrastructure Type.
- is
Remote Boolean - call for all remote backups
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- autonomous
Container stringDatabase Id - The Autonomous Container Database OCID.
- compartment
Id string - The compartment OCID.
- display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
Get
Autonomous Container Database Backups Filter[] - infrastructure
Type string - A filter to return only resources that match the given Infrastructure Type.
- is
Remote boolean - call for all remote backups
- state string
- A filter to return only resources that match the given lifecycle state exactly.
- autonomous_
container_ strdatabase_ id - The Autonomous Container Database OCID.
- compartment_
id str - The compartment OCID.
- display_
name str - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
Sequence[Get
Autonomous Container Database Backups Filter] - infrastructure_
type str - A filter to return only resources that match the given Infrastructure Type.
- is_
remote bool - call for all remote backups
- state str
- A filter to return only resources that match the given lifecycle state exactly.
- autonomous
Container StringDatabase Id - The Autonomous Container Database OCID.
- compartment
Id String - The compartment OCID.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters List<Property Map>
- infrastructure
Type String - A filter to return only resources that match the given Infrastructure Type.
- is
Remote Boolean - call for all remote backups
- state String
- A filter to return only resources that match the given lifecycle state exactly.
getAutonomousContainerDatabaseBackups Result
The following output properties are available:
- Autonomous
Container List<GetDatabase Backup Collections Autonomous Container Database Backups Autonomous Container Database Backup Collection> - The list of autonomous_container_database_backup_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Autonomous
Container stringDatabase Id - The OCID of the Autonomous Container Database.
- Compartment
Id string - The OCID of the compartment.
- Display
Name string - A user-friendly name for the backup. This name need not be unique.
- Filters
List<Get
Autonomous Container Database Backups Filter> - Infrastructure
Type string - The infrastructure type this resource belongs to.
- Is
Remote bool - State string
- The current state of the backup.
- Autonomous
Container []GetDatabase Backup Collections Autonomous Container Database Backups Autonomous Container Database Backup Collection - The list of autonomous_container_database_backup_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Autonomous
Container stringDatabase Id - The OCID of the Autonomous Container Database.
- Compartment
Id string - The OCID of the compartment.
- Display
Name string - A user-friendly name for the backup. This name need not be unique.
- Filters
[]Get
Autonomous Container Database Backups Filter - Infrastructure
Type string - The infrastructure type this resource belongs to.
- Is
Remote bool - State string
- The current state of the backup.
- autonomous
Container List<GetDatabase Backup Collections Autonomous Container Backups Autonomous Container Backup Collection> - The list of autonomous_container_database_backup_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- autonomous
Container StringDatabase Id - The OCID of the Autonomous Container Database.
- compartment
Id String - The OCID of the compartment.
- display
Name String - A user-friendly name for the backup. This name need not be unique.
- filters
List<Get
Autonomous Container Backups Filter> - infrastructure
Type String - The infrastructure type this resource belongs to.
- is
Remote Boolean - state String
- The current state of the backup.
- autonomous
Container GetDatabase Backup Collections Autonomous Container Database Backups Autonomous Container Database Backup Collection[] - The list of autonomous_container_database_backup_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- autonomous
Container stringDatabase Id - The OCID of the Autonomous Container Database.
- compartment
Id string - The OCID of the compartment.
- display
Name string - A user-friendly name for the backup. This name need not be unique.
- filters
Get
Autonomous Container Database Backups Filter[] - infrastructure
Type string - The infrastructure type this resource belongs to.
- is
Remote boolean - state string
- The current state of the backup.
- autonomous_
container_ Sequence[Getdatabase_ backup_ collections Autonomous Container Database Backups Autonomous Container Database Backup Collection] - The list of autonomous_container_database_backup_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- autonomous_
container_ strdatabase_ id - The OCID of the Autonomous Container Database.
- compartment_
id str - The OCID of the compartment.
- display_
name str - A user-friendly name for the backup. This name need not be unique.
- filters
Sequence[Get
Autonomous Container Database Backups Filter] - infrastructure_
type str - The infrastructure type this resource belongs to.
- is_
remote bool - state str
- The current state of the backup.
- autonomous
Container List<Property Map>Database Backup Collections - The list of autonomous_container_database_backup_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- autonomous
Container StringDatabase Id - The OCID of the Autonomous Container Database.
- compartment
Id String - The OCID of the compartment.
- display
Name String - A user-friendly name for the backup. This name need not be unique.
- filters List<Property Map>
- infrastructure
Type String - The infrastructure type this resource belongs to.
- is
Remote Boolean - state String
- The current state of the backup.
Supporting Types
GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollection
- Items
List<Get
Autonomous Container Database Backups Autonomous Container Database Backup Collection Item> - List of Autonomous container database backups.
- Items
[]Get
Autonomous Container Database Backups Autonomous Container Database Backup Collection Item - List of Autonomous container database backups.
- items
List<Get
Autonomous Container Backups Autonomous Container Backup Collection Item> - List of Autonomous container database backups.
- items
Get
Autonomous Container Database Backups Autonomous Container Database Backup Collection Item[] - List of Autonomous container database backups.
- items
Sequence[Get
Autonomous Container Database Backups Autonomous Container Database Backup Collection Item] - List of Autonomous container database backups.
- items List<Property Map>
- List of Autonomous container database backups.
GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItem
- Acd
Display stringName - The user-friendly name for the Autonomous Container Database when the Backup was initiated. This name need not be unique. This field captures the name at the time of backup creation, accounting for possible later updates to the display name.
- Autonomous
Container stringDatabase Id - The Autonomous Container Database OCID.
- Autonomous
Databases List<GetAutonomous Container Database Backups Autonomous Container Database Backup Collection Item Autonomous Database> - List of Autonomous Databases that is part of this Autonomous Container Database Backup
- Compartment
Id string - The compartment OCID.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Id string
- The OCID of the Autonomous Database backup.
- Infrastructure
Type string - A filter to return only resources that match the given Infrastructure Type.
- Is
Automatic bool - Indicates whether the backup is user-initiated or automatic.
- Is
Remote boolBackup - Whether backup is for remote-region or local region
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Retention
Period intIn Days - Retention period, in days, for long-term backups
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Ended string - The date and time the backup completed.
- Time
Started string - The date and time the backup started.
- Type string
- The type of backup.
- Acd
Display stringName - The user-friendly name for the Autonomous Container Database when the Backup was initiated. This name need not be unique. This field captures the name at the time of backup creation, accounting for possible later updates to the display name.
- Autonomous
Container stringDatabase Id - The Autonomous Container Database OCID.
- Autonomous
Databases []GetAutonomous Container Database Backups Autonomous Container Database Backup Collection Item Autonomous Database - List of Autonomous Databases that is part of this Autonomous Container Database Backup
- Compartment
Id string - The compartment OCID.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Id string
- The OCID of the Autonomous Database backup.
- Infrastructure
Type string - A filter to return only resources that match the given Infrastructure Type.
- Is
Automatic bool - Indicates whether the backup is user-initiated or automatic.
- Is
Remote boolBackup - Whether backup is for remote-region or local region
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Retention
Period intIn Days - Retention period, in days, for long-term backups
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Ended string - The date and time the backup completed.
- Time
Started string - The date and time the backup started.
- Type string
- The type of backup.
- acd
Display StringName - The user-friendly name for the Autonomous Container Database when the Backup was initiated. This name need not be unique. This field captures the name at the time of backup creation, accounting for possible later updates to the display name.
- autonomous
Container StringDatabase Id - The Autonomous Container Database OCID.
- autonomous
Databases List<GetAutonomous Container Backups Autonomous Container Backup Collection Item Autonomous> - List of Autonomous Databases that is part of this Autonomous Container Database Backup
- compartment
Id String - The compartment OCID.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id String
- The OCID of the Autonomous Database backup.
- infrastructure
Type String - A filter to return only resources that match the given Infrastructure Type.
- is
Automatic Boolean - Indicates whether the backup is user-initiated or automatic.
- is
Remote BooleanBackup - Whether backup is for remote-region or local region
- lifecycle
Details String - Additional information about the current lifecycle state.
- retention
Period IntegerIn Days - Retention period, in days, for long-term backups
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Ended String - The date and time the backup completed.
- time
Started String - The date and time the backup started.
- type String
- The type of backup.
- acd
Display stringName - The user-friendly name for the Autonomous Container Database when the Backup was initiated. This name need not be unique. This field captures the name at the time of backup creation, accounting for possible later updates to the display name.
- autonomous
Container stringDatabase Id - The Autonomous Container Database OCID.
- autonomous
Databases GetAutonomous Container Database Backups Autonomous Container Database Backup Collection Item Autonomous Database[] - List of Autonomous Databases that is part of this Autonomous Container Database Backup
- compartment
Id string - The compartment OCID.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id string
- The OCID of the Autonomous Database backup.
- infrastructure
Type string - A filter to return only resources that match the given Infrastructure Type.
- is
Automatic boolean - Indicates whether the backup is user-initiated or automatic.
- is
Remote booleanBackup - Whether backup is for remote-region or local region
- lifecycle
Details string - Additional information about the current lifecycle state.
- retention
Period numberIn Days - Retention period, in days, for long-term backups
- state string
- A filter to return only resources that match the given lifecycle state exactly.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Ended string - The date and time the backup completed.
- time
Started string - The date and time the backup started.
- type string
- The type of backup.
- acd_
display_ strname - The user-friendly name for the Autonomous Container Database when the Backup was initiated. This name need not be unique. This field captures the name at the time of backup creation, accounting for possible later updates to the display name.
- autonomous_
container_ strdatabase_ id - The Autonomous Container Database OCID.
- autonomous_
databases Sequence[GetAutonomous Container Database Backups Autonomous Container Database Backup Collection Item Autonomous Database] - List of Autonomous Databases that is part of this Autonomous Container Database Backup
- compartment_
id str - The compartment OCID.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display_
name str - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id str
- The OCID of the Autonomous Database backup.
- infrastructure_
type str - A filter to return only resources that match the given Infrastructure Type.
- is_
automatic bool - Indicates whether the backup is user-initiated or automatic.
- is_
remote_ boolbackup - Whether backup is for remote-region or local region
- lifecycle_
details str - Additional information about the current lifecycle state.
- retention_
period_ intin_ days - Retention period, in days, for long-term backups
- state str
- A filter to return only resources that match the given lifecycle state exactly.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time_
ended str - The date and time the backup completed.
- time_
started str - The date and time the backup started.
- type str
- The type of backup.
- acd
Display StringName - The user-friendly name for the Autonomous Container Database when the Backup was initiated. This name need not be unique. This field captures the name at the time of backup creation, accounting for possible later updates to the display name.
- autonomous
Container StringDatabase Id - The Autonomous Container Database OCID.
- autonomous
Databases List<Property Map> - List of Autonomous Databases that is part of this Autonomous Container Database Backup
- compartment
Id String - The compartment OCID.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id String
- The OCID of the Autonomous Database backup.
- infrastructure
Type String - A filter to return only resources that match the given Infrastructure Type.
- is
Automatic Boolean - Indicates whether the backup is user-initiated or automatic.
- is
Remote BooleanBackup - Whether backup is for remote-region or local region
- lifecycle
Details String - Additional information about the current lifecycle state.
- retention
Period NumberIn Days - Retention period, in days, for long-term backups
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Ended String - The date and time the backup completed.
- time
Started String - The date and time the backup started.
- type String
- The type of backup.
GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemAutonomousDatabase
- Compartment
Id string - The compartment OCID.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Compartment
Id string - The compartment OCID.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- compartment
Id String - The compartment OCID.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- compartment
Id string - The compartment OCID.
- display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- compartment_
id str - The compartment OCID.
- display_
name str - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- compartment
Id String - The compartment OCID.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
GetAutonomousContainerDatabaseBackupsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.