Show / Hide Table of Contents

Class FsuActionProgressDetails

Progress of the Action in execution. If the Exadata Fleet Update Action has not started yet, this will be omitted.

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

Properties

CompletedTargets

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

Number of targets with completed jobs.

FailedTargets

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

Number of targets with failed jobs.

InProgressTargets

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

Number of targets with jobs in progress.

TotalTargets

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

Total number of targets impacted by Exadata Fleet Update Action.

WaitingTargets

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

Number of targets with jobs waiting for batch to execute or for user to resume.

In this article
Back to top