Show / Hide Table of Contents

Class AutonomousDbPreviewVersionSummary

The Autonomous Database preview version. Note that preview version software is only available for Autonomous 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 Database workload type. The following values are valid:

  • OLTP - indicates an Autonomous Transaction Processing database
  • DW - indicates an Autonomous Data Warehouse database
  • AJD - indicates an Autonomous JSON Database
  • APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
    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 Database preview version.

Remarks

Required

In this article
Back to top