/** * 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 Autonomous AI Database preview version. Note that preview version software is only available for [Autonomous AI Database Serverless instances](https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/). * */ export interface AutonomousDbPreviewVersionSummary { /** * A valid Autonomous AI Database preview version. */ "version": string; /** * The date and time when the preview version availability begins. */ "timePreviewBegin"?: Date; /** * The date and time when the preview version availability ends. */ "timePreviewEnd"?: Date; /** * 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"?: AutonomousDbPreviewVersionSummary.DbWorkload; /** * A URL that points to a detailed description of the preview version. */ "details"?: string; } export declare namespace AutonomousDbPreviewVersionSummary { 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: AutonomousDbPreviewVersionSummary): object; function getDeserializedJsonObj(obj: AutonomousDbPreviewVersionSummary): object; }