Show / Hide Table of Contents

Class AutonomousDbPreviewVersionSummary

The Autonomous AI Database preview version. Note that preview version software is only available for Autonomous AI Database Serverless instances.

Inheritance
object
AutonomousDbPreviewVersionSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class AutonomousDbPreviewVersionSummary

Properties

DbWorkload

Declaration
[JsonProperty(PropertyName = "dbWorkload")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AutonomousDbPreviewVersionSummary.DbWorkloadEnum? DbWorkload { get; set; }
Property Value
Type Description
AutonomousDbPreviewVersionSummary.DbWorkloadEnum?

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

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.

Details

Declaration
[JsonProperty(PropertyName = "details")]
public string Details { get; set; }
Property Value
Type Description
string

A URL that points to a detailed description of the preview version.

TimePreviewBegin

Declaration
[JsonProperty(PropertyName = "timePreviewBegin")]
public DateTime? TimePreviewBegin { get; set; }
Property Value
Type Description
DateTime?

The date and time when the preview version availability begins.

TimePreviewEnd

Declaration
[JsonProperty(PropertyName = "timePreviewEnd")]
public DateTime? TimePreviewEnd { get; set; }
Property Value
Type Description
DateTime?

The date and time when the preview version availability ends.

Version

Declaration
[Required(ErrorMessage = "Version is required.")]
[JsonProperty(PropertyName = "version")]
public string Version { get; set; }
Property Value
Type Description
string

A valid Autonomous AI Database preview version.

Remarks

Required

In this article
Back to top