oci.Core.Volume
Explore with Pulumi AI
This resource provides the Volume resource in Oracle Cloud Infrastructure Core service.
Creates a new volume in the specified compartment. Volumes can be created in sizes ranging from 50 GB (51200 MB) to 32 TB (33554432 MB), in 1 GB (1024 MB) increments. By default, volumes are 1 TB (1048576 MB). For general information about block volumes, see Overview of Block Volume Service.
A volume and instance can be in separate compartments but must be in the same availability domain.
For information about access control and compartments, see
Overview of the IAM Service. For information about
availability domains, see Regions and Availability Domains.
To get a list of availability domains, use the ListAvailabilityDomains
operation
in the Identity and Access Management Service API.
You may optionally specify a display name for the volume, which is simply a friendly name or description. It does not have to be unique, and you can change it. Avoid entering confidential information.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testVolume = new oci.core.Volume("test_volume", {
compartmentId: compartmentId,
autotunePolicies: [{
autotuneType: volumeAutotunePoliciesAutotuneType,
maxVpusPerGb: volumeAutotunePoliciesMaxVpusPerGb,
}],
availabilityDomain: volumeAvailabilityDomain,
backupPolicyId: testVolumeBackupPolicies.volumeBackupPolicies[0].id,
blockVolumeReplicas: [{
availabilityDomain: volumeBlockVolumeReplicasAvailabilityDomain,
displayName: volumeBlockVolumeReplicasDisplayName,
xrrKmsKeyId: testKey.id,
}],
clusterPlacementGroupId: testGroup.id,
definedTags: {
"Operations.CostCenter": "42",
},
displayName: volumeDisplayName,
freeformTags: {
Department: "Finance",
},
isAutoTuneEnabled: volumeIsAutoTuneEnabled,
kmsKeyId: testKey.id,
sizeInGbs: volumeSizeInGbs,
sizeInMbs: volumeSizeInMbs,
sourceDetails: {
type: volumeSourceDetailsType,
changeBlockSizeInBytes: volumeSourceDetailsChangeBlockSizeInBytes,
firstBackupId: testBackup.id,
id: volumeSourceDetailsId,
secondBackupId: testBackup.id,
},
vpusPerGb: volumeVpusPerGb,
xrcKmsKeyId: testKey.id,
blockVolumeReplicasDeletion: true,
});
import pulumi
import pulumi_oci as oci
test_volume = oci.core.Volume("test_volume",
compartment_id=compartment_id,
autotune_policies=[{
"autotune_type": volume_autotune_policies_autotune_type,
"max_vpus_per_gb": volume_autotune_policies_max_vpus_per_gb,
}],
availability_domain=volume_availability_domain,
backup_policy_id=test_volume_backup_policies["volumeBackupPolicies"][0]["id"],
block_volume_replicas=[{
"availability_domain": volume_block_volume_replicas_availability_domain,
"display_name": volume_block_volume_replicas_display_name,
"xrr_kms_key_id": test_key["id"],
}],
cluster_placement_group_id=test_group["id"],
defined_tags={
"Operations.CostCenter": "42",
},
display_name=volume_display_name,
freeform_tags={
"Department": "Finance",
},
is_auto_tune_enabled=volume_is_auto_tune_enabled,
kms_key_id=test_key["id"],
size_in_gbs=volume_size_in_gbs,
size_in_mbs=volume_size_in_mbs,
source_details={
"type": volume_source_details_type,
"change_block_size_in_bytes": volume_source_details_change_block_size_in_bytes,
"first_backup_id": test_backup["id"],
"id": volume_source_details_id,
"second_backup_id": test_backup["id"],
},
vpus_per_gb=volume_vpus_per_gb,
xrc_kms_key_id=test_key["id"],
block_volume_replicas_deletion=True)
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.NewVolume(ctx, "test_volume", &Core.VolumeArgs{
CompartmentId: pulumi.Any(compartmentId),
AutotunePolicies: core.VolumeAutotunePolicyArray{
&core.VolumeAutotunePolicyArgs{
AutotuneType: pulumi.Any(volumeAutotunePoliciesAutotuneType),
MaxVpusPerGb: pulumi.Any(volumeAutotunePoliciesMaxVpusPerGb),
},
},
AvailabilityDomain: pulumi.Any(volumeAvailabilityDomain),
BackupPolicyId: pulumi.Any(testVolumeBackupPolicies.VolumeBackupPolicies[0].Id),
BlockVolumeReplicas: core.VolumeBlockVolumeReplicaArray{
&core.VolumeBlockVolumeReplicaArgs{
AvailabilityDomain: pulumi.Any(volumeBlockVolumeReplicasAvailabilityDomain),
DisplayName: pulumi.Any(volumeBlockVolumeReplicasDisplayName),
XrrKmsKeyId: pulumi.Any(testKey.Id),
},
},
ClusterPlacementGroupId: pulumi.Any(testGroup.Id),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
DisplayName: pulumi.Any(volumeDisplayName),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
IsAutoTuneEnabled: pulumi.Any(volumeIsAutoTuneEnabled),
KmsKeyId: pulumi.Any(testKey.Id),
SizeInGbs: pulumi.Any(volumeSizeInGbs),
SizeInMbs: pulumi.Any(volumeSizeInMbs),
SourceDetails: &core.VolumeSourceDetailsArgs{
Type: pulumi.Any(volumeSourceDetailsType),
ChangeBlockSizeInBytes: pulumi.Any(volumeSourceDetailsChangeBlockSizeInBytes),
FirstBackupId: pulumi.Any(testBackup.Id),
Id: pulumi.Any(volumeSourceDetailsId),
SecondBackupId: pulumi.Any(testBackup.Id),
},
VpusPerGb: pulumi.Any(volumeVpusPerGb),
XrcKmsKeyId: pulumi.Any(testKey.Id),
BlockVolumeReplicasDeletion: pulumi.Bool(true),
})
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 testVolume = new Oci.Core.Volume("test_volume", new()
{
CompartmentId = compartmentId,
AutotunePolicies = new[]
{
new Oci.Core.Inputs.VolumeAutotunePolicyArgs
{
AutotuneType = volumeAutotunePoliciesAutotuneType,
MaxVpusPerGb = volumeAutotunePoliciesMaxVpusPerGb,
},
},
AvailabilityDomain = volumeAvailabilityDomain,
BackupPolicyId = testVolumeBackupPolicies.VolumeBackupPolicies[0].Id,
BlockVolumeReplicas = new[]
{
new Oci.Core.Inputs.VolumeBlockVolumeReplicaArgs
{
AvailabilityDomain = volumeBlockVolumeReplicasAvailabilityDomain,
DisplayName = volumeBlockVolumeReplicasDisplayName,
XrrKmsKeyId = testKey.Id,
},
},
ClusterPlacementGroupId = testGroup.Id,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
DisplayName = volumeDisplayName,
FreeformTags =
{
{ "Department", "Finance" },
},
IsAutoTuneEnabled = volumeIsAutoTuneEnabled,
KmsKeyId = testKey.Id,
SizeInGbs = volumeSizeInGbs,
SizeInMbs = volumeSizeInMbs,
SourceDetails = new Oci.Core.Inputs.VolumeSourceDetailsArgs
{
Type = volumeSourceDetailsType,
ChangeBlockSizeInBytes = volumeSourceDetailsChangeBlockSizeInBytes,
FirstBackupId = testBackup.Id,
Id = volumeSourceDetailsId,
SecondBackupId = testBackup.Id,
},
VpusPerGb = volumeVpusPerGb,
XrcKmsKeyId = testKey.Id,
BlockVolumeReplicasDeletion = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Core.Volume;
import com.pulumi.oci.Core.VolumeArgs;
import com.pulumi.oci.Core.inputs.VolumeAutotunePolicyArgs;
import com.pulumi.oci.Core.inputs.VolumeBlockVolumeReplicaArgs;
import com.pulumi.oci.Core.inputs.VolumeSourceDetailsArgs;
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) {
var testVolume = new Volume("testVolume", VolumeArgs.builder()
.compartmentId(compartmentId)
.autotunePolicies(VolumeAutotunePolicyArgs.builder()
.autotuneType(volumeAutotunePoliciesAutotuneType)
.maxVpusPerGb(volumeAutotunePoliciesMaxVpusPerGb)
.build())
.availabilityDomain(volumeAvailabilityDomain)
.backupPolicyId(testVolumeBackupPolicies.volumeBackupPolicies()[0].id())
.blockVolumeReplicas(VolumeBlockVolumeReplicaArgs.builder()
.availabilityDomain(volumeBlockVolumeReplicasAvailabilityDomain)
.displayName(volumeBlockVolumeReplicasDisplayName)
.xrrKmsKeyId(testKey.id())
.build())
.clusterPlacementGroupId(testGroup.id())
.definedTags(Map.of("Operations.CostCenter", "42"))
.displayName(volumeDisplayName)
.freeformTags(Map.of("Department", "Finance"))
.isAutoTuneEnabled(volumeIsAutoTuneEnabled)
.kmsKeyId(testKey.id())
.sizeInGbs(volumeSizeInGbs)
.sizeInMbs(volumeSizeInMbs)
.sourceDetails(VolumeSourceDetailsArgs.builder()
.type(volumeSourceDetailsType)
.changeBlockSizeInBytes(volumeSourceDetailsChangeBlockSizeInBytes)
.firstBackupId(testBackup.id())
.id(volumeSourceDetailsId)
.secondBackupId(testBackup.id())
.build())
.vpusPerGb(volumeVpusPerGb)
.xrcKmsKeyId(testKey.id())
.blockVolumeReplicasDeletion(true)
.build());
}
}
resources:
testVolume:
type: oci:Core:Volume
name: test_volume
properties:
compartmentId: ${compartmentId}
autotunePolicies:
- autotuneType: ${volumeAutotunePoliciesAutotuneType}
maxVpusPerGb: ${volumeAutotunePoliciesMaxVpusPerGb}
availabilityDomain: ${volumeAvailabilityDomain}
backupPolicyId: ${testVolumeBackupPolicies.volumeBackupPolicies[0].id}
blockVolumeReplicas:
- availabilityDomain: ${volumeBlockVolumeReplicasAvailabilityDomain}
displayName: ${volumeBlockVolumeReplicasDisplayName}
xrrKmsKeyId: ${testKey.id}
clusterPlacementGroupId: ${testGroup.id}
definedTags:
Operations.CostCenter: '42'
displayName: ${volumeDisplayName}
freeformTags:
Department: Finance
isAutoTuneEnabled: ${volumeIsAutoTuneEnabled}
kmsKeyId: ${testKey.id}
sizeInGbs: ${volumeSizeInGbs}
sizeInMbs: ${volumeSizeInMbs}
sourceDetails:
type: ${volumeSourceDetailsType}
changeBlockSizeInBytes: ${volumeSourceDetailsChangeBlockSizeInBytes}
firstBackupId: ${testBackup.id}
id: ${volumeSourceDetailsId}
secondBackupId: ${testBackup.id}
vpusPerGb: ${volumeVpusPerGb}
xrcKmsKeyId: ${testKey.id}
blockVolumeReplicasDeletion: true
Create Volume Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Volume(name: string, args: VolumeArgs, opts?: CustomResourceOptions);
@overload
def Volume(resource_name: str,
args: VolumeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Volume(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
availability_domain: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
block_volume_replicas_deletion: Optional[bool] = None,
cluster_placement_group_id: Optional[str] = None,
backup_policy_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
autotune_policies: Optional[Sequence[_core.VolumeAutotunePolicyArgs]] = None,
block_volume_replicas: Optional[Sequence[_core.VolumeBlockVolumeReplicaArgs]] = None,
is_auto_tune_enabled: Optional[bool] = None,
kms_key_id: Optional[str] = None,
size_in_gbs: Optional[str] = None,
size_in_mbs: Optional[str] = None,
source_details: Optional[_core.VolumeSourceDetailsArgs] = None,
volume_backup_id: Optional[str] = None,
vpus_per_gb: Optional[str] = None,
xrc_kms_key_id: Optional[str] = None)
func NewVolume(ctx *Context, name string, args VolumeArgs, opts ...ResourceOption) (*Volume, error)
public Volume(string name, VolumeArgs args, CustomResourceOptions? opts = null)
public Volume(String name, VolumeArgs args)
public Volume(String name, VolumeArgs args, CustomResourceOptions options)
type: oci:Core:Volume
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args VolumeArgs
- 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 VolumeArgs
- 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 VolumeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VolumeArgs
- 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 volumeResource = new Oci.Core.Volume("volumeResource", new()
{
CompartmentId = "string",
AvailabilityDomain = "string",
DisplayName = "string",
FreeformTags =
{
{ "string", "string" },
},
BlockVolumeReplicasDeletion = false,
ClusterPlacementGroupId = "string",
DefinedTags =
{
{ "string", "string" },
},
AutotunePolicies = new[]
{
new Oci.Core.Inputs.VolumeAutotunePolicyArgs
{
AutotuneType = "string",
MaxVpusPerGb = "string",
},
},
BlockVolumeReplicas = new[]
{
new Oci.Core.Inputs.VolumeBlockVolumeReplicaArgs
{
AvailabilityDomain = "string",
BlockVolumeReplicaId = "string",
DisplayName = "string",
KmsKeyId = "string",
XrrKmsKeyId = "string",
},
},
IsAutoTuneEnabled = false,
KmsKeyId = "string",
SizeInGbs = "string",
SourceDetails = new Oci.Core.Inputs.VolumeSourceDetailsArgs
{
Type = "string",
ChangeBlockSizeInBytes = "string",
FirstBackupId = "string",
Id = "string",
SecondBackupId = "string",
},
VolumeBackupId = "string",
VpusPerGb = "string",
XrcKmsKeyId = "string",
});
example, err := Core.NewVolume(ctx, "volumeResource", &Core.VolumeArgs{
CompartmentId: pulumi.String("string"),
AvailabilityDomain: pulumi.String("string"),
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
BlockVolumeReplicasDeletion: pulumi.Bool(false),
ClusterPlacementGroupId: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
AutotunePolicies: core.VolumeAutotunePolicyArray{
&core.VolumeAutotunePolicyArgs{
AutotuneType: pulumi.String("string"),
MaxVpusPerGb: pulumi.String("string"),
},
},
BlockVolumeReplicas: core.VolumeBlockVolumeReplicaArray{
&core.VolumeBlockVolumeReplicaArgs{
AvailabilityDomain: pulumi.String("string"),
BlockVolumeReplicaId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
KmsKeyId: pulumi.String("string"),
XrrKmsKeyId: pulumi.String("string"),
},
},
IsAutoTuneEnabled: pulumi.Bool(false),
KmsKeyId: pulumi.String("string"),
SizeInGbs: pulumi.String("string"),
SourceDetails: &core.VolumeSourceDetailsArgs{
Type: pulumi.String("string"),
ChangeBlockSizeInBytes: pulumi.String("string"),
FirstBackupId: pulumi.String("string"),
Id: pulumi.String("string"),
SecondBackupId: pulumi.String("string"),
},
VolumeBackupId: pulumi.String("string"),
VpusPerGb: pulumi.String("string"),
XrcKmsKeyId: pulumi.String("string"),
})
var volumeResource = new Volume("volumeResource", VolumeArgs.builder()
.compartmentId("string")
.availabilityDomain("string")
.displayName("string")
.freeformTags(Map.of("string", "string"))
.blockVolumeReplicasDeletion(false)
.clusterPlacementGroupId("string")
.definedTags(Map.of("string", "string"))
.autotunePolicies(VolumeAutotunePolicyArgs.builder()
.autotuneType("string")
.maxVpusPerGb("string")
.build())
.blockVolumeReplicas(VolumeBlockVolumeReplicaArgs.builder()
.availabilityDomain("string")
.blockVolumeReplicaId("string")
.displayName("string")
.kmsKeyId("string")
.xrrKmsKeyId("string")
.build())
.isAutoTuneEnabled(false)
.kmsKeyId("string")
.sizeInGbs("string")
.sourceDetails(VolumeSourceDetailsArgs.builder()
.type("string")
.changeBlockSizeInBytes("string")
.firstBackupId("string")
.id("string")
.secondBackupId("string")
.build())
.volumeBackupId("string")
.vpusPerGb("string")
.xrcKmsKeyId("string")
.build());
volume_resource = oci.core.Volume("volumeResource",
compartment_id="string",
availability_domain="string",
display_name="string",
freeform_tags={
"string": "string",
},
block_volume_replicas_deletion=False,
cluster_placement_group_id="string",
defined_tags={
"string": "string",
},
autotune_policies=[{
"autotune_type": "string",
"max_vpus_per_gb": "string",
}],
block_volume_replicas=[{
"availability_domain": "string",
"block_volume_replica_id": "string",
"display_name": "string",
"kms_key_id": "string",
"xrr_kms_key_id": "string",
}],
is_auto_tune_enabled=False,
kms_key_id="string",
size_in_gbs="string",
source_details={
"type": "string",
"change_block_size_in_bytes": "string",
"first_backup_id": "string",
"id": "string",
"second_backup_id": "string",
},
volume_backup_id="string",
vpus_per_gb="string",
xrc_kms_key_id="string")
const volumeResource = new oci.core.Volume("volumeResource", {
compartmentId: "string",
availabilityDomain: "string",
displayName: "string",
freeformTags: {
string: "string",
},
blockVolumeReplicasDeletion: false,
clusterPlacementGroupId: "string",
definedTags: {
string: "string",
},
autotunePolicies: [{
autotuneType: "string",
maxVpusPerGb: "string",
}],
blockVolumeReplicas: [{
availabilityDomain: "string",
blockVolumeReplicaId: "string",
displayName: "string",
kmsKeyId: "string",
xrrKmsKeyId: "string",
}],
isAutoTuneEnabled: false,
kmsKeyId: "string",
sizeInGbs: "string",
sourceDetails: {
type: "string",
changeBlockSizeInBytes: "string",
firstBackupId: "string",
id: "string",
secondBackupId: "string",
},
volumeBackupId: "string",
vpusPerGb: "string",
xrcKmsKeyId: "string",
});
type: oci:Core:Volume
properties:
autotunePolicies:
- autotuneType: string
maxVpusPerGb: string
availabilityDomain: string
blockVolumeReplicas:
- availabilityDomain: string
blockVolumeReplicaId: string
displayName: string
kmsKeyId: string
xrrKmsKeyId: string
blockVolumeReplicasDeletion: false
clusterPlacementGroupId: string
compartmentId: string
definedTags:
string: string
displayName: string
freeformTags:
string: string
isAutoTuneEnabled: false
kmsKeyId: string
sizeInGbs: string
sourceDetails:
changeBlockSizeInBytes: string
firstBackupId: string
id: string
secondBackupId: string
type: string
volumeBackupId: string
vpusPerGb: string
xrcKmsKeyId: string
Volume 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 Volume resource accepts the following input properties:
- Availability
Domain string - The availability domain of the volume. Omissible for cloning a volume. The new volume will be created in the availability domain of the source volume. Example:
Uocm:PHX-AD-1
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the volume.
- Autotune
Policies List<VolumeAutotune Policy> - (Updatable) The list of autotune policies to be enabled for this volume.
- Backup
Policy stringId - If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the
oci.Core.getVolumeBackupPolicyAssignments
instead to assign a backup policy to a volume. - Block
Volume List<VolumeReplicas Block Volume Replica> - (Updatable) The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
- Block
Volume boolReplicas Deletion - Cluster
Placement stringGroup Id - The clusterPlacementGroup Id of the volume for volume placement.
- 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
Auto boolTune Enabled - (Updatable) Specifies whether the auto-tune performance is enabled for this volume. This field is deprecated. Use the
DetachedVolumeAutotunePolicy
instead to enable the volume for detached autotune. - Kms
Key stringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
- Size
In stringGbs - (Updatable) 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. Use sizeInGBs instead.
- Source
Details VolumeSource Details - Specifies the volume source details for a new Block volume. The volume source is either another Block volume in the same Availability Domain or a Block volume backup. This is an optional field. If not specified or set to null, the new Block volume will be empty. When specified, the new Block volume will contain data from the source volume or backup.
- Volume
Backup stringId - The OCID of the volume backup from which the data should be restored on the newly created volume. This field is deprecated. Use the sourceDetails field instead to specify the backup for the volume.
- Vpus
Per stringGb (Updatable) The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See Block Volume Performance Levels for more information.
Allowed values:
- Xrc
Kms stringKey Id The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Availability
Domain string - The availability domain of the volume. Omissible for cloning a volume. The new volume will be created in the availability domain of the source volume. Example:
Uocm:PHX-AD-1
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the volume.
- Autotune
Policies []VolumeAutotune Policy Args - (Updatable) The list of autotune policies to be enabled for this volume.
- Backup
Policy stringId - If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the
oci.Core.getVolumeBackupPolicyAssignments
instead to assign a backup policy to a volume. - Block
Volume []VolumeReplicas Block Volume Replica Args - (Updatable) The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
- Block
Volume boolReplicas Deletion - Cluster
Placement stringGroup Id - The clusterPlacementGroup Id of the volume for volume placement.
- 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
Auto boolTune Enabled - (Updatable) Specifies whether the auto-tune performance is enabled for this volume. This field is deprecated. Use the
DetachedVolumeAutotunePolicy
instead to enable the volume for detached autotune. - Kms
Key stringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
- Size
In stringGbs - (Updatable) 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. Use sizeInGBs instead.
- Source
Details VolumeSource Details Args - Specifies the volume source details for a new Block volume. The volume source is either another Block volume in the same Availability Domain or a Block volume backup. This is an optional field. If not specified or set to null, the new Block volume will be empty. When specified, the new Block volume will contain data from the source volume or backup.
- Volume
Backup stringId - The OCID of the volume backup from which the data should be restored on the newly created volume. This field is deprecated. Use the sourceDetails field instead to specify the backup for the volume.
- Vpus
Per stringGb (Updatable) The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See Block Volume Performance Levels for more information.
Allowed values:
- Xrc
Kms stringKey Id The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- availability
Domain String - The availability domain of the volume. Omissible for cloning a volume. The new volume will be created in the availability domain of the source volume. Example:
Uocm:PHX-AD-1
- compartment
Id String - (Updatable) The OCID of the compartment that contains the volume.
- autotune
Policies List<VolumeAutotune Policy> - (Updatable) The list of autotune policies to be enabled for this volume.
- backup
Policy StringId - If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the
oci.Core.getVolumeBackupPolicyAssignments
instead to assign a backup policy to a volume. - block
Volume List<VolumeReplicas Block Volume Replica> - (Updatable) The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
- block
Volume BooleanReplicas Deletion - cluster
Placement StringGroup Id - The clusterPlacementGroup Id of the volume for volume placement.
- 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
Auto BooleanTune Enabled - (Updatable) Specifies whether the auto-tune performance is enabled for this volume. This field is deprecated. Use the
DetachedVolumeAutotunePolicy
instead to enable the volume for detached autotune. - kms
Key StringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
- size
In StringGbs - (Updatable) 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. Use sizeInGBs instead.
- source
Details VolumeSource Details - Specifies the volume source details for a new Block volume. The volume source is either another Block volume in the same Availability Domain or a Block volume backup. This is an optional field. If not specified or set to null, the new Block volume will be empty. When specified, the new Block volume will contain data from the source volume or backup.
- volume
Backup StringId - The OCID of the volume backup from which the data should be restored on the newly created volume. This field is deprecated. Use the sourceDetails field instead to specify the backup for the volume.
- vpus
Per StringGb (Updatable) The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See Block Volume Performance Levels for more information.
Allowed values:
- xrc
Kms StringKey Id The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- availability
Domain string - The availability domain of the volume. Omissible for cloning a volume. The new volume will be created in the availability domain of the source volume. Example:
Uocm:PHX-AD-1
- compartment
Id string - (Updatable) The OCID of the compartment that contains the volume.
- autotune
Policies VolumeAutotune Policy[] - (Updatable) The list of autotune policies to be enabled for this volume.
- backup
Policy stringId - If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the
oci.Core.getVolumeBackupPolicyAssignments
instead to assign a backup policy to a volume. - block
Volume VolumeReplicas Block Volume Replica[] - (Updatable) The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
- block
Volume booleanReplicas Deletion - cluster
Placement stringGroup Id - The clusterPlacementGroup Id of the volume for volume placement.
- {[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
Auto booleanTune Enabled - (Updatable) Specifies whether the auto-tune performance is enabled for this volume. This field is deprecated. Use the
DetachedVolumeAutotunePolicy
instead to enable the volume for detached autotune. - kms
Key stringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
- size
In stringGbs - (Updatable) 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. Use sizeInGBs instead.
- source
Details VolumeSource Details - Specifies the volume source details for a new Block volume. The volume source is either another Block volume in the same Availability Domain or a Block volume backup. This is an optional field. If not specified or set to null, the new Block volume will be empty. When specified, the new Block volume will contain data from the source volume or backup.
- volume
Backup stringId - The OCID of the volume backup from which the data should be restored on the newly created volume. This field is deprecated. Use the sourceDetails field instead to specify the backup for the volume.
- vpus
Per stringGb (Updatable) The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See Block Volume Performance Levels for more information.
Allowed values:
- xrc
Kms stringKey Id The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- availability_
domain str - The availability domain of the volume. Omissible for cloning a volume. The new volume will be created in the availability domain of the source volume. Example:
Uocm:PHX-AD-1
- compartment_
id str - (Updatable) The OCID of the compartment that contains the volume.
- autotune_
policies Sequence[core.Volume Autotune Policy Args] - (Updatable) The list of autotune policies to be enabled for this volume.
- backup_
policy_ strid - If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the
oci.Core.getVolumeBackupPolicyAssignments
instead to assign a backup policy to a volume. - block_
volume_ Sequence[core.replicas Volume Block Volume Replica Args] - (Updatable) The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
- block_
volume_ boolreplicas_ deletion - cluster_
placement_ strgroup_ id - The clusterPlacementGroup Id of the volume for volume placement.
- 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_
auto_ booltune_ enabled - (Updatable) Specifies whether the auto-tune performance is enabled for this volume. This field is deprecated. Use the
DetachedVolumeAutotunePolicy
instead to enable the volume for detached autotune. - kms_
key_ strid - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
- size_
in_ strgbs - (Updatable) 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. Use sizeInGBs instead.
- source_
details core.Volume Source Details Args - Specifies the volume source details for a new Block volume. The volume source is either another Block volume in the same Availability Domain or a Block volume backup. This is an optional field. If not specified or set to null, the new Block volume will be empty. When specified, the new Block volume will contain data from the source volume or backup.
- volume_
backup_ strid - The OCID of the volume backup from which the data should be restored on the newly created volume. This field is deprecated. Use the sourceDetails field instead to specify the backup for the volume.
- vpus_
per_ strgb (Updatable) The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See Block Volume Performance Levels for more information.
Allowed values:
- xrc_
kms_ strkey_ id The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- availability
Domain String - The availability domain of the volume. Omissible for cloning a volume. The new volume will be created in the availability domain of the source volume. Example:
Uocm:PHX-AD-1
- compartment
Id String - (Updatable) The OCID of the compartment that contains the volume.
- autotune
Policies List<Property Map> - (Updatable) The list of autotune policies to be enabled for this volume.
- backup
Policy StringId - If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the
oci.Core.getVolumeBackupPolicyAssignments
instead to assign a backup policy to a volume. - block
Volume List<Property Map>Replicas - (Updatable) The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
- block
Volume BooleanReplicas Deletion - cluster
Placement StringGroup Id - The clusterPlacementGroup Id of the volume for volume placement.
- 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
Auto BooleanTune Enabled - (Updatable) Specifies whether the auto-tune performance is enabled for this volume. This field is deprecated. Use the
DetachedVolumeAutotunePolicy
instead to enable the volume for detached autotune. - kms
Key StringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
- size
In StringGbs - (Updatable) 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. Use sizeInGBs instead.
- source
Details Property Map - Specifies the volume source details for a new Block volume. The volume source is either another Block volume in the same Availability Domain or a Block volume backup. This is an optional field. If not specified or set to null, the new Block volume will be empty. When specified, the new Block volume will contain data from the source volume or backup.
- volume
Backup StringId - The OCID of the volume backup from which the data should be restored on the newly created volume. This field is deprecated. Use the sourceDetails field instead to specify the backup for the volume.
- vpus
Per StringGb (Updatable) The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See Block Volume Performance Levels for more information.
Allowed values:
- xrc
Kms StringKey Id The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the Volume resource produces the following output properties:
- Auto
Tuned stringVpus Per Gb - The number of Volume Performance Units per GB that this volume is effectively tuned to.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Hydrated bool - Specifies whether the cloned volume's data has finished copying from the source volume or backup.
- State string
- The current state of a volume.
- 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 was created. Format defined by RFC3339.
- Volume
Group stringId - The OCID of the source volume group.
- Auto
Tuned stringVpus Per Gb - The number of Volume Performance Units per GB that this volume is effectively tuned to.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Hydrated bool - Specifies whether the cloned volume's data has finished copying from the source volume or backup.
- State string
- The current state of a volume.
- 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 was created. Format defined by RFC3339.
- Volume
Group stringId - The OCID of the source volume group.
- auto
Tuned StringVpus Per Gb - The number of Volume Performance Units per GB that this volume is effectively tuned to.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Hydrated Boolean - Specifies whether the cloned volume's data has finished copying from the source volume or backup.
- state String
- The current state of a volume.
- 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 was created. Format defined by RFC3339.
- volume
Group StringId - The OCID of the source volume group.
- auto
Tuned stringVpus Per Gb - The number of Volume Performance Units per GB that this volume is effectively tuned to.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Hydrated boolean - Specifies whether the cloned volume's data has finished copying from the source volume or backup.
- state string
- The current state of a volume.
- {[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 was created. Format defined by RFC3339.
- volume
Group stringId - The OCID of the source volume group.
- auto_
tuned_ strvpus_ per_ gb - The number of Volume Performance Units per GB that this volume is effectively tuned to.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
hydrated bool - Specifies whether the cloned volume's data has finished copying from the source volume or backup.
- state str
- The current state of a volume.
- 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 was created. Format defined by RFC3339.
- volume_
group_ strid - The OCID of the source volume group.
- auto
Tuned StringVpus Per Gb - The number of Volume Performance Units per GB that this volume is effectively tuned to.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Hydrated Boolean - Specifies whether the cloned volume's data has finished copying from the source volume or backup.
- state String
- The current state of a volume.
- 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 was created. Format defined by RFC3339.
- volume
Group StringId - The OCID of the source volume group.
Look up Existing Volume Resource
Get an existing Volume 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?: VolumeState, opts?: CustomResourceOptions): Volume
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
auto_tuned_vpus_per_gb: Optional[str] = None,
autotune_policies: Optional[Sequence[_core.VolumeAutotunePolicyArgs]] = None,
availability_domain: Optional[str] = None,
backup_policy_id: Optional[str] = None,
block_volume_replicas: Optional[Sequence[_core.VolumeBlockVolumeReplicaArgs]] = None,
block_volume_replicas_deletion: Optional[bool] = None,
cluster_placement_group_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_auto_tune_enabled: Optional[bool] = None,
is_hydrated: Optional[bool] = None,
kms_key_id: Optional[str] = None,
size_in_gbs: Optional[str] = None,
size_in_mbs: Optional[str] = None,
source_details: Optional[_core.VolumeSourceDetailsArgs] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
volume_backup_id: Optional[str] = None,
volume_group_id: Optional[str] = None,
vpus_per_gb: Optional[str] = None,
xrc_kms_key_id: Optional[str] = None) -> Volume
func GetVolume(ctx *Context, name string, id IDInput, state *VolumeState, opts ...ResourceOption) (*Volume, error)
public static Volume Get(string name, Input<string> id, VolumeState? state, CustomResourceOptions? opts = null)
public static Volume get(String name, Output<String> id, VolumeState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Auto
Tuned stringVpus Per Gb - The number of Volume Performance Units per GB that this volume is effectively tuned to.
- Autotune
Policies List<VolumeAutotune Policy> - (Updatable) The list of autotune policies to be enabled for this volume.
- Availability
Domain string - The availability domain of the volume. Omissible for cloning a volume. The new volume will be created in the availability domain of the source volume. Example:
Uocm:PHX-AD-1
- Backup
Policy stringId - If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the
oci.Core.getVolumeBackupPolicyAssignments
instead to assign a backup policy to a volume. - Block
Volume List<VolumeReplicas Block Volume Replica> - (Updatable) The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
- Block
Volume boolReplicas Deletion - Cluster
Placement stringGroup Id - The clusterPlacementGroup Id of the volume for volume placement.
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the volume.
- 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
Auto boolTune Enabled - (Updatable) Specifies whether the auto-tune performance is enabled for this volume. This field is deprecated. Use the
DetachedVolumeAutotunePolicy
instead to enable the volume for detached autotune. - Is
Hydrated bool - Specifies whether the cloned volume's data has finished copying from the source volume or backup.
- Kms
Key stringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
- Size
In stringGbs - (Updatable) 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. Use sizeInGBs instead.
- Source
Details VolumeSource Details - Specifies the volume source details for a new Block volume. The volume source is either another Block volume in the same Availability Domain or a Block volume backup. This is an optional field. If not specified or set to null, the new Block volume will be empty. When specified, the new Block volume will contain data from the source volume or backup.
- State string
- The current state of a volume.
- 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 was created. Format defined by RFC3339.
- Volume
Backup stringId - The OCID of the volume backup from which the data should be restored on the newly created volume. This field is deprecated. Use the sourceDetails field instead to specify the backup for the volume.
- Volume
Group stringId - The OCID of the source volume group.
- Vpus
Per stringGb (Updatable) The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See Block Volume Performance Levels for more information.
Allowed values:
- Xrc
Kms stringKey Id The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Auto
Tuned stringVpus Per Gb - The number of Volume Performance Units per GB that this volume is effectively tuned to.
- Autotune
Policies []VolumeAutotune Policy Args - (Updatable) The list of autotune policies to be enabled for this volume.
- Availability
Domain string - The availability domain of the volume. Omissible for cloning a volume. The new volume will be created in the availability domain of the source volume. Example:
Uocm:PHX-AD-1
- Backup
Policy stringId - If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the
oci.Core.getVolumeBackupPolicyAssignments
instead to assign a backup policy to a volume. - Block
Volume []VolumeReplicas Block Volume Replica Args - (Updatable) The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
- Block
Volume boolReplicas Deletion - Cluster
Placement stringGroup Id - The clusterPlacementGroup Id of the volume for volume placement.
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the volume.
- 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
Auto boolTune Enabled - (Updatable) Specifies whether the auto-tune performance is enabled for this volume. This field is deprecated. Use the
DetachedVolumeAutotunePolicy
instead to enable the volume for detached autotune. - Is
Hydrated bool - Specifies whether the cloned volume's data has finished copying from the source volume or backup.
- Kms
Key stringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
- Size
In stringGbs - (Updatable) 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. Use sizeInGBs instead.
- Source
Details VolumeSource Details Args - Specifies the volume source details for a new Block volume. The volume source is either another Block volume in the same Availability Domain or a Block volume backup. This is an optional field. If not specified or set to null, the new Block volume will be empty. When specified, the new Block volume will contain data from the source volume or backup.
- State string
- The current state of a volume.
- 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 was created. Format defined by RFC3339.
- Volume
Backup stringId - The OCID of the volume backup from which the data should be restored on the newly created volume. This field is deprecated. Use the sourceDetails field instead to specify the backup for the volume.
- Volume
Group stringId - The OCID of the source volume group.
- Vpus
Per stringGb (Updatable) The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See Block Volume Performance Levels for more information.
Allowed values:
- Xrc
Kms stringKey Id The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- auto
Tuned StringVpus Per Gb - The number of Volume Performance Units per GB that this volume is effectively tuned to.
- autotune
Policies List<VolumeAutotune Policy> - (Updatable) The list of autotune policies to be enabled for this volume.
- availability
Domain String - The availability domain of the volume. Omissible for cloning a volume. The new volume will be created in the availability domain of the source volume. Example:
Uocm:PHX-AD-1
- backup
Policy StringId - If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the
oci.Core.getVolumeBackupPolicyAssignments
instead to assign a backup policy to a volume. - block
Volume List<VolumeReplicas Block Volume Replica> - (Updatable) The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
- block
Volume BooleanReplicas Deletion - cluster
Placement StringGroup Id - The clusterPlacementGroup Id of the volume for volume placement.
- compartment
Id String - (Updatable) The OCID of the compartment that contains the volume.
- 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
Auto BooleanTune Enabled - (Updatable) Specifies whether the auto-tune performance is enabled for this volume. This field is deprecated. Use the
DetachedVolumeAutotunePolicy
instead to enable the volume for detached autotune. - is
Hydrated Boolean - Specifies whether the cloned volume's data has finished copying from the source volume or backup.
- kms
Key StringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
- size
In StringGbs - (Updatable) 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. Use sizeInGBs instead.
- source
Details VolumeSource Details - Specifies the volume source details for a new Block volume. The volume source is either another Block volume in the same Availability Domain or a Block volume backup. This is an optional field. If not specified or set to null, the new Block volume will be empty. When specified, the new Block volume will contain data from the source volume or backup.
- state String
- The current state of a volume.
- 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 was created. Format defined by RFC3339.
- volume
Backup StringId - The OCID of the volume backup from which the data should be restored on the newly created volume. This field is deprecated. Use the sourceDetails field instead to specify the backup for the volume.
- volume
Group StringId - The OCID of the source volume group.
- vpus
Per StringGb (Updatable) The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See Block Volume Performance Levels for more information.
Allowed values:
- xrc
Kms StringKey Id The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- auto
Tuned stringVpus Per Gb - The number of Volume Performance Units per GB that this volume is effectively tuned to.
- autotune
Policies VolumeAutotune Policy[] - (Updatable) The list of autotune policies to be enabled for this volume.
- availability
Domain string - The availability domain of the volume. Omissible for cloning a volume. The new volume will be created in the availability domain of the source volume. Example:
Uocm:PHX-AD-1
- backup
Policy stringId - If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the
oci.Core.getVolumeBackupPolicyAssignments
instead to assign a backup policy to a volume. - block
Volume VolumeReplicas Block Volume Replica[] - (Updatable) The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
- block
Volume booleanReplicas Deletion - cluster
Placement stringGroup Id - The clusterPlacementGroup Id of the volume for volume placement.
- compartment
Id string - (Updatable) The OCID of the compartment that contains the volume.
- {[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
Auto booleanTune Enabled - (Updatable) Specifies whether the auto-tune performance is enabled for this volume. This field is deprecated. Use the
DetachedVolumeAutotunePolicy
instead to enable the volume for detached autotune. - is
Hydrated boolean - Specifies whether the cloned volume's data has finished copying from the source volume or backup.
- kms
Key stringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
- size
In stringGbs - (Updatable) 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. Use sizeInGBs instead.
- source
Details VolumeSource Details - Specifies the volume source details for a new Block volume. The volume source is either another Block volume in the same Availability Domain or a Block volume backup. This is an optional field. If not specified or set to null, the new Block volume will be empty. When specified, the new Block volume will contain data from the source volume or backup.
- state string
- The current state of a volume.
- {[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 was created. Format defined by RFC3339.
- volume
Backup stringId - The OCID of the volume backup from which the data should be restored on the newly created volume. This field is deprecated. Use the sourceDetails field instead to specify the backup for the volume.
- volume
Group stringId - The OCID of the source volume group.
- vpus
Per stringGb (Updatable) The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See Block Volume Performance Levels for more information.
Allowed values:
- xrc
Kms stringKey Id The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- auto_
tuned_ strvpus_ per_ gb - The number of Volume Performance Units per GB that this volume is effectively tuned to.
- autotune_
policies Sequence[core.Volume Autotune Policy Args] - (Updatable) The list of autotune policies to be enabled for this volume.
- availability_
domain str - The availability domain of the volume. Omissible for cloning a volume. The new volume will be created in the availability domain of the source volume. Example:
Uocm:PHX-AD-1
- backup_
policy_ strid - If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the
oci.Core.getVolumeBackupPolicyAssignments
instead to assign a backup policy to a volume. - block_
volume_ Sequence[core.replicas Volume Block Volume Replica Args] - (Updatable) The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
- block_
volume_ boolreplicas_ deletion - cluster_
placement_ strgroup_ id - The clusterPlacementGroup Id of the volume for volume placement.
- compartment_
id str - (Updatable) The OCID of the compartment that contains the volume.
- 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_
auto_ booltune_ enabled - (Updatable) Specifies whether the auto-tune performance is enabled for this volume. This field is deprecated. Use the
DetachedVolumeAutotunePolicy
instead to enable the volume for detached autotune. - is_
hydrated bool - Specifies whether the cloned volume's data has finished copying from the source volume or backup.
- kms_
key_ strid - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
- size_
in_ strgbs - (Updatable) 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. Use sizeInGBs instead.
- source_
details core.Volume Source Details Args - Specifies the volume source details for a new Block volume. The volume source is either another Block volume in the same Availability Domain or a Block volume backup. This is an optional field. If not specified or set to null, the new Block volume will be empty. When specified, the new Block volume will contain data from the source volume or backup.
- state str
- The current state of a volume.
- 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 was created. Format defined by RFC3339.
- volume_
backup_ strid - The OCID of the volume backup from which the data should be restored on the newly created volume. This field is deprecated. Use the sourceDetails field instead to specify the backup for the volume.
- volume_
group_ strid - The OCID of the source volume group.
- vpus_
per_ strgb (Updatable) The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See Block Volume Performance Levels for more information.
Allowed values:
- xrc_
kms_ strkey_ id The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- auto
Tuned StringVpus Per Gb - The number of Volume Performance Units per GB that this volume is effectively tuned to.
- autotune
Policies List<Property Map> - (Updatable) The list of autotune policies to be enabled for this volume.
- availability
Domain String - The availability domain of the volume. Omissible for cloning a volume. The new volume will be created in the availability domain of the source volume. Example:
Uocm:PHX-AD-1
- backup
Policy StringId - If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the
oci.Core.getVolumeBackupPolicyAssignments
instead to assign a backup policy to a volume. - block
Volume List<Property Map>Replicas - (Updatable) The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
- block
Volume BooleanReplicas Deletion - cluster
Placement StringGroup Id - The clusterPlacementGroup Id of the volume for volume placement.
- compartment
Id String - (Updatable) The OCID of the compartment that contains the volume.
- 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
Auto BooleanTune Enabled - (Updatable) Specifies whether the auto-tune performance is enabled for this volume. This field is deprecated. Use the
DetachedVolumeAutotunePolicy
instead to enable the volume for detached autotune. - is
Hydrated Boolean - Specifies whether the cloned volume's data has finished copying from the source volume or backup.
- kms
Key StringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
- size
In StringGbs - (Updatable) 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. Use sizeInGBs instead.
- source
Details Property Map - Specifies the volume source details for a new Block volume. The volume source is either another Block volume in the same Availability Domain or a Block volume backup. This is an optional field. If not specified or set to null, the new Block volume will be empty. When specified, the new Block volume will contain data from the source volume or backup.
- state String
- The current state of a volume.
- 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 was created. Format defined by RFC3339.
- volume
Backup StringId - The OCID of the volume backup from which the data should be restored on the newly created volume. This field is deprecated. Use the sourceDetails field instead to specify the backup for the volume.
- volume
Group StringId - The OCID of the source volume group.
- vpus
Per StringGb (Updatable) The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See Block Volume Performance Levels for more information.
Allowed values:
- xrc
Kms StringKey Id The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Supporting Types
VolumeAutotunePolicy, VolumeAutotunePolicyArgs
- Autotune
Type string - (Updatable) This specifies the type of autotunes supported by OCI.
- Max
Vpus stringPer Gb - (Updatable) This will be the maximum VPUs/GB performance level that the volume will be auto-tuned temporarily based on performance monitoring.
- Autotune
Type string - (Updatable) This specifies the type of autotunes supported by OCI.
- Max
Vpus stringPer Gb - (Updatable) This will be the maximum VPUs/GB performance level that the volume will be auto-tuned temporarily based on performance monitoring.
- autotune
Type String - (Updatable) This specifies the type of autotunes supported by OCI.
- max
Vpus StringPer Gb - (Updatable) This will be the maximum VPUs/GB performance level that the volume will be auto-tuned temporarily based on performance monitoring.
- autotune
Type string - (Updatable) This specifies the type of autotunes supported by OCI.
- max
Vpus stringPer Gb - (Updatable) This will be the maximum VPUs/GB performance level that the volume will be auto-tuned temporarily based on performance monitoring.
- autotune_
type str - (Updatable) This specifies the type of autotunes supported by OCI.
- max_
vpus_ strper_ gb - (Updatable) This will be the maximum VPUs/GB performance level that the volume will be auto-tuned temporarily based on performance monitoring.
- autotune
Type String - (Updatable) This specifies the type of autotunes supported by OCI.
- max
Vpus StringPer Gb - (Updatable) This will be the maximum VPUs/GB performance level that the volume will be auto-tuned temporarily based on performance monitoring.
VolumeBlockVolumeReplica, VolumeBlockVolumeReplicaArgs
- Availability
Domain string - (Updatable) The availability domain of the block volume replica. Example:
Uocm:PHX-AD-1
- Block
Volume stringReplica Id - The block volume replica's Oracle ID (OCID).
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Kms
Key stringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
- Xrr
Kms stringKey Id - (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region block volume replicas, which will be used in the destination region to encrypt the block volume replica's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- Availability
Domain string - (Updatable) The availability domain of the block volume replica. Example:
Uocm:PHX-AD-1
- Block
Volume stringReplica Id - The block volume replica's Oracle ID (OCID).
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Kms
Key stringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
- Xrr
Kms stringKey Id - (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region block volume replicas, which will be used in the destination region to encrypt the block volume replica's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- availability
Domain String - (Updatable) The availability domain of the block volume replica. Example:
Uocm:PHX-AD-1
- block
Volume StringReplica Id - The block volume replica's Oracle ID (OCID).
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- kms
Key StringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
- xrr
Kms StringKey Id - (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region block volume replicas, which will be used in the destination region to encrypt the block volume replica's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- availability
Domain string - (Updatable) The availability domain of the block volume replica. Example:
Uocm:PHX-AD-1
- block
Volume stringReplica Id - The block volume replica's Oracle ID (OCID).
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- kms
Key stringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
- xrr
Kms stringKey Id - (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region block volume replicas, which will be used in the destination region to encrypt the block volume replica's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- availability_
domain str - (Updatable) The availability domain of the block volume replica. Example:
Uocm:PHX-AD-1
- block_
volume_ strreplica_ id - The block volume replica's Oracle ID (OCID).
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- kms_
key_ strid - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
- xrr_
kms_ strkey_ id - (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region block volume replicas, which will be used in the destination region to encrypt the block volume replica's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
- availability
Domain String - (Updatable) The availability domain of the block volume replica. Example:
Uocm:PHX-AD-1
- block
Volume StringReplica Id - The block volume replica's Oracle ID (OCID).
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- kms
Key StringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
- xrr
Kms StringKey Id - (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region block volume replicas, which will be used in the destination region to encrypt the block volume replica's encryption keys. For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.
VolumeSourceDetails, VolumeSourceDetailsArgs
- Type string
- The type can be one of these values:
blockVolumeReplica
,volume
,volumeBackup
,volumeBackupDelta
- Change
Block stringSize In Bytes - Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
- First
Backup stringId - The OCID of the first volume backup.
- Id string
- The OCID of the block volume replica.
- Second
Backup stringId - The OCID of the second volume backup.
- Type string
- The type can be one of these values:
blockVolumeReplica
,volume
,volumeBackup
,volumeBackupDelta
- Change
Block stringSize In Bytes - Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
- First
Backup stringId - The OCID of the first volume backup.
- Id string
- The OCID of the block volume replica.
- Second
Backup stringId - The OCID of the second volume backup.
- type String
- The type can be one of these values:
blockVolumeReplica
,volume
,volumeBackup
,volumeBackupDelta
- change
Block StringSize In Bytes - Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
- first
Backup StringId - The OCID of the first volume backup.
- id String
- The OCID of the block volume replica.
- second
Backup StringId - The OCID of the second volume backup.
- type string
- The type can be one of these values:
blockVolumeReplica
,volume
,volumeBackup
,volumeBackupDelta
- change
Block stringSize In Bytes - Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
- first
Backup stringId - The OCID of the first volume backup.
- id string
- The OCID of the block volume replica.
- second
Backup stringId - The OCID of the second volume backup.
- type str
- The type can be one of these values:
blockVolumeReplica
,volume
,volumeBackup
,volumeBackupDelta
- change_
block_ strsize_ in_ bytes - Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
- first_
backup_ strid - The OCID of the first volume backup.
- id str
- The OCID of the block volume replica.
- second_
backup_ strid - The OCID of the second volume backup.
- type String
- The type can be one of these values:
blockVolumeReplica
,volume
,volumeBackup
,volumeBackupDelta
- change
Block StringSize In Bytes - Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
- first
Backup StringId - The OCID of the first volume backup.
- id String
- The OCID of the block volume replica.
- second
Backup StringId - The OCID of the second volume backup.
Import
Volumes can be imported using the id
, e.g.
$ pulumi import oci:Core/volume:Volume test_volume "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
oci
Terraform Provider.