Show / Hide Table of Contents

Class AbsoluteWaitCriteria

Specifies the absolute wait criteria. You can specify fixed length of wait duration.

Inheritance
object
WaitCriteria
AbsoluteWaitCriteria
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 AbsoluteWaitCriteria : WaitCriteria

Properties

WaitDuration

Declaration
[Required(ErrorMessage = "WaitDuration is required.")]
[JsonProperty(PropertyName = "waitDuration")]
public string WaitDuration { get; set; }
Property Value
Type Description
string

The absolute wait duration. An ISO 8601 formatted duration string. Minimum waitDuration should be 5 seconds. Maximum waitDuration can be up to 2 days.

Remarks

Required

In this article
Back to top