Viewing docs for Oracle Cloud Infrastructure v5.1.0
published on Friday, Sep 25, 2026 by Pulumi
published on Friday, Sep 25, 2026 by Pulumi
Viewing docs for Oracle Cloud Infrastructure v5.1.0
published on Friday, Sep 25, 2026 by Pulumi
published on Friday, Sep 25, 2026 by Pulumi
This data source provides the list of Boot Volume Backups in Oracle Cloud Infrastructure Core service.
Lists the boot volume backups in the specified compartment. You can filter the results by boot volume.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testBootVolumeBackups = oci.core.getBootVolumeBackups({
compartmentId: compartmentId,
bootVolumeId: testBootVolume.id,
displayName: bootVolumeBackupDisplayName,
sourceBootVolumeBackupId: testBootVolumeBackup.id,
state: bootVolumeBackupState,
});
import pulumi
import pulumi_oci as oci
test_boot_volume_backups = oci.core.get_boot_volume_backups(compartment_id=compartment_id,
boot_volume_id=test_boot_volume["id"],
display_name=boot_volume_backup_display_name,
source_boot_volume_backup_id=test_boot_volume_backup["id"],
state=boot_volume_backup_state)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v5/go/oci/core"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := core.GetBootVolumeBackups(ctx, &core.GetBootVolumeBackupsArgs{
CompartmentId: compartmentId,
BootVolumeId: pulumi.StringRef(testBootVolume.Id),
DisplayName: pulumi.StringRef(bootVolumeBackupDisplayName),
SourceBootVolumeBackupId: pulumi.StringRef(testBootVolumeBackup.Id),
State: pulumi.StringRef(bootVolumeBackupState),
}, 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 testBootVolumeBackups = Oci.Core.GetBootVolumeBackups.Invoke(new()
{
CompartmentId = compartmentId,
BootVolumeId = testBootVolume.Id,
DisplayName = bootVolumeBackupDisplayName,
SourceBootVolumeBackupId = testBootVolumeBackup.Id,
State = bootVolumeBackupState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Core.CoreFunctions;
import com.pulumi.oci.Core.inputs.GetBootVolumeBackupsArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var testBootVolumeBackups = CoreFunctions.getBootVolumeBackups(GetBootVolumeBackupsArgs.builder()
.compartmentId(compartmentId)
.bootVolumeId(testBootVolume.id())
.displayName(bootVolumeBackupDisplayName)
.sourceBootVolumeBackupId(testBootVolumeBackup.id())
.state(bootVolumeBackupState)
.build());
}
}
variables:
testBootVolumeBackups:
fn::invoke:
function: oci:Core:getBootVolumeBackups
arguments:
compartmentId: ${compartmentId}
bootVolumeId: ${testBootVolume.id}
displayName: ${bootVolumeBackupDisplayName}
sourceBootVolumeBackupId: ${testBootVolumeBackup.id}
state: ${bootVolumeBackupState}
pulumi {
required_providers {
oci = {
source = "pulumi/oci"
}
}
}
data "oci_core_getbootvolumebackups" "testBootVolumeBackups" {
compartment_id = compartmentId
boot_volume_id = testBootVolume.id
display_name = bootVolumeBackupDisplayName
source_boot_volume_backup_id = testBootVolumeBackup.id
state = bootVolumeBackupState
}
Using getBootVolumeBackups
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 getBootVolumeBackups(args: GetBootVolumeBackupsArgs, opts?: InvokeOptions): Promise<GetBootVolumeBackupsResult>
function getBootVolumeBackupsOutput(args: GetBootVolumeBackupsOutputArgs, opts?: InvokeOutputOptions): Output<GetBootVolumeBackupsResult>def get_boot_volume_backups(boot_volume_id: Optional[str] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetBootVolumeBackupsFilter]] = None,
source_boot_volume_backup_id: Optional[str] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetBootVolumeBackupsResult
def get_boot_volume_backups_output(boot_volume_id: pulumi.Input[Optional[str]] = None,
compartment_id: pulumi.Input[Optional[str]] = None,
display_name: pulumi.Input[Optional[str]] = None,
filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetBootVolumeBackupsFilterArgs]]]] = None,
source_boot_volume_backup_id: pulumi.Input[Optional[str]] = None,
state: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetBootVolumeBackupsResult]func GetBootVolumeBackups(ctx *Context, args *GetBootVolumeBackupsArgs, opts ...InvokeOption) (*GetBootVolumeBackupsResult, error)
func GetBootVolumeBackupsOutput(ctx *Context, args *GetBootVolumeBackupsOutputArgs, opts ...InvokeOption) GetBootVolumeBackupsResultOutput> Note: This function is named GetBootVolumeBackups in the Go SDK.
public static class GetBootVolumeBackups
{
public static Task<GetBootVolumeBackupsResult> InvokeAsync(GetBootVolumeBackupsArgs args, InvokeOptions? opts = null)
public static Output<GetBootVolumeBackupsResult> Invoke(GetBootVolumeBackupsInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetBootVolumeBackupsResult> Invoke(GetBootVolumeBackupsInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetBootVolumeBackupsResult> getBootVolumeBackups(GetBootVolumeBackupsArgs args, InvokeOptions options)
public static Output<GetBootVolumeBackupsResult> getBootVolumeBackups(GetBootVolumeBackupsArgs args, InvokeOptions options)
public static Output<GetBootVolumeBackupsResult> getBootVolumeBackups(GetBootVolumeBackupsArgs args, InvokeOutputOptions options)
fn::invoke:
function: oci:Core/getBootVolumeBackups:getBootVolumeBackups
arguments:
# arguments dictionarydata "oci_core_get_boot_volume_backups" "name" {
# arguments
}The following arguments are supported:
- Compartment
Id string - The OCID of the compartment.
- Boot
Volume stringId - The OCID of the boot volume.
- Display
Name string - A filter to return only resources that match the given display name exactly.
- Filters
List<Get
Boot Volume Backups Filter> - Source
Boot stringVolume Backup Id - A filter to return only resources that originated from the given source boot volume backup.
- State string
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- Compartment
Id string - The OCID of the compartment.
- Boot
Volume stringId - The OCID of the boot volume.
- Display
Name string - A filter to return only resources that match the given display name exactly.
- Filters
[]Get
Boot Volume Backups Filter - Source
Boot stringVolume Backup Id - A filter to return only resources that originated from the given source boot volume backup.
- State string
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- compartment_
id string - The OCID of the compartment.
- boot_
volume_ stringid - The OCID of the boot volume.
- display_
name string - A filter to return only resources that match the given display name exactly.
- filters list(object)
- source_
boot_ stringvolume_ backup_ id - A filter to return only resources that originated from the given source boot volume backup.
- state string
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- compartment
Id String - The OCID of the compartment.
- boot
Volume StringId - The OCID of the boot volume.
- display
Name String - A filter to return only resources that match the given display name exactly.
- filters
List<Get
Boot Volume Backups Filter> - source
Boot StringVolume Backup Id - A filter to return only resources that originated from the given source boot volume backup.
- state String
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- compartment
Id string - The OCID of the compartment.
- boot
Volume stringId - The OCID of the boot volume.
- display
Name string - A filter to return only resources that match the given display name exactly.
- filters
Get
Boot Volume Backups Filter[] - source
Boot stringVolume Backup Id - A filter to return only resources that originated from the given source boot volume backup.
- state string
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- compartment_
id str - The OCID of the compartment.
- boot_
volume_ strid - The OCID of the boot volume.
- display_
name str - A filter to return only resources that match the given display name exactly.
- filters
Sequence[Get
Boot Volume Backups Filter] - source_
boot_ strvolume_ backup_ id - A filter to return only resources that originated from the given source boot volume backup.
- state str
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- compartment
Id String - The OCID of the compartment.
- boot
Volume StringId - The OCID of the boot volume.
- display
Name String - A filter to return only resources that match the given display name exactly.
- filters List<Property Map>
- source
Boot StringVolume Backup Id - A filter to return only resources that originated from the given source boot volume backup.
- state String
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
getBootVolumeBackups Result
The following output properties are available:
- Boot
Volume List<GetBackups Boot Volume Backups Boot Volume Backup> - The list of boot_volume_backups.
- Compartment
Id string - The OCID of the compartment that contains the boot volume backup.
- Id string
- The provider-assigned unique ID for this managed resource.
- Boot
Volume stringId - The OCID of the boot volume.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
List<Get
Boot Volume Backups Filter> - Source
Boot stringVolume Backup Id - The OCID of the source boot volume backup.
- State string
- The current state of a boot volume backup.
- Boot
Volume []GetBackups Boot Volume Backups Boot Volume Backup - The list of boot_volume_backups.
- Compartment
Id string - The OCID of the compartment that contains the boot volume backup.
- Id string
- The provider-assigned unique ID for this managed resource.
- Boot
Volume stringId - The OCID of the boot volume.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
[]Get
Boot Volume Backups Filter - Source
Boot stringVolume Backup Id - The OCID of the source boot volume backup.
- State string
- The current state of a boot volume backup.
- boot_
volume_ list(object)backups - The list of boot_volume_backups.
- compartment_
id string - The OCID of the compartment that contains the boot volume backup.
- id string
- The provider-assigned unique ID for this managed resource.
- boot_
volume_ stringid - The OCID of the boot volume.
- display_
name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters list(object)
- source_
boot_ stringvolume_ backup_ id - The OCID of the source boot volume backup.
- state string
- The current state of a boot volume backup.
- boot
Volume List<GetBackups Boot Volume Backups Boot Volume Backup> - The list of boot_volume_backups.
- compartment
Id String - The OCID of the compartment that contains the boot volume backup.
- id String
- The provider-assigned unique ID for this managed resource.
- boot
Volume StringId - The OCID of the boot volume.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
List<Get
Boot Volume Backups Filter> - source
Boot StringVolume Backup Id - The OCID of the source boot volume backup.
- state String
- The current state of a boot volume backup.
- boot
Volume GetBackups Boot Volume Backups Boot Volume Backup[] - The list of boot_volume_backups.
- compartment
Id string - The OCID of the compartment that contains the boot volume backup.
- id string
- The provider-assigned unique ID for this managed resource.
- boot
Volume stringId - The OCID of the boot volume.
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Get
Boot Volume Backups Filter[] - source
Boot stringVolume Backup Id - The OCID of the source boot volume backup.
- state string
- The current state of a boot volume backup.
- boot_
volume_ Sequence[Getbackups Boot Volume Backups Boot Volume Backup] - The list of boot_volume_backups.
- compartment_
id str - The OCID of the compartment that contains the boot volume backup.
- id str
- The provider-assigned unique ID for this managed resource.
- boot_
volume_ strid - The OCID of the boot volume.
- display_
name str - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Sequence[Get
Boot Volume Backups Filter] - source_
boot_ strvolume_ backup_ id - The OCID of the source boot volume backup.
- state str
- The current state of a boot volume backup.
- boot
Volume List<Property Map>Backups - The list of boot_volume_backups.
- compartment
Id String - The OCID of the compartment that contains the boot volume backup.
- id String
- The provider-assigned unique ID for this managed resource.
- boot
Volume StringId - The OCID of the boot volume.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters List<Property Map>
- source
Boot StringVolume Backup Id - The OCID of the source boot volume backup.
- state String
- The current state of a boot volume backup.
Supporting Types
GetBootVolumeBackupsBootVolumeBackup
- Boot
Volume stringId - The OCID of the boot volume.
- Compartment
Id string - The OCID of the compartment.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Display
Name string - A filter to return only resources that match the given display name exactly.
- Expiration
Time string - The date and time the volume backup will expire and be automatically deleted. Format defined by RFC3339. This parameter will always be present for backups that were created automatically by a scheduled-backup policy. For manually created backups, it will be absent, signifying that there is no expiration time and the backup will last forever until manually deleted.
- 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 boot volume backup.
- Image
Id string - The image OCID used to create the boot volume the backup is taken from.
- Is
Indefinite boolRetention Enabled - feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- Is
Prevent boolDeletion Enabled - Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- Is
Retention boolLock Enabled - feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- Kms
Key stringId - The OCID of the Vault service master encryption assigned to the boot volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- Retention
Periods List<GetBoot Volume Backups Boot Volume Backup Retention Period> - This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- Size
In stringGbs - The size of the boot volume, in GBs.
- Source
Boot stringVolume Backup Id - A filter to return only resources that originated from the given source boot volume backup.
- Source
Details List<GetBoot Volume Backups Boot Volume Backup Source Detail> - Source
Type string - Specifies whether the backup was created manually, or via scheduled backup policy.
- State string
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Time
Created string - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- Time
Request stringReceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- Time
Retention stringExpires At - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- Type string
- The type of a volume backup. Supported values are 'FULL' or 'INCREMENTAL'.
- Unique
Size stringIn Gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- Volume
Group stringBackup Id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
- Boot
Volume stringId - The OCID of the boot volume.
- Compartment
Id string - The OCID of the compartment.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Display
Name string - A filter to return only resources that match the given display name exactly.
- Expiration
Time string - The date and time the volume backup will expire and be automatically deleted. Format defined by RFC3339. This parameter will always be present for backups that were created automatically by a scheduled-backup policy. For manually created backups, it will be absent, signifying that there is no expiration time and the backup will last forever until manually deleted.
- 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 boot volume backup.
- Image
Id string - The image OCID used to create the boot volume the backup is taken from.
- Is
Indefinite boolRetention Enabled - feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- Is
Prevent boolDeletion Enabled - Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- Is
Retention boolLock Enabled - feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- Kms
Key stringId - The OCID of the Vault service master encryption assigned to the boot volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- Retention
Periods []GetBoot Volume Backups Boot Volume Backup Retention Period - This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- Size
In stringGbs - The size of the boot volume, in GBs.
- Source
Boot stringVolume Backup Id - A filter to return only resources that originated from the given source boot volume backup.
- Source
Details []GetBoot Volume Backups Boot Volume Backup Source Detail - Source
Type string - Specifies whether the backup was created manually, or via scheduled backup policy.
- State string
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Time
Created string - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- Time
Request stringReceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- Time
Retention stringExpires At - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- Type string
- The type of a volume backup. Supported values are 'FULL' or 'INCREMENTAL'.
- Unique
Size stringIn Gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- Volume
Group stringBackup Id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
- boot_
volume_ stringid - The OCID of the boot volume.
- compartment_
id string - The OCID of the compartment.
- map(string)
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display_
name string - A filter to return only resources that match the given display name exactly.
- expiration_
time string - The date and time the volume backup will expire and be automatically deleted. Format defined by RFC3339. This parameter will always be present for backups that were created automatically by a scheduled-backup policy. For manually created backups, it will be absent, signifying that there is no expiration time and the backup will last forever until manually deleted.
- 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 boot volume backup.
- image_
id string - The image OCID used to create the boot volume the backup is taken from.
- is_
indefinite_ boolretention_ enabled - feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- is_
prevent_ booldeletion_ enabled - Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- is_
retention_ boollock_ enabled - feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- kms_
key_ stringid - The OCID of the Vault service master encryption assigned to the boot volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- retention_
periods list(object) - This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- size_
in_ stringgbs - The size of the boot volume, in GBs.
- source_
boot_ stringvolume_ backup_ id - A filter to return only resources that originated from the given source boot volume backup.
- source_
details list(object) - source_
type string - Specifies whether the backup was created manually, or via scheduled backup policy.
- state string
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- map(string)
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - time_
created string - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- time_
request_ stringreceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- time_
retention_ stringexpires_ at - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- type string
- The type of a volume backup. Supported values are 'FULL' or 'INCREMENTAL'.
- unique_
size_ stringin_ gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- volume_
group_ stringbackup_ id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
- boot
Volume StringId - The OCID of the boot volume.
- compartment
Id String - The OCID of the compartment.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name String - A filter to return only resources that match the given display name exactly.
- expiration
Time String - The date and time the volume backup will expire and be automatically deleted. Format defined by RFC3339. This parameter will always be present for backups that were created automatically by a scheduled-backup policy. For manually created backups, it will be absent, signifying that there is no expiration time and the backup will last forever until manually deleted.
- 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 boot volume backup.
- image
Id String - The image OCID used to create the boot volume the backup is taken from.
- is
Indefinite BooleanRetention Enabled - feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- is
Prevent BooleanDeletion Enabled - Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- is
Retention BooleanLock Enabled - feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- kms
Key StringId - The OCID of the Vault service master encryption assigned to the boot volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- retention
Periods List<GetBoot Volume Backups Boot Volume Backup Retention Period> - This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- size
In StringGbs - The size of the boot volume, in GBs.
- source
Boot StringVolume Backup Id - A filter to return only resources that originated from the given source boot volume backup.
- source
Details List<GetBoot Volume Backups Boot Volume Backup Source Detail> - source
Type String - Specifies whether the backup was created manually, or via scheduled backup policy.
- state String
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - time
Created String - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- time
Request StringReceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- time
Retention StringExpires At - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- type String
- The type of a volume backup. Supported values are 'FULL' or 'INCREMENTAL'.
- unique
Size StringIn Gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- volume
Group StringBackup Id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
- boot
Volume stringId - The OCID of the boot volume.
- compartment
Id string - The OCID of the compartment.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name string - A filter to return only resources that match the given display name exactly.
- expiration
Time string - The date and time the volume backup will expire and be automatically deleted. Format defined by RFC3339. This parameter will always be present for backups that were created automatically by a scheduled-backup policy. For manually created backups, it will be absent, signifying that there is no expiration time and the backup will last forever until manually deleted.
- {[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 boot volume backup.
- image
Id string - The image OCID used to create the boot volume the backup is taken from.
- is
Indefinite booleanRetention Enabled - feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- is
Prevent booleanDeletion Enabled - Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- is
Retention booleanLock Enabled - feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- kms
Key stringId - The OCID of the Vault service master encryption assigned to the boot volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- retention
Periods GetBoot Volume Backups Boot Volume Backup Retention Period[] - This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- size
In stringGbs - The size of the boot volume, in GBs.
- source
Boot stringVolume Backup Id - A filter to return only resources that originated from the given source boot volume backup.
- source
Details GetBoot Volume Backups Boot Volume Backup Source Detail[] - source
Type string - Specifies whether the backup was created manually, or via scheduled backup policy.
- state string
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - time
Created string - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- time
Request stringReceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- time
Retention stringExpires At - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- type string
- The type of a volume backup. Supported values are 'FULL' or 'INCREMENTAL'.
- unique
Size stringIn Gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- volume
Group stringBackup Id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
- boot_
volume_ strid - The OCID of the boot volume.
- compartment_
id str - The OCID of the compartment.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display_
name str - A filter to return only resources that match the given display name exactly.
- expiration_
time str - The date and time the volume backup will expire and be automatically deleted. Format defined by RFC3339. This parameter will always be present for backups that were created automatically by a scheduled-backup policy. For manually created backups, it will be absent, signifying that there is no expiration time and the backup will last forever until manually deleted.
- 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 boot volume backup.
- image_
id str - The image OCID used to create the boot volume the backup is taken from.
- is_
indefinite_ boolretention_ enabled - feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- is_
prevent_ booldeletion_ enabled - Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- is_
retention_ boollock_ enabled - feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- kms_
key_ strid - The OCID of the Vault service master encryption assigned to the boot volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- retention_
periods Sequence[GetBoot Volume Backups Boot Volume Backup Retention Period] - This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- size_
in_ strgbs - The size of the boot volume, in GBs.
- source_
boot_ strvolume_ backup_ id - A filter to return only resources that originated from the given source boot volume backup.
- source_
details Sequence[GetBoot Volume Backups Boot Volume Backup Source Detail] - source_
type str - Specifies whether the backup was created manually, or via scheduled backup policy.
- state str
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - time_
created str - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- time_
request_ strreceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- time_
retention_ strexpires_ at - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- type str
- The type of a volume backup. Supported values are 'FULL' or 'INCREMENTAL'.
- unique_
size_ strin_ gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- volume_
group_ strbackup_ id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
- boot
Volume StringId - The OCID of the boot volume.
- compartment
Id String - The OCID of the compartment.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name String - A filter to return only resources that match the given display name exactly.
- expiration
Time String - The date and time the volume backup will expire and be automatically deleted. Format defined by RFC3339. This parameter will always be present for backups that were created automatically by a scheduled-backup policy. For manually created backups, it will be absent, signifying that there is no expiration time and the backup will last forever until manually deleted.
- 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 boot volume backup.
- image
Id String - The image OCID used to create the boot volume the backup is taken from.
- is
Indefinite BooleanRetention Enabled - feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- is
Prevent BooleanDeletion Enabled - Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- is
Retention BooleanLock Enabled - feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- kms
Key StringId - The OCID of the Vault service master encryption assigned to the boot volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- retention
Periods List<Property Map> - This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- size
In StringGbs - The size of the boot volume, in GBs.
- source
Boot StringVolume Backup Id - A filter to return only resources that originated from the given source boot volume backup.
- source
Details List<Property Map> - source
Type String - Specifies whether the backup was created manually, or via scheduled backup policy.
- state String
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - time
Created String - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- time
Request StringReceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- time
Retention StringExpires At - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- type String
- The type of a volume backup. Supported values are 'FULL' or 'INCREMENTAL'.
- unique
Size StringIn Gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- volume
Group StringBackup Id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
GetBootVolumeBackupsBootVolumeBackupRetentionPeriod
- Retention
Time intAmount - The value to enter for the amount of retention time should be a numerical figure (such as 1, 7, 30, etc.) that corresponds to the period specified in the retention time unit property (such as YEARS, DAYS). The combination of these two properties determines the total length of the retention period.
- Retention
Time stringUnit - The value you can assign to the Time Unit property for this Duration may be either "YEARS" or "DAYS".
- Retention
Time intAmount - The value to enter for the amount of retention time should be a numerical figure (such as 1, 7, 30, etc.) that corresponds to the period specified in the retention time unit property (such as YEARS, DAYS). The combination of these two properties determines the total length of the retention period.
- Retention
Time stringUnit - The value you can assign to the Time Unit property for this Duration may be either "YEARS" or "DAYS".
- retention_
time_ numberamount - The value to enter for the amount of retention time should be a numerical figure (such as 1, 7, 30, etc.) that corresponds to the period specified in the retention time unit property (such as YEARS, DAYS). The combination of these two properties determines the total length of the retention period.
- retention_
time_ stringunit - The value you can assign to the Time Unit property for this Duration may be either "YEARS" or "DAYS".
- retention
Time IntegerAmount - The value to enter for the amount of retention time should be a numerical figure (such as 1, 7, 30, etc.) that corresponds to the period specified in the retention time unit property (such as YEARS, DAYS). The combination of these two properties determines the total length of the retention period.
- retention
Time StringUnit - The value you can assign to the Time Unit property for this Duration may be either "YEARS" or "DAYS".
- retention
Time numberAmount - The value to enter for the amount of retention time should be a numerical figure (such as 1, 7, 30, etc.) that corresponds to the period specified in the retention time unit property (such as YEARS, DAYS). The combination of these two properties determines the total length of the retention period.
- retention
Time stringUnit - The value you can assign to the Time Unit property for this Duration may be either "YEARS" or "DAYS".
- retention_
time_ intamount - The value to enter for the amount of retention time should be a numerical figure (such as 1, 7, 30, etc.) that corresponds to the period specified in the retention time unit property (such as YEARS, DAYS). The combination of these two properties determines the total length of the retention period.
- retention_
time_ strunit - The value you can assign to the Time Unit property for this Duration may be either "YEARS" or "DAYS".
- retention
Time NumberAmount - The value to enter for the amount of retention time should be a numerical figure (such as 1, 7, 30, etc.) that corresponds to the period specified in the retention time unit property (such as YEARS, DAYS). The combination of these two properties determines the total length of the retention period.
- retention
Time StringUnit - The value you can assign to the Time Unit property for this Duration may be either "YEARS" or "DAYS".
GetBootVolumeBackupsBootVolumeBackupSourceDetail
- Boot
Volume stringBackup Id - Kms
Key stringId - The OCID of the Vault service master encryption assigned to the boot volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- Region string
- Boot
Volume stringBackup Id - Kms
Key stringId - The OCID of the Vault service master encryption assigned to the boot volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- Region string
- boot_
volume_ stringbackup_ id - kms_
key_ stringid - The OCID of the Vault service master encryption assigned to the boot volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- region string
- boot
Volume StringBackup Id - kms
Key StringId - The OCID of the Vault service master encryption assigned to the boot volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- region String
- boot
Volume stringBackup Id - kms
Key stringId - The OCID of the Vault service master encryption assigned to the boot volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- region string
- boot_
volume_ strbackup_ id - kms_
key_ strid - The OCID of the Vault service master encryption assigned to the boot volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- region str
- boot
Volume StringBackup Id - kms
Key StringId - The OCID of the Vault service master encryption assigned to the boot volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- region String
GetBootVolumeBackupsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
Viewing docs for Oracle Cloud Infrastructure v5.1.0
published on Friday, Sep 25, 2026 by Pulumi
published on Friday, Sep 25, 2026 by Pulumi