/** * 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 of the Base Cloud@Customer VM Cluster. * */ export interface BaseccVmClusterSummary { /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Base Database Service on Cloud@Customer (BaseDB-C@C) VM cluster. */ "id": string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last patch history. This value is updated as soon as a patch operation starts. */ "lastPatchHistoryEntryId"?: string; /** * The current state of the VM Cluster. */ "lifecycleState": BaseccVmClusterSummary.LifecycleState; /** * The date and time that the Base Database Service on Cloud@Customer (BaseDB-C@C) VM cluster was created. */ "timeCreated": Date; /** * The date and time that the Base Database Service on Cloud@Customer (BaseDB-C@C) VM cluster was updated. */ "timeUpdated"?: Date; /** * Additional information about the current lifecycle state of the the Base Database Service on Cloud@Customer (BaseDB-C@C) VM cluster. */ "lifecycleDetails"?: string; /** * The name of the availability domain in which the Base Database Service on Cloud@Customer (BaseDB-C@C) VM cluster is located. * */ "availabilityDomain": string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ "compartmentId": string; /** * The Oracle Database Edition that applies to all the databases on the DB system. * Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE. * */ "databaseEdition"?: BaseccVmClusterSummary.DatabaseEdition; /** * The number of nodes in the Base Database Service on Cloud@Customer (BaseDB-C@C) VM cluster. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "nodeCount"?: number; /** * List of Base server OCIDs. */ "dbServers"?: Array; /** * Total CPU cores for the BaseDB C@C VM cluster. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "cpusEnabled": number; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of Oracle Data Cloud@Customer Infrastructure. */ "baseInfrastructureId": string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of BaseDB-C@C VM Cluster Network. */ "baseVmClusterNetworkId": string; /** * A valid Oracle Grid Infrastructure (GI) software version. */ "giVersion": string; "dataCollectionOptions"?: model.DataCollectionOptions; /** * The description for Base Database Service on Cloud@Customer (BaseDB-C@C) VM cluster. */ "description"?: string; /** * The user-friendly name for the Base Database Service on Cloud@Customer (BaseDB-C@C) VM cluster. The name does not need to be unique. */ "displayName": string; /** * The public key portion of one or more key pairs used for SSH access to the VMs of Base Database Service on Cloud@Customer (BaseDB-C@C) VM cluster. */ "sshPublicKeys": Array; /** * The time zone to use for the Base Database Service on Cloud@Customer (BaseDB-C@C) VM cluster. For details, see [Time Zones](https://docs.oracle.com/iaas/Content/Database/References/timezones.htm). * */ "timeZone"?: string; /** * The cluster name for Base Database Service on Cloud@Customer (BaseDB-C@C) VM cluster. * */ "clusterName"?: string; /** * Total boot partition size (GB) for the Base Database Service on Cloud@Customer (BaseDB-C@C) VM cluster. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "bootStorageSizeInGBs"?: number; /** * Total /u01 partition size (GB) for the Base Database Service on Cloud@Customer (BaseDB-C@C) VM cluster. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "additionalVmStorageSizeInGBs"?: number; /** * The total storage allocated in GBs. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "totalStorageSizeInGBs"?: number; /** * The DATA Disk Group size in GB for the Base Database Service on Cloud@Customer (BaseDB-C@C) VM cluster. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "dataStorageSizeInGBs"?: number; /** * The RECO Disk Group size in GB for the Base Database Service on Cloud@Customer (BaseDB-C@C) VM cluster. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "recoStorageSizeInGBs"?: number; /** * The total memory to be allocated, in GBs, for the Base Database Service on Cloud@Customer (BaseDB-C@C) VM cluster. The minimum is 11GB for every 4 ECPU. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "memorySizeInGBs"?: number; /** * The Oracle license model that applies to the Base Database Service on Cloud@Customer (BaseDB-C@C) VM cluster. The default is LICENSE_INCLUDED. * */ "licenseModel"?: BaseccVmClusterSummary.LicenseModel; /** * 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; }; }; /** * System 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). * */ "systemTags": { [key: string]: { [key: string]: any; }; }; /** * Operating system version of the image. */ "systemVersion"?: string; /** * The cluster type for the Base Database Service on Cloud@Customer (BaseDB-C@C) VM cluster. */ "vmClusterType"?: BaseccVmClusterSummary.VmClusterType; "cloudAutomationUpdateDetails"?: model.CloudAutomationUpdateDetails; } export declare namespace BaseccVmClusterSummary { enum LifecycleState { Provisioning = "PROVISIONING", Available = "AVAILABLE", Updating = "UPDATING", Terminating = "TERMINATING", Terminated = "TERMINATED", Failed = "FAILED", MaintenanceInProgress = "MAINTENANCE_IN_PROGRESS", /** * This value is used if a service returns a value for this enum that is not recognized by this * version of the SDK. */ UnknownValue = "UNKNOWN_VALUE" } enum DatabaseEdition { StandardEdition = "STANDARD_EDITION", EnterpriseEdition = "ENTERPRISE_EDITION", EnterpriseEditionHighPerformance = "ENTERPRISE_EDITION_HIGH_PERFORMANCE", EnterpriseEditionExtremePerformance = "ENTERPRISE_EDITION_EXTREME_PERFORMANCE", EnterpriseEditionDeveloper = "ENTERPRISE_EDITION_DEVELOPER", /** * This value is used if a service returns a value for this enum that is not recognized by this * version of the SDK. */ UnknownValue = "UNKNOWN_VALUE" } enum LicenseModel { LicenseIncluded = "LICENSE_INCLUDED", BringYourOwnLicense = "BRING_YOUR_OWN_LICENSE", /** * This value is used if a service returns a value for this enum that is not recognized by this * version of the SDK. */ UnknownValue = "UNKNOWN_VALUE" } enum VmClusterType { Regular = "REGULAR", Developer = "DEVELOPER", /** * This value is used if a service returns a value for this enum that is not recognized by this * version of the SDK. */ UnknownValue = "UNKNOWN_VALUE" } function getJsonObj(obj: BaseccVmClusterSummary): object; function getDeserializedJsonObj(obj: BaseccVmClusterSummary): object; }