Show / Hide Table of Contents

Class StatusDetail

Detail of execution.

Inheritance
object
StatusDetail
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OperatoraccesscontrolService.Models
Assembly: OCI.DotNetSDK.Operatoraccesscontrol.dll
Syntax
public class StatusDetail

Properties

CommandName

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

Name of the process or command executed.

Status

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

Status of the process or command executed Success or Failure.

StatusId

Declaration
[JsonProperty(PropertyName = "statusId")]
public int? StatusId { get; set; }
Property Value
Type Description
int?

running unique number of the command executed

TimeOfValidation

Declaration
[JsonProperty(PropertyName = "timeOfValidation")]
public DateTime? TimeOfValidation { get; set; }
Property Value
Type Description
DateTime?

Time when the execution happened in RFC 3339timestamp format. Example: '2020-05-22T21:10:29.600Z'.

In this article
Back to top