import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Exascale Db Storage Vault resource in Oracle Cloud Infrastructure Database service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/database/latest/ExascaleDbStorageVault * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/database * * Creates an Exadata Database Storage Vault * * ## Example Usage * * ```typescript * 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: Number(exascaleDbStorageVaultHighCapacityDatabaseStorageTotalSizeInGbs), * }, * additionalFlashCacheInPercent: Number(exascaleDbStorageVaultAdditionalFlashCacheInPercent), * autoscaleLimitInGbs: Number(exascaleDbStorageVaultAutoscaleLimitInGbs), * clusterPlacementGroupId: testClusterPlacementGroup.id, * definedTags: exascaleDbStorageVaultDefinedTags, * description: exascaleDbStorageVaultDescription, * exadataInfrastructureId: testExadataInfrastructure.id, * freeformTags: { * Department: "Finance", * }, * isAutoscaleEnabled: exascaleDbStorageVaultIsAutoscaleEnabled === "true", * subscriptionId: tenantSubscriptionId, * timeZone: exascaleDbStorageVaultTimeZone, * }); * ``` * * ## Import * * ExascaleDbStorageVaults can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:Database/exascaleDbStorageVault:ExascaleDbStorageVault test_exascale_db_storage_vault "id" * ``` */ export declare class ExascaleDbStorageVault extends pulumi.CustomResource { /** * Get an existing ExascaleDbStorageVault 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?: ExascaleDbStorageVaultState, opts?: pulumi.CustomResourceOptions): ExascaleDbStorageVault; /** * Returns true if the given object is an instance of ExascaleDbStorageVault. 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 ExascaleDbStorageVault; /** * (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage. */ readonly additionalFlashCacheInPercent: pulumi.Output; /** * The shapeAttribute of the Exadata VM cluster(s) associated with the Exadata Database Storage Vault. */ readonly attachedShapeAttributes: pulumi.Output; /** * (Updatable) The maximum limit, in gigabytes, to which the Vault storage size can automatically scale when auto scaling is enabled for the Database Storage Vault */ readonly autoscaleLimitInGbs: pulumi.Output; /** * The name of the availability domain in which the Exadata Database Storage Vault is located. */ readonly availabilityDomain: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Exadata Infrastructure or Db System. */ readonly clusterPlacementGroupId: pulumi.Output; /** * (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: pulumi.Output; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ readonly definedTags: pulumi.Output<{ [key: string]: string; }>; /** * (Updatable) Exadata Database Storage Vault description. */ readonly description: pulumi.Output; /** * (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique. */ readonly displayName: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure. */ readonly exadataInfrastructureId: pulumi.Output; /** * (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: pulumi.Output<{ [key: string]: string; }>; /** * (Updatable) Create exadata Database Storage Details */ readonly highCapacityDatabaseStorage: pulumi.Output; /** * (Updatable) Indicates if autoscale feature is enabled for the Database Storage Vault. The default value is `FALSE`. */ readonly isAutoscaleEnabled: pulumi.Output; /** * Additional information about the current lifecycle state. */ readonly lifecycleDetails: pulumi.Output; /** * The current state of the Exadata Database Storage Vault. */ readonly state: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with. */ readonly subscriptionId: pulumi.Output; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ readonly systemTags: pulumi.Output<{ [key: string]: string; }>; /** * The date and time that the Exadata Database Storage Vault was created. */ readonly timeCreated: pulumi.Output; /** * The time zone that you want to use for the Exadata Database Storage Vault. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm). * * ** 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 */ readonly timeZone: pulumi.Output; /** * The number of Exadata VM clusters used the Exadata Database Storage Vault. */ readonly vmClusterCount: pulumi.Output; /** * The List of Exadata VM cluster on Exascale Infrastructure [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) **Note:** If Exadata Database Storage Vault is not used for any Exadata VM cluster on Exascale Infrastructure, this list is empty. */ readonly vmClusterIds: pulumi.Output; /** * Create a ExascaleDbStorageVault 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: ExascaleDbStorageVaultArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ExascaleDbStorageVault resources. */ export interface ExascaleDbStorageVaultState { /** * (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage. */ additionalFlashCacheInPercent?: pulumi.Input; /** * The shapeAttribute of the Exadata VM cluster(s) associated with the Exadata Database Storage Vault. */ attachedShapeAttributes?: pulumi.Input[] | undefined>; /** * (Updatable) The maximum limit, in gigabytes, to which the Vault storage size can automatically scale when auto scaling is enabled for the Database Storage Vault */ autoscaleLimitInGbs?: pulumi.Input; /** * The name of the availability domain in which the Exadata Database Storage Vault is located. */ availabilityDomain?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Exadata Infrastructure or Db System. */ clusterPlacementGroupId?: pulumi.Input; /** * (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: pulumi.Input; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Exadata Database Storage Vault description. */ description?: pulumi.Input; /** * (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique. */ displayName?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure. */ exadataInfrastructureId?: pulumi.Input; /** * (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Create exadata Database Storage Details */ highCapacityDatabaseStorage?: pulumi.Input; /** * (Updatable) Indicates if autoscale feature is enabled for the Database Storage Vault. The default value is `FALSE`. */ isAutoscaleEnabled?: pulumi.Input; /** * Additional information about the current lifecycle state. */ lifecycleDetails?: pulumi.Input; /** * The current state of the Exadata Database Storage Vault. */ state?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with. */ subscriptionId?: pulumi.Input; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ systemTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The date and time that the Exadata Database Storage Vault was created. */ timeCreated?: pulumi.Input; /** * The time zone that you want to use for the Exadata Database Storage Vault. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm). * * ** 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 */ timeZone?: pulumi.Input; /** * The number of Exadata VM clusters used the Exadata Database Storage Vault. */ vmClusterCount?: pulumi.Input; /** * The List of Exadata VM cluster on Exascale Infrastructure [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) **Note:** If Exadata Database Storage Vault is not used for any Exadata VM cluster on Exascale Infrastructure, this list is empty. */ vmClusterIds?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a ExascaleDbStorageVault resource. */ export interface ExascaleDbStorageVaultArgs { /** * (Updatable) The size of additional Flash Cache in percentage of High Capacity database storage. */ additionalFlashCacheInPercent?: pulumi.Input; /** * (Updatable) The maximum limit, in gigabytes, to which the Vault storage size can automatically scale when auto scaling is enabled for the Database Storage Vault */ autoscaleLimitInGbs?: pulumi.Input; /** * The name of the availability domain in which the Exadata Database Storage Vault is located. */ availabilityDomain: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Exadata Infrastructure or Db System. */ clusterPlacementGroupId?: pulumi.Input; /** * (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Exadata Database Storage Vault description. */ description?: pulumi.Input; /** * (Updatable) The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique. */ displayName: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure. */ exadataInfrastructureId?: pulumi.Input; /** * (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Create exadata Database Storage Details */ highCapacityDatabaseStorage: pulumi.Input; /** * (Updatable) Indicates if autoscale feature is enabled for the Database Storage Vault. The default value is `FALSE`. */ isAutoscaleEnabled?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with. */ subscriptionId?: pulumi.Input; /** * The time zone that you want to use for the Exadata Database Storage Vault. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm). * * ** 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 */ timeZone?: pulumi.Input; } //# sourceMappingURL=exascaleDbStorageVault.d.ts.map