Show / Hide Table of Contents

Class Task

The details of the task

Inheritance
object
Task
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 Task

Properties

OutputVariableMappings

Declaration
[JsonProperty(PropertyName = "outputVariableMappings")]
public List<OutputVariableMapping> OutputVariableMappings { get; set; }
Property Value
Type Description
List<OutputVariableMapping>

Mapping output variables of previous tasks to the input variables of the current task.

StepName

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

The name of the task step.

Remarks

Required

StepProperties

Declaration
[JsonProperty(PropertyName = "stepProperties")]
public ComponentProperties StepProperties { get; set; }
Property Value
Type Description
ComponentProperties

TaskRecordDetails

Declaration
[Required(ErrorMessage = "TaskRecordDetails is required.")]
[JsonProperty(PropertyName = "taskRecordDetails")]
public AssociatedTaskDetails TaskRecordDetails { get; set; }
Property Value
Type Description
AssociatedTaskDetails
Remarks

Required

In this article
Back to top