Show / Hide Table of Contents

Class DomainBasedPatchingConfigs

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

Inheritance
object
PatchingConfigs
DomainBasedPatchingConfigs
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 DomainBasedPatchingConfigs : PatchingConfigs

Properties

ToleranceThresholdPerDomain

Declaration
[Required(ErrorMessage = "ToleranceThresholdPerDomain is required.")]
[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 nodes.

Remarks

Required

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