Show / Hide Table of Contents

Class Properties

The properties of the task.

Inheritance
object
Properties
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FleetappsmanagementService.Models
Assembly: OCI.DotNetSDK.Fleetappsmanagement.dll
Syntax
public class Properties

Properties

NumRetries

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

The number of retries allowed.

Remarks

Required

TimeoutInSeconds

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

The timeout in seconds for the task.

Remarks

Required

In this article
Back to top