Show / Hide Table of Contents

Class UpdateDrProtectionGroupMemberComputeInstanceMovableDetails

Update properties for a movable compute instance member.

Inheritance
object
UpdateDrProtectionGroupMemberDetails
UpdateDrProtectionGroupMemberComputeInstanceMovableDetails
Inherited Members
UpdateDrProtectionGroupMemberDetails.MemberId
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DisasterrecoveryService.Models
Assembly: OCI.DotNetSDK.Disasterrecovery.dll
Syntax
public class UpdateDrProtectionGroupMemberComputeInstanceMovableDetails : UpdateDrProtectionGroupMemberDetails

Properties

DestinationCapacityReservationId

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

The OCID of a capacity reservation in the destination region which will be used to launch the compute instance.
Example: ocid1.capacityreservation.oc1..uniqueID

DestinationCompartmentId

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

The OCID of a compartment in the destination region in which the compute instance should be launched.
Example: ocid1.compartment.oc1..uniqueID

DestinationDedicatedVmHostId

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

The OCID of a dedicated VM host in the destination region where the compute instance should be launched.
Example: ocid1.dedicatedvmhost.oc1..uniqueID

FileSystemOperations

Declaration
[JsonProperty(PropertyName = "fileSystemOperations")]
public List<UpdateComputeInstanceMovableFileSystemOperationDetails> FileSystemOperations { get; set; }
Property Value
Type Description
List<UpdateComputeInstanceMovableFileSystemOperationDetails>

A list of operations performed on file systems used by the compute instance.

IsRetainFaultDomain

Declaration
[JsonProperty(PropertyName = "isRetainFaultDomain")]
public bool? IsRetainFaultDomain { get; set; }
Property Value
Type Description
bool?

A flag indicating if the compute instance should be moved to the same fault domain in the destination region. The compute instance launch will fail if this flag is set to true and capacity is not available in the specified fault domain in the destination region.
Example: false

VnicMappings

Declaration
[JsonProperty(PropertyName = "vnicMappings")]
public List<ComputeInstanceMovableVnicMappingDetails> VnicMappings { get; set; }
Property Value
Type Description
List<ComputeInstanceMovableVnicMappingDetails>

A list of compute instance VNIC mappings.

In this article
Back to top