/** * 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"; /** * The update should be applied on the database for the selected version series and preference. * */ export interface VersionSchemeFromVersionSeriesDetails extends model.VersionSchemeDetails { /** * The update should be applied on the database for the selected major version series. * The value can be provided as 23.X.X.X then 23 major version series will be considered. *
The list of supported versions can be obtained using the API for the provided shape
* /20160918/dbVersions?compartmentId=
For Ex: The current latest version is 23.7.0.0.0,
* If versionPreference selects option as ORACLE_DB_N then oracle applies the db update with LATEST version (i.e. 23.7.0.0.0)
* If versionPreference selects option as ORACLE_DB_N_1 then oracle applies the db update with LATEST-1 version (i.e. 23.6.0.0.0)
* If versionPreference selects option as ORACLE_DB_N_2 then oracle applies the db update with LATEST-2 version (i.e. 23.5.0.0.0)
*
*/
"versionPreference": VersionSchemeFromVersionSeriesDetails.VersionPreference;
"source": string;
}
export declare namespace VersionSchemeFromVersionSeriesDetails {
enum VersionPreference {
OracleDbN = "ORACLE_DB_N",
OracleDbN1 = "ORACLE_DB_N_1",
OracleDbN2 = "ORACLE_DB_N_2",
OracleDbN3 = "ORACLE_DB_N_3",
/**
* 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: VersionSchemeFromVersionSeriesDetails, isParentJsonObj?: boolean): object;
const source = "VERSION_SERIES";
function getDeserializedJsonObj(obj: VersionSchemeFromVersionSeriesDetails, isParentJsonObj?: boolean): object;
}