Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi
oci.Core.getBootVolumeBackups
Explore with Pulumi AI
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/v2/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.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(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}
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:
- 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<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[core.
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<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[core.backups Get 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[core.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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[core.Get Boot 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.
- 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.
- 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.
- 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.
- 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.
- 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.
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_ 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
oci
Terraform Provider.