Show / Hide Table of Contents

Class ExecutionSummary

A task associated with the Job.

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

Properties

Description

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

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

Id

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

Unique Id associated with the task execution.

Remarks

Required

IsRetryExceeded

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

An attribute which tells if further retries are allowed for the task on failure.

IsRollbackTask

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

Is this a rollback task?

ProcessReferenceId

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

Unique process-reference identifier returned by the execution client. In some cases, this can be a runcommand OCID.

ResourceId

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

Resource Identifier associated with the Work Request.

Sequence

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

The sequence of the task.

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 Task.

Remarks

Required

StepName

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

Name of the Step.

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TargetId

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

Target associated with the execution.

TaskRecordId

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

The OCID of taskRecord.

TimeEnded

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

The time the task ended. 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. An RFC3339 formatted datetime string.

In this article
Back to top