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,
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={
"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
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:
- Availability
Domain string - The name of the availability domain in which the Exadata Database Storage Vault is located.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Display
Name string - (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
- High
Capacity ExascaleDatabase Storage Db Storage Vault High Capacity Database Storage - (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.
- 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.
- 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"}
- Time
Zone 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 string - The name of the availability domain in which the Exadata Database Storage Vault is located.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Display
Name string - (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
- High
Capacity ExascaleDatabase Storage 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.
- 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.
- 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"}
- Time
Zone 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 String - The name of the availability domain in which the Exadata Database Storage Vault is located.
- compartment
Id String - (Updatable) The OCID of the compartment.
- display
Name String - (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
- high
Capacity ExascaleDatabase Storage Db Storage Vault High Capacity Storage - (Updatable) Create exadata Database Storage Details
- additional
Flash IntegerCache In Percent - (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- 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.
- 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"}
- time
Zone 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 string - The name of the availability domain in which the Exadata Database Storage Vault is located.
- compartment
Id string - (Updatable) The OCID of the compartment.
- display
Name string - (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
- high
Capacity ExascaleDatabase Storage Db Storage Vault High Capacity Database Storage - (Updatable) Create exadata Database Storage Details
- additional
Flash numberCache In Percent - (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- {[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.
- {[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"}
- time
Zone 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.
- 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.
- 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
- availability
Domain String - The name of the availability domain in which the Exadata Database Storage Vault is located.
- compartment
Id String - (Updatable) The OCID of the compartment.
- display
Name String - (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
- high
Capacity Property MapDatabase Storage - (Updatable) Create exadata Database Storage Details
- additional
Flash NumberCache In Percent - (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- 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.
- 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"}
- time
Zone 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.
- Lifecycle
Details 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.
- Time
Created string - 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 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.
- Lifecycle
Details 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.
- Time
Created string - 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 []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.
- lifecycle
Details 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.
- time
Created String - The date and time that the Exadata Database Storage Vault was created.
- vm
Cluster IntegerCount - The number of Exadata VM clusters used the Exadata Database Storage Vault.
- vm
Cluster 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.
- lifecycle
Details 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.
- time
Created string - The date and time that the Exadata Database Storage Vault was created.
- vm
Cluster numberCount - The number of Exadata VM clusters used the Exadata Database Storage Vault.
- vm
Cluster 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.
- lifecycle
Details 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.
- time
Created String - The date and time that the Exadata Database Storage Vault was created.
- vm
Cluster NumberCount - The number of Exadata VM clusters used the Exadata Database Storage Vault.
- vm
Cluster 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,
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.
- Additional
Flash intCache In Percent - (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- Availability
Domain string - The name of the availability domain in which the Exadata Database Storage Vault is located.
- Compartment
Id 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.
- Display
Name string - (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
- 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"}
- High
Capacity ExascaleDatabase Storage Db Storage Vault High Capacity Database Storage - (Updatable) Create exadata Database Storage Details
- Lifecycle
Details 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.
- Time
Created string - The date and time that the Exadata Database Storage Vault was created.
- Time
Zone 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
- Vm
Cluster intCount - The number of Exadata VM clusters used the Exadata Database Storage Vault.
- Vm
Cluster 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.
- Additional
Flash intCache In Percent - (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- Availability
Domain string - The name of the availability domain in which the Exadata Database Storage Vault is located.
- Compartment
Id 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.
- Display
Name string - (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
- 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"}
- High
Capacity ExascaleDatabase Storage Db Storage Vault High Capacity Database Storage Args - (Updatable) Create exadata Database Storage Details
- Lifecycle
Details 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.
- Time
Created string - The date and time that the Exadata Database Storage Vault was created.
- Time
Zone 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
- Vm
Cluster intCount - The number of Exadata VM clusters used the Exadata Database Storage Vault.
- Vm
Cluster []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.
- additional
Flash IntegerCache In Percent - (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- availability
Domain String - The name of the availability domain in which the Exadata Database Storage Vault is located.
- compartment
Id 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.
- display
Name String - (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
- 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"}
- high
Capacity ExascaleDatabase Storage Db Storage Vault High Capacity Storage - (Updatable) Create exadata Database Storage Details
- lifecycle
Details 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.
- time
Created String - The date and time that the Exadata Database Storage Vault was created.
- time
Zone 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
- vm
Cluster IntegerCount - The number of Exadata VM clusters used the Exadata Database Storage Vault.
- vm
Cluster 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.
- additional
Flash numberCache In Percent - (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- availability
Domain string - The name of the availability domain in which the Exadata Database Storage Vault is located.
- compartment
Id 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.
- display
Name string - (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
- {[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"}
- high
Capacity ExascaleDatabase Storage Db Storage Vault High Capacity Database Storage - (Updatable) Create exadata Database Storage Details
- lifecycle
Details 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.
- time
Created string - The date and time that the Exadata Database Storage Vault was created.
- time
Zone 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
- vm
Cluster numberCount - The number of Exadata VM clusters used the Exadata Database Storage Vault.
- vm
Cluster 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.
- 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.
- 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.
- 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.
- additional
Flash NumberCache In Percent - (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage.
- availability
Domain String - The name of the availability domain in which the Exadata Database Storage Vault is located.
- compartment
Id 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.
- display
Name String - (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.
- 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"}
- high
Capacity Property MapDatabase Storage - (Updatable) Create exadata Database Storage Details
- lifecycle
Details 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.
- time
Created String - The date and time that the Exadata Database Storage Vault was created.
- time
Zone 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
- vm
Cluster NumberCount - The number of Exadata VM clusters used the Exadata Database Storage Vault.
- vm
Cluster 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
- Total
Size intIn Gbs - (Updatable) Total Capacity
- Available
Size intIn Gbs - Available Capacity
- Total
Size intIn Gbs - (Updatable) Total Capacity
- Available
Size intIn Gbs - Available Capacity
- total
Size IntegerIn Gbs - (Updatable) Total Capacity
- available
Size IntegerIn Gbs - Available Capacity
- total
Size numberIn Gbs - (Updatable) Total Capacity
- available
Size numberIn Gbs - Available Capacity
- total_
size_ intin_ gbs - (Updatable) Total Capacity
- available_
size_ intin_ gbs - Available Capacity
- total
Size NumberIn Gbs - (Updatable) Total Capacity
- available
Size 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
oci
Terraform Provider.