Show / Hide Table of Contents

Class RoverBundleRequestSummary

Summary of the RoverBundleRequest

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

Properties

BundleVersion

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

The bundle version that customer wants to upgrade to.

DestinationBucketName

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

The destination bucket name the bundle will be copied to.

DestinationCompartmentId

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

The OCID of destination compartment that the bundle will be copied to.

Id

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

The unique identifier of roverBundleRequest.

Remarks

Required

TimeTaskCreated

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

The time of the task was created. An RFC3339 formatted datetime string.

WorkRequestId

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

The work request id for an async copyObject operation.

Remarks

Required

In this article
Back to top