Class DatabaseUpgradeHistoryEntry
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.
Inherited Members
Namespace: Oci.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class DatabaseUpgradeHistoryEntry
Properties
Action
Declaration
[Required(ErrorMessage = "Action is required.")]
[JsonProperty(PropertyName = "action")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DatabaseUpgradeHistoryEntry.ActionEnum? Action { get; set; }
Property Value
Type | Description |
---|---|
DatabaseUpgradeHistoryEntry.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 DatabaseUpgradeHistoryEntry.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type | Description |
---|---|
DatabaseUpgradeHistoryEntry.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 DatabaseUpgradeHistoryEntry.SourceEnum? Source { get; set; }
Property Value
Type | Description |
---|---|
DatabaseUpgradeHistoryEntry.SourceEnum? | The source of the Oracle Database software to be used for the upgrade.
|
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.
|
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