Show / Hide Table of Contents

Class InstanceConfigurationAvailabilityConfig

Options for defining the availabiity of a VM instance after a maintenance event that impacts the underlying hardware.

Inheritance
object
InstanceConfigurationAvailabilityConfig
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class InstanceConfigurationAvailabilityConfig

Properties

IsLiveMigrationPreferred

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

Whether to live migrate supported VM instances to a healthy physical VM host without disrupting running instances during infrastructure maintenance events. If null, Oracle chooses the best option for migrating the VM during infrastructure maintenance events.

RecoveryAction

Declaration
[JsonProperty(PropertyName = "recoveryAction")]
[JsonConverter(typeof(ResponseEnumConverter))]
public InstanceConfigurationAvailabilityConfig.RecoveryActionEnum? RecoveryAction { get; set; }
Property Value
Type Description
InstanceConfigurationAvailabilityConfig.RecoveryActionEnum?

The lifecycle state for an instance when it is recovered after infrastructure maintenance.

  • RESTORE_INSTANCE - The instance is restored to the lifecycle state it was in before the maintenance event. If the instance was running, it is automatically rebooted. This is the default action when a value is not set.
  • STOP_INSTANCE - The instance is recovered in the stopped state.
In this article
Back to top