Show / Hide Table of Contents

Class RecycleDetails

Shows details about the last recycle performed on this host.

Inheritance
object
RecycleDetails
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 RecycleDetails

Properties

ComputeHostGroupId

Declaration
[JsonProperty(PropertyName = "computeHostGroupId")]
public string ComputeHostGroupId { get; set; }
Property Value
Type Description
string

The OCID of the compute host group this host was attached to at the time of recycle.

RecycleLevel

Declaration
[JsonProperty(PropertyName = "recycleLevel")]
[JsonConverter(typeof(ResponseEnumConverter))]
public RecycleDetails.RecycleLevelEnum? RecycleLevel { get; set; }
Property Value
Type Description
RecycleDetails.RecycleLevelEnum?

Preferred recycle level for hosts associated with the reservation config.

  • SKIP_RECYCLE - Skips host wipe.
  • FULL_RECYCLE - Does not skip host wipe. This is the default behavior.
In this article
Back to top