Show / Hide Table of Contents

Class DrProtectionGroupMemberComputeInstance

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

Inheritance
object
DrProtectionGroupMember
DrProtectionGroupMemberComputeInstance
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 DrProtectionGroupMemberComputeInstance : DrProtectionGroupMember

Properties

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

IsMovable

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

A flag indicating if the compute instance should be moved during DR operations.
Example: false

VnicMapping

Declaration
[JsonProperty(PropertyName = "vnicMapping")]
public List<ComputeInstanceVnicMapping> VnicMapping { get; set; }
Property Value
Type Description
List<ComputeInstanceVnicMapping>

A list of compute instance VNIC mappings.

In this article
Back to top