Show / Hide Table of Contents

Class TaskVariable

The variable of the task. At least one of the dynamicArguments or output needs to be provided.

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

Properties

InputVariables

Declaration
[JsonProperty(PropertyName = "inputVariables")]
public List<InputArgument> InputVariables { get; set; }
Property Value
Type Description
List<InputArgument>

The input variables for the task.

OutputVariables

Declaration
[JsonProperty(PropertyName = "outputVariables")]
public List<string> OutputVariables { get; set; }
Property Value
Type Description
List<string>

The list of output variables.

In this article
Back to top