Show / Hide Table of Contents

Class ExecuteDbSystemOsPatchDetails

Request details for submitting an operating system (OS) patch action on a DB system. Use PRECHECK to validate prerequisites and surface the expected changes without applying them. Use APPLY to install the selected updates. Some updates may require a reboot to take effect.

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

Properties

Action

Declaration
[Required(ErrorMessage = "Action is required.")]
[JsonProperty(PropertyName = "action")]
[JsonConverter(typeof(StringEnumConverter))]
public ExecuteDbSystemOsPatchDetails.ActionEnum? Action { get; set; }
Property Value
Type Description
ExecuteDbSystemOsPatchDetails.ActionEnum?

Operation system (OS) patch action to perform

  • PRECHECK: No changes applied; runs validation/dry run.
  • APPLY: Installs updates; may require a reboot (see OS patch history entry details to determine isRebootRequired).
Remarks

Required

DbNodeId

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

The OCID of the DB node to target for this patch action. If omitted, the action applies to all nodes in the DB system.

In this article
Back to top