Show / Hide Table of Contents

Class OutputVariableMapping

Output variable to Input variable mapping details. Output variable of a task can be used as an input variable for a subsequent task.

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

Properties

Name

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

The name of the input variable.

Remarks

Required

OutputVariableDetails

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

Required

In this article
Back to top