Show / Hide Table of Contents

Class ComputeBareMetalHost

A compute bare metal host.

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

Properties

ComputeCapacityTopologyId

Declaration
[Required(ErrorMessage = "ComputeCapacityTopologyId is required.")]
[JsonProperty(PropertyName = "computeCapacityTopologyId")]
public string ComputeCapacityTopologyId { get; set; }
Property Value
Type Description
string

The OCID of the compute capacity topology.

Remarks

Required

ComputeHpcIslandId

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

The OCID of the compute HPC island.

ComputeLocalBlockId

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

The OCID of the compute local block.

ComputeNetworkBlockId

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

The OCID of the compute network block.

Id

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

The OCID of the compute bare metal host.

Remarks

Required

InstanceId

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

The OCID of the compute instance that runs on the compute bare metal host.

InstanceShape

Declaration
[Required(ErrorMessage = "InstanceShape is required.")]
[JsonProperty(PropertyName = "instanceShape")]
public string InstanceShape { get; set; }
Property Value
Type Description
string

The shape of the compute instance that runs on the compute bare metal host.

Remarks

Required

LifecycleDetails

Declaration
[JsonProperty(PropertyName = "lifecycleDetails")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ComputeBareMetalHost.LifecycleDetailsEnum? LifecycleDetails { get; set; }
Property Value
Type Description
ComputeBareMetalHost.LifecycleDetailsEnum?

The lifecycle state details of the compute bare metal host.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ComputeBareMetalHost.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
ComputeBareMetalHost.LifecycleStateEnum?

The current state of the compute bare metal host.

Remarks

Required

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time that the compute bare metal host was created, in the format defined by RFC3339.
Example: 2016-08-25T21:10:29.600Z

Remarks

Required

TimeUpdated

Declaration
[Required(ErrorMessage = "TimeUpdated is required.")]
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The date and time that the compute bare metal host was updated, in the format defined by RFC3339.
Example: 2016-08-25T21:10:29.600Z

Remarks

Required

In this article
Back to top