import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Cloud Exadata Infrastructure resource in Oracle Cloud Infrastructure Database service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/database/latest/CloudExadataInfrastructure * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/database * * Creates a cloud Exadata infrastructure resource. This resource is used to create either an [Exadata Cloud Service](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaoverview.htm) instance or an Autonomous AI Database on dedicated Exadata infrastructure. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudExadataInfrastructure = new oci.database.CloudExadataInfrastructure("test_cloud_exadata_infrastructure", { * availabilityDomain: cloudExadataInfrastructureAvailabilityDomain, * compartmentId: compartmentId, * displayName: cloudExadataInfrastructureDisplayName, * shape: cloudExadataInfrastructureShape, * clusterPlacementGroupId: cloudExadataInfrastructureClusterPlacementGroupId, * computeCount: Number(cloudExadataInfrastructureComputeCount), * customerContacts: [{ * email: cloudExadataInfrastructureCustomerContactsEmail, * }], * databaseServerType: cloudExadataInfrastructureDatabaseServerType, * definedTags: cloudExadataInfrastructureDefinedTags, * freeformTags: { * Department: "Finance", * }, * maintenanceVersionPreferences: { * referenceResourceIdForImageUpdates: cloudExadataInfrastructureMaintenanceVersionPreferencesReferenceResourceIdForImageUpdates, * }, * maintenanceWindow: { * customActionTimeoutInMins: Number(cloudExadataInfrastructureMaintenanceWindowCustomActionTimeoutInMins), * daysOfWeeks: [{ * name: cloudExadataInfrastructureMaintenanceWindowDaysOfWeekName, * }], * hoursOfDays: cloudExadataInfrastructureMaintenanceWindowHoursOfDay, * isCustomActionTimeoutEnabled: cloudExadataInfrastructureMaintenanceWindowIsCustomActionTimeoutEnabled === "true", * isMonthlyPatchingEnabled: cloudExadataInfrastructureMaintenanceWindowIsMonthlyPatchingEnabled === "true", * leadTimeInWeeks: Number(cloudExadataInfrastructureMaintenanceWindowLeadTimeInWeeks), * months: [{ * name: cloudExadataInfrastructureMaintenanceWindowMonthsName, * }], * patchingMode: cloudExadataInfrastructureMaintenanceWindowPatchingMode, * preference: cloudExadataInfrastructureMaintenanceWindowPreference, * weeksOfMonths: cloudExadataInfrastructureMaintenanceWindowWeeksOfMonth, * }, * storageCount: Number(cloudExadataInfrastructureStorageCount), * storageServerType: cloudExadataInfrastructureStorageServerType, * subscriptionId: tenantSubscriptionId, * }); * ``` * * ## Import * * CloudExadataInfrastructures can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:Database/cloudExadataInfrastructure:CloudExadataInfrastructure test_cloud_exadata_infrastructure "id" * ``` */ export declare class CloudExadataInfrastructure extends pulumi.CustomResource { /** * Get an existing CloudExadataInfrastructure 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?: CloudExadataInfrastructureState, opts?: pulumi.CustomResourceOptions): CloudExadataInfrastructure; /** * Returns true if the given object is an instance of CloudExadataInfrastructure. 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 CloudExadataInfrastructure; /** * The requested number of additional storage servers activated for the Exadata infrastructure. */ readonly activatedStorageCount: pulumi.Output; /** * The requested number of additional storage servers for the Exadata infrastructure. */ readonly additionalStorageCount: pulumi.Output; /** * The availability domain where the cloud Exadata infrastructure is located. */ readonly availabilityDomain: pulumi.Output; /** * The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB). */ readonly availableStorageSizeInGbs: 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) The number of compute servers for the cloud Exadata infrastructure. */ readonly computeCount: pulumi.Output; /** * The compute model of the Autonomous AI Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy. */ readonly computeModel: pulumi.Output; /** * The total number of CPU cores allocated. */ readonly cpuCount: pulumi.Output; /** * (Updatable) Customer contacts. */ readonly customerContacts: pulumi.Output; /** * Size, in terabytes, of the DATA disk group. */ readonly dataStorageSizeInTbs: pulumi.Output; /** * The database server type of the Exadata infrastructure. */ readonly databaseServerType: pulumi.Output; /** * The local node storage allocated in GBs. */ readonly dbNodeStorageSizeInGbs: pulumi.Output; /** * The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15 */ readonly dbServerVersion: pulumi.Output; /** * Details of the file system configuration of the Exadata infrastructure. */ readonly definedFileSystemConfigurations: 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) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique. */ readonly displayName: pulumi.Output; /** * The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances. */ readonly exascaleConfigs: 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; }>; /** * If true, the infrastructure is using granular maintenance scheduling preference. */ readonly isSchedulingPolicyAssociated: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance run. */ readonly lastMaintenanceRunId: pulumi.Output; /** * Additional information about the current lifecycle state. */ readonly lifecycleDetails: pulumi.Output; /** * (Updatable) The preferences for target versions of future maintenance runs. * * Currently these preferences are only supported for Monthly maintenance runs created via scheduling plans If no preferences are specified then the version will be set by default to "Latest". Changing preferences will not change versions for an already existing maintenance run. */ readonly maintenanceVersionPreferences: pulumi.Output; /** * (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window. */ readonly maintenanceWindow: pulumi.Output; /** * The total number of CPU cores available. */ readonly maxCpuCount: pulumi.Output; /** * The total available DATA disk group size. */ readonly maxDataStorageInTbs: pulumi.Output; /** * The total local node storage available in GBs. */ readonly maxDbNodeStorageInGbs: pulumi.Output; /** * The total memory available in GBs. */ readonly maxMemoryInGbs: pulumi.Output; /** * The memory allocated in GBs. */ readonly memorySizeInGbs: pulumi.Output; /** * The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15 */ readonly monthlyDbServerVersion: pulumi.Output; /** * The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15 */ readonly monthlyStorageServerVersion: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the next maintenance run. */ readonly nextMaintenanceRunId: pulumi.Output; /** * The shape of the cloud Exadata infrastructure resource. */ readonly shape: pulumi.Output; /** * The current lifecycle state of the cloud Exadata infrastructure resource. */ readonly state: pulumi.Output; /** * (Updatable) The number of storage servers for the cloud Exadata infrastructure. */ readonly storageCount: pulumi.Output; /** * The storage server type of the Exadata infrastructure. */ readonly storageServerType: pulumi.Output; /** * The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15 */ readonly storageServerVersion: 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. * * ** 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 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 the cloud Exadata infrastructure resource was created. */ readonly timeCreated: pulumi.Output; /** * The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB). */ readonly totalStorageSizeInGbs: pulumi.Output; /** * Create a CloudExadataInfrastructure 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: CloudExadataInfrastructureArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CloudExadataInfrastructure resources. */ export interface CloudExadataInfrastructureState { /** * The requested number of additional storage servers activated for the Exadata infrastructure. */ activatedStorageCount?: pulumi.Input; /** * The requested number of additional storage servers for the Exadata infrastructure. */ additionalStorageCount?: pulumi.Input; /** * The availability domain where the cloud Exadata infrastructure is located. */ availabilityDomain?: pulumi.Input; /** * The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB). */ availableStorageSizeInGbs?: 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) The number of compute servers for the cloud Exadata infrastructure. */ computeCount?: pulumi.Input; /** * The compute model of the Autonomous AI Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy. */ computeModel?: pulumi.Input; /** * The total number of CPU cores allocated. */ cpuCount?: pulumi.Input; /** * (Updatable) Customer contacts. */ customerContacts?: pulumi.Input[] | undefined>; /** * Size, in terabytes, of the DATA disk group. */ dataStorageSizeInTbs?: pulumi.Input; /** * The database server type of the Exadata infrastructure. */ databaseServerType?: pulumi.Input; /** * The local node storage allocated in GBs. */ dbNodeStorageSizeInGbs?: pulumi.Input; /** * The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15 */ dbServerVersion?: pulumi.Input; /** * Details of the file system configuration of the Exadata infrastructure. */ definedFileSystemConfigurations?: pulumi.Input[] | undefined>; /** * (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) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique. */ displayName?: pulumi.Input; /** * The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances. */ exascaleConfigs?: pulumi.Input[] | undefined>; /** * (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>; /** * If true, the infrastructure is using granular maintenance scheduling preference. */ isSchedulingPolicyAssociated?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance run. */ lastMaintenanceRunId?: pulumi.Input; /** * Additional information about the current lifecycle state. */ lifecycleDetails?: pulumi.Input; /** * (Updatable) The preferences for target versions of future maintenance runs. * * Currently these preferences are only supported for Monthly maintenance runs created via scheduling plans If no preferences are specified then the version will be set by default to "Latest". Changing preferences will not change versions for an already existing maintenance run. */ maintenanceVersionPreferences?: pulumi.Input; /** * (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window. */ maintenanceWindow?: pulumi.Input; /** * The total number of CPU cores available. */ maxCpuCount?: pulumi.Input; /** * The total available DATA disk group size. */ maxDataStorageInTbs?: pulumi.Input; /** * The total local node storage available in GBs. */ maxDbNodeStorageInGbs?: pulumi.Input; /** * The total memory available in GBs. */ maxMemoryInGbs?: pulumi.Input; /** * The memory allocated in GBs. */ memorySizeInGbs?: pulumi.Input; /** * The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15 */ monthlyDbServerVersion?: pulumi.Input; /** * The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15 */ monthlyStorageServerVersion?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the next maintenance run. */ nextMaintenanceRunId?: pulumi.Input; /** * The shape of the cloud Exadata infrastructure resource. */ shape?: pulumi.Input; /** * The current lifecycle state of the cloud Exadata infrastructure resource. */ state?: pulumi.Input; /** * (Updatable) The number of storage servers for the cloud Exadata infrastructure. */ storageCount?: pulumi.Input; /** * The storage server type of the Exadata infrastructure. */ storageServerType?: pulumi.Input; /** * The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15 */ storageServerVersion?: 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. * * ** 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 */ 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 the cloud Exadata infrastructure resource was created. */ timeCreated?: pulumi.Input; /** * The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB). */ totalStorageSizeInGbs?: pulumi.Input; } /** * The set of arguments for constructing a CloudExadataInfrastructure resource. */ export interface CloudExadataInfrastructureArgs { /** * The availability domain where the cloud Exadata infrastructure 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) The number of compute servers for the cloud Exadata infrastructure. */ computeCount?: pulumi.Input; /** * (Updatable) Customer contacts. */ customerContacts?: pulumi.Input[] | undefined>; /** * The database server type of the Exadata infrastructure. */ databaseServerType?: 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) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique. */ displayName: 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) The preferences for target versions of future maintenance runs. * * Currently these preferences are only supported for Monthly maintenance runs created via scheduling plans If no preferences are specified then the version will be set by default to "Latest". Changing preferences will not change versions for an already existing maintenance run. */ maintenanceVersionPreferences?: pulumi.Input; /** * (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window. */ maintenanceWindow?: pulumi.Input; /** * The shape of the cloud Exadata infrastructure resource. */ shape: pulumi.Input; /** * (Updatable) The number of storage servers for the cloud Exadata infrastructure. */ storageCount?: pulumi.Input; /** * The storage server type of the Exadata infrastructure. */ storageServerType?: 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. * * ** 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 */ subscriptionId?: pulumi.Input; } //# sourceMappingURL=cloudExadataInfrastructure.d.ts.map