/** * Database Service API * The API for the Database Service. Use this API to manage resources such as databases and DB Systems. For more information, see [Overview of the Database Service](https://docs.oracle.com/iaas/Content/Database/Concepts/databaseoverview.htm). * OpenAPI spec version: 20160918 * Contact: sic_dbaas_cp_us_grp@oracle.com * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ import * as model from "../model"; /** * Details for the create Exadata VM cluster operation. Applies to Exadata Cloud@Customer instances only. * For details on the create cloud Exadata VM cluster operation used with Exadata Cloud Service instances, see {@link #createCloudVmClusterDetails(CreateCloudVmClusterDetailsRequest) createCloudVmClusterDetails} * */ export interface CreateVmClusterDetails { /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ "compartmentId": string; /** * The user-friendly name for the VM cluster. The name does not need to be unique. */ "displayName": string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure. */ "exadataInfrastructureId": string; /** * The number of ECPUs (X11M and higher) or number of OCPUs (X10M and earlier) to enable for the VM cluster. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "cpuCoreCount": number; /** * The number of OCPU cores to enable for the VM cluster. Only one decimal place is allowed for the fractional part. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "ocpuCount"?: number; /** * The memory to be allocated in GBs. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "memorySizeInGBs"?: number; /** * The local node storage to be allocated in GBs. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "dbNodeStorageSizeInGBs"?: number; /** * The data disk group size to be allocated in TBs. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "dataStorageSizeInTBs"?: number; /** * The data disk group size to be allocated in GBs. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "dataStorageSizeInGBs"?: number; /** * The public key portion of one or more key pairs used for SSH access to the VM cluster. */ "sshPublicKeys": Array; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster network. */ "vmClusterNetworkId": string; /** * The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE. * */ "licenseModel"?: CreateVmClusterDetails.LicenseModel; /** * The percentage assigned to DATA storage (user data and database files). See [Storage Configuration](https://docs.oracle.com/iaas/Content/Database/Concepts/exaoverview.htm#Exadata) in the Exadata documentation for details on the impact of the configuration settings on storage. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "dataStoragePercentage"?: number; /** * The percentage assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). See [Storage Configuration](https://docs.oracle.com/iaas/Content/Database/Concepts/exaoverview.htm#Exadata) in the Exadata documentation for details on the impact of the configuration settings on storage. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "recoStoragePercentage"?: number; /** * The percentage assigned to SPARSE storage (Exadata snapshots). See [Storage Configuration](https://docs.oracle.com/iaas/Content/Database/Concepts/exaoverview.htm#Exadata) in the Exadata documentation for details on the impact of the configuration settings on storage. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "sparseStoragePercentage"?: number; /** * If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created. * */ "isSparseDiskgroupEnabled"?: boolean; /** * If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster. * */ "isLocalBackupEnabled"?: boolean; /** * The time zone to use for the VM cluster. For details, see [DB System Time Zones](https://docs.oracle.com/iaas/Content/Database/References/timezones.htm). */ "timeZone"?: string; /** * The Oracle Grid Infrastructure software version for the VM cluster. */ "giVersion": string; /** * The list of Db server. */ "dbServers"?: Array; /** * 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.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). *

Example: {@code {\"Department\": \"Finance\"}} * */ "freeformTags"?: { [key: string]: string; }; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. * For more information, see [Resource Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). * */ "definedTags"?: { [key: string]: { [key: string]: any; }; }; "dataCollectionOptions"?: model.DataCollectionOptions; /** * Operating system version of the image. */ "systemVersion"?: string; /** * Details of the file system configuration of the VM cluster. */ "fileSystemConfigurationDetails"?: Array; /** * The vmcluster type for the VM cluster/Cloud VM cluster. */ "vmClusterType"?: CreateVmClusterDetails.VmClusterType; "cloudAutomationUpdateDetails"?: model.CloudAutomationUpdateDetails; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault. */ "exascaleDbStorageVaultId"?: string; /** * Specifies the type of file system storage and supported values are LOCAL and EXASCALE. - LOCAL if selected then file system storage will be on DB Servers. - EXASCALE if selected then file system storage will be on Exascale Storage Servers. Default Value is LOCAL */ "vmFileSystemStorageType"?: CreateVmClusterDetails.VmFileSystemStorageType; /** * Specifies the type of VM Backups Storage and supported values are LOCAL and EXASCALE. - LOCAL if selected then VM Backups storage will be on DB Servers. - EXASCALE if selected then VM Backups storage will be on Exascale Storage Servers. Default Value is LOCAL */ "vmBackupStorageType"?: CreateVmClusterDetails.VmBackupStorageType; } export declare namespace CreateVmClusterDetails { enum LicenseModel { LicenseIncluded = "LICENSE_INCLUDED", BringYourOwnLicense = "BRING_YOUR_OWN_LICENSE" } enum VmClusterType { Regular = "REGULAR", Developer = "DEVELOPER" } enum VmFileSystemStorageType { Local = "LOCAL", Exascale = "EXASCALE" } enum VmBackupStorageType { Local = "LOCAL", Exascale = "EXASCALE" } function getJsonObj(obj: CreateVmClusterDetails): object; function getDeserializedJsonObj(obj: CreateVmClusterDetails): object; }