Class PatchHistoryEntry
Inherited Members
Namespace: Oci.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class PatchHistoryEntry
Properties
Action
Declaration
[JsonProperty(PropertyName = "action")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PatchHistoryEntry.ActionEnum? Action { get; set; }
Property Value
Type | Description |
---|---|
PatchHistoryEntry.ActionEnum? | The action being performed or was completed. |
Id
Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the 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 PatchHistoryEntry.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type | Description |
---|---|
PatchHistoryEntry.LifecycleStateEnum? | The current state of the action. |
Remarks
Required
PatchId
Declaration
[Required(ErrorMessage = "PatchId is required.")]
[JsonProperty(PropertyName = "patchId")]
public string PatchId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the patch. |
Remarks
Required
PatchType
Declaration
[JsonProperty(PropertyName = "patchType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PatchHistoryEntry.PatchTypeEnum? PatchType { get; set; }
Property Value
Type | Description |
---|---|
PatchHistoryEntry.PatchTypeEnum? | The type of Patch operation. |
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