Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi
oci.Core.getVolumeBackups
Explore with Pulumi AI
This data source provides the list of Volume Backups in Oracle Cloud Infrastructure Core service.
Lists the volume backups in the specified compartment. You can filter the results by volume.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testVolumeBackups = oci.Core.getVolumeBackups({
compartmentId: compartmentId,
displayName: volumeBackupDisplayName,
sourceVolumeBackupId: testVolumeBackup.id,
state: volumeBackupState,
volumeId: testVolume.id,
});
import pulumi
import pulumi_oci as oci
test_volume_backups = oci.Core.get_volume_backups(compartment_id=compartment_id,
display_name=volume_backup_display_name,
source_volume_backup_id=test_volume_backup["id"],
state=volume_backup_state,
volume_id=test_volume["id"])
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.GetVolumeBackups(ctx, &core.GetVolumeBackupsArgs{
CompartmentId: compartmentId,
DisplayName: pulumi.StringRef(volumeBackupDisplayName),
SourceVolumeBackupId: pulumi.StringRef(testVolumeBackup.Id),
State: pulumi.StringRef(volumeBackupState),
VolumeId: pulumi.StringRef(testVolume.Id),
}, 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 testVolumeBackups = Oci.Core.GetVolumeBackups.Invoke(new()
{
CompartmentId = compartmentId,
DisplayName = volumeBackupDisplayName,
SourceVolumeBackupId = testVolumeBackup.Id,
State = volumeBackupState,
VolumeId = testVolume.Id,
});
});
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.GetVolumeBackupsArgs;
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 testVolumeBackups = CoreFunctions.getVolumeBackups(GetVolumeBackupsArgs.builder()
.compartmentId(compartmentId)
.displayName(volumeBackupDisplayName)
.sourceVolumeBackupId(testVolumeBackup.id())
.state(volumeBackupState)
.volumeId(testVolume.id())
.build());
}
}
variables:
testVolumeBackups:
fn::invoke:
Function: oci:Core:getVolumeBackups
Arguments:
compartmentId: ${compartmentId}
displayName: ${volumeBackupDisplayName}
sourceVolumeBackupId: ${testVolumeBackup.id}
state: ${volumeBackupState}
volumeId: ${testVolume.id}
Using getVolumeBackups
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 getVolumeBackups(args: GetVolumeBackupsArgs, opts?: InvokeOptions): Promise<GetVolumeBackupsResult>
function getVolumeBackupsOutput(args: GetVolumeBackupsOutputArgs, opts?: InvokeOptions): Output<GetVolumeBackupsResult>
def get_volume_backups(compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[_core.GetVolumeBackupsFilter]] = None,
source_volume_backup_id: Optional[str] = None,
state: Optional[str] = None,
volume_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetVolumeBackupsResult
def get_volume_backups_output(compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_core.GetVolumeBackupsFilterArgs]]]] = None,
source_volume_backup_id: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
volume_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetVolumeBackupsResult]
func GetVolumeBackups(ctx *Context, args *GetVolumeBackupsArgs, opts ...InvokeOption) (*GetVolumeBackupsResult, error)
func GetVolumeBackupsOutput(ctx *Context, args *GetVolumeBackupsOutputArgs, opts ...InvokeOption) GetVolumeBackupsResultOutput
> Note: This function is named GetVolumeBackups
in the Go SDK.
public static class GetVolumeBackups
{
public static Task<GetVolumeBackupsResult> InvokeAsync(GetVolumeBackupsArgs args, InvokeOptions? opts = null)
public static Output<GetVolumeBackupsResult> Invoke(GetVolumeBackupsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetVolumeBackupsResult> getVolumeBackups(GetVolumeBackupsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:Core/getVolumeBackups:getVolumeBackups
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - The OCID of the compartment.
- Display
Name string - A filter to return only resources that match the given display name exactly.
- Filters
List<Get
Volume Backups Filter> - Source
Volume stringBackup Id - A filter to return only resources that originated from the given source volume backup.
- State string
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- Volume
Id string - The OCID of the volume.
- Compartment
Id string - The OCID of the compartment.
- Display
Name string - A filter to return only resources that match the given display name exactly.
- Filters
[]Get
Volume Backups Filter - Source
Volume stringBackup Id - A filter to return only resources that originated from the given source volume backup.
- State string
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- Volume
Id string - The OCID of the volume.
- compartment
Id String - The OCID of the compartment.
- display
Name String - A filter to return only resources that match the given display name exactly.
- filters
List<Get
Volume Backups Filter> - source
Volume StringBackup Id - A filter to return only resources that originated from the given source volume backup.
- state String
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- volume
Id String - The OCID of the volume.
- compartment
Id string - The OCID of the compartment.
- display
Name string - A filter to return only resources that match the given display name exactly.
- filters
Get
Volume Backups Filter[] - source
Volume stringBackup Id - A filter to return only resources that originated from the given source volume backup.
- state string
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- volume
Id string - The OCID of the volume.
- compartment_
id str - The OCID of the compartment.
- display_
name str - A filter to return only resources that match the given display name exactly.
- filters
Sequence[core.
Get Volume Backups Filter] - source_
volume_ strbackup_ id - A filter to return only resources that originated from the given source volume backup.
- state str
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- volume_
id str - The OCID of the volume.
- compartment
Id String - The OCID of the compartment.
- display
Name String - A filter to return only resources that match the given display name exactly.
- filters List<Property Map>
- source
Volume StringBackup Id - A filter to return only resources that originated from the given source volume backup.
- state String
- A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
- volume
Id String - The OCID of the volume.
getVolumeBackups Result
The following output properties are available:
- Compartment
Id string - The OCID of the compartment that contains the volume backup.
- Id string
- The provider-assigned unique ID for this managed resource.
- Volume
Backups List<GetVolume Backups Volume Backup> - The list of volume_backups.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
List<Get
Volume Backups Filter> - Source
Volume stringBackup Id - The OCID of the source volume backup.
- State string
- The current state of a volume backup.
- Volume
Id string - The OCID of the volume.
- Compartment
Id string - The OCID of the compartment that contains the volume backup.
- Id string
- The provider-assigned unique ID for this managed resource.
- Volume
Backups []GetVolume Backups Volume Backup - The list of volume_backups.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
[]Get
Volume Backups Filter - Source
Volume stringBackup Id - The OCID of the source volume backup.
- State string
- The current state of a volume backup.
- Volume
Id string - The OCID of the volume.
- compartment
Id String - The OCID of the compartment that contains the volume backup.
- id String
- The provider-assigned unique ID for this managed resource.
- volume
Backups List<GetVolume Backups Volume Backup> - The list of volume_backups.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
List<Get
Volume Backups Filter> - source
Volume StringBackup Id - The OCID of the source volume backup.
- state String
- The current state of a volume backup.
- volume
Id String - The OCID of the volume.
- compartment
Id string - The OCID of the compartment that contains the volume backup.
- id string
- The provider-assigned unique ID for this managed resource.
- volume
Backups GetVolume Backups Volume Backup[] - The list of volume_backups.
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Get
Volume Backups Filter[] - source
Volume stringBackup Id - The OCID of the source volume backup.
- state string
- The current state of a volume backup.
- volume
Id string - The OCID of the volume.
- compartment_
id str - The OCID of the compartment that contains the volume backup.
- id str
- The provider-assigned unique ID for this managed resource.
- volume_
backups Sequence[core.Get Volume Backups Volume Backup] - The list of volume_backups.
- 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 Volume Backups Filter] - source_
volume_ strbackup_ id - The OCID of the source volume backup.
- state str
- The current state of a volume backup.
- volume_
id str - The OCID of the volume.
- compartment
Id String - The OCID of the compartment that contains the volume backup.
- id String
- The provider-assigned unique ID for this managed resource.
- volume
Backups List<Property Map> - The list of volume_backups.
- 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
Volume StringBackup Id - The OCID of the source volume backup.
- state String
- The current state of a volume backup.
- volume
Id String - The OCID of the volume.
Supporting Types
GetVolumeBackupsFilter
GetVolumeBackupsVolumeBackup
- 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 volume backup.
- Kms
Key stringId - The OCID of the Vault service key which is the master encryption key for the 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 volume, in GBs.
- Size
In stringMbs - The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use
size_in_gbs
. - Source
Details List<GetVolume Backups Volume Backup Source Detail> - Source
Type string - Specifies whether the backup was created manually, or via scheduled backup policy.
- Source
Volume stringBackup Id - A filter to return only resources that originated from the given source volume backup.
- 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 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 volume backup was received. Format defined by [RFC3339]https://tools.ietf.org/html/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 volume and whether the backup is full or incremental.
- Unique
Size stringIn Mbs - The size used by the backup, in MBs. It is typically smaller than sizeInMBs, depending on the space consumed on the volume and whether the backup is full or incremental. This field is deprecated. Please use uniqueSizeInGBs.
- Volume
Id string - The OCID of the 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 volume backup.
- Kms
Key stringId - The OCID of the Vault service key which is the master encryption key for the 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 volume, in GBs.
- Size
In stringMbs - The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use
size_in_gbs
. - Source
Details []GetVolume Backups Volume Backup Source Detail - Source
Type string - Specifies whether the backup was created manually, or via scheduled backup policy.
- Source
Volume stringBackup Id - A filter to return only resources that originated from the given source volume backup.
- 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 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 volume backup was received. Format defined by [RFC3339]https://tools.ietf.org/html/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 volume and whether the backup is full or incremental.
- Unique
Size stringIn Mbs - The size used by the backup, in MBs. It is typically smaller than sizeInMBs, depending on the space consumed on the volume and whether the backup is full or incremental. This field is deprecated. Please use uniqueSizeInGBs.
- Volume
Id string - The OCID of the 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 volume backup.
- kms
Key StringId - The OCID of the Vault service key which is the master encryption key for the 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 volume, in GBs.
- size
In StringMbs - The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use
size_in_gbs
. - source
Details List<GetVolume Backups Volume Backup Source Detail> - source
Type String - Specifies whether the backup was created manually, or via scheduled backup policy.
- source
Volume StringBackup Id - A filter to return only resources that originated from the given source volume backup.
- 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 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 volume backup was received. Format defined by [RFC3339]https://tools.ietf.org/html/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 volume and whether the backup is full or incremental.
- unique
Size StringIn Mbs - The size used by the backup, in MBs. It is typically smaller than sizeInMBs, depending on the space consumed on the volume and whether the backup is full or incremental. This field is deprecated. Please use uniqueSizeInGBs.
- volume
Id String - The OCID of the 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 volume backup.
- kms
Key stringId - The OCID of the Vault service key which is the master encryption key for the 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 volume, in GBs.
- size
In stringMbs - The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use
size_in_gbs
. - source
Details GetVolume Backups Volume Backup Source Detail[] - source
Type string - Specifies whether the backup was created manually, or via scheduled backup policy.
- source
Volume stringBackup Id - A filter to return only resources that originated from the given source volume backup.
- 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 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 volume backup was received. Format defined by [RFC3339]https://tools.ietf.org/html/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 volume and whether the backup is full or incremental.
- unique
Size stringIn Mbs - The size used by the backup, in MBs. It is typically smaller than sizeInMBs, depending on the space consumed on the volume and whether the backup is full or incremental. This field is deprecated. Please use uniqueSizeInGBs.
- volume
Id string - The OCID of the 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 volume backup.
- kms_
key_ strid - The OCID of the Vault service key which is the master encryption key for the 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 volume, in GBs.
- size_
in_ strmbs - The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use
size_in_gbs
. - source_
details Sequence[core.Get Volume Backups Volume Backup Source Detail] - source_
type str - Specifies whether the backup was created manually, or via scheduled backup policy.
- source_
volume_ strbackup_ id - A filter to return only resources that originated from the given source volume backup.
- 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 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 volume backup was received. Format defined by [RFC3339]https://tools.ietf.org/html/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 volume and whether the backup is full or incremental.
- unique_
size_ strin_ mbs - The size used by the backup, in MBs. It is typically smaller than sizeInMBs, depending on the space consumed on the volume and whether the backup is full or incremental. This field is deprecated. Please use uniqueSizeInGBs.
- volume_
id str - The OCID of the 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 volume backup.
- kms
Key StringId - The OCID of the Vault service key which is the master encryption key for the 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 volume, in GBs.
- size
In StringMbs - The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use
size_in_gbs
. - source
Details List<Property Map> - source
Type String - Specifies whether the backup was created manually, or via scheduled backup policy.
- source
Volume StringBackup Id - A filter to return only resources that originated from the given source volume backup.
- 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 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 volume backup was received. Format defined by [RFC3339]https://tools.ietf.org/html/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 volume and whether the backup is full or incremental.
- unique
Size StringIn Mbs - The size used by the backup, in MBs. It is typically smaller than sizeInMBs, depending on the space consumed on the volume and whether the backup is full or incremental. This field is deprecated. Please use uniqueSizeInGBs.
- volume
Id String - The OCID of the volume.
GetVolumeBackupsVolumeBackupSourceDetail
- Kms
Key stringId - The OCID of the Vault service key which is the master encryption key for the volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- Region string
- Volume
Backup stringId
- Kms
Key stringId - The OCID of the Vault service key which is the master encryption key for the volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- Region string
- Volume
Backup stringId
- kms
Key StringId - The OCID of the Vault service key which is the master encryption key for the volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- region String
- volume
Backup StringId
- kms
Key stringId - The OCID of the Vault service key which is the master encryption key for the volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- region string
- volume
Backup stringId
- kms_
key_ strid - The OCID of the Vault service key which is the master encryption key for the volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- region str
- volume_
backup_ strid
- kms
Key StringId - The OCID of the Vault service key which is the master encryption key for the volume backup. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- region String
- volume
Backup StringId
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.