1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. ExascaleDbStorageVault
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.Database.ExascaleDbStorageVault

Explore with Pulumi AI

This resource provides the Exascale Db Storage Vault resource in Oracle Cloud Infrastructure Database service.

Creates an Exadata Database Storage Vault

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testExascaleDbStorageVault = new oci.database.ExascaleDbStorageVault("test_exascale_db_storage_vault", {
    availabilityDomain: exascaleDbStorageVaultAvailabilityDomain,
    compartmentId: compartmentId,
    displayName: exascaleDbStorageVaultDisplayName,
    highCapacityDatabaseStorage: {
        totalSizeInGbs: exascaleDbStorageVaultHighCapacityDatabaseStorageTotalSizeInGbs,
    },
    additionalFlashCacheInPercent: exascaleDbStorageVaultAdditionalFlashCacheInPercent,
    clusterPlacementGroupId: testClusterPlacementGroup.id,
    definedTags: exascaleDbStorageVaultDefinedTags,
    description: exascaleDbStorageVaultDescription,
    exadataInfrastructureId: testExadataInfrastructure.id,
    freeformTags: {
        Department: "Finance",
    },
    subscriptionId: tenantSubscriptionId,
    timeZone: exascaleDbStorageVaultTimeZone,
});
Copy
import pulumi
import pulumi_oci as oci

