Class DbSystemOsPatchHistoryEntry
The record of an OS patch action on a DB system.
Inherited Members
Namespace: Oci.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class DbSystemOsPatchHistoryEntry
Properties
Action
Declaration
[Required(ErrorMessage = "Action is required.")]
[JsonProperty(PropertyName = "action")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DbSystemOsPatchHistoryEntry.ActionEnum? Action { get; set; }
Property Value
| Type | Description |
|---|---|
| DbSystemOsPatchHistoryEntry.ActionEnum? | The action being performed or was completed. |
Remarks
Required
DbSystemId
Declaration
[Required(ErrorMessage = "DbSystemId is required.")]
[JsonProperty(PropertyName = "dbSystemId")]
public string DbSystemId { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The OCID of the DB system. |
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 OS patch history entry. |
Remarks
Required
LifecycleDetails
Declaration
[JsonProperty(PropertyName = "lifecycleDetails")]
public string LifecycleDetails { get; set; }
Property Value
| Type | Description |
|---|---|
| string | A descriptive text associated with the lifecycleState. Typically contains additional displayable text. |
LifecycleState
Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DbSystemOsPatchHistoryEntry.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
| Type | Description |
|---|---|
| DbSystemOsPatchHistoryEntry.LifecycleStateEnum? | The current state of the action. |
Remarks
Required
OsPatchDetails
Declaration
[Required(ErrorMessage = "OsPatchDetails is required.")]
[JsonProperty(PropertyName = "osPatchDetails")]
public DbSystemOsPatchDetailsCollection OsPatchDetails { get; set; }
Property Value
| Type | Description |
|---|---|
| DbSystemOsPatchDetailsCollection |
Remarks
Required
TimeEnded
Declaration
[JsonProperty(PropertyName = "timeEnded")]
public DateTime? TimeEnded { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime? | The date and time when the patch action completed |
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 patch action started. |
Remarks
Required