Show / Hide Table of Contents

Class EntityExecutionDetails

Resource level execution status and target associations.

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

Properties

Description

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

Description of the Resource Execution status. If there are any errors, this can also include a short error message.

ResourceDisplayName

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

Resource Display Name.

ResourceId

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

Resource Identifier associated with the Work Request.

Remarks

Required

Sequence

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

The sequence of the Resource.

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public JobStatus? Status { get; set; }
Property Value
Type Description
JobStatus?

Status of the Job at Resource Level.

Remarks

Required

Targets

Declaration
[JsonProperty(PropertyName = "targets")]
public List<ActivityResourceTarget> Targets { get; set; }
Property Value
Type Description
List<ActivityResourceTarget>

Targets associated with the resource.

TimeEnded

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

The time the task ended for the resource. An RFC3339 formatted datetime string

TimeStarted

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

The time the task started for the resource. An RFC3339 formatted datetime string

In this article
Back to top