Show / Hide Table of Contents

Class ComputeInstanceGroupFailurePolicyByPercentage

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

Inheritance
object
ComputeInstanceGroupFailurePolicy
ComputeInstanceGroupFailurePolicyByPercentage
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 ComputeInstanceGroupFailurePolicyByPercentage : ComputeInstanceGroupFailurePolicy

Properties

FailurePercentage

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

The failure percentage threshold, which when reached or exceeded sets the stage as Failed. Percentage is computed as the ceiling value of the number of failed instances over the total count of the instances in the group.

Remarks

Required

In this article
Back to top