Show / Hide Table of Contents

Class UpgradeDatabaseDetails

Details for upgrading a database to a specific Oracle Database version.

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

Properties

Action

Declaration
[Required(ErrorMessage = "Action is required.")]
[JsonProperty(PropertyName = "action")]
[JsonConverter(typeof(StringEnumConverter))]
public UpgradeDatabaseDetails.ActionEnum? Action { get; set; }
Property Value
Type Description
UpgradeDatabaseDetails.ActionEnum?

The database upgrade action.

Remarks

Required

DatabaseUpgradeSourceDetails

Declaration
[JsonProperty(PropertyName = "databaseUpgradeSourceDetails")]
public DatabaseUpgradeSourceBase DatabaseUpgradeSourceDetails { get; set; }
Property Value
Type Description
DatabaseUpgradeSourceBase
In this article
Back to top