Show / Hide Table of Contents

Class RebootDynamicSetDetails

Provides the information used for the reboot job.

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

Properties

ManagedInstances

Declaration
[JsonProperty(PropertyName = "managedInstances")]
public List<string> ManagedInstances { get; set; }
Property Value
Type Description
List<string>

The list of managed instance OCIDs to be attached/detached.

RebootTimeoutInMins

Declaration
[JsonProperty(PropertyName = "rebootTimeoutInMins")]
public int? RebootTimeoutInMins { get; set; }
Property Value
Type Description
int?

The number of minutes the service waits for the reboot to complete. If the instances in the group don't reboot within this time, the reboot job status is set to failed.

WorkRequestDetails

Declaration
[JsonProperty(PropertyName = "workRequestDetails")]
public WorkRequestDetails WorkRequestDetails { get; set; }
Property Value
Type Description
WorkRequestDetails
In this article
Back to top