1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. ExascaleDbStorageVault
Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi

oci.Database.ExascaleDbStorageVault

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi

    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,
        definedTags: exascaleDbStorageVaultDefinedTags,
        description: exascaleDbStorageVaultDescription,
        freeformTags: {
            Department: "Finance",
        },
        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,
        defined_tags=exascale_db_storage_vault_defined_tags,
        description=exascale_db_storage_vault_description,
        freeform_tags={
            "Department": "Finance",
        },
        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),
    			DefinedTags:                   pulumi.Any(exascaleDbStorageVaultDefinedTags),
    			Description:                   pulumi.Any(exascaleDbStorageVaultDescription),
    			FreeformTags: pulumi.StringMap{
    				"Department": pulumi.String("Finance"),
    			},
    			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,
            DefinedTags = exascaleDbStorageVaultDefinedTags,
            Description = exascaleDbStorageVaultDescription,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            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)
                .definedTags(exascaleDbStorageVaultDefinedTags)
                .description(exascaleDbStorageVaultDescription)
                .freeformTags(Map.of("Department", "Finance"))
                .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}
          definedTags: ${exascaleDbStorageVaultDefinedTags}
          description: ${exascaleDbStorageVaultDescription}
          freeformTags:
            Department: Finance
          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,
                               defined_tags: Optional[Mapping[str, str]] = None,
                               description: Optional[str] = None,
                               freeform_tags: Optional[Mapping[str, 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,
        DefinedTags = 
        {
            { "string", "string" },
        },
        Description = "string",
        FreeformTags = 
        {
            { "string", "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),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Description: pulumi.String("string"),
    	FreeformTags: pulumi.StringMap{
    		"string": 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)
        .definedTags(Map.of("string", "string"))
        .description("string")
        .freeformTags(Map.of("string", "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=oci.database.ExascaleDbStorageVaultHighCapacityDatabaseStorageArgs(
            total_size_in_gbs=0,
            available_size_in_gbs=0,
        ),
        additional_flash_cache_in_percent=0,
        defined_tags={
            "string": "string",
        },
        description="string",
        freeform_tags={
            "string": "string",
        },
        time_zone="string")
    
    const exascaleDbStorageVaultResource = new oci.database.ExascaleDbStorageVault("exascaleDbStorageVaultResource", {
        availabilityDomain: "string",
        compartmentId: "string",
        displayName: "string",
        highCapacityDatabaseStorage: {
            totalSizeInGbs: 0,
            availableSizeInGbs: 0,
        },
        additionalFlashCacheInPercent: 0,
        definedTags: {
            string: "string",
        },
        description: "string",
        freeformTags: {
            string: "string",
        },
        timeZone: "string",
    });
    
    type: oci:Database:ExascaleDbStorageVault
    properties:
        additionalFlashCacheInPercent: 0
        availabilityDomain: string
        compartmentId: string
        definedTags:
            string: string
        description: string
        displayName: string
        freeformTags:
            string: string
        highCapacityDatabaseStorage:
            availableSizeInGbs: 0
            totalSizeInGbs: 0
        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

    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.
    HighCapacityDatabaseStorage ExascaleDbStorageVaultHighCapacityDatabaseStorage
    (Updatable) Create exadata Database Storage Details
    AdditionalFlashCacheInPercent int
    (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
    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.
    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"}
    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.
    HighCapacityDatabaseStorage ExascaleDbStorageVaultHighCapacityDatabaseStorageArgs
    (Updatable) Create exadata Database Storage Details
    AdditionalFlashCacheInPercent int
    (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
    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.
    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"}
    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.
    highCapacityDatabaseStorage ExascaleDbStorageVaultHighCapacityStorage
    (Updatable) Create exadata Database Storage Details
    additionalFlashCacheInPercent Integer
    (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
    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.
    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"}
    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.
    highCapacityDatabaseStorage ExascaleDbStorageVaultHighCapacityDatabaseStorage
    (Updatable) Create exadata Database Storage Details
    additionalFlashCacheInPercent number
    (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
    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.
    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"}
    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_storage 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.
    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.
    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"}
    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.
    highCapacityDatabaseStorage Property Map
    (Updatable) Create exadata Database Storage Details
    additionalFlashCacheInPercent Number
    (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
    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.
    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"}
    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.
    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,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            description: Optional[str] = None,
            display_name: 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,
            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)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AdditionalFlashCacheInPercent int
    (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.
    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.
    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.
    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 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 string
    The name of the availability domain in which the Exadata Database Storage Vault is located.
    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.
    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.
    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 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 String
    The name of the availability domain in which the Exadata Database Storage Vault is located.
    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.
    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.
    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 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 string
    The name of the availability domain in which the Exadata Database Storage Vault is located.
    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.
    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.
    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 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 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.
    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.
    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.
    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 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 String
    The name of the availability domain in which the Exadata Database Storage Vault is located.
    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.
    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.
    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 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 int
    (Updatable) Total Capacity
    AvailableSizeInGbs int
    Available Capacity
    TotalSizeInGbs int
    (Updatable) Total Capacity
    AvailableSizeInGbs int
    Available Capacity
    totalSizeInGbs Integer
    (Updatable) Total Capacity
    availableSizeInGbs Integer
    Available Capacity
    totalSizeInGbs number
    (Updatable) Total Capacity
    availableSizeInGbs number
    Available Capacity
    total_size_in_gbs int
    (Updatable) Total Capacity
    available_size_in_gbs int
    Available Capacity
    totalSizeInGbs 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"
    

    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.
    oci logo
    Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi