Show / Hide Table of Contents

Class ComputeInstanceGroupFailurePolicyByCount

Specifies a failure policy by count for a compute instance group rolling deployment stage.

Inheritance
object
ComputeInstanceGroupFailurePolicy
ComputeInstanceGroupFailurePolicyByCount
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class ComputeInstanceGroupFailurePolicyByCount : ComputeInstanceGroupFailurePolicy

Properties

FailureCount

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

The threshold count of failed instances in the group, which when reached or exceeded sets the stage as Failed.

Remarks

Required

In this article
Back to top