/** * 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. */ /** * The supported Autonomous AI Database version. * */ export interface AutonomousDbVersionSummary { /** * A valid Oracle AI Database version for Autonomous AI Database. * When you specify 23ai for dbversion, the system will provision a 23ai database, but the UI will display it as 26ai. * When you specify 26ai for dbversion, the system will provision and display a 26ai database as expected. * For new databases, it is recommended to use either 19c or 26ai. *
**Note** Starting December 2026, 23ai will not be supported as a valid value for this parameter. * */ "version": string; /** * The Autonomous AI Database workload type. The following values are valid: * - OLTP - indicates an Autonomous AI Transaction Processing database * - DW - indicates an Autonomous AI Lakehouse database * - AJD - indicates an Autonomous AI JSON Database * - APEX - indicates an Autonomous AI Database with the Oracle APEX AI Application Development workload type. * - LH - indicates an Oracle Autonomous AI Lakehouse database *
**Note** Starting December 2026, DW will not be supported as a valid value for this parameter. * When creating an Autonomous AI Database, if this parameter is not specified, the default value is {@code OLTP}. *
* This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier. * */ "dbWorkload"?: AutonomousDbVersionSummary.DbWorkload; /** * True if the database uses [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html). * */ "isDedicated"?: boolean; /** * A URL that points to a detailed description of the Autonomous AI Database version. */ "details"?: string; /** * True if this version of the Oracle AI Database software can be used for Always-Free Autonomous AI Databases. */ "isFreeTierEnabled"?: boolean; /** * True if this Oracle AI Database software version can be used for Autonomous AI Databases for Developers. */ "isDevTierEnabled"?: boolean; /** * True if this version of the Oracle AI Database software has payments enabled. */ "isPaidEnabled"?: boolean; /** * True if this version of the Oracle AI Database software's default is free. */ "isDefaultForFree"?: boolean; /** * True if this version of the Oracle AI Database software's default is paid. */ "isDefaultForPaid"?: boolean; } export declare namespace AutonomousDbVersionSummary { enum DbWorkload { Oltp = "OLTP", Dw = "DW", Ajd = "AJD", Apex = "APEX", Lh = "LH", /** * 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: AutonomousDbVersionSummary): object; function getDeserializedJsonObj(obj: AutonomousDbVersionSummary): object; }