oci logo
Oracle Cloud Infrastructure v0.19.0, May 26 23

oci.Core.BootVolume

Explore with Pulumi AI

This resource provides the Boot Volume resource in Oracle Cloud Infrastructure Core service.

Creates a new boot volume in the specified compartment from an existing boot volume or a boot volume backup. For general information about boot volumes, see Boot Volumes. 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

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testBootVolume = new Oci.Core.BootVolume("testBootVolume", new()
    {
        CompartmentId = @var.Compartment_id,
        SourceDetails = new Oci.Core.Inputs.BootVolumeSourceDetailsArgs
        {
            Id = @var.Boot_volume_source_details_id,
            Type = @var.Boot_volume_source_details_type,
        },
        AutotunePolicies = new[]
        {
            new Oci.Core.Inputs.BootVolumeAutotunePolicyArgs
            {
                AutotuneType = @var.Boot_volume_autotune_policies_autotune_type,
                MaxVpusPerGb = @var.Boot_volume_autotune_policies_max_vpus_per_gb,
            },
        },
        AvailabilityDomain = @var.Boot_volume_availability_domain,
        BackupPolicyId = data.Oci_core_volume_backup_policies.Test_volume_backup_policies.Volume_backup_policies[0].Id,
        BootVolumeReplicas = new[]
        {
            new Oci.Core.Inputs.BootVolumeBootVolumeReplicaArgs
            {
                AvailabilityDomain = @var.Boot_volume_boot_volume_replicas_availability_domain,
                DisplayName = @var.Boot_volume_boot_volume_replicas_display_name,
            },
        },
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        DisplayName = @var.Boot_volume_display_name,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        IsAutoTuneEnabled = @var.Boot_volume_is_auto_tune_enabled,
        KmsKeyId = oci_kms_key.Test_key.Id,
        SizeInGbs = @var.Boot_volume_size_in_gbs,
        VpusPerGb = @var.Boot_volume_vpus_per_gb,
        BootVolumeReplicasDeletion = true,
    });

});
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/go/oci/Core"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := Core.NewBootVolume(ctx, "testBootVolume", &Core.BootVolumeArgs{
			CompartmentId: pulumi.Any(_var.Compartment_id),
			SourceDetails: &core.BootVolumeSourceDetailsArgs{
				Id:   pulumi.Any(_var.Boot_volume_source_details_id),
				Type: pulumi.Any(_var.Boot_volume_source_details_type),
			},
			AutotunePolicies: core.BootVolumeAutotunePolicyArray{
				&core.BootVolumeAutotunePolicyArgs{
					AutotuneType: pulumi.Any(_var.Boot_volume_autotune_policies_autotune_type),
					MaxVpusPerGb: pulumi.Any(_var.Boot_volume_autotune_policies_max_vpus_per_gb),
				},
			},
			AvailabilityDomain: pulumi.Any(_var.Boot_volume_availability_domain),
			BackupPolicyId:     pulumi.Any(data.Oci_core_volume_backup_policies.Test_volume_backup_policies.Volume_backup_policies[0].Id),
			BootVolumeReplicas: core.BootVolumeBootVolumeReplicaArray{
				&core.BootVolumeBootVolumeReplicaArgs{
					AvailabilityDomain: pulumi.Any(_var.Boot_volume_boot_volume_replicas_availability_domain),
					DisplayName:        pulumi.Any(_var.Boot_volume_boot_volume_replicas_display_name),
				},
			},
			DefinedTags: pulumi.AnyMap{
				"Operations.CostCenter": pulumi.Any("42"),
			},
			DisplayName: pulumi.Any(_var.Boot_volume_display_name),
			FreeformTags: pulumi.AnyMap{
				"Department": pulumi.Any("Finance"),
			},
			IsAutoTuneEnabled:          pulumi.Any(_var.Boot_volume_is_auto_tune_enabled),
			KmsKeyId:                   pulumi.Any(oci_kms_key.Test_key.Id),
			SizeInGbs:                  pulumi.Any(_var.Boot_volume_size_in_gbs),
			VpusPerGb:                  pulumi.Any(_var.Boot_volume_vpus_per_gb),
			BootVolumeReplicasDeletion: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Core.BootVolume;
