Class DbSystemOsPatchDetailsSummary
The details of available/applied OS patch on a DB Node.
Inherited Members
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