published on Wednesday, Aug 26, 2026 by Pulumi
published on Wednesday, Aug 26, 2026 by Pulumi
This resource provides the Boot Volume Backup resource in Oracle Cloud Infrastructure Core service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/iaas/latest/BootVolumeBackup
Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/
Creates a new boot volume backup of the specified boot volume. For general information about boot volume backups, see Overview of Boot Volume Backups
When the request is received, the backup object is in a REQUEST_RECEIVED state. When the data is imaged, it goes into a CREATING state. After the backup is fully uploaded to the cloud, it goes into an AVAILABLE state.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testBootVolumeBackup = new oci.core.BootVolumeBackup("test_boot_volume_backup", {
bootVolumeId: testBootVolume.id,
definedTags: {
"Operations.CostCenter": "42",
},
displayName: bootVolumeBackupDisplayName,
freeformTags: {
Department: "Finance",
},
isIndefiniteRetentionEnabled: bootVolumeBackupIsIndefiniteRetentionEnabled === "true",
isPreventDeletionEnabled: bootVolumeBackupIsPreventDeletionEnabled === "true",
isRetentionLockEnabled: bootVolumeBackupIsRetentionLockEnabled === "true",
kmsKeyId: testKey.id,
retentionPeriod: {
retentionTimeAmount: Number(bootVolumeBackupRetentionPeriodRetentionTimeAmount),
retentionTimeUnit: bootVolumeBackupRetentionPeriodRetentionTimeUnit,
},
type: bootVolumeBackupType,
});
import pulumi
import pulumi_oci as oci
test_boot_volume_backup = oci.core.BootVolumeBackup("test_boot_volume_backup",
boot_volume_id=test_boot_volume["id"],
defined_tags={
"Operations.CostCenter": "42",
},
display_name=boot_volume_backup_display_name,
freeform_tags={
"Department": "Finance",
},
is_indefinite_retention_enabled=boot_volume_backup_is_indefinite_retention_enabled == "true",
is_prevent_deletion_enabled=boot_volume_backup_is_prevent_deletion_enabled == "true",
is_retention_lock_enabled=boot_volume_backup_is_retention_lock_enabled == "true",
kms_key_id=test_key["id"],
retention_period={
"retention_time_amount": int(boot_volume_backup_retention_period_retention_time_amount),
"retention_time_unit": boot_volume_backup_retention_period_retention_time_unit,
},
type=boot_volume_backup_type)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/core"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := core.NewBootVolumeBackup(ctx, "test_boot_volume_backup", &core.BootVolumeBackupArgs{
BootVolumeId: pulumi.Any(testBootVolume.Id),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
DisplayName: pulumi.Any(bootVolumeBackupDisplayName),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
IsIndefiniteRetentionEnabled: pulumi.Any(bootVolumeBackupIsIndefiniteRetentionEnabled),
IsPreventDeletionEnabled: pulumi.Any(bootVolumeBackupIsPreventDeletionEnabled),
IsRetentionLockEnabled: pulumi.Any(bootVolumeBackupIsRetentionLockEnabled),
KmsKeyId: pulumi.Any(testKey.Id),
RetentionPeriod: &core.BootVolumeBackupRetentionPeriodArgs{
RetentionTimeAmount: pulumi.Any(bootVolumeBackupRetentionPeriodRetentionTimeAmount),
RetentionTimeUnit: pulumi.Any(bootVolumeBackupRetentionPeriodRetentionTimeUnit),
},
Type: pulumi.Any(bootVolumeBackupType),
})
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 testBootVolumeBackup = new Oci.Core.BootVolumeBackup("test_boot_volume_backup", new()
{
BootVolumeId = testBootVolume.Id,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
DisplayName = bootVolumeBackupDisplayName,
FreeformTags =
{
{ "Department", "Finance" },
},
IsIndefiniteRetentionEnabled = bootVolumeBackupIsIndefiniteRetentionEnabled,
IsPreventDeletionEnabled = bootVolumeBackupIsPreventDeletionEnabled,
IsRetentionLockEnabled = bootVolumeBackupIsRetentionLockEnabled,
KmsKeyId = testKey.Id,
RetentionPeriod = new Oci.Core.Inputs.BootVolumeBackupRetentionPeriodArgs
{
RetentionTimeAmount = bootVolumeBackupRetentionPeriodRetentionTimeAmount,
RetentionTimeUnit = bootVolumeBackupRetentionPeriodRetentionTimeUnit,
},
Type = bootVolumeBackupType,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Core.BootVolumeBackup;
import com.pulumi.oci.Core.BootVolumeBackupArgs;
import com.pulumi.oci.Core.inputs.BootVolumeBackupRetentionPeriodArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testBootVolumeBackup = new BootVolumeBackup("testBootVolumeBackup", BootVolumeBackupArgs.builder()
.bootVolumeId(testBootVolume.id())
.definedTags(Map.of("Operations.CostCenter", "42"))
.displayName(bootVolumeBackupDisplayName)
.freeformTags(Map.of("Department", "Finance"))
.isIndefiniteRetentionEnabled(bootVolumeBackupIsIndefiniteRetentionEnabled)
.isPreventDeletionEnabled(bootVolumeBackupIsPreventDeletionEnabled)
.isRetentionLockEnabled(bootVolumeBackupIsRetentionLockEnabled)
.kmsKeyId(testKey.id())
.retentionPeriod(BootVolumeBackupRetentionPeriodArgs.builder()
.retentionTimeAmount(bootVolumeBackupRetentionPeriodRetentionTimeAmount)
.retentionTimeUnit(bootVolumeBackupRetentionPeriodRetentionTimeUnit)
.build())
.type(bootVolumeBackupType)
.build());
}
}
resources:
testBootVolumeBackup:
type: oci:Core:BootVolumeBackup
name: test_boot_volume_backup
properties:
bootVolumeId: ${testBootVolume.id}
definedTags:
Operations.CostCenter: '42'
displayName: ${bootVolumeBackupDisplayName}
freeformTags:
Department: Finance
isIndefiniteRetentionEnabled: ${bootVolumeBackupIsIndefiniteRetentionEnabled}
isPreventDeletionEnabled: ${bootVolumeBackupIsPreventDeletionEnabled}
isRetentionLockEnabled: ${bootVolumeBackupIsRetentionLockEnabled}
kmsKeyId: ${testKey.id}
retentionPeriod:
retentionTimeAmount: ${bootVolumeBackupRetentionPeriodRetentionTimeAmount}
retentionTimeUnit: ${bootVolumeBackupRetentionPeriodRetentionTimeUnit}
type: ${bootVolumeBackupType}
pulumi {
required_providers {
oci = {
source = "pulumi/oci"
}
}
}
resource "oci_core_bootvolumebackup" "test_boot_volume_backup" {
boot_volume_id = testBootVolume.id
defined_tags = {
"Operations.CostCenter" = "42"
}
display_name = bootVolumeBackupDisplayName
freeform_tags = {
"Department" = "Finance"
}
is_indefinite_retention_enabled = bootVolumeBackupIsIndefiniteRetentionEnabled
is_prevent_deletion_enabled = bootVolumeBackupIsPreventDeletionEnabled
is_retention_lock_enabled = bootVolumeBackupIsRetentionLockEnabled
kms_key_id = testKey.id
retention_period = {
retention_time_amount = bootVolumeBackupRetentionPeriodRetentionTimeAmount
retention_time_unit = bootVolumeBackupRetentionPeriodRetentionTimeUnit
}
#Required
type = bootVolumeBackupType
}
Create BootVolumeBackup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BootVolumeBackup(name: string, args?: BootVolumeBackupArgs, opts?: CustomResourceOptions);@overload
def BootVolumeBackup(resource_name: str,
args: Optional[BootVolumeBackupArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def BootVolumeBackup(resource_name: str,
opts: Optional[ResourceOptions] = None,
boot_volume_id: Optional[str] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
is_indefinite_retention_enabled: Optional[bool] = None,
is_prevent_deletion_enabled: Optional[bool] = None,
is_retention_lock_enabled: Optional[bool] = None,
kms_key_id: Optional[str] = None,
retention_period: Optional[BootVolumeBackupRetentionPeriodArgs] = None,
source_details: Optional[BootVolumeBackupSourceDetailsArgs] = None,
type: Optional[str] = None)func NewBootVolumeBackup(ctx *Context, name string, args *BootVolumeBackupArgs, opts ...ResourceOption) (*BootVolumeBackup, error)public BootVolumeBackup(string name, BootVolumeBackupArgs? args = null, CustomResourceOptions? opts = null)
public BootVolumeBackup(String name, BootVolumeBackupArgs args)
public BootVolumeBackup(String name, BootVolumeBackupArgs args, CustomResourceOptions options)
type: oci:Core:BootVolumeBackup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "oci_core_boot_volume_backup" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args BootVolumeBackupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args BootVolumeBackupArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args BootVolumeBackupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BootVolumeBackupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BootVolumeBackupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var bootVolumeBackupResource = new Oci.Core.BootVolumeBackup("bootVolumeBackupResource", new()
{
BootVolumeId = "string",
CompartmentId = "string",
DefinedTags =
{
{ "string", "string" },
},
DisplayName = "string",
FreeformTags =
{
{ "string", "string" },
},
IsIndefiniteRetentionEnabled = false,
IsPreventDeletionEnabled = false,
IsRetentionLockEnabled = false,
KmsKeyId = "string",
RetentionPeriod = new Oci.Core.Inputs.BootVolumeBackupRetentionPeriodArgs
{
RetentionTimeAmount = 0,
RetentionTimeUnit = "string",
},
SourceDetails = new Oci.Core.Inputs.BootVolumeBackupSourceDetailsArgs
{
BootVolumeBackupId = "string",
Region = "string",
KmsKeyId = "string",
},
Type = "string",
});
example, err := core.NewBootVolumeBackup(ctx, "bootVolumeBackupResource", &core.BootVolumeBackupArgs{
BootVolumeId: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
IsIndefiniteRetentionEnabled: pulumi.Bool(false),
IsPreventDeletionEnabled: pulumi.Bool(false),
IsRetentionLockEnabled: pulumi.Bool(false),
KmsKeyId: pulumi.String("string"),
RetentionPeriod: &core.BootVolumeBackupRetentionPeriodArgs{
RetentionTimeAmount: pulumi.Int(0),
RetentionTimeUnit: pulumi.String("string"),
},
SourceDetails: &core.BootVolumeBackupSourceDetailsArgs{
BootVolumeBackupId: pulumi.String("string"),
Region: pulumi.String("string"),
KmsKeyId: pulumi.String("string"),
},
Type: pulumi.String("string"),
})
resource "oci_core_boot_volume_backup" "bootVolumeBackupResource" {
lifecycle {
create_before_destroy = true
}
boot_volume_id = "string"
compartment_id = "string"
defined_tags = {
"string" = "string"
}
display_name = "string"
freeform_tags = {
"string" = "string"
}
is_indefinite_retention_enabled = false
is_prevent_deletion_enabled = false
is_retention_lock_enabled = false
kms_key_id = "string"
retention_period = {
retention_time_amount = 0
retention_time_unit = "string"
}
source_details = {
boot_volume_backup_id = "string"
region = "string"
kms_key_id = "string"
}
type = "string"
}
var bootVolumeBackupResource = new BootVolumeBackup("bootVolumeBackupResource", BootVolumeBackupArgs.builder()
.bootVolumeId("string")
.compartmentId("string")
.definedTags(Map.of("string", "string"))
.displayName("string")
.freeformTags(Map.of("string", "string"))
.isIndefiniteRetentionEnabled(false)
.isPreventDeletionEnabled(false)
.isRetentionLockEnabled(false)
.kmsKeyId("string")
.retentionPeriod(BootVolumeBackupRetentionPeriodArgs.builder()
.retentionTimeAmount(0)
.retentionTimeUnit("string")
.build())
.sourceDetails(BootVolumeBackupSourceDetailsArgs.builder()
.bootVolumeBackupId("string")
.region("string")
.kmsKeyId("string")
.build())
.type("string")
.build());
boot_volume_backup_resource = oci.core.BootVolumeBackup("bootVolumeBackupResource",
boot_volume_id="string",
compartment_id="string",
defined_tags={
"string": "string",
},
display_name="string",
freeform_tags={
"string": "string",
},
is_indefinite_retention_enabled=False,
is_prevent_deletion_enabled=False,
is_retention_lock_enabled=False,
kms_key_id="string",
retention_period={
"retention_time_amount": 0,
"retention_time_unit": "string",
},
source_details={
"boot_volume_backup_id": "string",
"region": "string",
"kms_key_id": "string",
},
type="string")
const bootVolumeBackupResource = new oci.core.BootVolumeBackup("bootVolumeBackupResource", {
bootVolumeId: "string",
compartmentId: "string",
definedTags: {
string: "string",
},
displayName: "string",
freeformTags: {
string: "string",
},
isIndefiniteRetentionEnabled: false,
isPreventDeletionEnabled: false,
isRetentionLockEnabled: false,
kmsKeyId: "string",
retentionPeriod: {
retentionTimeAmount: 0,
retentionTimeUnit: "string",
},
sourceDetails: {
bootVolumeBackupId: "string",
region: "string",
kmsKeyId: "string",
},
type: "string",
});
type: oci:Core:BootVolumeBackup
properties:
bootVolumeId: string
compartmentId: string
definedTags:
string: string
displayName: string
freeformTags:
string: string
isIndefiniteRetentionEnabled: false
isPreventDeletionEnabled: false
isRetentionLockEnabled: false
kmsKeyId: string
retentionPeriod:
retentionTimeAmount: 0
retentionTimeUnit: string
sourceDetails:
bootVolumeBackupId: string
kmsKeyId: string
region: string
type: string
BootVolumeBackup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The BootVolumeBackup resource accepts the following input properties:
- Boot
Volume stringId - The OCID of the boot volume that needs to be backed up. Cannot be defined if
sourceDetailsis defined. - Compartment
Id string - (Updatable) The OCID of the compartment that contains the boot volume backup.
- Dictionary<string, string>
- (Updatable) 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 - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) 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"} - Is
Indefinite boolRetention Enabled - (Updatable) feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- Is
Prevent boolDeletion Enabled - (Updatable) Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- Is
Retention boolLock Enabled - (Updatable) feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- Kms
Key stringId - (Updatable) 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.
- Retention
Period BootVolume Backup Retention Period - (Updatable) This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- Source
Details BootVolume Backup Source Details - Details of the volume backup source in the cloud. Cannot be defined if
bootVolumeIdis defined. - Type string
- The type of backup to create. If omitted, defaults to incremental. Supported values are 'FULL' or 'INCREMENTAL'.
- Boot
Volume stringId - The OCID of the boot volume that needs to be backed up. Cannot be defined if
sourceDetailsis defined. - Compartment
Id string - (Updatable) The OCID of the compartment that contains the boot volume backup.
- map[string]string
- (Updatable) 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 - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- map[string]string
- (Updatable) 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"} - Is
Indefinite boolRetention Enabled - (Updatable) feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- Is
Prevent boolDeletion Enabled - (Updatable) Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- Is
Retention boolLock Enabled - (Updatable) feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- Kms
Key stringId - (Updatable) 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.
- Retention
Period BootVolume Backup Retention Period Args - (Updatable) This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- Source
Details BootVolume Backup Source Details Args - Details of the volume backup source in the cloud. Cannot be defined if
bootVolumeIdis defined. - Type string
- The type of backup to create. If omitted, defaults to incremental. Supported values are 'FULL' or 'INCREMENTAL'.
- boot_
volume_ stringid - The OCID of the boot volume that needs to be backed up. Cannot be defined if
sourceDetailsis defined. - compartment_
id string - (Updatable) The OCID of the compartment that contains the boot volume backup.
- map(string)
- (Updatable) 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 - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- map(string)
- (Updatable) 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"} - is_
indefinite_ boolretention_ enabled - (Updatable) feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- is_
prevent_ booldeletion_ enabled - (Updatable) Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- is_
retention_ boollock_ enabled - (Updatable) feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- kms_
key_ stringid - (Updatable) 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.
- retention_
period object - (Updatable) This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- source_
details object - Details of the volume backup source in the cloud. Cannot be defined if
bootVolumeIdis defined. - type string
- The type of backup to create. If omitted, defaults to incremental. Supported values are 'FULL' or 'INCREMENTAL'.
- boot
Volume StringId - The OCID of the boot volume that needs to be backed up. Cannot be defined if
sourceDetailsis defined. - compartment
Id String - (Updatable) The OCID of the compartment that contains the boot volume backup.
- Map<String,String>
- (Updatable) 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 - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String,String>
- (Updatable) 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"} - is
Indefinite BooleanRetention Enabled - (Updatable) feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- is
Prevent BooleanDeletion Enabled - (Updatable) Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- is
Retention BooleanLock Enabled - (Updatable) feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- kms
Key StringId - (Updatable) 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.
- retention
Period BootVolume Backup Retention Period - (Updatable) This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- source
Details BootVolume Backup Source Details - Details of the volume backup source in the cloud. Cannot be defined if
bootVolumeIdis defined. - type String
- The type of backup to create. If omitted, defaults to incremental. Supported values are 'FULL' or 'INCREMENTAL'.
- boot
Volume stringId - The OCID of the boot volume that needs to be backed up. Cannot be defined if
sourceDetailsis defined. - compartment
Id string - (Updatable) The OCID of the compartment that contains the boot volume backup.
- {[key: string]: string}
- (Updatable) 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 - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) 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"} - is
Indefinite booleanRetention Enabled - (Updatable) feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- is
Prevent booleanDeletion Enabled - (Updatable) Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- is
Retention booleanLock Enabled - (Updatable) feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- kms
Key stringId - (Updatable) 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.
- retention
Period BootVolume Backup Retention Period - (Updatable) This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- source
Details BootVolume Backup Source Details - Details of the volume backup source in the cloud. Cannot be defined if
bootVolumeIdis defined. - type string
- The type of backup to create. If omitted, defaults to incremental. Supported values are 'FULL' or 'INCREMENTAL'.
- boot_
volume_ strid - The OCID of the boot volume that needs to be backed up. Cannot be defined if
sourceDetailsis defined. - compartment_
id str - (Updatable) The OCID of the compartment that contains the boot volume backup.
- Mapping[str, str]
- (Updatable) 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 - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) 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"} - is_
indefinite_ boolretention_ enabled - (Updatable) feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- is_
prevent_ booldeletion_ enabled - (Updatable) Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- is_
retention_ boollock_ enabled - (Updatable) feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- kms_
key_ strid - (Updatable) 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.
- retention_
period BootVolume Backup Retention Period Args - (Updatable) This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- source_
details BootVolume Backup Source Details Args - Details of the volume backup source in the cloud. Cannot be defined if
bootVolumeIdis defined. - type str
- The type of backup to create. If omitted, defaults to incremental. Supported values are 'FULL' or 'INCREMENTAL'.
- boot
Volume StringId - The OCID of the boot volume that needs to be backed up. Cannot be defined if
sourceDetailsis defined. - compartment
Id String - (Updatable) The OCID of the compartment that contains the boot volume backup.
- Map<String>
- (Updatable) 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 - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String>
- (Updatable) 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"} - is
Indefinite BooleanRetention Enabled - (Updatable) feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- is
Prevent BooleanDeletion Enabled - (Updatable) Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- is
Retention BooleanLock Enabled - (Updatable) feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- kms
Key StringId - (Updatable) 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.
- retention
Period Property Map - (Updatable) This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- source
Details Property Map - Details of the volume backup source in the cloud. Cannot be defined if
bootVolumeIdis defined. - type String
- The type of backup to create. If omitted, defaults to incremental. Supported values are 'FULL' or 'INCREMENTAL'.
Outputs
All input properties are implicitly available as output properties. Additionally, the BootVolumeBackup resource produces the following output properties:
- 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.
- Id string
- The provider-assigned unique ID for this managed resource.
- Image
Id string - The image OCID used to create the boot volume the backup is taken from.
- Size
In stringGbs - The size of the boot volume, in GBs.
- Source
Boot stringVolume Backup Id - The OCID of the source boot volume backup.
- Source
Type string - Specifies whether the backup was created manually, or via scheduled backup policy.
- State string
- The current state of a boot volume backup.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Time
Created string - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- Time
Request stringReceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- Time
Retention stringExpires At - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- Unique
Size stringIn Gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- Volume
Group stringBackup Id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
- 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.
- Id string
- The provider-assigned unique ID for this managed resource.
- Image
Id string - The image OCID used to create the boot volume the backup is taken from.
- Size
In stringGbs - The size of the boot volume, in GBs.
- Source
Boot stringVolume Backup Id - The OCID of the source boot volume backup.
- Source
Type string - Specifies whether the backup was created manually, or via scheduled backup policy.
- State string
- The current state of a boot volume backup.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Time
Created string - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- Time
Request stringReceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- Time
Retention stringExpires At - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- Unique
Size stringIn Gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- Volume
Group stringBackup Id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
- 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.
- id string
- The provider-assigned unique ID for this managed resource.
- image_
id string - The image OCID used to create the boot volume the backup is taken from.
- size_
in_ stringgbs - The size of the boot volume, in GBs.
- source_
boot_ stringvolume_ backup_ id - The OCID of the source boot volume backup.
- source_
type string - Specifies whether the backup was created manually, or via scheduled backup policy.
- state string
- The current state of a boot volume backup.
- map(string)
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - time_
created string - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- time_
request_ stringreceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- time_
retention_ stringexpires_ at - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- unique_
size_ stringin_ gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- volume_
group_ stringbackup_ id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
- 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.
- id String
- The provider-assigned unique ID for this managed resource.
- image
Id String - The image OCID used to create the boot volume the backup is taken from.
- size
In StringGbs - The size of the boot volume, in GBs.
- source
Boot StringVolume Backup Id - The OCID of the source boot volume backup.
- source
Type String - Specifies whether the backup was created manually, or via scheduled backup policy.
- state String
- The current state of a boot volume backup.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - time
Created String - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- time
Request StringReceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- time
Retention StringExpires At - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- unique
Size StringIn Gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- volume
Group StringBackup Id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
- 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.
- id string
- The provider-assigned unique ID for this managed resource.
- image
Id string - The image OCID used to create the boot volume the backup is taken from.
- size
In stringGbs - The size of the boot volume, in GBs.
- source
Boot stringVolume Backup Id - The OCID of the source boot volume backup.
- source
Type string - Specifies whether the backup was created manually, or via scheduled backup policy.
- state string
- The current state of a boot volume backup.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - time
Created string - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- time
Request stringReceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- time
Retention stringExpires At - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- unique
Size stringIn Gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- volume
Group stringBackup Id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
- 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.
- id str
- The provider-assigned unique ID for this managed resource.
- image_
id str - The image OCID used to create the boot volume the backup is taken from.
- size_
in_ strgbs - The size of the boot volume, in GBs.
- source_
boot_ strvolume_ backup_ id - The OCID of the source boot volume backup.
- source_
type str - Specifies whether the backup was created manually, or via scheduled backup policy.
- state str
- The current state of a boot volume backup.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - time_
created str - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- time_
request_ strreceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- time_
retention_ strexpires_ at - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- unique_
size_ strin_ gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- volume_
group_ strbackup_ id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
- 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.
- id String
- The provider-assigned unique ID for this managed resource.
- image
Id String - The image OCID used to create the boot volume the backup is taken from.
- size
In StringGbs - The size of the boot volume, in GBs.
- source
Boot StringVolume Backup Id - The OCID of the source boot volume backup.
- source
Type String - Specifies whether the backup was created manually, or via scheduled backup policy.
- state String
- The current state of a boot volume backup.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - time
Created String - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- time
Request StringReceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- time
Retention StringExpires At - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- unique
Size StringIn Gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- volume
Group StringBackup Id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
Look up Existing BootVolumeBackup Resource
Get an existing BootVolumeBackup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: BootVolumeBackupState, opts?: CustomResourceOptions): BootVolumeBackup@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
boot_volume_id: Optional[str] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
expiration_time: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
image_id: Optional[str] = None,
is_indefinite_retention_enabled: Optional[bool] = None,
is_prevent_deletion_enabled: Optional[bool] = None,
is_retention_lock_enabled: Optional[bool] = None,
kms_key_id: Optional[str] = None,
retention_period: Optional[BootVolumeBackupRetentionPeriodArgs] = None,
size_in_gbs: Optional[str] = None,
source_boot_volume_backup_id: Optional[str] = None,
source_details: Optional[BootVolumeBackupSourceDetailsArgs] = None,
source_type: Optional[str] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_request_received: Optional[str] = None,
time_retention_expires_at: Optional[str] = None,
type: Optional[str] = None,
unique_size_in_gbs: Optional[str] = None,
volume_group_backup_id: Optional[str] = None) -> BootVolumeBackupfunc GetBootVolumeBackup(ctx *Context, name string, id IDInput, state *BootVolumeBackupState, opts ...ResourceOption) (*BootVolumeBackup, error)public static BootVolumeBackup Get(string name, Input<string> id, BootVolumeBackupState? state, CustomResourceOptions? opts = null)public static BootVolumeBackup get(String name, Output<String> id, BootVolumeBackupState state, CustomResourceOptions options)resources: _: type: oci:Core:BootVolumeBackup get: id: ${id}import {
to = oci_core_boot_volume_backup.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Boot
Volume stringId - The OCID of the boot volume that needs to be backed up. Cannot be defined if
sourceDetailsis defined. - Compartment
Id string - (Updatable) The OCID of the compartment that contains the boot volume backup.
- Dictionary<string, string>
- (Updatable) 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 - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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>
- (Updatable) 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"} - Image
Id string - The image OCID used to create the boot volume the backup is taken from.
- Is
Indefinite boolRetention Enabled - (Updatable) feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- Is
Prevent boolDeletion Enabled - (Updatable) Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- Is
Retention boolLock Enabled - (Updatable) feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- Kms
Key stringId - (Updatable) 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.
- Retention
Period BootVolume Backup Retention Period - (Updatable) This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- Size
In stringGbs - The size of the boot volume, in GBs.
- Source
Boot stringVolume Backup Id - The OCID of the source boot volume backup.
- Source
Details BootVolume Backup Source Details - Details of the volume backup source in the cloud. Cannot be defined if
bootVolumeIdis defined. - Source
Type string - Specifies whether the backup was created manually, or via scheduled backup policy.
- State string
- The current state of a boot volume backup.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Time
Created string - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- Time
Request stringReceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- Time
Retention stringExpires At - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- Type string
- The type of backup to create. If omitted, defaults to incremental. Supported values are 'FULL' or 'INCREMENTAL'.
- Unique
Size stringIn Gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- Volume
Group stringBackup Id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
- Boot
Volume stringId - The OCID of the boot volume that needs to be backed up. Cannot be defined if
sourceDetailsis defined. - Compartment
Id string - (Updatable) The OCID of the compartment that contains the boot volume backup.
- map[string]string
- (Updatable) 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 - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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
- (Updatable) 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"} - Image
Id string - The image OCID used to create the boot volume the backup is taken from.
- Is
Indefinite boolRetention Enabled - (Updatable) feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- Is
Prevent boolDeletion Enabled - (Updatable) Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- Is
Retention boolLock Enabled - (Updatable) feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- Kms
Key stringId - (Updatable) 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.
- Retention
Period BootVolume Backup Retention Period Args - (Updatable) This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- Size
In stringGbs - The size of the boot volume, in GBs.
- Source
Boot stringVolume Backup Id - The OCID of the source boot volume backup.
- Source
Details BootVolume Backup Source Details Args - Details of the volume backup source in the cloud. Cannot be defined if
bootVolumeIdis defined. - Source
Type string - Specifies whether the backup was created manually, or via scheduled backup policy.
- State string
- The current state of a boot volume backup.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Time
Created string - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- Time
Request stringReceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- Time
Retention stringExpires At - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- Type string
- The type of backup to create. If omitted, defaults to incremental. Supported values are 'FULL' or 'INCREMENTAL'.
- Unique
Size stringIn Gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- Volume
Group stringBackup Id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
- boot_
volume_ stringid - The OCID of the boot volume that needs to be backed up. Cannot be defined if
sourceDetailsis defined. - compartment_
id string - (Updatable) The OCID of the compartment that contains the boot volume backup.
- map(string)
- (Updatable) 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 - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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)
- (Updatable) 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"} - image_
id string - The image OCID used to create the boot volume the backup is taken from.
- is_
indefinite_ boolretention_ enabled - (Updatable) feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- is_
prevent_ booldeletion_ enabled - (Updatable) Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- is_
retention_ boollock_ enabled - (Updatable) feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- kms_
key_ stringid - (Updatable) 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.
- retention_
period object - (Updatable) This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- size_
in_ stringgbs - The size of the boot volume, in GBs.
- source_
boot_ stringvolume_ backup_ id - The OCID of the source boot volume backup.
- source_
details object - Details of the volume backup source in the cloud. Cannot be defined if
bootVolumeIdis defined. - source_
type string - Specifies whether the backup was created manually, or via scheduled backup policy.
- state string
- The current state of a boot volume backup.
- map(string)
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - time_
created string - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- time_
request_ stringreceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- time_
retention_ stringexpires_ at - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- type string
- The type of backup to create. If omitted, defaults to incremental. Supported values are 'FULL' or 'INCREMENTAL'.
- unique_
size_ stringin_ gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- volume_
group_ stringbackup_ id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
- boot
Volume StringId - The OCID of the boot volume that needs to be backed up. Cannot be defined if
sourceDetailsis defined. - compartment
Id String - (Updatable) The OCID of the compartment that contains the boot volume backup.
- Map<String,String>
- (Updatable) 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 - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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>
- (Updatable) 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"} - image
Id String - The image OCID used to create the boot volume the backup is taken from.
- is
Indefinite BooleanRetention Enabled - (Updatable) feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- is
Prevent BooleanDeletion Enabled - (Updatable) Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- is
Retention BooleanLock Enabled - (Updatable) feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- kms
Key StringId - (Updatable) 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.
- retention
Period BootVolume Backup Retention Period - (Updatable) This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- size
In StringGbs - The size of the boot volume, in GBs.
- source
Boot StringVolume Backup Id - The OCID of the source boot volume backup.
- source
Details BootVolume Backup Source Details - Details of the volume backup source in the cloud. Cannot be defined if
bootVolumeIdis defined. - source
Type String - Specifies whether the backup was created manually, or via scheduled backup policy.
- state String
- The current state of a boot volume backup.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - time
Created String - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- time
Request StringReceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- time
Retention StringExpires At - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- type String
- The type of backup to create. If omitted, defaults to incremental. Supported values are 'FULL' or 'INCREMENTAL'.
- unique
Size StringIn Gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- volume
Group StringBackup Id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
- boot
Volume stringId - The OCID of the boot volume that needs to be backed up. Cannot be defined if
sourceDetailsis defined. - compartment
Id string - (Updatable) The OCID of the compartment that contains the boot volume backup.
- {[key: string]: string}
- (Updatable) 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 - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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}
- (Updatable) 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"} - image
Id string - The image OCID used to create the boot volume the backup is taken from.
- is
Indefinite booleanRetention Enabled - (Updatable) feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- is
Prevent booleanDeletion Enabled - (Updatable) Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- is
Retention booleanLock Enabled - (Updatable) feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- kms
Key stringId - (Updatable) 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.
- retention
Period BootVolume Backup Retention Period - (Updatable) This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- size
In stringGbs - The size of the boot volume, in GBs.
- source
Boot stringVolume Backup Id - The OCID of the source boot volume backup.
- source
Details BootVolume Backup Source Details - Details of the volume backup source in the cloud. Cannot be defined if
bootVolumeIdis defined. - source
Type string - Specifies whether the backup was created manually, or via scheduled backup policy.
- state string
- The current state of a boot volume backup.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - time
Created string - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- time
Request stringReceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- time
Retention stringExpires At - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- type string
- The type of backup to create. If omitted, defaults to incremental. Supported values are 'FULL' or 'INCREMENTAL'.
- unique
Size stringIn Gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- volume
Group stringBackup Id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
- boot_
volume_ strid - The OCID of the boot volume that needs to be backed up. Cannot be defined if
sourceDetailsis defined. - compartment_
id str - (Updatable) The OCID of the compartment that contains the boot volume backup.
- Mapping[str, str]
- (Updatable) 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 - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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]
- (Updatable) 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"} - image_
id str - The image OCID used to create the boot volume the backup is taken from.
- is_
indefinite_ boolretention_ enabled - (Updatable) feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- is_
prevent_ booldeletion_ enabled - (Updatable) Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- is_
retention_ boollock_ enabled - (Updatable) feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- kms_
key_ strid - (Updatable) 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.
- retention_
period BootVolume Backup Retention Period Args - (Updatable) This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- size_
in_ strgbs - The size of the boot volume, in GBs.
- source_
boot_ strvolume_ backup_ id - The OCID of the source boot volume backup.
- source_
details BootVolume Backup Source Details Args - Details of the volume backup source in the cloud. Cannot be defined if
bootVolumeIdis defined. - source_
type str - Specifies whether the backup was created manually, or via scheduled backup policy.
- state str
- The current state of a boot volume backup.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - time_
created str - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- time_
request_ strreceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- time_
retention_ strexpires_ at - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- type str
- The type of backup to create. If omitted, defaults to incremental. Supported values are 'FULL' or 'INCREMENTAL'.
- unique_
size_ strin_ gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- volume_
group_ strbackup_ id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
- boot
Volume StringId - The OCID of the boot volume that needs to be backed up. Cannot be defined if
sourceDetailsis defined. - compartment
Id String - (Updatable) The OCID of the compartment that contains the boot volume backup.
- Map<String>
- (Updatable) 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 - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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>
- (Updatable) 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"} - image
Id String - The image OCID used to create the boot volume the backup is taken from.
- is
Indefinite BooleanRetention Enabled - (Updatable) feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
- is
Prevent BooleanDeletion Enabled - (Updatable) Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
- is
Retention BooleanLock Enabled - (Updatable) feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
- kms
Key StringId - (Updatable) 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.
- retention
Period Property Map - (Updatable) This field is used to define the retention period for backups. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- size
In StringGbs - The size of the boot volume, in GBs.
- source
Boot StringVolume Backup Id - The OCID of the source boot volume backup.
- source
Details Property Map - Details of the volume backup source in the cloud. Cannot be defined if
bootVolumeIdis defined. - source
Type String - Specifies whether the backup was created manually, or via scheduled backup policy.
- state String
- The current state of a boot volume backup.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - time
Created String - The date and time the boot volume backup was created. This is the time the actual point-in-time image of the volume data was taken. Format defined by RFC3339.
- time
Request StringReceived - The date and time the request to create the boot volume backup was received. Format defined by RFC3339.
- time
Retention StringExpires At - The date and time when a backup’s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
- type String
- The type of backup to create. If omitted, defaults to incremental. Supported values are 'FULL' or 'INCREMENTAL'.
- unique
Size StringIn Gbs - The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space consumed on the boot volume and whether the backup is full or incremental.
- volume
Group StringBackup Id - The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
Supporting Types
BootVolumeBackupRetentionPeriod, BootVolumeBackupRetentionPeriodArgs
- Retention
Time intAmount - (Updatable) The value to enter for the amount of retention time should be a numerical figure (such as 1, 7, 30, etc.) that corresponds to the period specified in the retention time unit property (such as YEARS, DAYS). The combination of these two properties determines the total length of the retention period.
- Retention
Time stringUnit - (Updatable) The value you can assign to the Time Unit property for this Duration may be either "YEARS" or "DAYS".
- Retention
Time intAmount - (Updatable) The value to enter for the amount of retention time should be a numerical figure (such as 1, 7, 30, etc.) that corresponds to the period specified in the retention time unit property (such as YEARS, DAYS). The combination of these two properties determines the total length of the retention period.
- Retention
Time stringUnit - (Updatable) The value you can assign to the Time Unit property for this Duration may be either "YEARS" or "DAYS".
- retention_
time_ numberamount - (Updatable) The value to enter for the amount of retention time should be a numerical figure (such as 1, 7, 30, etc.) that corresponds to the period specified in the retention time unit property (such as YEARS, DAYS). The combination of these two properties determines the total length of the retention period.
- retention_
time_ stringunit - (Updatable) The value you can assign to the Time Unit property for this Duration may be either "YEARS" or "DAYS".
- retention
Time IntegerAmount - (Updatable) The value to enter for the amount of retention time should be a numerical figure (such as 1, 7, 30, etc.) that corresponds to the period specified in the retention time unit property (such as YEARS, DAYS). The combination of these two properties determines the total length of the retention period.
- retention
Time StringUnit - (Updatable) The value you can assign to the Time Unit property for this Duration may be either "YEARS" or "DAYS".
- retention
Time numberAmount - (Updatable) The value to enter for the amount of retention time should be a numerical figure (such as 1, 7, 30, etc.) that corresponds to the period specified in the retention time unit property (such as YEARS, DAYS). The combination of these two properties determines the total length of the retention period.
- retention
Time stringUnit - (Updatable) The value you can assign to the Time Unit property for this Duration may be either "YEARS" or "DAYS".
- retention_
time_ intamount - (Updatable) The value to enter for the amount of retention time should be a numerical figure (such as 1, 7, 30, etc.) that corresponds to the period specified in the retention time unit property (such as YEARS, DAYS). The combination of these two properties determines the total length of the retention period.
- retention_
time_ strunit - (Updatable) The value you can assign to the Time Unit property for this Duration may be either "YEARS" or "DAYS".
- retention
Time NumberAmount - (Updatable) The value to enter for the amount of retention time should be a numerical figure (such as 1, 7, 30, etc.) that corresponds to the period specified in the retention time unit property (such as YEARS, DAYS). The combination of these two properties determines the total length of the retention period.
- retention
Time StringUnit - (Updatable) The value you can assign to the Time Unit property for this Duration may be either "YEARS" or "DAYS".
BootVolumeBackupSourceDetails, BootVolumeBackupSourceDetailsArgs
- Boot
Volume stringBackup Id - Region string
- The region of the volume backup source.
- Kms
Key stringId - The OCID of the KMS key in the destination region which will be the master encryption key for the copied volume backup.
- Boot
Volume stringBackup Id - Region string
- The region of the volume backup source.
- Kms
Key stringId - The OCID of the KMS key in the destination region which will be the master encryption key for the copied volume backup.
- boot_
volume_ stringbackup_ id - region string
- The region of the volume backup source.
- kms_
key_ stringid - The OCID of the KMS key in the destination region which will be the master encryption key for the copied volume backup.
- boot
Volume StringBackup Id - region String
- The region of the volume backup source.
- kms
Key StringId - The OCID of the KMS key in the destination region which will be the master encryption key for the copied volume backup.
- boot
Volume stringBackup Id - region string
- The region of the volume backup source.
- kms
Key stringId - The OCID of the KMS key in the destination region which will be the master encryption key for the copied volume backup.
- boot_
volume_ strbackup_ id - region str
- The region of the volume backup source.
- kms_
key_ strid - The OCID of the KMS key in the destination region which will be the master encryption key for the copied volume backup.
- boot
Volume StringBackup Id - region String
- The region of the volume backup source.
- kms
Key StringId - The OCID of the KMS key in the destination region which will be the master encryption key for the copied volume backup.
Import
BootVolumeBackups can be imported using the id, e.g.
$ pulumi import oci:Core/bootVolumeBackup:BootVolumeBackup test_boot_volume_backup "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
published on Wednesday, Aug 26, 2026 by Pulumi