Show / Hide Table of Contents

Class DbVersionSummary

The Oracle Database software version.
To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.

Inheritance
object
DbVersionSummary
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 DbVersionSummary

Properties

IsLatestForMajorVersion

Declaration
[JsonProperty(PropertyName = "isLatestForMajorVersion")]
public bool? IsLatestForMajorVersion { get; set; }
Property Value
Type Description
bool?

True if this version of the Oracle Database software is the latest version for a release.

IsPreviewDbVersion

Declaration
[JsonProperty(PropertyName = "isPreviewDbVersion")]
public bool? IsPreviewDbVersion { get; set; }
Property Value
Type Description
bool?

True if this version of the Oracle Database software is the preview version.

IsUpgradeSupported

Declaration
[JsonProperty(PropertyName = "isUpgradeSupported")]
public bool? IsUpgradeSupported { get; set; }
Property Value
Type Description
bool?

True if this version of the Oracle Database software is supported for Upgrade.

SupportsPdb

Declaration
[JsonProperty(PropertyName = "supportsPdb")]
public bool? SupportsPdb { get; set; }
Property Value
Type Description
bool?

True if this version of the Oracle Database software supports pluggable databases.

Version

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

A valid Oracle Database version.

Remarks

Required

In this article
Back to top