Show / Hide Table of Contents

Class RequestRoverBundleDetails

Information required by Object Storage to process a request to copy an object to another bucket.

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

Properties

BundleVersion

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

The bundle version that customer wants to upgrade to.

Remarks

Required

DestinationBucketName

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

The destination bucket name the bundle will be copied to.

Remarks

Required

DestinationCompartmentId

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

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

Remarks

Required

In this article
Back to top