Show / Hide Table of Contents

Class DomainBasedOdhPatchingConfig

This patching config will patch all nodes in one AD/FD at a time.

Inheritance
object
OdhPatchingConfig
DomainBasedOdhPatchingConfig
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.BdsService.Models
Assembly: OCI.DotNetSDK.Bds.dll
Syntax
public class DomainBasedOdhPatchingConfig : OdhPatchingConfig

Properties

ToleranceThresholdPerDomain

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

Acceptable number of failed-to-be-patched nodes in each domain. The maximum number of failed-to-patch nodes cannot exceed 20% of the number of non-utility and non-master nodes.

WaitTimeBetweenDomainInSeconds

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

The wait time between AD/FD in seconds.

Remarks

Required

In this article
Back to top