Show / Hide Table of Contents

Class UpdateMaintenanceRunDetails

Request to update maintenance run resource.

Inheritance
object
UpdateMaintenanceRunDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataccService.Models
Assembly: OCI.DotNetSDK.Datacc.dll
Syntax
public class UpdateMaintenanceRunDetails

Properties

CustomActionTimeoutInMins

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

Determines the amount of time the system will wait before the start of each compute server patching operation. Supported values are 15 to 120 minutes.

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example: {"bar-key": "value"}

IsCustomActionTimeoutEnabled

Declaration
[JsonProperty(PropertyName = "isCustomActionTimeoutEnabled")]
public bool? IsCustomActionTimeoutEnabled { get; set; }
Property Value
Type Description
bool?

If true, enables configuration of customActionTimeoutInMins for this maintenance run update request.

PatchingMode

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

Database Infrastructure patching mode, either "ROLLING" or "NONROLLING". Default value is ROLLING.

Remarks

Required

In this article
Back to top