Show / Hide Table of Contents

Class HostGroupConfiguration

Host group configuration

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

Properties

FirmwareBundleId

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

The OCID for firmware bundle

RecycleLevel

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

Target

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

Either the platform name or compute shape that the configuration is targeting

In this article
Back to top