Show / Hide Table of Contents

Class Outcome

Execution Outcome.

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

Properties

Error

Declaration
[JsonProperty(PropertyName = "error")]
public string Error { get; set; }
Property Value
Type Description
string

Errors if any, associated with the execution.

ExitCode

Declaration
[JsonProperty(PropertyName = "exitCode")]
public string ExitCode { get; set; }
Property Value
Type Description
string

Exit Code.

Output

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

A shortened version of Execution output.

Remarks

Required

In this article
Back to top