import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages an Exadata Database Storage Vault. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleExascaleDatabaseStorageVault = new azure.oracle.ExascaleDatabaseStorageVault("example", { * name: "example-exascale-db-storage-vault", * resourceGroupName: example.name, * location: example.location, * zones: ["1"], * displayName: "example-exascale-db-storage-vault", * description: "description", * additionalFlashCachePercentage: 100, * highCapacityDatabaseStorage: { * totalSizeInGb: 300, * }, * timeZone: "UTC", * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 * * ## Import * * Exadata Database Storage Vaults can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:oracle/exascaleDatabaseStorageVault:ExascaleDatabaseStorageVault example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup/providers/Oracle.Database/exascaleDbStorageVaults/exascaleDbStorageVaults1 * ``` */ export declare class ExascaleDatabaseStorageVault extends pulumi.CustomResource { /** * Get an existing ExascaleDatabaseStorageVault resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ExascaleDatabaseStorageVaultState, opts?: pulumi.CustomResourceOptions): ExascaleDatabaseStorageVault; /** * Returns true if the given object is an instance of ExascaleDatabaseStorageVault. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ExascaleDatabaseStorageVault; /** * The size of additional Flash Cache in percentage of High Capacity database storage. Changing this forces a new Exadata Database Storage Vault to be created. */ readonly additionalFlashCachePercentage: pulumi.Output; /** * Exadata Database Storage Vault description. Changing this forces a new Exadata Database Storage Vault to be created. */ readonly description: pulumi.Output; /** * The user-friendly name for the Exadata Database Storage Vault resource. The name does not need to be unique. Changing this forces a new Exadata Database Storage Vault to be created. */ readonly displayName: pulumi.Output; /** * A `highCapacityDatabaseStorage` block as defined below. Changing this forces a new Exadata Database Storage Vault to be created. */ readonly highCapacityDatabaseStorage: pulumi.Output; /** * The Azure Region where the Exadata Database Storage Vault should exist. Changing this forces a new Exadata Database Storage Vault to be created. */ readonly location: pulumi.Output; /** * The name which should be used for this Exadata Database Storage Vault. Changing this forces a new Exadata Database Storage Vault to be created. */ readonly name: pulumi.Output; /** * The name of the Resource Group where the Exadata Database Storage Vault should exist. Changing this forces a new Exadata Database Storage Vault to be created. */ readonly resourceGroupName: pulumi.Output; /** * A mapping of tags which should be assigned to the Exadata Database Storage Vault. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * The time zone that you want to use for the Exadata Database Storage Vault. Changing this forces a new Exadata Database Storage Vault to be created. For details, see [Time Zones](https://docs.oracle.com/en/cloud/paas/base-database/time-zone/). */ readonly timeZone: pulumi.Output; /** * Exadata Database Storage Vault zones. Changing this forces a new Exadata Database Storage Vault to be created. */ readonly zones: pulumi.Output; /** * Create a ExascaleDatabaseStorageVault resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ExascaleDatabaseStorageVaultArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ExascaleDatabaseStorageVault resources. */ export interface ExascaleDatabaseStorageVaultState { /** * The size of additional Flash Cache in percentage of High Capacity database storage. Changing this forces a new Exadata Database Storage Vault to be created. */ additionalFlashCachePercentage?: pulumi.Input; /** * Exadata Database Storage Vault description. Changing this forces a new Exadata Database Storage Vault to be created. */ description?: pulumi.Input; /** * The user-friendly name for the Exadata Database Storage Vault resource. The name does not need to be unique. Changing this forces a new Exadata Database Storage Vault to be created. */ displayName?: pulumi.Input; /** * A `highCapacityDatabaseStorage` block as defined below. Changing this forces a new Exadata Database Storage Vault to be created. */ highCapacityDatabaseStorage?: pulumi.Input; /** * The Azure Region where the Exadata Database Storage Vault should exist. Changing this forces a new Exadata Database Storage Vault to be created. */ location?: pulumi.Input; /** * The name which should be used for this Exadata Database Storage Vault. Changing this forces a new Exadata Database Storage Vault to be created. */ name?: pulumi.Input; /** * The name of the Resource Group where the Exadata Database Storage Vault should exist. Changing this forces a new Exadata Database Storage Vault to be created. */ resourceGroupName?: pulumi.Input; /** * A mapping of tags which should be assigned to the Exadata Database Storage Vault. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The time zone that you want to use for the Exadata Database Storage Vault. Changing this forces a new Exadata Database Storage Vault to be created. For details, see [Time Zones](https://docs.oracle.com/en/cloud/paas/base-database/time-zone/). */ timeZone?: pulumi.Input; /** * Exadata Database Storage Vault zones. Changing this forces a new Exadata Database Storage Vault to be created. */ zones?: pulumi.Input[]>; } /** * The set of arguments for constructing a ExascaleDatabaseStorageVault resource. */ export interface ExascaleDatabaseStorageVaultArgs { /** * The size of additional Flash Cache in percentage of High Capacity database storage. Changing this forces a new Exadata Database Storage Vault to be created. */ additionalFlashCachePercentage: pulumi.Input; /** * Exadata Database Storage Vault description. Changing this forces a new Exadata Database Storage Vault to be created. */ description?: pulumi.Input; /** * The user-friendly name for the Exadata Database Storage Vault resource. The name does not need to be unique. Changing this forces a new Exadata Database Storage Vault to be created. */ displayName: pulumi.Input; /** * A `highCapacityDatabaseStorage` block as defined below. Changing this forces a new Exadata Database Storage Vault to be created. */ highCapacityDatabaseStorage: pulumi.Input; /** * The Azure Region where the Exadata Database Storage Vault should exist. Changing this forces a new Exadata Database Storage Vault to be created. */ location?: pulumi.Input; /** * The name which should be used for this Exadata Database Storage Vault. Changing this forces a new Exadata Database Storage Vault to be created. */ name?: pulumi.Input; /** * The name of the Resource Group where the Exadata Database Storage Vault should exist. Changing this forces a new Exadata Database Storage Vault to be created. */ resourceGroupName: pulumi.Input; /** * A mapping of tags which should be assigned to the Exadata Database Storage Vault. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The time zone that you want to use for the Exadata Database Storage Vault. Changing this forces a new Exadata Database Storage Vault to be created. For details, see [Time Zones](https://docs.oracle.com/en/cloud/paas/base-database/time-zone/). */ timeZone?: pulumi.Input; /** * Exadata Database Storage Vault zones. Changing this forces a new Exadata Database Storage Vault to be created. */ zones: pulumi.Input[]>; }