Show / Hide Table of Contents

Class ComputeHostConfigurationCheckDetails

Compute Host Group Configuration Details Check

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

Properties

ConfigurationState

Declaration
[JsonProperty(PropertyName = "configurationState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ConfigurationState? ConfigurationState { get; set; }
Property Value
Type Description
ConfigurationState?

The current state of the host configuration. The Host is either | CONFORMANT - current state matches the desired configuration NON_CONFORMANT - current state does not match the desired configuration PRE_APPLYING, APPLYING, CHECKING- transitional states UNKNOWN - current state is unknown

FirmwareBundleId

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

The OCID for the Customer-unique firmware bundle associated with the Host Configuration.

RecycleLevel

Declaration
[JsonProperty(PropertyName = "recycleLevel")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ComputeHostConfigurationCheckDetails.RecycleLevelEnum? RecycleLevel { get; set; }
Property Value
Type Description
ComputeHostConfigurationCheckDetails.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.

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ComputeHostConfigurationCheckDetails.TypeEnum? Type { get; set; }
Property Value
Type Description
ComputeHostConfigurationCheckDetails.TypeEnum?

The type of configuration

In this article
Back to top