Show / Hide Table of Contents

Class RebootMigrateActionDetails

Parameters for the rebootMigrate {@link #instanceAction(InstanceActionRequest) instanceAction}.

Inheritance
object
InstancePowerActionDetails
RebootMigrateActionDetails
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 RebootMigrateActionDetails : InstancePowerActionDetails

Properties

DeleteLocalStorage

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

For bare metal instances that have local storage, this must be set to true to verify that the local storage will be deleted during the migration. For instances without, this parameter has no effect.

TimeScheduled

Declaration
[JsonProperty(PropertyName = "timeScheduled")]
public DateTime? TimeScheduled { get; set; }
Property Value
Type Description
DateTime?

If present, this parameter will set (or reset) the scheduled time that the instance will be reboot migrated in the format defined by RFC3339. This will also change the timeMaintenanceRebootDue field on the instance.
If not present, the reboot migration will be triggered immediately.

In this article
Back to top