Show / Hide Table of Contents

Class OutputVariableDetails

The details of the output variable that will be used for mapping.

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

Properties

OutputVariableName

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

The name of the output variable whose value has to be mapped.

Remarks

Required

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 the output variable belongs to.

Remarks

Required

In this article
Back to top