Show / Hide Table of Contents

Class EstimatedPatchingTime

The estimated total time required in minutes for all patching operations (database server, storage server, and network switch patching).

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

Properties

EstimatedDbServerPatchingTime

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

The estimated time required in minutes for database server patching.

EstimatedNetworkSwitchesPatchingTime

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

The estimated time required in minutes for network switch patching.

EstimatedStorageServerPatchingTime

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

The estimated time required in minutes for storage server patching.

TotalEstimatedPatchingTime

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

The estimated total time required in minutes for all patching operations.

In this article
Back to top