import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing Exadata Database Storage Vault * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.oracle.getExascaleDatabaseStorageVault({ * name: "existing", * resourceGroupName: "existing", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 */ export declare function getExascaleDatabaseStorageVault(args: GetExascaleDatabaseStorageVaultArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExascaleDatabaseStorageVault. */ export interface GetExascaleDatabaseStorageVaultArgs { /** * The name of this Exadata Database Storage Vault. */ name: string; /** * The name of the Resource Group where the Exadata Database Storage Vault exists. */ resourceGroupName: string; } /** * A collection of values returned by getExascaleDatabaseStorageVault. */ export interface GetExascaleDatabaseStorageVaultResult { /** * The size of additional Flash Cache in percentage of High Capacity database storage. */ readonly additionalFlashCachePercentage: number; /** * Exadata Database Storage Vault description. */ readonly description: string; /** * The user-friendly name for the Exadata Database Storage Vault. */ readonly displayName: string; /** * A `highCapacityDatabaseStorage` block as defined below. */ readonly highCapacityDatabaseStorages: outputs.oracle.GetExascaleDatabaseStorageVaultHighCapacityDatabaseStorage[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Additional information about the current lifecycle state. */ readonly lifecycleDetails: string; /** * Exadata Database Storage Vault lifecycle state enum. */ readonly lifecycleState: string; /** * The Azure Region where the Exadata Database Storage Vault exists. */ readonly location: string; readonly name: string; /** * The URL of the resource in the OCI console. */ readonly ociUrl: string; /** * The [OCID](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault. */ readonly ocid: string; readonly resourceGroupName: string; /** * The time zone of the Exadata Database Storage Vault. */ readonly timeZone: string; /** * The number of Exadata virtual machine clusters used the Exadata Database Storage Vault. */ readonly virtualMachineClusterCount: number; /** * The Exadata Database Storage Vault Azure zones. */ readonly zones: string[]; } /** * Use this data source to access information about an existing Exadata Database Storage Vault * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.oracle.getExascaleDatabaseStorageVault({ * name: "existing", * resourceGroupName: "existing", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 */ export declare function getExascaleDatabaseStorageVaultOutput(args: GetExascaleDatabaseStorageVaultOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExascaleDatabaseStorageVault. */ export interface GetExascaleDatabaseStorageVaultOutputArgs { /** * The name of this Exadata Database Storage Vault. */ name: pulumi.Input; /** * The name of the Resource Group where the Exadata Database Storage Vault exists. */ resourceGroupName: pulumi.Input; }