/** * 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"; /** * Source Autonomous AI Database details. */ export interface SourceDatabaseDetails { /** * Autonomous VM cluster's user-friendly name. */ "autonomousVmClusterDisplayName"?: string; /** * Autonomous Container Database name. */ "autonomousContainerDatabaseName"?: string; /** * The user-provided name for the Autonomous Container Database. */ "autonomousContainerDatabaseDisplayName"?: string; /** * Customer Contacts for the Autonomous Container Database. Setting this to an empty list removes all customer contacts. * */ "autonomousContainerDatabaseCustomerContacts"?: Array; /** * DST Time-Zone File version of the Autonomous Container Database. */ "autonomousContainerDatabaseDstFileVersion"?: string; /** * Autonomous AI Database's name. */ "autonomousDatabaseName"?: string; /** * Customer Contacts for the Autonomous AI Database. */ "autonomousDatabaseCustomerContacts"?: Array; /** * 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"?: SourceDatabaseDetails.DbWorkload; } export declare namespace SourceDatabaseDetails { 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: SourceDatabaseDetails): object; function getDeserializedJsonObj(obj: SourceDatabaseDetails): object; }