Show / Hide Table of Contents

Class FsuCollectionTarget

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

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

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 FsuCollectionTarget.StatusEnum? Status { get; set; }
Property Value
Type Description
FsuCollectionTarget.StatusEnum?

Status of the target in the Exadata Fleet Update Collection.

Target

Declaration
[Required(ErrorMessage = "Target is required.")]
[JsonProperty(PropertyName = "target")]
public TargetDetails Target { get; set; }
Property Value
Type Description
TargetDetails
Remarks

Required

In this article
Back to top