Show / Hide Table of Contents

Class RoverBundleStatus

The status of the rover bundle status by a specified work request id.

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

Properties

BundleName

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

The full name of the bundle.

ErrorMessage

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

The error message if work request fails.

PercentComplete

Declaration
[JsonProperty(PropertyName = "percentComplete")]
public float? PercentComplete { get; set; }
Property Value
Type Description
float?

Percentage of the work request completed.

Status

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

The progress of the workflow.

Remarks

Required

TimeAccepted

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

The date and time the work request was created. An RFC3339 formatted datetime string.

TimeFinished

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

The date and time the work request was finished. An RFC3339 formatted datetime string.

TimeStarted

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

The date and time the work request was started. An RFC3339 formatted datetime string.

In this article
Back to top