Show / Hide Table of Contents

Class DbSystemOsPatchDetailsSummary

The details of available/applied OS patch on a DB Node.

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

Properties

DbNodeId

Declaration
[Required(ErrorMessage = "DbNodeId is required.")]
[JsonProperty(PropertyName = "dbNodeId")]
public string DbNodeId { get; set; }
Property Value
Type Description
string

The OCID of the DB node targeted for this patch action.

Remarks

Required

IsRebootRequired

Declaration
[Required(ErrorMessage = "IsRebootRequired is required.")]
[JsonProperty(PropertyName = "isRebootRequired")]
public bool? IsRebootRequired { get; set; }
Property Value
Type Description
bool?

Indicates whether a reboot is required after applying the patch.

Remarks

Required

Rpms

Declaration
[Required(ErrorMessage = "Rpms is required.")]
[JsonProperty(PropertyName = "rpms")]
public List<string> Rpms { get; set; }
Property Value
Type Description
List<string>

List of OS package identifiers (e.g., RPM strings).

Remarks

Required

In this article
Back to top