import com.pulumi.oci.Core.BootVolumeArgs;
import com.pulumi.oci.Core.inputs.BootVolumeSourceDetailsArgs;
import com.pulumi.oci.Core.inputs.BootVolumeAutotunePolicyArgs;
import com.pulumi.oci.Core.inputs.BootVolumeBootVolumeReplicaArgs;
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 testBootVolume = new BootVolume("testBootVolume", BootVolumeArgs.builder()        
            .compartmentId(var_.compartment_id())
            .sourceDetails(BootVolumeSourceDetailsArgs.builder()
                .id(var_.boot_volume_source_details_id())
                .type(var_.boot_volume_source_details_type())
                .build())
            .autotunePolicies(BootVolumeAutotunePolicyArgs.builder()
                .autotuneType(var_.boot_volume_autotune_policies_autotune_type())
                .maxVpusPerGb(var_.boot_volume_autotune_policies_max_vpus_per_gb())
                .build())
            .availabilityDomain(var_.boot_volume_availability_domain())
            .backupPolicyId(data.oci_core_volume_backup_policies().test_volume_backup_policies().volume_backup_policies()[0].id())
            .bootVolumeReplicas(BootVolumeBootVolumeReplicaArgs.builder()
                .availabilityDomain(var_.boot_volume_boot_volume_replicas_availability_domain())
                .displayName(var_.boot_volume_boot_volume_replicas_display_name())
                .build())
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .displayName(var_.boot_volume_display_name())
            .freeformTags(Map.of("Department", "Finance"))
            .isAutoTuneEnabled(var_.boot_volume_is_auto_tune_enabled())
            .kmsKeyId(oci_kms_key.test_key().id())
            .sizeInGbs(var_.boot_volume_size_in_gbs())
            .vpusPerGb(var_.boot_volume_vpus_per_gb())
            .bootVolumeReplicasDeletion(true)
            .build());

    }
}
import pulumi
import pulumi_oci as oci

test_boot_volume = oci.core.BootVolume("testBootVolume",
    compartment_id=var["compartment_id"],
    source_details=oci.core.BootVolumeSourceDetailsArgs(
        id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        type=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    ),
    autotune_policies=[oci.core.BootVolumeAutotunePolicyArgs(
        autotune_type=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        max_vpus_per_gb=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    )],
    availability_domain=var["boot_volume_availability_domain"],
    backup_policy_id=data["oci_core_volume_backup_policies"]["test_volume_backup_policies"]["volume_backup_policies"][0]["id"],
    boot_volume_replicas=[oci.core.BootVolumeBootVolumeReplicaArgs(
        availability_domain=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        display_name=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    )],
    defined_tags={
        "Operations.CostCenter": "42",
    },
    display_name=var["boot_volume_display_name"],
    freeform_tags={
        "Department": "Finance",
    },
    is_auto_tune_enabled=var["boot_volume_is_auto_tune_enabled"],
    kms_key_id=oci_kms_key["test_key"]["id"],
    size_in_gbs=var["boot_volume_size_in_gbs"],
    vpus_per_gb=var["boot_volume_vpus_per_gb"],
    boot_volume_replicas_deletion=True)
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testBootVolume = new oci.core.BootVolume("testBootVolume", {
    compartmentId: _var.compartment_id,
    sourceDetails: {
        id: _var.boot_volume_source_details_id,
        type: _var.boot_volume_source_details_type,
    },
    autotunePolicies: [{
        autotuneType: _var.boot_volume_autotune_policies_autotune_type,
        maxVpusPerGb: _var.boot_volume_autotune_policies_max_vpus_per_gb,
    }],
    availabilityDomain: _var.boot_volume_availability_domain,
    backupPolicyId: data.oci_core_volume_backup_policies.test_volume_backup_policies.volume_backup_policies[0].id,
    bootVolumeReplicas: [{
        availabilityDomain: _var.boot_volume_boot_volume_replicas_availability_domain,
        displayName: _var.boot_volume_boot_volume_replicas_display_name,
    }],
    definedTags: {
        "Operations.CostCenter": "42",
    },
    displayName: _var.boot_volume_display_name,
    freeformTags: {
        Department: "Finance",
    },
    isAutoTuneEnabled: _var.boot_volume_is_auto_tune_enabled,
    kmsKeyId: oci_kms_key.test_key.id,
    sizeInGbs: _var.boot_volume_size_in_gbs,
    vpusPerGb: _var.boot_volume_vpus_per_gb,
    bootVolumeReplicasDeletion: true,
});
resources:
  testBootVolume:
    type: oci:Core:BootVolume
    properties:
      #Required
      compartmentId: ${var.compartment_id}
      sourceDetails:
        id: ${var.boot_volume_source_details_id}
        type: ${var.boot_volume_source_details_type}
      #Optional
      autotunePolicies:
        - autotuneType: ${var.boot_volume_autotune_policies_autotune_type}
          maxVpusPerGb: ${var.boot_volume_autotune_policies_max_vpus_per_gb}
      availabilityDomain: ${var.boot_volume_availability_domain}
      backupPolicyId: ${data.oci_core_volume_backup_policies.test_volume_backup_policies.volume_backup_policies[0].id}
      bootVolumeReplicas:
        - availabilityDomain: ${var.boot_volume_boot_volume_replicas_availability_domain}
          displayName: ${var.boot_volume_boot_volume_replicas_display_name}
      definedTags:
        Operations.CostCenter: '42'
      displayName: ${var.boot_volume_display_name}
      freeformTags:
        Department: Finance
      isAutoTuneEnabled: ${var.boot_volume_is_auto_tune_enabled}
      kmsKeyId: ${oci_kms_key.test_key.id}
      sizeInGbs: ${var.boot_volume_size_in_gbs}
      vpusPerGb: ${var.boot_volume_vpus_per_gb}
      bootVolumeReplicasDeletion: true

