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,
});
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)
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
	})
}
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,
    });
});
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());
    }
}
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}
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 string
- The unique name of the resource.
- args ExascaleDbStorageVaultArgs
- 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 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 string
- The unique name of the resource.
- args ExascaleDbStorageVaultArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExascaleDbStorageVaultArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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 string
- The name of the availability domain in which the Exadata Database Storage Vault is located.
- CompartmentId string
- (Updatable) The OCID of the compartment.
- DisplayName string
- (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
- HighCapacity ExascaleDatabase Storage Db Storage Vault High Capacity Database Storage 
- (Updatable) Create exadata Database Storage Details
- AdditionalFlash intCache In Percent 
- (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- ClusterPlacement stringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- 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.
- ExadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- 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 string
- The OCID of the subscription with which resource needs to be associated with.
- TimeZone 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 string
- The name of the availability domain in which the Exadata Database Storage Vault is located.
- CompartmentId string
- (Updatable) The OCID of the compartment.
- DisplayName string
- (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
- HighCapacity ExascaleDatabase Storage Db Storage Vault High Capacity Database Storage Args 
- (Updatable) Create exadata Database Storage Details
- AdditionalFlash intCache In Percent 
- (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- ClusterPlacement stringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- 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.
- ExadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- 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 string
- The OCID of the subscription with which resource needs to be associated with.
- TimeZone 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 String
- The name of the availability domain in which the Exadata Database Storage Vault is located.
- compartmentId String
- (Updatable) The OCID of the compartment.
- displayName String
- (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
- highCapacity ExascaleDatabase Storage Db Storage Vault High Capacity Storage 
- (Updatable) Create exadata Database Storage Details
- additionalFlash IntegerCache In Percent 
- (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- clusterPlacement StringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- 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.
- exadataInfrastructure StringId 
- The OCID of the Exadata infrastructure.
- 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 String
- The OCID of the subscription with which resource needs to be associated with.
- timeZone 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 string
- The name of the availability domain in which the Exadata Database Storage Vault is located.
- compartmentId string
- (Updatable) The OCID of the compartment.
- displayName string
- (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
- highCapacity ExascaleDatabase Storage Db Storage Vault High Capacity Database Storage 
- (Updatable) Create exadata Database Storage Details
- additionalFlash numberCache In Percent 
- (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- clusterPlacement stringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- {[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.
- exadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- {[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 string
- The OCID of the subscription with which resource needs to be associated with.
- timeZone 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 str
- The name of the availability domain in which the Exadata Database Storage Vault is located.
- compartment_id str
- (Updatable) The OCID of the compartment.
- display_name str
- (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
- high_capacity_ database.database_ storage Exascale Db Storage Vault High Capacity Database Storage Args 
- (Updatable) Create exadata Database Storage Details
- additional_flash_ intcache_ in_ percent 
- (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- cluster_placement_ strgroup_ id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- 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_ strid 
- The OCID of the Exadata infrastructure.
- 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 str
- The OCID of the subscription with which resource needs to be associated with.
- time_zone 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 String
- The name of the availability domain in which the Exadata Database Storage Vault is located.
- compartmentId String
- (Updatable) The OCID of the compartment.
- displayName String
- (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
- highCapacity Property MapDatabase Storage 
- (Updatable) Create exadata Database Storage Details
- additionalFlash NumberCache In Percent 
- (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- clusterPlacement StringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- 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.
- exadataInfrastructure StringId 
- The OCID of the Exadata infrastructure.
- 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 String
- The OCID of the subscription with which resource needs to be associated with.
- timeZone 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.
- 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.
- VmCluster intCount 
- The number of Exadata VM clusters used the Exadata Database Storage Vault.
- VmCluster List<string>Ids 
- 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.
- 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.
- VmCluster intCount 
- The number of Exadata VM clusters used the Exadata Database Storage Vault.
- VmCluster []stringIds 
- 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.
- 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.
- vmCluster IntegerCount 
- The number of Exadata VM clusters used the Exadata Database Storage Vault.
- vmCluster List<String>Ids 
- 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.
- {[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.
- vmCluster numberCount 
- The number of Exadata VM clusters used the Exadata Database Storage Vault.
- vmCluster string[]Ids 
- 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.
- 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_ intcount 
- The number of Exadata VM clusters used the Exadata Database Storage Vault.
- vm_cluster_ Sequence[str]ids 
- 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.
- 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.
- vmCluster NumberCount 
- The number of Exadata VM clusters used the Exadata Database Storage Vault.
- vmCluster List<String>Ids 
- 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) -> ExascaleDbStorageVaultfunc 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
- 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.
- AdditionalFlash intCache In Percent 
- (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- AvailabilityDomain string
- The name of the availability domain in which the Exadata Database Storage Vault is located.
- ClusterPlacement stringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- CompartmentId string
- (Updatable) The OCID of the compartment.
- 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.
- ExadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- 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"}
- HighCapacity ExascaleDatabase Storage Db Storage Vault High Capacity Database Storage 
- (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 string
- The OCID of the subscription with which resource needs to be associated with.
- 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 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 
- VmCluster intCount 
- The number of Exadata VM clusters used the Exadata Database Storage Vault.
- VmCluster List<string>Ids 
- 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.
- AdditionalFlash intCache In Percent 
- (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- AvailabilityDomain string
- The name of the availability domain in which the Exadata Database Storage Vault is located.
- ClusterPlacement stringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- CompartmentId string
- (Updatable) The OCID of the compartment.
- 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.
- ExadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- 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"}
- HighCapacity ExascaleDatabase Storage Db Storage Vault High Capacity Database Storage Args 
- (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 string
- The OCID of the subscription with which resource needs to be associated with.
- 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 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 
- VmCluster intCount 
- The number of Exadata VM clusters used the Exadata Database Storage Vault.
- VmCluster []stringIds 
- 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.
- additionalFlash IntegerCache In Percent 
- (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- availabilityDomain String
- The name of the availability domain in which the Exadata Database Storage Vault is located.
- clusterPlacement StringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- compartmentId String
- (Updatable) The OCID of the compartment.
- 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.
- exadataInfrastructure StringId 
- The OCID of the Exadata infrastructure.
- 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"}
- highCapacity ExascaleDatabase Storage Db Storage Vault High Capacity Storage 
- (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 String
- The OCID of the subscription with which resource needs to be associated with.
- 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 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 
- vmCluster IntegerCount 
- The number of Exadata VM clusters used the Exadata Database Storage Vault.
- vmCluster List<String>Ids 
- 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.
- additionalFlash numberCache In Percent 
- (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- availabilityDomain string
- The name of the availability domain in which the Exadata Database Storage Vault is located.
- clusterPlacement stringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- compartmentId string
- (Updatable) The OCID of the compartment.
- {[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.
- exadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- {[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"}
- highCapacity ExascaleDatabase Storage Db Storage Vault High Capacity Database Storage 
- (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 string
- The OCID of the subscription with which resource needs to be associated with.
- {[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 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 
- vmCluster numberCount 
- The number of Exadata VM clusters used the Exadata Database Storage Vault.
- vmCluster string[]Ids 
- 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_ intcache_ in_ percent 
- (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- availability_domain str
- The name of the availability domain in which the Exadata Database Storage Vault is located.
- cluster_placement_ strgroup_ id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- compartment_id str
- (Updatable) The OCID of the compartment.
- 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_ strid 
- The OCID of the Exadata infrastructure.
- 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.database_ storage Exascale Db Storage Vault High Capacity Database Storage Args 
- (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 str
- The OCID of the subscription with which resource needs to be associated with.
- 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 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_ intcount 
- The number of Exadata VM clusters used the Exadata Database Storage Vault.
- vm_cluster_ Sequence[str]ids 
- 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.
- additionalFlash NumberCache In Percent 
- (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- availabilityDomain String
- The name of the availability domain in which the Exadata Database Storage Vault is located.
- clusterPlacement StringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- compartmentId String
- (Updatable) The OCID of the compartment.
- 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.
- exadataInfrastructure StringId 
- The OCID of the Exadata infrastructure.
- 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"}
- highCapacity Property MapDatabase Storage 
- (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 String
- The OCID of the subscription with which resource needs to be associated with.
- 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 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 
- vmCluster NumberCount 
- The number of Exadata VM clusters used the Exadata Database Storage Vault.
- vmCluster List<String>Ids 
- 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                
- TotalSize intIn Gbs 
- (Updatable) Total Capacity
- AvailableSize intIn Gbs 
- Available Capacity
- TotalSize intIn Gbs 
- (Updatable) Total Capacity
- AvailableSize intIn Gbs 
- Available Capacity
- totalSize IntegerIn Gbs 
- (Updatable) Total Capacity
- availableSize IntegerIn Gbs 
- Available Capacity
- totalSize numberIn Gbs 
- (Updatable) Total Capacity
- availableSize numberIn Gbs 
- Available Capacity
- total_size_ intin_ gbs 
- (Updatable) Total Capacity
- available_size_ intin_ gbs 
- Available Capacity
- totalSize NumberIn Gbs 
- (Updatable) Total Capacity
- availableSize NumberIn Gbs 
- Available Capacity
Import
ExascaleDbStorageVaults can be imported using the id, e.g.
$ pulumi import oci:Database/exascaleDbStorageVault:ExascaleDbStorageVault test_exascale_db_storage_vault "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.