Show / Hide Table of Contents

Class InstanceAgentCommandSummary

Summary information for a command.

Inheritance
object
InstanceAgentCommandSummary
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
public class InstanceAgentCommandSummary

Properties

CompartmentId

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

The OCID of the compartment containing the command.

Remarks

Required

DisplayName

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

A user-friendly name. Does not have to be unique.

InstanceAgentCommandId

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

The OCID of the command.

Remarks

Required

IsCanceled

Declaration
[JsonProperty(PropertyName = "isCanceled")]
public bool? IsCanceled { get; set; }
Property Value
Type Description
bool?

Whether a request was made to cancel the command. Canceling a command is a best-effort attempt.

TimeCreated

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

The date and time the command was created, in the format defined by RFC3339.

Remarks

Required

TimeUpdated

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

The date and time the command was last updated, in the format defined by RFC3339.

Remarks

Required

In this article
Back to top