Create BootVolume Resource

new BootVolume(name: string, args: BootVolumeArgs, opts?: CustomResourceOptions);
@overload
def BootVolume(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               autotune_policies: Optional[Sequence[_core.BootVolumeAutotunePolicyArgs]] = None,
               availability_domain: Optional[str] = None,
               backup_policy_id: Optional[str] = None,
               boot_volume_replicas: Optional[Sequence[_core.BootVolumeBootVolumeReplicaArgs]] = None,
               boot_volume_replicas_deletion: Optional[bool] = None,
               compartment_id: Optional[str] = None,
               defined_tags: Optional[Mapping[str, Any]] = None,
               display_name: Optional[str] = None,
               freeform_tags: Optional[Mapping[str, Any]] = None,
               is_auto_tune_enabled: Optional[bool] = None,
               kms_key_id: Optional[str] = None,
               size_in_gbs: Optional[str] = None,
               source_details: Optional[_core.BootVolumeSourceDetailsArgs] = None,
               vpus_per_gb: Optional[str] = None)
@overload
def BootVolume(resource_name: str,
               args: BootVolumeArgs,
               opts: Optional[ResourceOptions] = None)
func NewBootVolume(ctx *Context, name string, args BootVolumeArgs, opts ...ResourceOption) (*BootVolume, error)
public BootVolume(string name, BootVolumeArgs args, CustomResourceOptions? opts = null)
public BootVolume(String name, BootVolumeArgs args)
public BootVolume(String name, BootVolumeArgs args, CustomResourceOptions options)
type: oci:Core:BootVolume
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args BootVolumeArgs
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 BootVolumeArgs
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 BootVolumeArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args BootVolumeArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args BootVolumeArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

BootVolume 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 BootVolume resource accepts the following input properties:

AvailabilityDomain string

(Updatable) The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1

CompartmentId string

(Updatable) The OCID of the compartment that contains the boot volume.

SourceDetails BootVolumeSourceDetailsArgs
AutotunePolicies List<BootVolumeAutotunePolicyArgs>

(Updatable) The list of autotune policies to be enabled for this volume.

BackupPolicyId string

If provided, specifies the ID of the boot volume backup policy to assign to the newly created boot volume. If omitted, no policy will be assigned.

Deprecated:

The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.

BootVolumeReplicas List<BootVolumeBootVolumeReplicaArgs>

(Updatable) The list of boot volume replicas to be enabled for this boot volume in the specified destination availability domains.

BootVolumeReplicasDeletion bool
DefinedTags Dictionary<string, object>