test_exascale_db_storage_vault = oci.database.ExascaleDbStorageVault("test_exascale_db_storage_vault",
    availability_domain=exascale_db_storage_vault_availability_domain,
    compartment_id=compartment_id,
    display_name=exascale_db_storage_vault_display_name,
    high_capacity_database_storage={
        "total_size_in_gbs": exascale_db_storage_vault_high_capacity_database_storage_total_size_in_gbs,
    },
    additional_flash_cache_in_percent=exascale_db_storage_vault_additional_flash_cache_in_percent,
    cluster_placement_group_id=test_cluster_placement_group["id"],
    defined_tags=exascale_db_storage_vault_defined_tags,
    description=exascale_db_storage_vault_description,
    exadata_infrastructure_id=test_exadata_infrastructure["id"],
    freeform_tags={
        "Department": "Finance",
    },
    subscription_id=tenant_subscription_id,
    time_zone=exascale_db_storage_vault_time_zone)
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := database.NewExascaleDbStorageVault(ctx, "test_exascale_db_storage_vault", &database.ExascaleDbStorageVaultArgs{
			AvailabilityDomain: pulumi.Any(exascaleDbStorageVaultAvailabilityDomain),
			CompartmentId:      pulumi.Any(compartmentId),
			DisplayName:        pulumi.Any(exascaleDbStorageVaultDisplayName),
			HighCapacityDatabaseStorage: &database.ExascaleDbStorageVaultHighCapacityDatabaseStorageArgs{
				TotalSizeInGbs: pulumi.Any(exascaleDbStorageVaultHighCapacityDatabaseStorageTotalSizeInGbs),
			},
			AdditionalFlashCacheInPercent: pulumi.Any(exascaleDbStorageVaultAdditionalFlashCacheInPercent),
			ClusterPlacementGroupId:       pulumi.Any(testClusterPlacementGroup.Id),
			DefinedTags:                   pulumi.Any(exascaleDbStorageVaultDefinedTags),
			Description:                   pulumi.Any(exascaleDbStorageVaultDescription),
			ExadataInfrastructureId:       pulumi.Any(testExadataInfrastructure.Id),
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
			SubscriptionId: pulumi.Any(tenantSubscriptionId),
			TimeZone:       pulumi.Any(exascaleDbStorageVaultTimeZone),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testExascaleDbStorageVault = new Oci.Database.ExascaleDbStorageVault("test_exascale_db_storage_vault", new()
    {
        AvailabilityDomain = exascaleDbStorageVaultAvailabilityDomain,
        CompartmentId = compartmentId,
        DisplayName = exascaleDbStorageVaultDisplayName,
        HighCapacityDatabaseStorage = new Oci.Database.Inputs.ExascaleDbStorageVaultHighCapacityDatabaseStorageArgs
        {
            TotalSizeInGbs = exascaleDbStorageVaultHighCapacityDatabaseStorageTotalSizeInGbs,
        },
        AdditionalFlashCacheInPercent = exascaleDbStorageVaultAdditionalFlashCacheInPercent,
        ClusterPlacementGroupId = testClusterPlacementGroup.Id,
        DefinedTags = exascaleDbStorageVaultDefinedTags,
        Description = exascaleDbStorageVaultDescription,
        ExadataInfrastructureId = testExadataInfrastructure.Id,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        SubscriptionId = tenantSubscriptionId,
        TimeZone = exascaleDbStorageVaultTimeZone,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.ExascaleDbStorageVault;
import com.pulumi.oci.Database.ExascaleDbStorageVaultArgs;
import com.pulumi.oci.Database.inputs.ExascaleDbStorageVaultHighCapacityDatabaseStorageArgs;
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 testExascaleDbStorageVault = new ExascaleDbStorageVault("testExascaleDbStorageVault", ExascaleDbStorageVaultArgs.builder()
            .availabilityDomain(exascaleDbStorageVaultAvailabilityDomain)
            .compartmentId(compartmentId)
            .displayName(exascaleDbStorageVaultDisplayName)
            .highCapacityDatabaseStorage(ExascaleDbStorageVaultHighCapacityDatabaseStorageArgs.builder()
                .totalSizeInGbs(exascaleDbStorageVaultHighCapacityDatabaseStorageTotalSizeInGbs)
                .build())
            .additionalFlashCacheInPercent(exascaleDbStorageVaultAdditionalFlashCacheInPercent)
            .clusterPlacementGroupId(testClusterPlacementGroup.id())
            .definedTags(exascaleDbStorageVaultDefinedTags)
            .description(exascaleDbStorageVaultDescription)
            .exadataInfrastructureId(testExadataInfrastructure.id())
            .freeformTags(Map.of("Department", "Finance"))
            .subscriptionId(tenantSubscriptionId)
            .timeZone(exascaleDbStorageVaultTimeZone)
            .build());

    }
}
Copy
resources:
  testExascaleDbStorageVault:
    type: oci:Database:ExascaleDbStorageVault
    name: test_exascale_db_storage_vault
    properties:
      availabilityDomain: ${exascaleDbStorageVaultAvailabilityDomain}
      compartmentId: ${compartmentId}
      displayName: ${exascaleDbStorageVaultDisplayName}
      highCapacityDatabaseStorage:
        totalSizeInGbs: ${exascaleDbStorageVaultHighCapacityDatabaseStorageTotalSizeInGbs}
      additionalFlashCacheInPercent: ${exascaleDbStorageVaultAdditionalFlashCacheInPercent}
      clusterPlacementGroupId: ${testClusterPlacementGroup.id}
      definedTags: ${exascaleDbStorageVaultDefinedTags}
      description: ${exascaleDbStorageVaultDescription}
      exadataInfrastructureId: ${testExadataInfrastructure.id}
      freeformTags:
        Department: Finance
      subscriptionId: ${tenantSubscriptionId}
      timeZone: ${exascaleDbStorageVaultTimeZone}
Copy

Create ExascaleDbStorageVault Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ExascaleDbStorageVault(name: string, args: ExascaleDbStorageVaultArgs, opts?: CustomResourceOptions);
@overload
def ExascaleDbStorageVault(resource_name: str,
                           args: ExascaleDbStorageVaultArgs,
                           opts: Optional[ResourceOptions] = None)

@overload
def ExascaleDbStorageVault(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           availability_domain: Optional[str] = None,
                           compartment_id: Optional[str] = None,
                           display_name: Optional[str] = None,
                           high_capacity_database_storage: Optional[_database.ExascaleDbStorageVaultHighCapacityDatabaseStorageArgs] = None,
                           additional_flash_cache_in_percent: Optional[int] = None,
                           cluster_placement_group_id: Optional[str] = None,
                           defined_tags: Optional[Mapping[str, str]] = None,
                           description: Optional[str] = None,
                           exadata_infrastructure_id: Optional[str] = None,
                           freeform_tags: Optional[Mapping[str, str]] = None,
                           subscription_id: Optional[str] = None,
                           time_zone: Optional[str] = None)
func NewExascaleDbStorageVault(ctx *Context, name string, args ExascaleDbStorageVaultArgs, opts ...ResourceOption) (*ExascaleDbStorageVault, error)
public ExascaleDbStorageVault(string name, ExascaleDbStorageVaultArgs args, CustomResourceOptions? opts = null)
public ExascaleDbStorageVault(String name, ExascaleDbStorageVaultArgs args)
public ExascaleDbStorageVault(String name, ExascaleDbStorageVaultArgs args, CustomResourceOptions options)
type: oci:Database:ExascaleDbStorageVault
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ExascaleDbStorageVaultArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ExascaleDbStorageVaultArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ExascaleDbStorageVaultArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ExascaleDbStorageVaultArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ExascaleDbStorageVaultArgs
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 exascaleDbStorageVaultResource = new Oci.Database.ExascaleDbStorageVault("exascaleDbStorageVaultResource", new()
{
    AvailabilityDomain = "string",
    CompartmentId = "string",
    DisplayName = "string",
    HighCapacityDatabaseStorage = new Oci.Database.Inputs.ExascaleDbStorageVaultHighCapacityDatabaseStorageArgs
    {
        TotalSizeInGbs = 0,
        AvailableSizeInGbs = 0,
    },
    AdditionalFlashCacheInPercent = 0,
    ClusterPlacementGroupId = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    Description = "string",
    ExadataInfrastructureId = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    SubscriptionId = "string",
    TimeZone = "string",
});
Copy
example, err := Database.NewExascaleDbStorageVault(ctx, "exascaleDbStorageVaultResource", &Database.ExascaleDbStorageVaultArgs{
	AvailabilityDomain: pulumi.String("string"),
	CompartmentId:      pulumi.String("string"),
	DisplayName:        pulumi.String("string"),
	HighCapacityDatabaseStorage: &database.ExascaleDbStorageVaultHighCapacityDatabaseStorageArgs{
		TotalSizeInGbs:     pulumi.Int(0),
		AvailableSizeInGbs: pulumi.Int(0),
	},
	AdditionalFlashCacheInPercent: pulumi.Int(0),
	ClusterPlacementGroupId:       pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Description:             pulumi.String("string"),
	ExadataInfrastructureId: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	SubscriptionId: pulumi.String("string"),
	TimeZone:       pulumi.String("string"),
})
Copy
var exascaleDbStorageVaultResource = new ExascaleDbStorageVault("exascaleDbStorageVaultResource", ExascaleDbStorageVaultArgs.builder()
    .availabilityDomain("string")
    .compartmentId("string")
    .displayName("string")
    .highCapacityDatabaseStorage(ExascaleDbStorageVaultHighCapacityDatabaseStorageArgs.builder()
        .totalSizeInGbs(0)
        .availableSizeInGbs(0)
        .build())
    .additionalFlashCacheInPercent(0)
    .clusterPlacementGroupId("string")
    .definedTags(Map.of("string", "string"))
    .description("string")
    .exadataInfrastructureId("string")
    .freeformTags(Map.of("string", "string"))
    .subscriptionId("string")
    .timeZone("string")
    .build());
Copy
exascale_db_storage_vault_resource = oci.database.ExascaleDbStorageVault("exascaleDbStorageVaultResource",
    availability_domain="string",
    compartment_id="string",
    display_name="string",
    high_capacity_database_storage={
        "total_size_in_gbs": 0,
        "available_size_in_gbs": 0,
    },
    additional_flash_cache_in_percent=0,
    cluster_placement_group_id="string",
    defined_tags={
        "string": "string",
    },
    description="string",
    exadata_infrastructure_id="string",
    freeform_tags={
        "string": "string",
    },
    subscription_id="string",
    time_zone="string")
Copy
const exascaleDbStorageVaultResource = new oci.database.ExascaleDbStorageVault("exascaleDbStorageVaultResource", {
    availabilityDomain: "string",
    compartmentId: "string",
    displayName: "string",
    highCapacityDatabaseStorage: {
        totalSizeInGbs: 0,
        availableSizeInGbs: 0,
    },
    additionalFlashCacheInPercent: 0,
    clusterPlacementGroupId: "string",
    definedTags: {
        string: "string",
    },
    description: "string",
    exadataInfrastructureId: "string",
    freeformTags: {
        string: "string",
    },
    subscriptionId: "string",
    timeZone: "string",
});
Copy
type: oci:Database:ExascaleDbStorageVault
properties:
    additionalFlashCacheInPercent: 0
    availabilityDomain: string
    clusterPlacementGroupId: string
    compartmentId: string
    definedTags:
        string: string
    description: string
    displayName: string
    exadataInfrastructureId: string
    freeformTags:
        string: string
    highCapacityDatabaseStorage:
        availableSizeInGbs: 0
        totalSizeInGbs: 0
    subscriptionId: string
    timeZone: string
Copy

ExascaleDbStorageVault Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ExascaleDbStorageVault resource accepts the following input properties:

AvailabilityDomain
This property is required.
Changes to this property will trigger replacement.
string
The name of the availability domain in which the Exadata Database Storage Vault is located.
CompartmentId This property is required. string
(Updatable) The OCID of the compartment.
DisplayName This property is required. string
(Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
HighCapacityDatabaseStorage This property is required. ExascaleDbStorageVaultHighCapacityDatabaseStorage
(Updatable) Create exadata Database Storage Details
AdditionalFlashCacheInPercent int
(Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
ClusterPlacementGroupId Changes to this property will trigger replacement. string
The OCID of the cluster placement group of the Exadata Infrastructure.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Description string
(Updatable) Exadata Database Storage Vault description.
ExadataInfrastructureId Changes to this property will trigger replacement. string
The OCID of the Exadata infrastructure.
FreeformTags 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"}
SubscriptionId Changes to this property will trigger replacement. string
The OCID of the subscription with which resource needs to be associated with.
TimeZone Changes to this property will trigger replacement. string

The time zone that you want to use for the Exadata Database Storage Vault. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

AvailabilityDomain
This property is required.
Changes to this property will trigger replacement.
string
The name of the availability domain in which the Exadata Database Storage Vault is located.
CompartmentId This property is required. string
(Updatable) The OCID of the compartment.
DisplayName This property is required. string
(Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
HighCapacityDatabaseStorage This property is required. ExascaleDbStorageVaultHighCapacityDatabaseStorageArgs
(Updatable) Create exadata Database Storage Details
AdditionalFlashCacheInPercent int
(Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
ClusterPlacementGroupId Changes to this property will trigger replacement. string
The OCID of the cluster placement group of the Exadata Infrastructure.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Description string
(Updatable) Exadata Database Storage Vault description.
ExadataInfrastructureId Changes to this property will trigger replacement. string
The OCID of the Exadata infrastructure.
FreeformTags 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"}
SubscriptionId Changes to this property will trigger replacement. string
The OCID of the subscription with which resource needs to be associated with.
TimeZone Changes to this property will trigger replacement. string

The time zone that you want to use for the Exadata Database Storage Vault. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

availabilityDomain
This property is required.
Changes to this property will trigger replacement.
String
The name of the availability domain in which the Exadata Database Storage Vault is located.
compartmentId This property is required. String
(Updatable) The OCID of the compartment.
displayName This property is required. String
(Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
highCapacityDatabaseStorage This property is required. ExascaleDbStorageVaultHighCapacityStorage
(Updatable) Create exadata Database Storage Details
additionalFlashCacheInPercent Integer
(Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
clusterPlacementGroupId Changes to this property will trigger replacement. String
The OCID of the cluster placement group of the Exadata Infrastructure.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
description String
(Updatable) Exadata Database Storage Vault description.
exadataInfrastructureId Changes to this property will trigger replacement. String
The OCID of the Exadata infrastructure.
freeformTags 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"}
subscriptionId Changes to this property will trigger replacement. String
The OCID of the subscription with which resource needs to be associated with.
timeZone Changes to this property will trigger replacement. String

The time zone that you want to use for the Exadata Database Storage Vault. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

availabilityDomain
This property is required.
Changes to this property will trigger replacement.
string
The name of the availability domain in which the Exadata Database Storage Vault is located.
compartmentId This property is required. string
(Updatable) The OCID of the compartment.
displayName This property is required. string
(Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
highCapacityDatabaseStorage This property is required. ExascaleDbStorageVaultHighCapacityDatabaseStorage
(Updatable) Create exadata Database Storage Details
additionalFlashCacheInPercent number
(Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
clusterPlacementGroupId Changes to this property will trigger replacement. string
The OCID of the cluster placement group of the Exadata Infrastructure.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
description string
(Updatable) Exadata Database Storage Vault description.
exadataInfrastructureId Changes to this property will trigger replacement. string
The OCID of the Exadata infrastructure.
freeformTags {[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"}
subscriptionId Changes to this property will trigger replacement. string
The OCID of the subscription with which resource needs to be associated with.
timeZone Changes to this property will trigger replacement. string

The time zone that you want to use for the Exadata Database Storage Vault. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

availability_domain
This property is required.
Changes to this property will trigger replacement.
str
The name of the availability domain in which the Exadata Database Storage Vault is located.
compartment_id This property is required. str
(Updatable) The OCID of the compartment.
display_name This property is required. str
(Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
high_capacity_database_storage This property is required. database.ExascaleDbStorageVaultHighCapacityDatabaseStorageArgs
(Updatable) Create exadata Database Storage Details
additional_flash_cache_in_percent int
(Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
cluster_placement_group_id Changes to this property will trigger replacement. str
The OCID of the cluster placement group of the Exadata Infrastructure.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
description str
(Updatable) Exadata Database Storage Vault description.
exadata_infrastructure_id Changes to this property will trigger replacement. str
The OCID of the Exadata infrastructure.
freeform_tags 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"}
subscription_id Changes to this property will trigger replacement. str
The OCID of the subscription with which resource needs to be associated with.
time_zone Changes to this property will trigger replacement. str

The time zone that you want to use for the Exadata Database Storage Vault. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

availabilityDomain
This property is required.
Changes to this property will trigger replacement.
String
The name of the availability domain in which the Exadata Database Storage Vault is located.
compartmentId This property is required. String
(Updatable) The OCID of the compartment.
displayName This property is required. String
(Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
highCapacityDatabaseStorage This property is required. Property Map
(Updatable) Create exadata Database Storage Details
additionalFlashCacheInPercent Number
(Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
clusterPlacementGroupId Changes to this property will trigger replacement. String
The OCID of the cluster placement group of the Exadata Infrastructure.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
description String
(Updatable) Exadata Database Storage Vault description.
exadataInfrastructureId Changes to this property will trigger replacement. String
The OCID of the Exadata infrastructure.
freeformTags 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"}
subscriptionId Changes to this property will trigger replacement. String
The OCID of the subscription with which resource needs to be associated with.
timeZone Changes to this property will trigger replacement. String

The time zone that you want to use for the Exadata Database Storage Vault. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Outputs

All input properties are implicitly available as output properties. Additionally, the ExascaleDbStorageVault resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
LifecycleDetails string
Additional information about the current lifecycle state.
State string
The current state of the Exadata Database Storage Vault.
SystemTags Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
TimeCreated string
The date and time that the Exadata Database Storage Vault was created.
VmClusterCount int
The number of Exadata VM clusters used the Exadata Database Storage Vault.
VmClusterIds List<string>
The List of Exadata VM cluster on Exascale Infrastructure OCIDs Note: If Exadata Database Storage Vault is not used for any Exadata VM cluster on Exascale Infrastructure, this list is empty.
Id string
The provider-assigned unique ID for this managed resource.
LifecycleDetails string
Additional information about the current lifecycle state.
State string
The current state of the Exadata Database Storage Vault.
SystemTags map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
TimeCreated string
The date and time that the Exadata Database Storage Vault was created.
VmClusterCount int
The number of Exadata VM clusters used the Exadata Database Storage Vault.
VmClusterIds []string
The List of Exadata VM cluster on Exascale Infrastructure OCIDs Note: If Exadata Database Storage Vault is not used for any Exadata VM cluster on Exascale Infrastructure, this list is empty.
id String
The provider-assigned unique ID for this managed resource.
lifecycleDetails String
Additional information about the current lifecycle state.
state String
The current state of the Exadata Database Storage Vault.
systemTags Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
timeCreated String
The date and time that the Exadata Database Storage Vault was created.
vmClusterCount Integer
The number of Exadata VM clusters used the Exadata Database Storage Vault.
vmClusterIds List<String>
The List of Exadata VM cluster on Exascale Infrastructure OCIDs Note: If Exadata Database Storage Vault is not used for any Exadata VM cluster on Exascale Infrastructure, this list is empty.
id string
The provider-assigned unique ID for this managed resource.
lifecycleDetails string
Additional information about the current lifecycle state.
state string
The current state of the Exadata Database Storage Vault.
systemTags {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
timeCreated string
The date and time that the Exadata Database Storage Vault was created.
vmClusterCount number
The number of Exadata VM clusters used the Exadata Database Storage Vault.
vmClusterIds string[]
The List of Exadata VM cluster on Exascale Infrastructure OCIDs Note: If Exadata Database Storage Vault is not used for any Exadata VM cluster on Exascale Infrastructure, this list is empty.
id str
The provider-assigned unique ID for this managed resource.
lifecycle_details str
Additional information about the current lifecycle state.
state str
The current state of the Exadata Database Storage Vault.
system_tags Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
time_created str
The date and time that the Exadata Database Storage Vault was created.
vm_cluster_count int
The number of Exadata VM clusters used the Exadata Database Storage Vault.
vm_cluster_ids Sequence[str]
The List of Exadata VM cluster on Exascale Infrastructure OCIDs Note: If Exadata Database Storage Vault is not used for any Exadata VM cluster on Exascale Infrastructure, this list is empty.
id String
The provider-assigned unique ID for this managed resource.
lifecycleDetails String
Additional information about the current lifecycle state.
state String
The current state of the Exadata Database Storage Vault.
systemTags Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
timeCreated String
The date and time that the Exadata Database Storage Vault was created.
vmClusterCount Number
The number of Exadata VM clusters used the Exadata Database Storage Vault.
vmClusterIds List<String>
The List of Exadata VM cluster on Exascale Infrastructure OCIDs Note: If Exadata Database Storage Vault is not used for any Exadata VM cluster on Exascale Infrastructure, this list is empty.

Look up Existing ExascaleDbStorageVault Resource

Get an existing ExascaleDbStorageVault 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?: ExascaleDbStorageVaultState, opts?: CustomResourceOptions): ExascaleDbStorageVault
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        additional_flash_cache_in_percent: Optional[int] = None,
        availability_domain: Optional[str] = None,
        cluster_placement_group_id: Optional[str] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        exadata_infrastructure_id: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        high_capacity_database_storage: Optional[_database.ExascaleDbStorageVaultHighCapacityDatabaseStorageArgs] = None,
        lifecycle_details: Optional[str] = None,
        state: Optional[str] = None,
        subscription_id: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_zone: Optional[str] = None,
        vm_cluster_count: Optional[int] = None,
        vm_cluster_ids: Optional[Sequence[str]] = None) -> ExascaleDbStorageVault
func GetExascaleDbStorageVault(ctx *Context, name string, id IDInput, state *ExascaleDbStorageVaultState, opts ...ResourceOption) (*ExascaleDbStorageVault, error)
public static ExascaleDbStorageVault Get(string name, Input<string> id, ExascaleDbStorageVaultState? state, CustomResourceOptions? opts = null)
public static ExascaleDbStorageVault get(String name, Output<String> id, ExascaleDbStorageVaultState state, CustomResourceOptions options)
resources:  _:    type: oci:Database:ExascaleDbStorageVault    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AdditionalFlashCacheInPercent int
(Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
AvailabilityDomain Changes to this property will trigger replacement. string
The name of the availability domain in which the Exadata Database Storage Vault is located.
ClusterPlacementGroupId Changes to this property will trigger replacement. string
The OCID of the cluster placement group of the Exadata Infrastructure.
CompartmentId string
(Updatable) The OCID of the compartment.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Description string
(Updatable) Exadata Database Storage Vault description.
DisplayName string
(Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
ExadataInfrastructureId Changes to this property will trigger replacement. string
The OCID of the Exadata infrastructure.
FreeformTags 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"}
HighCapacityDatabaseStorage ExascaleDbStorageVaultHighCapacityDatabaseStorage
(Updatable) Create exadata Database Storage Details
LifecycleDetails string
Additional information about the current lifecycle state.
State string
The current state of the Exadata Database Storage Vault.
SubscriptionId Changes to this property will trigger replacement. string
The OCID of the subscription with which resource needs to be associated with.
SystemTags Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
TimeCreated string
The date and time that the Exadata Database Storage Vault was created.
TimeZone Changes to this property will trigger replacement. string

The time zone that you want to use for the Exadata Database Storage Vault. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

VmClusterCount int
The number of Exadata VM clusters used the Exadata Database Storage Vault.
VmClusterIds List<string>
The List of Exadata VM cluster on Exascale Infrastructure OCIDs Note: If Exadata Database Storage Vault is not used for any Exadata VM cluster on Exascale Infrastructure, this list is empty.
AdditionalFlashCacheInPercent int
(Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
AvailabilityDomain Changes to this property will trigger replacement. string
The name of the availability domain in which the Exadata Database Storage Vault is located.
ClusterPlacementGroupId Changes to this property will trigger replacement. string
The OCID of the cluster placement group of the Exadata Infrastructure.
CompartmentId string
(Updatable) The OCID of the compartment.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Description string
(Updatable) Exadata Database Storage Vault description.
DisplayName string
(Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
ExadataInfrastructureId Changes to this property will trigger replacement. string
The OCID of the Exadata infrastructure.
FreeformTags 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"}
HighCapacityDatabaseStorage ExascaleDbStorageVaultHighCapacityDatabaseStorageArgs
(Updatable) Create exadata Database Storage Details
LifecycleDetails string
Additional information about the current lifecycle state.
State string
The current state of the Exadata Database Storage Vault.
SubscriptionId Changes to this property will trigger replacement. string
The OCID of the subscription with which resource needs to be associated with.
SystemTags map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
TimeCreated string
The date and time that the Exadata Database Storage Vault was created.
TimeZone Changes to this property will trigger replacement. string

The time zone that you want to use for the Exadata Database Storage Vault. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

VmClusterCount int
The number of Exadata VM clusters used the Exadata Database Storage Vault.
VmClusterIds []string
The List of Exadata VM cluster on Exascale Infrastructure OCIDs Note: If Exadata Database Storage Vault is not used for any Exadata VM cluster on Exascale Infrastructure, this list is empty.
additionalFlashCacheInPercent Integer
(Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
availabilityDomain Changes to this property will trigger replacement. String
The name of the availability domain in which the Exadata Database Storage Vault is located.
clusterPlacementGroupId Changes to this property will trigger replacement. String
The OCID of the cluster placement group of the Exadata Infrastructure.
compartmentId String
(Updatable) The OCID of the compartment.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
description String
(Updatable) Exadata Database Storage Vault description.
displayName String
(Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
exadataInfrastructureId Changes to this property will trigger replacement. String
The OCID of the Exadata infrastructure.
freeformTags 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"}
highCapacityDatabaseStorage ExascaleDbStorageVaultHighCapacityStorage
(Updatable) Create exadata Database Storage Details
lifecycleDetails String
Additional information about the current lifecycle state.
state String
The current state of the Exadata Database Storage Vault.
subscriptionId Changes to this property will trigger replacement. String
The OCID of the subscription with which resource needs to be associated with.
systemTags Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
timeCreated String
The date and time that the Exadata Database Storage Vault was created.
timeZone Changes to this property will trigger replacement. String

The time zone that you want to use for the Exadata Database Storage Vault. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

vmClusterCount Integer
The number of Exadata VM clusters used the Exadata Database Storage Vault.
vmClusterIds List<String>
The List of Exadata VM cluster on Exascale Infrastructure OCIDs Note: If Exadata Database Storage Vault is not used for any Exadata VM cluster on Exascale Infrastructure, this list is empty.
additionalFlashCacheInPercent number
(Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
availabilityDomain Changes to this property will trigger replacement. string
The name of the availability domain in which the Exadata Database Storage Vault is located.
clusterPlacementGroupId Changes to this property will trigger replacement. string
The OCID of the cluster placement group of the Exadata Infrastructure.
compartmentId string
(Updatable) The OCID of the compartment.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
description string
(Updatable) Exadata Database Storage Vault description.
displayName string
(Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
exadataInfrastructureId Changes to this property will trigger replacement. string
The OCID of the Exadata infrastructure.
freeformTags {[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"}
highCapacityDatabaseStorage ExascaleDbStorageVaultHighCapacityDatabaseStorage
(Updatable) Create exadata Database Storage Details
lifecycleDetails string
Additional information about the current lifecycle state.
state string
The current state of the Exadata Database Storage Vault.
subscriptionId Changes to this property will trigger replacement. string
The OCID of the subscription with which resource needs to be associated with.
systemTags {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
timeCreated string
The date and time that the Exadata Database Storage Vault was created.
timeZone Changes to this property will trigger replacement. string

The time zone that you want to use for the Exadata Database Storage Vault. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

vmClusterCount number
The number of Exadata VM clusters used the Exadata Database Storage Vault.
vmClusterIds string[]
The List of Exadata VM cluster on Exascale Infrastructure OCIDs Note: If Exadata Database Storage Vault is not used for any Exadata VM cluster on Exascale Infrastructure, this list is empty.
additional_flash_cache_in_percent int
(Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
availability_domain Changes to this property will trigger replacement. str
The name of the availability domain in which the Exadata Database Storage Vault is located.
cluster_placement_group_id Changes to this property will trigger replacement. str
The OCID of the cluster placement group of the Exadata Infrastructure.
compartment_id str
(Updatable) The OCID of the compartment.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
description str
(Updatable) Exadata Database Storage Vault description.
display_name str
(Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
exadata_infrastructure_id Changes to this property will trigger replacement. str
The OCID of the Exadata infrastructure.
freeform_tags 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"}
high_capacity_database_storage database.ExascaleDbStorageVaultHighCapacityDatabaseStorageArgs
(Updatable) Create exadata Database Storage Details
lifecycle_details str
Additional information about the current lifecycle state.
state str
The current state of the Exadata Database Storage Vault.
subscription_id Changes to this property will trigger replacement. str
The OCID of the subscription with which resource needs to be associated with.
system_tags Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
time_created str
The date and time that the Exadata Database Storage Vault was created.
time_zone Changes to this property will trigger replacement. str

The time zone that you want to use for the Exadata Database Storage Vault. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

vm_cluster_count int
The number of Exadata VM clusters used the Exadata Database Storage Vault.
vm_cluster_ids Sequence[str]
The List of Exadata VM cluster on Exascale Infrastructure OCIDs Note: If Exadata Database Storage Vault is not used for any Exadata VM cluster on Exascale Infrastructure, this list is empty.
additionalFlashCacheInPercent Number
(Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
availabilityDomain Changes to this property will trigger replacement. String
The name of the availability domain in which the Exadata Database Storage Vault is located.
clusterPlacementGroupId Changes to this property will trigger replacement. String
The OCID of the cluster placement group of the Exadata Infrastructure.
compartmentId String
(Updatable) The OCID of the compartment.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
description String
(Updatable) Exadata Database Storage Vault description.
displayName String
(Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
exadataInfrastructureId Changes to this property will trigger replacement. String
The OCID of the Exadata infrastructure.
freeformTags 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"}
highCapacityDatabaseStorage Property Map
(Updatable) Create exadata Database Storage Details
lifecycleDetails String
Additional information about the current lifecycle state.
state String
The current state of the Exadata Database Storage Vault.
subscriptionId Changes to this property will trigger replacement. String
The OCID of the subscription with which resource needs to be associated with.
systemTags Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
timeCreated String
The date and time that the Exadata Database Storage Vault was created.
timeZone Changes to this property will trigger replacement. String

The time zone that you want to use for the Exadata Database Storage Vault. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

vmClusterCount Number
The number of Exadata VM clusters used the Exadata Database Storage Vault.
vmClusterIds List<String>
The List of Exadata VM cluster on Exascale Infrastructure OCIDs Note: If Exadata Database Storage Vault is not used for any Exadata VM cluster on Exascale Infrastructure, this list is empty.

Supporting Types

ExascaleDbStorageVaultHighCapacityDatabaseStorage
, ExascaleDbStorageVaultHighCapacityDatabaseStorageArgs

TotalSizeInGbs This property is required. int
(Updatable) Total Capacity
AvailableSizeInGbs int
Available Capacity
TotalSizeInGbs This property is required. int
(Updatable) Total Capacity
AvailableSizeInGbs int
Available Capacity
totalSizeInGbs This property is required. Integer
(Updatable) Total Capacity
availableSizeInGbs Integer
Available Capacity
totalSizeInGbs This property is required. number
(Updatable) Total Capacity
availableSizeInGbs number
Available Capacity
total_size_in_gbs This property is required. int
(Updatable) Total Capacity
available_size_in_gbs int
Available Capacity
totalSizeInGbs This property is required. Number
(Updatable) Total Capacity
availableSizeInGbs Number
Available Capacity

Import

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

$ pulumi import oci:Database/exascaleDbStorageVault:ExascaleDbStorageVault test_exascale_db_storage_vault "id"
Copy

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.