Show / Hide Table of Contents

Class DrProtectionGroupMemberComputeInstanceMovable

Properties for a movable compute instance member of a DR protection group.

Inheritance
object
DrProtectionGroupMember
DrProtectionGroupMemberComputeInstanceMovable
Inherited Members
DrProtectionGroupMember.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 DrProtectionGroupMemberComputeInstanceMovable : DrProtectionGroupMember

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<ComputeInstanceMovableFileSystemOperation> FileSystemOperations { get; set; }
Property Value
Type Description
List<ComputeInstanceMovableFileSystemOperation>

A list of details of operations performed on file systems.

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<ComputeInstanceMovableVnicMapping> VnicMappings { get; set; }
Property Value
Type Description
List<ComputeInstanceMovableVnicMapping>

A list of compute instance VNIC mappings.

In this article
Back to top