Show / Hide Table of Contents

Class InstanceAgentCommandExecutionOutputContent

The execution output from a command.

Inheritance
object
InstanceAgentCommandExecutionOutputContent
InstanceAgentCommandExecutionOutputViaObjectStorageTupleDetails
InstanceAgentCommandExecutionOutputViaObjectStorageUriDetails
InstanceAgentCommandExecutionOutputViaTextDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ComputeinstanceagentService.Models
Assembly: OCI.DotNetSDK.Computeinstanceagent.dll
Syntax
[JsonConverter(typeof(InstanceAgentCommandExecutionOutputContentModelConverter))]
public class InstanceAgentCommandExecutionOutputContent

Properties

ExitCode

Declaration
[Required(ErrorMessage = "ExitCode is required.")]
[JsonProperty(PropertyName = "exitCode")]
public int? ExitCode { get; set; }
Property Value
Type Description
int?

The exit code for the command. Exit code 0 indicates success.

Remarks

Required

Message

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

An optional status message that Oracle Cloud Agent can populate for additional troubleshooting.

In this article
Back to top