Show / Hide Table of Contents

Class DatabaseUpgradeHistoryEntrySummary

The Database service supports the upgrade history of databases.
To use any of the API operations, you must be authorized in an IAM policy. If you are not authorized, talk to an administrator. If you are an administrator who needs to write policies to give users access, see Getting Started with Policies.
For information about access control and compartments, see Overview of the Identity Service.
Warning: Oracle recommends that you avoid using any confidential information when you supply string values using the API.

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

Properties

Action

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

The database upgrade action.

Remarks

Required

Id

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

The OCID of the database upgrade history.

Remarks

Required

LifecycleDetails

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

Additional information about the current lifecycle state.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DatabaseUpgradeHistoryEntrySummary.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
DatabaseUpgradeHistoryEntrySummary.LifecycleStateEnum?

Status of database upgrade history SUCCEEDED|IN_PROGRESS|FAILED.

Remarks

Required

Options

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

Additional upgrade options supported by DBUA(Database Upgrade Assistant). Example: "-upgradeTimezone false -keepEvents"

Source

Declaration
[JsonProperty(PropertyName = "source")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DatabaseUpgradeHistoryEntrySummary.SourceEnum? Source { get; set; }
Property Value
Type Description
DatabaseUpgradeHistoryEntrySummary.SourceEnum?

The source of the Oracle Database software to be used for the upgrade.

  • Use DB_HOME to specify an existing Database Home to upgrade the database. The database is moved to the target Database Home and makes use of the Oracle Database software version of the target Database Home.
  • Use DB_VERSION to specify a generally-available Oracle Database software version to upgrade the database.
  • Use DB_SOFTWARE_IMAGE to specify a database software image to upgrade the database.

SourceDbHomeId

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

The OCID of the Database Home.

TargetDBVersion

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

A valid Oracle Database version. For a list of supported versions, use the ListDbVersions operation.
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.

TargetDatabaseSoftwareImageId

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

the database software image used for upgrading database.

TargetDbHomeId

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

The OCID of the Database Home.

TimeEnded

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

The date and time when the database upgrade ended.

TimeStarted

Declaration
[Required(ErrorMessage = "TimeStarted is required.")]
[JsonProperty(PropertyName = "timeStarted")]
public DateTime? TimeStarted { get; set; }
Property Value
Type Description
DateTime?

The date and time when the database upgrade started.

Remarks

Required

In this article
Back to top