(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"}

DisplayName string

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

FreeformTags Dictionary<string, object>

(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"}

IsAutoTuneEnabled bool

(Updatable) Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated. Use the DetachedVolumeAutotunePolicy instead to enable the volume for detached autotune.

KmsKeyId string

(Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.

SizeInGbs string

(Updatable) The size of the volume in GBs.

VpusPerGb string

(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:

AvailabilityDomain string

(Updatable) The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1

CompartmentId string

(Updatable) The OCID of the compartment that contains the boot volume.

SourceDetails BootVolumeSourceDetailsArgs
AutotunePolicies []BootVolumeAutotunePolicyArgs

(Updatable) The list of autotune policies to be enabled for this volume.

BackupPolicyId string

If provided, specifies the ID of the boot volume backup policy to assign to the newly created boot volume. If omitted, no policy will be assigned.

Deprecated:

The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.

BootVolumeReplicas []BootVolumeBootVolumeReplicaArgs

(Updatable) The list of boot volume replicas to be enabled for this boot volume in the specified destination availability domains.

BootVolumeReplicasDeletion bool
DefinedTags map[string]interface{}

(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"}

DisplayName string

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

FreeformTags map[string]interface{}

(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"}

IsAutoTuneEnabled bool

(Updatable) Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated. Use the DetachedVolumeAutotunePolicy instead to enable the volume for detached autotune.

KmsKeyId string

(Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.

SizeInGbs string

(Updatable) The size of the volume in GBs.

VpusPerGb string

(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:

availabilityDomain String

(Updatable) The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1

compartmentId String

(Updatable) The OCID of the compartment that contains the boot volume.

sourceDetails BootVolumeSourceDetailsArgs
autotunePolicies List<BootVolumeAutotunePolicyArgs>

(Updatable) The list of autotune policies to be enabled for this volume.

backupPolicyId String

If provided, specifies the ID of the boot volume backup policy to assign to the newly created boot volume. If omitted, no policy will be assigned.

Deprecated:

The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.

bootVolumeReplicas List<BootVolumeBootVolumeReplicaArgs>

(Updatable) The list of boot volume replicas to be enabled for this boot volume in the specified destination availability domains.

bootVolumeReplicasDeletion Boolean
definedTags Map<String,Object>

(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"}

displayName String

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

freeformTags Map<String,Object>

(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"}

isAutoTuneEnabled Boolean

(Updatable) Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated. Use the DetachedVolumeAutotunePolicy instead to enable the volume for detached autotune.

kmsKeyId String

(Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.

sizeInGbs String

(Updatable) The size of the volume in GBs.

vpusPerGb String

(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:

availabilityDomain string

(Updatable) The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1

compartmentId string

(Updatable) The OCID of the compartment that contains the boot volume.

sourceDetails BootVolumeSourceDetailsArgs
autotunePolicies BootVolumeAutotunePolicyArgs[]

(Updatable) The list of autotune policies to be enabled for this volume.

backupPolicyId string

If provided, specifies the ID of the boot volume backup policy to assign to the newly created boot volume. If omitted, no policy will be assigned.

Deprecated:

The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.

bootVolumeReplicas BootVolumeBootVolumeReplicaArgs[]

(Updatable) The list of boot volume replicas to be enabled for this boot volume in the specified destination availability domains.

bootVolumeReplicasDeletion boolean
definedTags {[key: string]: any}

(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"}

displayName string

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

freeformTags {[key: string]: any}

(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"}

isAutoTuneEnabled boolean

(Updatable) Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated. Use the DetachedVolumeAutotunePolicy instead to enable the volume for detached autotune.

kmsKeyId string

(Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.

sizeInGbs string

(Updatable) The size of the volume in GBs.

vpusPerGb string

(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

(Updatable) The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1

compartment_id str

(Updatable) The OCID of the compartment that contains the boot volume.

source_details BootVolumeSourceDetailsArgs
autotune_policies BootVolumeAutotunePolicyArgs]

(Updatable) The list of autotune policies to be enabled for this volume.

backup_policy_id str

If provided, specifies the ID of the boot volume backup policy to assign to the newly created boot volume. If omitted, no policy will be assigned.

Deprecated:

The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.

boot_volume_replicas BootVolumeBootVolumeReplicaArgs]

(Updatable) The list of boot volume replicas to be enabled for this boot volume in the specified destination availability domains.

boot_volume_replicas_deletion bool
defined_tags Mapping[str, Any]

(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.

freeform_tags Mapping[str, Any]

(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_tune_enabled bool

(Updatable) Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated. Use the DetachedVolumeAutotunePolicy instead to enable the volume for detached autotune.

kms_key_id str

(Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.

size_in_gbs str

(Updatable) The size of the volume in GBs.

vpus_per_gb str

(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:

availabilityDomain String

(Updatable) The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1

compartmentId String

(Updatable) The OCID of the compartment that contains the boot volume.

sourceDetails Property Map
autotunePolicies List<Property Map>

(Updatable) The list of autotune policies to be enabled for this volume.

backupPolicyId String

If provided, specifies the ID of the boot volume backup policy to assign to the newly created boot volume. If omitted, no policy will be assigned.

Deprecated:

The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.

bootVolumeReplicas List<Property Map>

(Updatable) The list of boot volume replicas to be enabled for this boot volume in the specified destination availability domains.

bootVolumeReplicasDeletion Boolean
definedTags Map<Any>

(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"}

displayName String

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

freeformTags Map<Any>

(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"}

isAutoTuneEnabled Boolean

(Updatable) Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated. Use the DetachedVolumeAutotunePolicy instead to enable the volume for detached autotune.

kmsKeyId String

(Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.

sizeInGbs String

(Updatable) The size of the volume in GBs.

vpusPerGb String

(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 BootVolume resource produces the following output properties:

AutoTunedVpusPerGb string

The number of Volume Performance Units per GB that this boot volume is effectively tuned to.

Id string

The provider-assigned unique ID for this managed resource.

ImageId string

The image OCID used to create the boot volume.

IsHydrated bool

Specifies whether the boot volume's data has finished copying from the source boot volume or boot volume backup.

SizeInMbs string

The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use size_in_gbs.

State string

The current state of a boot volume.

SystemTags Dictionary<string, object>

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

TimeCreated string

The date and time the boot volume was created. Format defined by RFC3339.

VolumeGroupId string

The OCID of the source volume group.

AutoTunedVpusPerGb string

The number of Volume Performance Units per GB that this boot volume is effectively tuned to.

Id string

The provider-assigned unique ID for this managed resource.

ImageId string

The image OCID used to create the boot volume.

IsHydrated bool

Specifies whether the boot volume's data has finished copying from the source boot volume or boot volume backup.

SizeInMbs string

The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use size_in_gbs.

State string

The current state of a boot volume.

SystemTags map[string]interface{}

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

TimeCreated string

The date and time the boot volume was created. Format defined by RFC3339.

VolumeGroupId string

The OCID of the source volume group.

autoTunedVpusPerGb String

The number of Volume Performance Units per GB that this boot volume is effectively tuned to.

id String

The provider-assigned unique ID for this managed resource.

imageId String

The image OCID used to create the boot volume.

isHydrated Boolean

Specifies whether the boot volume's data has finished copying from the source boot volume or boot volume backup.

sizeInMbs String

The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use size_in_gbs.

state String

The current state of a boot volume.

systemTags Map<String,Object>

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

timeCreated String

The date and time the boot volume was created. Format defined by RFC3339.

volumeGroupId String

The OCID of the source volume group.

autoTunedVpusPerGb string

The number of Volume Performance Units per GB that this boot volume is effectively tuned to.

id string

The provider-assigned unique ID for this managed resource.

imageId string

The image OCID used to create the boot volume.

isHydrated boolean

Specifies whether the boot volume's data has finished copying from the source boot volume or boot volume backup.

sizeInMbs string

The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use size_in_gbs.

state string

The current state of a boot volume.

systemTags {[key: string]: any}

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

timeCreated string

The date and time the boot volume was created. Format defined by RFC3339.

volumeGroupId string

The OCID of the source volume group.

auto_tuned_vpus_per_gb str

The number of Volume Performance Units per GB that this boot volume is effectively tuned to.

id str

The provider-assigned unique ID for this managed resource.

image_id str

The image OCID used to create the boot volume.

is_hydrated bool

Specifies whether the boot volume's data has finished copying from the source boot volume or boot volume backup.

size_in_mbs str

The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use size_in_gbs.

state str

The current state of a boot volume.

system_tags Mapping[str, Any]

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

time_created str

The date and time the boot volume was created. Format defined by RFC3339.

volume_group_id str

The OCID of the source volume group.

autoTunedVpusPerGb String

The number of Volume Performance Units per GB that this boot volume is effectively tuned to.

id String

The provider-assigned unique ID for this managed resource.

imageId String

The image OCID used to create the boot volume.

isHydrated Boolean

Specifies whether the boot volume's data has finished copying from the source boot volume or boot volume backup.

sizeInMbs String

The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use size_in_gbs.

state String

The current state of a boot volume.

systemTags Map<Any>

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

timeCreated String

The date and time the boot volume was created. Format defined by RFC3339.

volumeGroupId String

The OCID of the source volume group.

Look up Existing BootVolume Resource

Get an existing BootVolume 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?: BootVolumeState, opts?: CustomResourceOptions): BootVolume
@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.BootVolumeAutotunePolicyArgs]] = None,
        availability_domain: Optional[str] = None,
        backup_policy_id: Optional[str] = None,
        boot_volume_replicas: Optional[Sequence[_core.BootVolumeBootVolumeReplicaArgs]] = None,
        boot_volume_replicas_deletion: Optional[bool] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, Any]] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, Any]] = None,
        image_id: Optional[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.BootVolumeSourceDetailsArgs] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, Any]] = None,
        time_created: Optional[str] = None,
        volume_group_id: Optional[str] = None,
        vpus_per_gb: Optional[str] = None) -> BootVolume
func GetBootVolume(ctx *Context, name string, id IDInput, state *BootVolumeState, opts ...ResourceOption) (*BootVolume, error)
public static BootVolume Get(string name, Input<string> id, BootVolumeState? state, CustomResourceOptions? opts = null)
public static BootVolume get(String name, Output<String> id, BootVolumeState 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.
The following state arguments are supported:
AutoTunedVpusPerGb string

The number of Volume Performance Units per GB that this boot volume is effectively tuned to.

AutotunePolicies List<BootVolumeAutotunePolicyArgs>

(Updatable) The list of autotune policies to be enabled for this volume.

AvailabilityDomain string

(Updatable) The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1

BackupPolicyId string

If provided, specifies the ID of the boot volume backup policy to assign to the newly created boot volume. If omitted, no policy will be assigned.

Deprecated:

The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.

BootVolumeReplicas List<BootVolumeBootVolumeReplicaArgs>

(Updatable) The list of boot volume replicas to be enabled for this boot volume in the specified destination availability domains.

BootVolumeReplicasDeletion bool
CompartmentId string

(Updatable) The OCID of the compartment that contains the boot volume.

DefinedTags Dictionary<string, object>

(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"}

DisplayName string

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

FreeformTags Dictionary<string, object>

(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"}

ImageId string

The image OCID used to create the boot volume.

IsAutoTuneEnabled bool

(Updatable) Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated. Use the DetachedVolumeAutotunePolicy instead to enable the volume for detached autotune.

IsHydrated bool

Specifies whether the boot volume's data has finished copying from the source boot volume or boot volume backup.

KmsKeyId string

(Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.

SizeInGbs string

(Updatable) The size of the volume in GBs.

SizeInMbs string

The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use size_in_gbs.

SourceDetails BootVolumeSourceDetailsArgs
State string

The current state of a boot volume.

SystemTags Dictionary<string, object>

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

TimeCreated string

The date and time the boot volume was created. Format defined by RFC3339.

VolumeGroupId string

The OCID of the source volume group.

VpusPerGb string

(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:

AutoTunedVpusPerGb string

The number of Volume Performance Units per GB that this boot volume is effectively tuned to.

AutotunePolicies []BootVolumeAutotunePolicyArgs

(Updatable) The list of autotune policies to be enabled for this volume.

AvailabilityDomain string

(Updatable) The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1

BackupPolicyId string

If provided, specifies the ID of the boot volume backup policy to assign to the newly created boot volume. If omitted, no policy will be assigned.

Deprecated:

The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.

BootVolumeReplicas []BootVolumeBootVolumeReplicaArgs

(Updatable) The list of boot volume replicas to be enabled for this boot volume in the specified destination availability domains.

BootVolumeReplicasDeletion bool
CompartmentId string

(Updatable) The OCID of the compartment that contains the boot volume.

DefinedTags map[string]interface{}

(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"}

DisplayName string

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

FreeformTags map[string]interface{}

(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"}

ImageId string

The image OCID used to create the boot volume.

IsAutoTuneEnabled bool

(Updatable) Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated. Use the DetachedVolumeAutotunePolicy instead to enable the volume for detached autotune.

IsHydrated bool

Specifies whether the boot volume's data has finished copying from the source boot volume or boot volume backup.

KmsKeyId string

(Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.

SizeInGbs string

(Updatable) The size of the volume in GBs.

SizeInMbs string

The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use size_in_gbs.

SourceDetails BootVolumeSourceDetailsArgs
State string

The current state of a boot volume.

SystemTags map[string]interface{}

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

TimeCreated string

The date and time the boot volume was created. Format defined by RFC3339.

VolumeGroupId string

The OCID of the source volume group.

VpusPerGb string

(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:

autoTunedVpusPerGb String

The number of Volume Performance Units per GB that this boot volume is effectively tuned to.

autotunePolicies List<BootVolumeAutotunePolicyArgs>

(Updatable) The list of autotune policies to be enabled for this volume.

availabilityDomain String

(Updatable) The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1

backupPolicyId String

If provided, specifies the ID of the boot volume backup policy to assign to the newly created boot volume. If omitted, no policy will be assigned.

Deprecated:

The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.

bootVolumeReplicas List<BootVolumeBootVolumeReplicaArgs>

(Updatable) The list of boot volume replicas to be enabled for this boot volume in the specified destination availability domains.

bootVolumeReplicasDeletion Boolean
compartmentId String

(Updatable) The OCID of the compartment that contains the boot volume.

definedTags Map<String,Object>

(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"}

displayName String

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

freeformTags Map<String,Object>

(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"}

imageId String

The image OCID used to create the boot volume.

isAutoTuneEnabled Boolean

(Updatable) Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated. Use the DetachedVolumeAutotunePolicy instead to enable the volume for detached autotune.

isHydrated Boolean

Specifies whether the boot volume's data has finished copying from the source boot volume or boot volume backup.

kmsKeyId String

(Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.

sizeInGbs String

(Updatable) The size of the volume in GBs.

sizeInMbs String

The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use size_in_gbs.

sourceDetails BootVolumeSourceDetailsArgs
state String

The current state of a boot volume.

systemTags Map<String,Object>

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

timeCreated String

The date and time the boot volume was created. Format defined by RFC3339.

volumeGroupId String

The OCID of the source volume group.

vpusPerGb String

(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:

autoTunedVpusPerGb string

The number of Volume Performance Units per GB that this boot volume is effectively tuned to.

autotunePolicies BootVolumeAutotunePolicyArgs[]

(Updatable) The list of autotune policies to be enabled for this volume.

availabilityDomain string

(Updatable) The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1

backupPolicyId string

If provided, specifies the ID of the boot volume backup policy to assign to the newly created boot volume. If omitted, no policy will be assigned.

Deprecated:

The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.

bootVolumeReplicas BootVolumeBootVolumeReplicaArgs[]

(Updatable) The list of boot volume replicas to be enabled for this boot volume in the specified destination availability domains.

bootVolumeReplicasDeletion boolean
compartmentId string

(Updatable) The OCID of the compartment that contains the boot volume.

definedTags {[key: string]: any}

(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"}

displayName string

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

freeformTags {[key: string]: any}

(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"}

imageId string

The image OCID used to create the boot volume.

isAutoTuneEnabled boolean

(Updatable) Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated. Use the DetachedVolumeAutotunePolicy instead to enable the volume for detached autotune.

isHydrated boolean

Specifies whether the boot volume's data has finished copying from the source boot volume or boot volume backup.

kmsKeyId string

(Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.

sizeInGbs string

(Updatable) The size of the volume in GBs.

sizeInMbs string

The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use size_in_gbs.

sourceDetails BootVolumeSourceDetailsArgs
state string

The current state of a boot volume.

systemTags {[key: string]: any}

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

timeCreated string

The date and time the boot volume was created. Format defined by RFC3339.

volumeGroupId string

The OCID of the source volume group.

vpusPerGb string

(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_vpus_per_gb str

The number of Volume Performance Units per GB that this boot volume is effectively tuned to.

autotune_policies BootVolumeAutotunePolicyArgs]

(Updatable) The list of autotune policies to be enabled for this volume.

availability_domain str

(Updatable) The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1

backup_policy_id str

If provided, specifies the ID of the boot volume backup policy to assign to the newly created boot volume. If omitted, no policy will be assigned.

Deprecated:

The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.

boot_volume_replicas BootVolumeBootVolumeReplicaArgs]

(Updatable) The list of boot volume replicas to be enabled for this boot volume in the specified destination availability domains.

boot_volume_replicas_deletion bool
compartment_id str

(Updatable) The OCID of the compartment that contains the boot volume.

defined_tags Mapping[str, Any]

(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.

freeform_tags Mapping[str, Any]

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

image_id str

The image OCID used to create the boot volume.

is_auto_tune_enabled bool

(Updatable) Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated. Use the DetachedVolumeAutotunePolicy instead to enable the volume for detached autotune.

is_hydrated bool

Specifies whether the boot volume's data has finished copying from the source boot volume or boot volume backup.

kms_key_id str

(Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.

size_in_gbs str

(Updatable) The size of the volume in GBs.

size_in_mbs str

The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use size_in_gbs.

source_details BootVolumeSourceDetailsArgs
state str

The current state of a boot volume.

system_tags Mapping[str, Any]

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

time_created str

The date and time the boot volume was created. Format defined by RFC3339.

volume_group_id str

The OCID of the source volume group.

vpus_per_gb str

(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:

autoTunedVpusPerGb String

The number of Volume Performance Units per GB that this boot volume is effectively tuned to.

autotunePolicies List<Property Map>

(Updatable) The list of autotune policies to be enabled for this volume.

availabilityDomain String

(Updatable) The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1

backupPolicyId String

If provided, specifies the ID of the boot volume backup policy to assign to the newly created boot volume. If omitted, no policy will be assigned.

Deprecated:

The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.

bootVolumeReplicas List<Property Map>

(Updatable) The list of boot volume replicas to be enabled for this boot volume in the specified destination availability domains.

bootVolumeReplicasDeletion Boolean
compartmentId String

(Updatable) The OCID of the compartment that contains the boot volume.

definedTags Map<Any>

(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"}

displayName String

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

freeformTags Map<Any>

(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"}

imageId String

The image OCID used to create the boot volume.

isAutoTuneEnabled Boolean

(Updatable) Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated. Use the DetachedVolumeAutotunePolicy instead to enable the volume for detached autotune.

isHydrated Boolean

Specifies whether the boot volume's data has finished copying from the source boot volume or boot volume backup.

kmsKeyId String

(Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.

sizeInGbs String

(Updatable) The size of the volume in GBs.

sizeInMbs String

The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use size_in_gbs.

sourceDetails Property Map
state String

The current state of a boot volume.

systemTags Map<Any>

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

timeCreated String

The date and time the boot volume was created. Format defined by RFC3339.

volumeGroupId String

The OCID of the source volume group.

vpusPerGb String

(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

BootVolumeAutotunePolicy

AutotuneType string

(Updatable) This specifies the type of autotunes supported by OCI.

MaxVpusPerGb string

(Updatable) This will be the maximum VPUs/GB performance level that the volume will be auto-tuned temporarily based on performance monitoring.

AutotuneType string

(Updatable) This specifies the type of autotunes supported by OCI.

MaxVpusPerGb string

(Updatable) This will be the maximum VPUs/GB performance level that the volume will be auto-tuned temporarily based on performance monitoring.

autotuneType String

(Updatable) This specifies the type of autotunes supported by OCI.

maxVpusPerGb String

(Updatable) This will be the maximum VPUs/GB performance level that the volume will be auto-tuned temporarily based on performance monitoring.

autotuneType string

(Updatable) This specifies the type of autotunes supported by OCI.

maxVpusPerGb string

(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_per_gb str

(Updatable) This will be the maximum VPUs/GB performance level that the volume will be auto-tuned temporarily based on performance monitoring.

autotuneType String

(Updatable) This specifies the type of autotunes supported by OCI.

maxVpusPerGb String

(Updatable) This will be the maximum VPUs/GB performance level that the volume will be auto-tuned temporarily based on performance monitoring.

BootVolumeBootVolumeReplica

AvailabilityDomain string

(Updatable) The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1

BootVolumeReplicaId string

The boot volume replica's Oracle ID (OCID).

DisplayName string

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

AvailabilityDomain string

(Updatable) The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1

BootVolumeReplicaId string

The boot volume replica's Oracle ID (OCID).

DisplayName string

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

availabilityDomain String

(Updatable) The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1

bootVolumeReplicaId String

The boot volume replica's Oracle ID (OCID).

displayName String

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

availabilityDomain string

(Updatable) The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1

bootVolumeReplicaId string

The boot volume replica's Oracle ID (OCID).

displayName 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 boot volume replica. Example: Uocm:PHX-AD-1

boot_volume_replica_id str

The boot 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.

availabilityDomain String

(Updatable) The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1

bootVolumeReplicaId String

The boot volume replica's Oracle ID (OCID).

displayName String

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

BootVolumeSourceDetails

Id string

The OCID of the boot volume replica.

Type string

The type can be one of these values: bootVolume, bootVolumeBackup, bootVolumeReplica

Id string

The OCID of the boot volume replica.

Type string

The type can be one of these values: bootVolume, bootVolumeBackup, bootVolumeReplica

id String

The OCID of the boot volume replica.

type String

The type can be one of these values: bootVolume, bootVolumeBackup, bootVolumeReplica

id string

The OCID of the boot volume replica.

type string

The type can be one of these values: bootVolume, bootVolumeBackup, bootVolumeReplica

id str

The OCID of the boot volume replica.

type str

The type can be one of these values: bootVolume, bootVolumeBackup, bootVolumeReplica

id String

The OCID of the boot volume replica.

type String

The type can be one of these values: bootVolume, bootVolumeBackup, bootVolumeReplica

Import

BootVolumes can be imported using the id, e.g.

 $ pulumi import oci:Core/bootVolume:BootVolume test_boot_volume "id"

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes

This Pulumi package is based on the oci Terraform Provider.