Show / Hide Table of Contents

Class DbServerPatchingDetails

The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

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

Properties

EstimatedPatchDuration

Declaration
[JsonProperty(PropertyName = "estimatedPatchDuration")]
public int? EstimatedPatchDuration { get; set; }
Property Value
Type Description
int?

Estimated time, in minutes, to patch one database server.

PatchingStatus

Declaration
[JsonProperty(PropertyName = "patchingStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DbServerPatchingDetails.PatchingStatusEnum? PatchingStatus { get; set; }
Property Value
Type Description
DbServerPatchingDetails.PatchingStatusEnum?

The status of the patching operation.

TimePatchingEnded

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

The time when the patching operation ended.

TimePatchingStarted

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

The time when the patching operation started.

In this article
Back to top