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

oci.Core.getBootVolumeBackups

Explore with Pulumi AI

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

    This data source provides the list of 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: _var.compartment_id,
        bootVolumeId: oci_core_boot_volume.test_boot_volume.id,
        displayName: _var.boot_volume_backup_display_name,
        sourceBootVolumeBackupId: oci_core_boot_volume_backup.test_boot_volume_backup.id,
        state: _var.boot_volume_backup_state,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_boot_volume_backups = oci.Core.get_boot_volume_backups(compartment_id=var["compartment_id"],
        boot_volume_id=oci_core_boot_volume["test_boot_volume"]["id"],
        display_name=var["boot_volume_backup_display_name"],
        source_boot_volume_backup_id=oci_core_boot_volume_backup["test_boot_volume_backup"]["id"],
        state=var["boot_volume_backup_state"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/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:            _var.Compartment_id,
    			BootVolumeId:             pulumi.StringRef(oci_core_boot_volume.Test_boot_volume.Id),
    			DisplayName:              pulumi.StringRef(_var.Boot_volume_backup_display_name),
    			SourceBootVolumeBackupId: pulumi.StringRef(oci_core_boot_volume_backup.Test_boot_volume_backup.Id),
    			State:                    pulumi.StringRef(_var.Boot_volume_backup_state),
    		}, 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 = @var.Compartment_id,
            BootVolumeId = oci_core_boot_volume.Test_boot_volume.Id,
            DisplayName = @var.Boot_volume_backup_display_name,
            SourceBootVolumeBackupId = oci_core_boot_volume_backup.Test_boot_volume_backup.Id,
            State = @var.Boot_volume_backup_state,
        });
    
    });
    
    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.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 testBootVolumeBackups = CoreFunctions.getBootVolumeBackups(GetBootVolumeBackupsArgs.builder()
                .compartmentId(var_.compartment_id())
                .bootVolumeId(oci_core_boot_volume.test_boot_volume().id())
                .displayName(var_.boot_volume_backup_display_name())
                .sourceBootVolumeBackupId(oci_core_boot_volume_backup.test_boot_volume_backup().id())
                .state(var_.boot_volume_backup_state())
                .build());
    
        }
    }
    
    variables:
      testBootVolumeBackups:
        fn::invoke:
          Function: oci:Core:getBootVolumeBackups
          Arguments:
            compartmentId: ${var.compartment_id}
            bootVolumeId: ${oci_core_boot_volume.test_boot_volume.id}
            displayName: ${var.boot_volume_backup_display_name}
            sourceBootVolumeBackupId: ${oci_core_boot_volume_backup.test_boot_volume_backup.id}
            state: ${var.boot_volume_backup_state}
    

    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?: InvokeOptions): 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[_core.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: 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[_core.GetBootVolumeBackupsFilterArgs]]]] = None,
                                source_boot_volume_backup_id: Optional[pulumi.Input[str]] = None,
                                state: Optional[pulumi.Input[str]] = None,
                                opts: Optional[InvokeOptions] = 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 CompletableFuture<GetBootVolumeBackupsResult> getBootVolumeBackups(GetBootVolumeBackupsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Core/getBootVolumeBackups:getBootVolumeBackups
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment.
    BootVolumeId string
    The OCID of the boot volume.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters List<GetBootVolumeBackupsFilter>
    SourceBootVolumeBackupId string
    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.
    CompartmentId string
    The OCID of the compartment.
    BootVolumeId string
    The OCID of the boot volume.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters []GetBootVolumeBackupsFilter
    SourceBootVolumeBackupId string
    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.
    compartmentId String
    The OCID of the compartment.
    bootVolumeId String
    The OCID of the boot volume.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<GetBootVolumeBackupsFilter>
    sourceBootVolumeBackupId String
    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.
    compartmentId string
    The OCID of the compartment.
    bootVolumeId string
    The OCID of the boot volume.
    displayName string
    A filter to return only resources that match the given display name exactly.
    filters GetBootVolumeBackupsFilter[]
    sourceBootVolumeBackupId string
    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_id str
    The OCID of the boot volume.
    display_name str
    A filter to return only resources that match the given display name exactly.
    filters Sequence[core.GetBootVolumeBackupsFilter]
    source_boot_volume_backup_id str
    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.
    compartmentId String
    The OCID of the compartment.
    bootVolumeId String
    The OCID of the boot volume.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<Property Map>
    sourceBootVolumeBackupId String
    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:

    BootVolumeBackups List<GetBootVolumeBackupsBootVolumeBackup>
    The list of boot_volume_backups.
    CompartmentId string
    The OCID of the compartment that contains the boot volume backup.
    Id string
    The provider-assigned unique ID for this managed resource.
    BootVolumeId string
    The OCID of the boot volume.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters List<GetBootVolumeBackupsFilter>
    SourceBootVolumeBackupId string
    The OCID of the source boot volume backup.
    State string
    The current state of a boot volume backup.
    BootVolumeBackups []GetBootVolumeBackupsBootVolumeBackup
    The list of boot_volume_backups.
    CompartmentId string
    The OCID of the compartment that contains the boot volume backup.
    Id string
    The provider-assigned unique ID for this managed resource.
    BootVolumeId string
    The OCID of the boot volume.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters []GetBootVolumeBackupsFilter
    SourceBootVolumeBackupId string
    The OCID of the source boot volume backup.
    State string
    The current state of a boot volume backup.
    bootVolumeBackups List<GetBootVolumeBackupsBootVolumeBackup>
    The list of boot_volume_backups.
    compartmentId String
    The OCID of the compartment that contains the boot volume backup.
    id String
    The provider-assigned unique ID for this managed resource.
    bootVolumeId String
    The OCID of the boot volume.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<GetBootVolumeBackupsFilter>
    sourceBootVolumeBackupId String
    The OCID of the source boot volume backup.
    state String
    The current state of a boot volume backup.
    bootVolumeBackups GetBootVolumeBackupsBootVolumeBackup[]
    The list of boot_volume_backups.
    compartmentId string
    The OCID of the compartment that contains the boot volume backup.
    id string
    The provider-assigned unique ID for this managed resource.
    bootVolumeId string
    The OCID of the boot volume.
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters GetBootVolumeBackupsFilter[]
    sourceBootVolumeBackupId string
    The OCID of the source boot volume backup.
    state string
    The current state of a boot volume backup.
    boot_volume_backups Sequence[core.GetBootVolumeBackupsBootVolumeBackup]
    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_id str
    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[core.GetBootVolumeBackupsFilter]
    source_boot_volume_backup_id str
    The OCID of the source boot volume backup.
    state str
    The current state of a boot volume backup.
    bootVolumeBackups List<Property Map>
    The list of boot_volume_backups.
    compartmentId String
    The OCID of the compartment that contains the boot volume backup.
    id String
    The provider-assigned unique ID for this managed resource.
    bootVolumeId String
    The OCID of the boot volume.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<Property Map>
    sourceBootVolumeBackupId String
    The OCID of the source boot volume backup.
    state String
    The current state of a boot volume backup.

    Supporting Types

    GetBootVolumeBackupsBootVolumeBackup

    BootVolumeId string
    The OCID of the boot volume.
    CompartmentId string
    The OCID of the compartment.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    ExpirationTime 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.
    FreeformTags Dictionary<string, object>
    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.
    ImageId string
    The image OCID used to create the boot volume the backup is taken from.
    KmsKeyId string
    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.
    SizeInGbs string
    The size of the boot volume, in GBs.
    SourceBootVolumeBackupId string
    A filter to return only resources that originated from the given source boot volume backup.
    SourceDetails List<GetBootVolumeBackupsBootVolumeBackupSourceDetail>
    SourceType 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.
    SystemTags Dictionary<string, object>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    TimeCreated 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.
    TimeRequestReceived string
    The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
    Type string
    The type of a volume backup. Supported values are 'FULL' or 'INCREMENTAL'.
    UniqueSizeInGbs string
    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.
    BootVolumeId string
    The OCID of the boot volume.
    CompartmentId string
    The OCID of the compartment.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    ExpirationTime 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.
    FreeformTags map[string]interface{}
    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.
    ImageId string
    The image OCID used to create the boot volume the backup is taken from.
    KmsKeyId string
    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.
    SizeInGbs string
    The size of the boot volume, in GBs.
    SourceBootVolumeBackupId string
    A filter to return only resources that originated from the given source boot volume backup.
    SourceDetails []GetBootVolumeBackupsBootVolumeBackupSourceDetail
    SourceType 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.
    SystemTags map[string]interface{}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    TimeCreated 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.
    TimeRequestReceived string
    The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
    Type string
    The type of a volume backup. Supported values are 'FULL' or 'INCREMENTAL'.
    UniqueSizeInGbs string
    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.
    bootVolumeId String
    The OCID of the boot volume.
    compartmentId String
    The OCID of the compartment.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    expirationTime 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.
    freeformTags Map<String,Object>
    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.
    imageId String
    The image OCID used to create the boot volume the backup is taken from.
    kmsKeyId String
    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.
    sizeInGbs String
    The size of the boot volume, in GBs.
    sourceBootVolumeBackupId String
    A filter to return only resources that originated from the given source boot volume backup.
    sourceDetails List<GetBootVolumeBackupsBootVolumeBackupSourceDetail>
    sourceType 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.
    systemTags Map<String,Object>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    timeCreated 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.
    timeRequestReceived String
    The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
    type String
    The type of a volume backup. Supported values are 'FULL' or 'INCREMENTAL'.
    uniqueSizeInGbs String
    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.
    bootVolumeId string
    The OCID of the boot volume.
    compartmentId string
    The OCID of the compartment.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    A filter to return only resources that match the given display name exactly.
    expirationTime 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.
    freeformTags {[key: string]: any}
    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.
    imageId string
    The image OCID used to create the boot volume the backup is taken from.
    kmsKeyId string
    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.
    sizeInGbs string
    The size of the boot volume, in GBs.
    sourceBootVolumeBackupId string
    A filter to return only resources that originated from the given source boot volume backup.
    sourceDetails GetBootVolumeBackupsBootVolumeBackupSourceDetail[]
    sourceType 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.
    systemTags {[key: string]: any}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    timeCreated 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.
    timeRequestReceived string
    The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
    type string
    The type of a volume backup. Supported values are 'FULL' or 'INCREMENTAL'.
    uniqueSizeInGbs string
    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.
    boot_volume_id str
    The OCID of the boot volume.
    compartment_id str
    The OCID of the compartment.
    defined_tags Mapping[str, Any]
    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.
    freeform_tags Mapping[str, Any]
    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.
    kms_key_id str
    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.
    size_in_gbs str
    The size of the boot volume, in GBs.
    source_boot_volume_backup_id str
    A filter to return only resources that originated from the given source boot volume backup.
    source_details Sequence[core.GetBootVolumeBackupsBootVolumeBackupSourceDetail]
    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.
    system_tags Mapping[str, Any]
    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_received str
    The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
    type str
    The type of a volume backup. Supported values are 'FULL' or 'INCREMENTAL'.
    unique_size_in_gbs str
    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.
    bootVolumeId String
    The OCID of the boot volume.
    compartmentId String
    The OCID of the compartment.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    expirationTime 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.
    freeformTags Map<Any>
    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.
    imageId String
    The image OCID used to create the boot volume the backup is taken from.
    kmsKeyId String
    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.
    sizeInGbs String
    The size of the boot volume, in GBs.
    sourceBootVolumeBackupId String
    A filter to return only resources that originated from the given source boot volume backup.
    sourceDetails List<Property Map>
    sourceType 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.
    systemTags Map<Any>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    timeCreated 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.
    timeRequestReceived String
    The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
    type String
    The type of a volume backup. Supported values are 'FULL' or 'INCREMENTAL'.
    uniqueSizeInGbs String
    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.

    GetBootVolumeBackupsBootVolumeBackupSourceDetail

    BootVolumeBackupId string
    KmsKeyId string
    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
    BootVolumeBackupId string
    KmsKeyId string
    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
    bootVolumeBackupId String
    kmsKeyId String
    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
    bootVolumeBackupId string
    kmsKeyId string
    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_backup_id str
    kms_key_id str
    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
    bootVolumeBackupId String
    kmsKeyId String
    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

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi