Show / Hide Table of Contents

Class TargetSummary

Details of a target member of a Exadata Fleet Update Collection.

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

Properties

ActiveFsuCycleId

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

Active Exadata Fleet Update Cycle OCID. Null if no Cycle is active that has this target as member.

CurrentVersion

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

Current version of the target

ExecutingFsuJobId

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

Exadata Fleet Update Job OCID executing an action in the target. Null if no job is being executed.

Progress

Declaration
[JsonProperty(PropertyName = "progress")]
public TargetProgressSummary Progress { get; set; }
Property Value
Type Description
TargetProgressSummary

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public TargetSummary.StatusEnum? Status { get; set; }
Property Value
Type Description
TargetSummary.StatusEnum?

Status of the target in the Exadata Fleet Update Collection.

Target

Declaration
[JsonProperty(PropertyName = "target")]
public TargetDetails Target { get; set; }
Property Value
Type Description
TargetDetails
In this article
Back to top