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,
}],
clusterPlacementGroupId: testGroup.id,
definedTags: {
"Operations.CostCenter": "42",
},
displayName: volumeDisplayName,
freeformTags: {
Department: "Finance",
},
isAutoTuneEnabled: volumeIsAutoTuneEnabled,
kmsKeyId: testKey.id,
sizeInGbs: volumeSizeInGbs,
sizeInMbs: volumeSizeInMbs,
sourceDetails: {
id: volumeSourceDetailsId,
type: volumeSourceDetailsType,
},
vpusPerGb: volumeVpusPerGb,
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,
}],
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={
"id": volume_source_details_id,
"type": volume_source_details_type,
},
vpus_per_gb=volume_vpus_per_gb,
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),
},
},
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{
Id: pulumi.Any(volumeSourceDetailsId),
Type: pulumi.Any(volumeSourceDetailsType),
},
VpusPerGb: pulumi.Any(volumeVpusPerGb),
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,
},
},
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
{
Id = volumeSourceDetailsId,
Type = volumeSourceDetailsType,
},
VpusPerGb = volumeVpusPerGb,
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)
.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()
.id(volumeSourceDetailsId)
.type(volumeSourceDetailsType)
.build())
.vpusPerGb(volumeVpusPerGb)
.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}
clusterPlacementGroupId: ${testGroup.id}
definedTags:
Operations.CostCenter: '42'
displayName: ${volumeDisplayName}
freeformTags:
Department: Finance
isAutoTuneEnabled: ${volumeIsAutoTuneEnabled}
kmsKeyId: ${testKey.id}
sizeInGbs: ${volumeSizeInGbs}
sizeInMbs: ${volumeSizeInMbs}
sourceDetails:
id: ${volumeSourceDetailsId}
type: ${volumeSourceDetailsType}
vpusPerGb: ${volumeVpusPerGb}
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)
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",
},
},
IsAutoTuneEnabled = false,
KmsKeyId = "string",
SizeInGbs = "string",
SourceDetails = new Oci.Core.Inputs.VolumeSourceDetailsArgs
{
Id = "string",
Type = "string",
},
VolumeBackupId = "string",
VpusPerGb = "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"),
},
},
IsAutoTuneEnabled: pulumi.Bool(false),
KmsKeyId: pulumi.String("string"),
SizeInGbs: pulumi.String("string"),
SourceDetails: &core.VolumeSourceDetailsArgs{
Id: pulumi.String("string"),
Type: pulumi.String("string"),
},
VolumeBackupId: pulumi.String("string"),
VpusPerGb: 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")
.build())
.isAutoTuneEnabled(false)
.kmsKeyId("string")
.sizeInGbs("string")
.sourceDetails(VolumeSourceDetailsArgs.builder()
.id("string")
.type("string")
.build())
.volumeBackupId("string")
.vpusPerGb("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=[oci.core.VolumeAutotunePolicyArgs(
autotune_type="string",
max_vpus_per_gb="string",
)],
block_volume_replicas=[oci.core.VolumeBlockVolumeReplicaArgs(
availability_domain="string",
block_volume_replica_id="string",
display_name="string",
)],
is_auto_tune_enabled=False,
kms_key_id="string",
size_in_gbs="string",
source_details=oci.core.VolumeSourceDetailsArgs(
id="string",
type="string",
),
volume_backup_id="string",
vpus_per_gb="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",
}],
isAutoTuneEnabled: false,
kmsKeyId: "string",
sizeInGbs: "string",
sourceDetails: {
id: "string",
type: "string",
},
volumeBackupId: "string",
vpusPerGb: "string",
});
type: oci:Core:Volume
properties:
autotunePolicies:
- autotuneType: string
maxVpusPerGb: string
availabilityDomain: string
blockVolumeReplicas:
- availabilityDomain: string
blockVolumeReplicaId: string
displayName: string
blockVolumeReplicasDeletion: false
clusterPlacementGroupId: string
compartmentId: string
definedTags:
string: string
displayName: string
freeformTags:
string: string
isAutoTuneEnabled: false
kmsKeyId: string
sizeInGbs: string
sourceDetails:
id: string
type: string
volumeBackupId: string
vpusPerGb: 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
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
size_in_gbs
instead. - Source
Details VolumeSource Details - 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:
- 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
size_in_gbs
instead. - Source
Details VolumeSource Details Args - 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:
- 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
size_in_gbs
instead. - source
Details VolumeSource Details - 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:
- 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
size_in_gbs
instead. - source
Details VolumeSource Details - 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:
- 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
size_in_gbs
instead. - source_
details core.Volume Source Details Args - 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:
- 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
size_in_gbs
instead. - source
Details Property Map - 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:
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) -> 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
size_in_gbs
instead. - Source
Details VolumeSource Details - 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:
- 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
size_in_gbs
instead. - Source
Details VolumeSource Details Args - 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:
- 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
size_in_gbs
instead. - source
Details VolumeSource Details - 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:
- 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
size_in_gbs
instead. - source
Details VolumeSource Details - 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:
- 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
size_in_gbs
instead. - source_
details core.Volume Source Details Args - 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:
- 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
size_in_gbs
instead. - source
Details Property Map - 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:
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.
- 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.
- 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.
- 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.
- 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.
- 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.
VolumeSourceDetails, VolumeSourceDetailsArgs
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.